blob: f098babb9f4e5092a1dc478b453803a348a79740 [file] [log] [blame]
Chris Lattnerac161bf2009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
David Blaikie1b770232015-08-01 05:10:40 +000016#include "llvm/ADT/STLExtras.h"
Alex Lorenz8955f7d2015-06-23 17:10:10 +000017#include "llvm/AsmParser/SlotMapping.h"
Chandler Carruth91065212014-03-05 10:34:14 +000018#include "llvm/IR/AutoUpgrade.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/CallingConv.h"
20#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +000021#include "llvm/IR/DebugInfo.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000022#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/InlineAsm.h"
25#include "llvm/IR/Instructions.h"
Manman Ren209b17c2013-09-28 00:22:27 +000026#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
29#include "llvm/IR/ValueSymbolTable.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000030#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000031#include "llvm/Support/ErrorHandling.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000032#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000033#include "llvm/Support/raw_ostream.h"
34using namespace llvm;
35
Chris Lattner229907c2011-07-18 04:54:35 +000036static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000037 std::string Result;
38 raw_string_ostream Tmp(Result);
39 Tmp << *T;
40 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000041}
42
Chris Lattner3822f632009-01-02 08:05:26 +000043/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000044bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000045 // Prime the lexer.
46 Lex.Lex();
47
Chris Lattnerad6f3352009-01-04 20:44:11 +000048 return ParseTopLevelEntities() ||
49 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000050}
51
Alex Lorenzd2255952015-07-17 22:07:03 +000052bool LLParser::parseStandaloneConstantValue(Constant *&C) {
53 Lex.Lex();
54
55 Type *Ty = nullptr;
56 if (ParseType(Ty) || parseConstantValue(Ty, C))
57 return true;
58 if (Lex.getKind() != lltok::Eof)
59 return Error(Lex.getLoc(), "expected end of string");
60 return false;
61}
62
Chris Lattnerac161bf2009-01-02 07:01:27 +000063/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
64/// module.
65bool LLParser::ValidateEndOfModule() {
Manman Ren209b17c2013-09-28 00:22:27 +000066 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
67 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
68
Bill Wendlingb32b0412013-02-08 06:32:06 +000069 // Handle any function attribute group forward references.
70 for (std::map<Value*, std::vector<unsigned> >::iterator
71 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
72 I != E; ++I) {
73 Value *V = I->first;
74 std::vector<unsigned> &Vec = I->second;
75 AttrBuilder B;
76
77 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
78 VI != VE; ++VI)
79 B.merge(NumberedAttrBuilders[*VI]);
80
81 if (Function *Fn = dyn_cast<Function>(V)) {
82 AttributeSet AS = Fn->getAttributes();
83 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
84 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
85 AS.getFnAttributes());
86
87 FnAttrs.merge(B);
88
89 // If the alignment was parsed as an attribute, move to the alignment
90 // field.
91 if (FnAttrs.hasAlignmentAttr()) {
92 Fn->setAlignment(FnAttrs.getAlignment());
93 FnAttrs.removeAttribute(Attribute::Alignment);
94 }
95
96 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
97 AttributeSet::get(Context,
98 AttributeSet::FunctionIndex,
99 FnAttrs));
100 Fn->setAttributes(AS);
101 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
102 AttributeSet AS = CI->getAttributes();
103 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
104 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
105 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000106 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000107 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
108 AttributeSet::get(Context,
109 AttributeSet::FunctionIndex,
110 FnAttrs));
111 CI->setAttributes(AS);
112 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
113 AttributeSet AS = II->getAttributes();
114 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
115 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
116 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000117 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000118 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
119 AttributeSet::get(Context,
120 AttributeSet::FunctionIndex,
121 FnAttrs));
122 II->setAttributes(AS);
123 } else {
124 llvm_unreachable("invalid object with forward attribute group reference");
125 }
126 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000127
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000128 // If there are entries in ForwardRefBlockAddresses at this point, the
129 // function was never defined.
130 if (!ForwardRefBlockAddresses.empty())
131 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
132 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000133
David Majnemer19b51052015-02-11 07:43:56 +0000134 for (const auto &NT : NumberedTypes)
135 if (NT.second.second.isValid())
136 return Error(NT.second.second,
137 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000138
139 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
140 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
141 if (I->second.second.isValid())
142 return Error(I->second.second,
143 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000144
David Majnemerdad0a642014-06-27 18:19:56 +0000145 if (!ForwardRefComdats.empty())
146 return Error(ForwardRefComdats.begin()->second,
147 "use of undefined comdat '$" +
148 ForwardRefComdats.begin()->first + "'");
149
Chris Lattnerac161bf2009-01-02 07:01:27 +0000150 if (!ForwardRefVals.empty())
151 return Error(ForwardRefVals.begin()->second.second,
152 "use of undefined value '@" + ForwardRefVals.begin()->first +
153 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000154
Chris Lattnerac161bf2009-01-02 07:01:27 +0000155 if (!ForwardRefValIDs.empty())
156 return Error(ForwardRefValIDs.begin()->second.second,
157 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000158 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000159
Devang Pateld2541152009-07-08 19:23:54 +0000160 if (!ForwardRefMDNodes.empty())
161 return Error(ForwardRefMDNodes.begin()->second.second,
162 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000163 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000164
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000165 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000166 for (auto &N : NumberedMetadata) {
167 if (N.second && !N.second->isResolved())
168 N.second->resolveCycles();
169 }
Devang Pateld2541152009-07-08 19:23:54 +0000170
Chris Lattnerac161bf2009-01-02 07:01:27 +0000171 // Look for intrinsic functions and CallInst that need to be upgraded
172 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
173 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000174
Manman Ren8b4306c2013-12-02 21:29:56 +0000175 UpgradeDebugInfo(*M);
176
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000177 if (!Slots)
178 return false;
179 // Initialize the slot mapping.
180 // Because by this point we've parsed and validated everything, we can "steal"
181 // the mapping from LLParser as it doesn't need it anymore.
182 Slots->GlobalValues = std::move(NumberedVals);
183 Slots->MetadataNodes = std::move(NumberedMetadata);
184
Chris Lattnerac161bf2009-01-02 07:01:27 +0000185 return false;
186}
187
188//===----------------------------------------------------------------------===//
189// Top-Level Entities
190//===----------------------------------------------------------------------===//
191
192bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000193 while (1) {
194 switch (Lex.getKind()) {
195 default: return TokError("expected top-level entity");
196 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000197 case lltok::kw_declare: if (ParseDeclare()) return true; break;
198 case lltok::kw_define: if (ParseDefine()) return true; break;
199 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
200 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000201 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000202 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000203 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000204 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000205 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000206 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000207 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000208 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000209
210 // The Global variable production with no name can have many different
211 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000212 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000213 // OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000214 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000215 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000216 case lltok::kw_internal: // OptionalLinkage
217 case lltok::kw_weak: // OptionalLinkage
218 case lltok::kw_weak_odr: // OptionalLinkage
219 case lltok::kw_linkonce: // OptionalLinkage
220 case lltok::kw_linkonce_odr: // OptionalLinkage
221 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000222 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000223 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000224 case lltok::kw_external: // OptionalLinkage
225 case lltok::kw_default: // OptionalVisibility
226 case lltok::kw_hidden: // OptionalVisibility
227 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000228 case lltok::kw_dllimport: // OptionalDLLStorageClass
229 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000230 case lltok::kw_thread_local: // OptionalThreadLocal
231 case lltok::kw_addrspace: // OptionalAddrSpace
232 case lltok::kw_constant: // GlobalType
233 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000234 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000235 bool UnnamedAddr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000236 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000237 bool HasLinkage;
238 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000239 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000240 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000241 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000242 parseOptionalUnnamedAddr(UnnamedAddr) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000243 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000244 DLLStorageClass, TLM, UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000245 return true;
246 break;
247 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000248
249 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000250 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
251 case lltok::kw_uselistorder_bb:
252 if (ParseUseListOrderBB()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000253 }
254 }
255}
256
257
258/// toplevelentity
259/// ::= 'module' 'asm' STRINGCONSTANT
260bool LLParser::ParseModuleAsm() {
261 assert(Lex.getKind() == lltok::kw_module);
262 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000263
264 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000265 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
266 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000267
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000268 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000269 return false;
270}
271
272/// toplevelentity
273/// ::= 'target' 'triple' '=' STRINGCONSTANT
274/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
275bool LLParser::ParseTargetDefinition() {
276 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000277 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000278 switch (Lex.Lex()) {
279 default: return TokError("unknown target property");
280 case lltok::kw_triple:
281 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000282 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
283 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000284 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000285 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000286 return false;
287 case lltok::kw_datalayout:
288 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000289 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
290 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000291 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000292 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000293 return false;
294 }
295}
296
Bill Wendling706d3d62012-11-28 08:41:48 +0000297/// toplevelentity
298/// ::= 'deplibs' '=' '[' ']'
299/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
300/// FIXME: Remove in 4.0. Currently parse, but ignore.
301bool LLParser::ParseDepLibs() {
302 assert(Lex.getKind() == lltok::kw_deplibs);
303 Lex.Lex();
304 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
305 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
306 return true;
307
308 if (EatIfPresent(lltok::rsquare))
309 return false;
310
311 do {
312 std::string Str;
313 if (ParseStringConstant(Str)) return true;
314 } while (EatIfPresent(lltok::comma));
315
316 return ParseToken(lltok::rsquare, "expected ']' at end of list");
317}
318
Dan Gohman466876b2009-08-12 23:32:33 +0000319/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000320/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000321bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000322 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000323 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000324 Lex.Lex(); // eat LocalVarID;
325
326 if (ParseToken(lltok::equal, "expected '=' after name") ||
327 ParseToken(lltok::kw_type, "expected 'type' after '='"))
328 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000329
Craig Topper2617dcc2014-04-15 06:32:26 +0000330 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000331 if (ParseStructDefinition(TypeLoc, "",
332 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000333
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000334 if (!isa<StructType>(Result)) {
335 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
336 if (Entry.first)
337 return Error(TypeLoc, "non-struct types may not be recursive");
338 Entry.first = Result;
339 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000340 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000341
Chris Lattnerac161bf2009-01-02 07:01:27 +0000342 return false;
343}
344
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000345
Chris Lattnerac161bf2009-01-02 07:01:27 +0000346/// toplevelentity
347/// ::= LocalVar '=' 'type' type
348bool LLParser::ParseNamedType() {
349 std::string Name = Lex.getStrVal();
350 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000351 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000352
Chris Lattner3822f632009-01-02 08:05:26 +0000353 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000354 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000355 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000356
Craig Topper2617dcc2014-04-15 06:32:26 +0000357 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000358 if (ParseStructDefinition(NameLoc, Name,
359 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000360
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000361 if (!isa<StructType>(Result)) {
362 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
363 if (Entry.first)
364 return Error(NameLoc, "non-struct types may not be recursive");
365 Entry.first = Result;
366 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000367 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000368
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000369 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000370}
371
372
373/// toplevelentity
374/// ::= 'declare' FunctionHeader
375bool LLParser::ParseDeclare() {
376 assert(Lex.getKind() == lltok::kw_declare);
377 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000378
Chris Lattnerac161bf2009-01-02 07:01:27 +0000379 Function *F;
380 return ParseFunctionHeader(F, false);
381}
382
383/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000384/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000385bool LLParser::ParseDefine() {
386 assert(Lex.getKind() == lltok::kw_define);
387 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000388
Chris Lattnerac161bf2009-01-02 07:01:27 +0000389 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000390 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000391 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000392 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000393}
394
Chris Lattner3822f632009-01-02 08:05:26 +0000395/// ParseGlobalType
396/// ::= 'constant'
397/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000398bool LLParser::ParseGlobalType(bool &IsConstant) {
399 if (Lex.getKind() == lltok::kw_constant)
400 IsConstant = true;
401 else if (Lex.getKind() == lltok::kw_global)
402 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000403 else {
404 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000405 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000406 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000407 Lex.Lex();
408 return false;
409}
410
Dan Gohman466876b2009-08-12 23:32:33 +0000411/// ParseUnnamedGlobal:
412/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000413/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
414/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000415/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000416/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
417/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000418bool LLParser::ParseUnnamedGlobal() {
419 unsigned VarID = NumberedVals.size();
420 std::string Name;
421 LocTy NameLoc = Lex.getLoc();
422
423 // Handle the GlobalID form.
424 if (Lex.getKind() == lltok::GlobalID) {
425 if (Lex.getUIntVal() != VarID)
426 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000427 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000428 Lex.Lex(); // eat GlobalID;
429
430 if (ParseToken(lltok::equal, "expected '=' after name"))
431 return true;
432 }
433
434 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000435 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000436 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000437 bool UnnamedAddr;
Dan Gohman466876b2009-08-12 23:32:33 +0000438 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000439 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000440 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000441 ParseOptionalThreadLocal(TLM) ||
442 parseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000443 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000444
Rafael Espindola464fe022014-07-30 22:51:54 +0000445 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000446 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000447 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000448 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000449 UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000450}
451
Chris Lattnerac161bf2009-01-02 07:01:27 +0000452/// ParseNamedGlobal:
453/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000454/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
455/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000456bool LLParser::ParseNamedGlobal() {
457 assert(Lex.getKind() == lltok::GlobalVar);
458 LocTy NameLoc = Lex.getLoc();
459 std::string Name = Lex.getStrVal();
460 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000461
Chris Lattnerac161bf2009-01-02 07:01:27 +0000462 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000463 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000464 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000465 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000466 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
467 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000468 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000469 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000470 ParseOptionalThreadLocal(TLM) ||
471 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000472 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000473
Rafael Espindola464fe022014-07-30 22:51:54 +0000474 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000475 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000476 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000477
478 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000479 UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000480}
481
David Majnemerdad0a642014-06-27 18:19:56 +0000482bool LLParser::parseComdat() {
483 assert(Lex.getKind() == lltok::ComdatVar);
484 std::string Name = Lex.getStrVal();
485 LocTy NameLoc = Lex.getLoc();
486 Lex.Lex();
487
488 if (ParseToken(lltok::equal, "expected '=' here"))
489 return true;
490
491 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
492 return TokError("expected comdat type");
493
494 Comdat::SelectionKind SK;
495 switch (Lex.getKind()) {
496 default:
497 return TokError("unknown selection kind");
498 case lltok::kw_any:
499 SK = Comdat::Any;
500 break;
501 case lltok::kw_exactmatch:
502 SK = Comdat::ExactMatch;
503 break;
504 case lltok::kw_largest:
505 SK = Comdat::Largest;
506 break;
507 case lltok::kw_noduplicates:
508 SK = Comdat::NoDuplicates;
509 break;
510 case lltok::kw_samesize:
511 SK = Comdat::SameSize;
512 break;
513 }
514 Lex.Lex();
515
516 // See if the comdat was forward referenced, if so, use the comdat.
517 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
518 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
519 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
520 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
521
522 Comdat *C;
523 if (I != ComdatSymTab.end())
524 C = &I->second;
525 else
526 C = M->getOrInsertComdat(Name);
527 C->setSelectionKind(SK);
528
529 return false;
530}
531
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000532// MDString:
533// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000534bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000535 std::string Str;
536 if (ParseStringConstant(Str)) return true;
Eli Bendersky5d5e18d2014-06-25 15:41:00 +0000537 llvm::UpgradeMDStringConstant(Str);
Chris Lattner1797fc72009-12-29 21:53:55 +0000538 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000539 return false;
540}
541
542// MDNode:
543// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000544bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000545 // !{ ..., !42, ... }
546 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000547 if (ParseUInt32(MID))
548 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000549
Chris Lattner8eff0152010-04-01 05:14:45 +0000550 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000551 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000552 Result = NumberedMetadata[MID];
553 return false;
554 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000555
Chris Lattner8eff0152010-04-01 05:14:45 +0000556 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000557 auto &FwdRef = ForwardRefMDNodes[MID];
558 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000559
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000560 Result = FwdRef.first.get();
561 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000562 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000563}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000564
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000565/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000566/// !foo = !{ !1, !2 }
567bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000568 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000569 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000570 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000571
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000572 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000573 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000574 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000575 return true;
576
Dan Gohman2637cc12010-07-21 23:38:33 +0000577 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000578 if (Lex.getKind() != lltok::rbrace)
579 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000580 if (ParseToken(lltok::exclaim, "Expected '!' here"))
581 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000582
Craig Topper2617dcc2014-04-15 06:32:26 +0000583 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000584 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000585 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000586 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000587
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000588 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000589}
590
Devang Patel39e64d42009-07-01 19:21:12 +0000591/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000592/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000593bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000594 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000595 Lex.Lex();
596 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000597
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000598 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000599 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000600 ParseToken(lltok::equal, "expected '=' here"))
601 return true;
602
603 // Detect common error, from old metadata syntax.
604 if (Lex.getKind() == lltok::Type)
605 return TokError("unexpected type in metadata definition");
606
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000607 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000608 if (Lex.getKind() == lltok::MetadataVar) {
609 if (ParseSpecializedMDNode(Init, IsDistinct))
610 return true;
611 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
612 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000613 return true;
614
Chris Lattnerfc58af22009-12-30 04:51:58 +0000615 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000616 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000617 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000618 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000619 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000620
Chris Lattnerfc58af22009-12-30 04:51:58 +0000621 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
622 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000623 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000624 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000625 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000626 }
627
Devang Patel39e64d42009-07-01 19:21:12 +0000628 return false;
629}
630
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000631static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
632 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
633 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
634}
635
Chris Lattnerac161bf2009-01-02 07:01:27 +0000636/// ParseAlias:
Rafael Espindola464fe022014-07-30 22:51:54 +0000637/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
638/// OptionalDLLStorageClass OptionalThreadLocal
Eric Christopher536f0a92015-05-28 23:07:39 +0000639/// OptionalUnnamedAddr 'alias' Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000640///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000641/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000642/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000643///
Eric Christopher536f0a92015-05-28 23:07:39 +0000644/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000645///
Rafael Espindola464fe022014-07-30 22:51:54 +0000646bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000647 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000648 GlobalVariable::ThreadLocalMode TLM,
649 bool UnnamedAddr) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000650 assert(Lex.getKind() == lltok::kw_alias);
651 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000652
Rafael Espindola78527052013-10-06 15:10:43 +0000653 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
654
Rafael Espindolacaa43562013-10-09 16:07:32 +0000655 if(!GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000656 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000657
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000658 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000659 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000660 "symbol with local linkage must have default visibility");
661
Rafael Espindola64c1e182014-06-03 02:41:57 +0000662 Constant *Aliasee;
663 LocTy AliaseeLoc = Lex.getLoc();
664 if (Lex.getKind() != lltok::kw_bitcast &&
665 Lex.getKind() != lltok::kw_getelementptr &&
666 Lex.getKind() != lltok::kw_addrspacecast &&
667 Lex.getKind() != lltok::kw_inttoptr) {
668 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000669 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000670 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000671 // The bitcast dest type is not present, it is implied by the dest type.
672 ValID ID;
673 if (ParseValID(ID))
674 return true;
675 if (ID.Kind != ValID::t_Constant)
676 return Error(AliaseeLoc, "invalid aliasee");
677 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000678 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000679
Rafael Espindola64c1e182014-06-03 02:41:57 +0000680 Type *AliaseeType = Aliasee->getType();
681 auto *PTy = dyn_cast<PointerType>(AliaseeType);
682 if (!PTy)
683 return Error(AliaseeLoc, "An alias must have pointer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000684
685 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000686 std::unique_ptr<GlobalAlias> GA(
David Blaikief64246b2015-04-29 21:22:39 +0000687 GlobalAlias::create(PTy, (GlobalValue::LinkageTypes)Linkage, Name,
688 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000689 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000690 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000691 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000692 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000693
Rafael Espindola54fc2982015-06-17 17:53:31 +0000694 if (Name.empty())
695 NumberedVals.push_back(GA.get());
696
Chris Lattnerac161bf2009-01-02 07:01:27 +0000697 // See if this value already exists in the symbol table. If so, it is either
698 // a redefinition or a definition of a forward reference.
Chris Lattnere38317f2009-10-25 23:22:50 +0000699 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000700 // See if this was a redefinition. If so, there is no entry in
701 // ForwardRefVals.
702 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
703 I = ForwardRefVals.find(Name);
704 if (I == ForwardRefVals.end())
705 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
706
707 // Otherwise, this was a definition of forward ref. Verify that types
708 // agree.
709 if (Val->getType() != GA->getType())
710 return Error(NameLoc,
711 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000712
Chris Lattnerac161bf2009-01-02 07:01:27 +0000713 // If they agree, just RAUW the old value with the alias and remove the
714 // forward ref info.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000715 Val->replaceAllUsesWith(GA.get());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000716 Val->eraseFromParent();
717 ForwardRefVals.erase(I);
718 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000719
Chris Lattnerac161bf2009-01-02 07:01:27 +0000720 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000721 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000722 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000723
Rafael Espindolaaa273822014-05-09 21:49:17 +0000724 // The module owns this now
725 GA.release();
726
Chris Lattnerac161bf2009-01-02 07:01:27 +0000727 return false;
728}
729
730/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000731/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000732/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000733/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000734/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000735/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000736/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000737///
Eric Christopher536f0a92015-05-28 23:07:39 +0000738/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000739/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000740///
741bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
742 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000743 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000744 GlobalVariable::ThreadLocalMode TLM,
745 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000746 if (!isValidVisibilityForLinkage(Visibility, Linkage))
747 return Error(NameLoc,
748 "symbol with local linkage must have default visibility");
749
Chris Lattnerac161bf2009-01-02 07:01:27 +0000750 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000751 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000752 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000753 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000754
Craig Topper2617dcc2014-04-15 06:32:26 +0000755 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000756 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000757 ParseOptionalToken(lltok::kw_externally_initialized,
758 IsExternallyInitialized,
759 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000760 ParseGlobalType(IsConstant) ||
761 ParseType(Ty, TyLoc))
762 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000763
Chris Lattnerac161bf2009-01-02 07:01:27 +0000764 // If the linkage is specified and is external, then no initializer is
765 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000766 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000767 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000768 Linkage != GlobalValue::ExternalLinkage)) {
769 if (ParseGlobalValue(Ty, Init))
770 return true;
771 }
772
David Majnemer49b3d9b2015-02-16 08:41:08 +0000773 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000774 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000775
David Majnemer598bd052014-12-09 05:56:09 +0000776 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000777
778 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000779 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000780 GVal = M->getNamedValue(Name);
781 if (GVal) {
Chris Lattnere38317f2009-10-25 23:22:50 +0000782 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
783 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000784 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000785 } else {
786 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
787 I = ForwardRefValIDs.find(NumberedVals.size());
788 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000789 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000790 ForwardRefValIDs.erase(I);
791 }
792 }
793
David Majnemer598bd052014-12-09 05:56:09 +0000794 GlobalVariable *GV;
795 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000796 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
797 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000798 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000799 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000800 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000801 return Error(TyLoc,
802 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000803
David Majnemer598bd052014-12-09 05:56:09 +0000804 GV = cast<GlobalVariable>(GVal);
805
Chris Lattnerac161bf2009-01-02 07:01:27 +0000806 // Move the forward-reference to the correct spot in the module.
807 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
808 }
809
810 if (Name.empty())
811 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000812
Chris Lattnerac161bf2009-01-02 07:01:27 +0000813 // Set the parsed properties on the global.
814 if (Init)
815 GV->setInitializer(Init);
816 GV->setConstant(IsConstant);
817 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
818 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000819 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000820 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000821 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000822 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000823
Chris Lattnerac161bf2009-01-02 07:01:27 +0000824 // Parse attributes on the global.
825 while (Lex.getKind() == lltok::comma) {
826 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000827
Chris Lattnerac161bf2009-01-02 07:01:27 +0000828 if (Lex.getKind() == lltok::kw_section) {
829 Lex.Lex();
830 GV->setSection(Lex.getStrVal());
831 if (ParseToken(lltok::StringConstant, "expected global section string"))
832 return true;
833 } else if (Lex.getKind() == lltok::kw_align) {
834 unsigned Alignment;
835 if (ParseOptionalAlignment(Alignment)) return true;
836 GV->setAlignment(Alignment);
837 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000838 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000839 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000840 return true;
841 if (C)
842 GV->setComdat(C);
843 else
844 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000845 }
846 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000847
Chris Lattnerac161bf2009-01-02 07:01:27 +0000848 return false;
849}
850
Bill Wendling63b88192013-02-06 06:52:58 +0000851/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000852/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000853bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000854 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000855 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000856 Lex.Lex();
857
David Majnemerb39e22b2014-12-09 18:33:57 +0000858 if (Lex.getKind() != lltok::AttrGrpID)
859 return TokError("expected attribute group id");
860
Bill Wendling63b88192013-02-06 06:52:58 +0000861 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000862 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000863 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000864 Lex.Lex();
865
866 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000867 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000868 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000869 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000870 ParseToken(lltok::rbrace, "expected end of attribute group"))
871 return true;
872
Bill Wendlingb32b0412013-02-08 06:32:06 +0000873 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000874 return Error(AttrGrpLoc, "attribute group has no attributes");
875
876 return false;
877}
878
Bill Wendling8b0321d2013-02-08 00:52:31 +0000879/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000880/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000881bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
882 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000883 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000884 bool HaveError = false;
885
886 B.clear();
887
Bill Wendling63b88192013-02-06 06:52:58 +0000888 while (true) {
889 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000890 if (Token == lltok::kw_builtin)
891 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000892 switch (Token) {
893 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000894 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000895 return Error(Lex.getLoc(), "unterminated attribute group");
896 case lltok::rbrace:
897 // Finished.
898 return false;
899
Bill Wendlingb32b0412013-02-08 06:32:06 +0000900 case lltok::AttrGrpID: {
901 // Allow a function to reference an attribute group:
902 //
903 // define void @foo() #1 { ... }
904 if (inAttrGrp)
905 HaveError |=
906 Error(Lex.getLoc(),
907 "cannot have an attribute group reference in an attribute group");
908
909 unsigned AttrGrpNum = Lex.getUIntVal();
910 if (inAttrGrp) break;
911
912 // Save the reference to the attribute group. We'll fill it in later.
913 FwdRefAttrGrps.push_back(AttrGrpNum);
914 break;
915 }
Bill Wendling63b88192013-02-06 06:52:58 +0000916 // Target-dependent attributes:
917 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +0000918 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +0000919 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000920 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000921 }
922
923 // Target-independent attributes:
924 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000925 // As a hack, we allow function alignment to be initially parsed as an
926 // attribute on a function declaration/definition or added to an attribute
927 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000928 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000929 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000930 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000931 if (ParseToken(lltok::equal, "expected '=' here") ||
932 ParseUInt32(Alignment))
933 return true;
934 } else {
935 if (ParseOptionalAlignment(Alignment))
936 return true;
937 }
Bill Wendling63b88192013-02-06 06:52:58 +0000938 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000939 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000940 }
941 case lltok::kw_alignstack: {
942 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000943 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000944 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000945 if (ParseToken(lltok::equal, "expected '=' here") ||
946 ParseUInt32(Alignment))
947 return true;
948 } else {
949 if (ParseOptionalStackAlignment(Alignment))
950 return true;
951 }
Bill Wendling63b88192013-02-06 06:52:58 +0000952 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000953 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000954 }
Igor Laevsky39d662f2015-07-11 10:30:36 +0000955 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
956 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
957 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
958 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
959 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
960 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
961 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
962 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
963 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
964 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
965 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
966 case lltok::kw_noimplicitfloat:
967 B.addAttribute(Attribute::NoImplicitFloat); break;
968 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
969 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
970 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
971 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
972 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
973 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
974 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
975 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
976 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
977 case lltok::kw_returns_twice:
978 B.addAttribute(Attribute::ReturnsTwice); break;
979 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
980 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
981 case lltok::kw_sspstrong:
982 B.addAttribute(Attribute::StackProtectStrong); break;
983 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
984 case lltok::kw_sanitize_address:
985 B.addAttribute(Attribute::SanitizeAddress); break;
986 case lltok::kw_sanitize_thread:
987 B.addAttribute(Attribute::SanitizeThread); break;
988 case lltok::kw_sanitize_memory:
989 B.addAttribute(Attribute::SanitizeMemory); break;
990 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000991
992 // Error handling.
993 case lltok::kw_inreg:
994 case lltok::kw_signext:
995 case lltok::kw_zeroext:
996 HaveError |=
997 Error(Lex.getLoc(),
998 "invalid use of attribute on a function");
999 break;
1000 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001001 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001002 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001003 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001004 case lltok::kw_nest:
1005 case lltok::kw_noalias:
1006 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001007 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001008 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001009 case lltok::kw_sret:
1010 HaveError |=
1011 Error(Lex.getLoc(),
1012 "invalid use of parameter-only attribute on a function");
1013 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001014 }
1015
1016 Lex.Lex();
1017 }
1018}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001019
1020//===----------------------------------------------------------------------===//
1021// GlobalValue Reference/Resolution Routines.
1022//===----------------------------------------------------------------------===//
1023
1024/// GetGlobalVal - Get a value with the specified name or ID, creating a
1025/// forward reference record if needed. This can return null if the value
1026/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001027GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001028 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001029 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001030 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001031 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001032 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001033 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001034
Chris Lattnerac161bf2009-01-02 07:01:27 +00001035 // Look this name up in the normal function symbol table.
1036 GlobalValue *Val =
1037 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001038
Chris Lattnerac161bf2009-01-02 07:01:27 +00001039 // If this is a forward reference for the value, see if we already created a
1040 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001041 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001042 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
1043 I = ForwardRefVals.find(Name);
1044 if (I != ForwardRefVals.end())
1045 Val = I->second.first;
1046 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001047
Chris Lattnerac161bf2009-01-02 07:01:27 +00001048 // If we have the value in the symbol table or fwd-ref table, return it.
1049 if (Val) {
1050 if (Val->getType() == Ty) return Val;
1051 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001052 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001053 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001054 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001055
Chris Lattnerac161bf2009-01-02 07:01:27 +00001056 // Otherwise, create a new forward reference for this value and remember it.
1057 GlobalValue *FwdVal;
Chris Lattner229907c2011-07-18 04:54:35 +00001058 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sandse2881052009-03-11 08:08:06 +00001059 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001060 else
Owen Andersonb17f3292009-07-08 19:03:57 +00001061 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Craig Topper2617dcc2014-04-15 06:32:26 +00001062 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1063 nullptr, GlobalVariable::NotThreadLocal,
Justin Holewinski898a0a02012-11-16 21:03:47 +00001064 PTy->getAddressSpace());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001065
Chris Lattnerac161bf2009-01-02 07:01:27 +00001066 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1067 return FwdVal;
1068}
1069
Chris Lattner229907c2011-07-18 04:54:35 +00001070GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1071 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001072 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001073 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001074 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001075 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001076
Craig Topper2617dcc2014-04-15 06:32:26 +00001077 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001078
Chris Lattnerac161bf2009-01-02 07:01:27 +00001079 // If this is a forward reference for the value, see if we already created a
1080 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001081 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001082 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1083 I = ForwardRefValIDs.find(ID);
1084 if (I != ForwardRefValIDs.end())
1085 Val = I->second.first;
1086 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001087
Chris Lattnerac161bf2009-01-02 07:01:27 +00001088 // If we have the value in the symbol table or fwd-ref table, return it.
1089 if (Val) {
1090 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001091 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001092 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001093 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001094 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001095
Chris Lattnerac161bf2009-01-02 07:01:27 +00001096 // Otherwise, create a new forward reference for this value and remember it.
1097 GlobalValue *FwdVal;
Chris Lattner229907c2011-07-18 04:54:35 +00001098 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sandse2881052009-03-11 08:08:06 +00001099 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001100 else
Owen Andersonb17f3292009-07-08 19:03:57 +00001101 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Craig Topper2617dcc2014-04-15 06:32:26 +00001102 GlobalValue::ExternalWeakLinkage, nullptr, "");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001103
Chris Lattnerac161bf2009-01-02 07:01:27 +00001104 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1105 return FwdVal;
1106}
1107
1108
1109//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001110// Comdat Reference/Resolution Routines.
1111//===----------------------------------------------------------------------===//
1112
1113Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1114 // Look this name up in the comdat symbol table.
1115 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1116 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1117 if (I != ComdatSymTab.end())
1118 return &I->second;
1119
1120 // Otherwise, create a new forward reference for this value and remember it.
1121 Comdat *C = M->getOrInsertComdat(Name);
1122 ForwardRefComdats[Name] = Loc;
1123 return C;
1124}
1125
1126
1127//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001128// Helper Routines.
1129//===----------------------------------------------------------------------===//
1130
1131/// ParseToken - If the current token has the specified kind, eat it and return
1132/// success. Otherwise, emit the specified error and return failure.
1133bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1134 if (Lex.getKind() != T)
1135 return TokError(ErrMsg);
1136 Lex.Lex();
1137 return false;
1138}
1139
Chris Lattner3822f632009-01-02 08:05:26 +00001140/// ParseStringConstant
1141/// ::= StringConstant
1142bool LLParser::ParseStringConstant(std::string &Result) {
1143 if (Lex.getKind() != lltok::StringConstant)
1144 return TokError("expected string constant");
1145 Result = Lex.getStrVal();
1146 Lex.Lex();
1147 return false;
1148}
1149
1150/// ParseUInt32
1151/// ::= uint32
1152bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001153 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1154 return TokError("expected integer");
1155 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1156 if (Val64 != unsigned(Val64))
1157 return TokError("expected 32-bit integer (too large)");
1158 Val = Val64;
1159 Lex.Lex();
1160 return false;
1161}
1162
Hal Finkelb0407ba2014-07-18 15:51:28 +00001163/// ParseUInt64
1164/// ::= uint64
1165bool LLParser::ParseUInt64(uint64_t &Val) {
1166 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1167 return TokError("expected integer");
1168 Val = Lex.getAPSIntVal().getLimitedValue();
1169 Lex.Lex();
1170 return false;
1171}
1172
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001173/// ParseTLSModel
1174/// := 'localdynamic'
1175/// := 'initialexec'
1176/// := 'localexec'
1177bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1178 switch (Lex.getKind()) {
1179 default:
1180 return TokError("expected localdynamic, initialexec or localexec");
1181 case lltok::kw_localdynamic:
1182 TLM = GlobalVariable::LocalDynamicTLSModel;
1183 break;
1184 case lltok::kw_initialexec:
1185 TLM = GlobalVariable::InitialExecTLSModel;
1186 break;
1187 case lltok::kw_localexec:
1188 TLM = GlobalVariable::LocalExecTLSModel;
1189 break;
1190 }
1191
1192 Lex.Lex();
1193 return false;
1194}
1195
1196/// ParseOptionalThreadLocal
1197/// := /*empty*/
1198/// := 'thread_local'
1199/// := 'thread_local' '(' tlsmodel ')'
1200bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1201 TLM = GlobalVariable::NotThreadLocal;
1202 if (!EatIfPresent(lltok::kw_thread_local))
1203 return false;
1204
1205 TLM = GlobalVariable::GeneralDynamicTLSModel;
1206 if (Lex.getKind() == lltok::lparen) {
1207 Lex.Lex();
1208 return ParseTLSModel(TLM) ||
1209 ParseToken(lltok::rparen, "expected ')' after thread local model");
1210 }
1211 return false;
1212}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001213
1214/// ParseOptionalAddrSpace
1215/// := /*empty*/
1216/// := 'addrspace' '(' uint32 ')'
1217bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1218 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001219 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001220 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001221 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001222 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001223 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001224}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001225
Artur Pilipenko17376c42015-08-03 14:31:49 +00001226/// ParseStringAttribute
1227/// := StringConstant
1228/// := StringConstant '=' StringConstant
1229bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1230 std::string Attr = Lex.getStrVal();
1231 Lex.Lex();
1232 std::string Val;
1233 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1234 return true;
1235 B.addAttribute(Attr, Val);
1236 return false;
1237}
1238
Bill Wendling34c2eb22012-12-04 23:40:58 +00001239/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1240bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1241 bool HaveError = false;
1242
1243 B.clear();
1244
1245 while (1) {
1246 lltok::Kind Token = Lex.getKind();
1247 switch (Token) {
1248 default: // End of attributes.
1249 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001250 case lltok::StringConstant: {
1251 if (ParseStringAttribute(B))
1252 return true;
1253 continue;
1254 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001255 case lltok::kw_align: {
1256 unsigned Alignment;
1257 if (ParseOptionalAlignment(Alignment))
1258 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001259 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001260 continue;
1261 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001262 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001263 case lltok::kw_dereferenceable: {
1264 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001265 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001266 return true;
1267 B.addDereferenceableAttr(Bytes);
1268 continue;
1269 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001270 case lltok::kw_dereferenceable_or_null: {
1271 uint64_t Bytes;
1272 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1273 return true;
1274 B.addDereferenceableOrNullAttr(Bytes);
1275 continue;
1276 }
Reid Klecknera534a382013-12-19 02:14:12 +00001277 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001278 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1279 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1280 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1281 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001282 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001283 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1284 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001285 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001286 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1287 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1288 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001289
Stephen Lin7577ed52013-04-20 13:16:13 +00001290 case lltok::kw_alignstack:
1291 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001292 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001293 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001294 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001295 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001296 case lltok::kw_minsize:
1297 case lltok::kw_naked:
1298 case lltok::kw_nobuiltin:
1299 case lltok::kw_noduplicate:
1300 case lltok::kw_noimplicitfloat:
1301 case lltok::kw_noinline:
1302 case lltok::kw_nonlazybind:
1303 case lltok::kw_noredzone:
1304 case lltok::kw_noreturn:
1305 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001306 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001307 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001308 case lltok::kw_returns_twice:
1309 case lltok::kw_sanitize_address:
1310 case lltok::kw_sanitize_memory:
1311 case lltok::kw_sanitize_thread:
1312 case lltok::kw_ssp:
1313 case lltok::kw_sspreq:
1314 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001315 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001316 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001317 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1318 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001319 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001320
Bill Wendling34c2eb22012-12-04 23:40:58 +00001321 Lex.Lex();
1322 }
1323}
1324
1325/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1326bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1327 bool HaveError = false;
1328
1329 B.clear();
1330
1331 while (1) {
1332 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001333 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001334 default: // End of attributes.
1335 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001336 case lltok::StringConstant: {
1337 if (ParseStringAttribute(B))
1338 return true;
1339 continue;
1340 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001341 case lltok::kw_dereferenceable: {
1342 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001343 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001344 return true;
1345 B.addDereferenceableAttr(Bytes);
1346 continue;
1347 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001348 case lltok::kw_dereferenceable_or_null: {
1349 uint64_t Bytes;
1350 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1351 return true;
1352 B.addDereferenceableOrNullAttr(Bytes);
1353 continue;
1354 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001355 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1356 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001357 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001358 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1359 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001360
Bill Wendling34c2eb22012-12-04 23:40:58 +00001361 // Error handling.
Stephen Lin7577ed52013-04-20 13:16:13 +00001362 case lltok::kw_align:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001363 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001364 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001365 case lltok::kw_nest:
1366 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001367 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001368 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001369 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001370 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001371
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001372 case lltok::kw_alignstack:
1373 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001374 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001375 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001376 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001377 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001378 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001379 case lltok::kw_minsize:
1380 case lltok::kw_naked:
1381 case lltok::kw_nobuiltin:
1382 case lltok::kw_noduplicate:
1383 case lltok::kw_noimplicitfloat:
1384 case lltok::kw_noinline:
1385 case lltok::kw_nonlazybind:
1386 case lltok::kw_noredzone:
1387 case lltok::kw_noreturn:
1388 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001389 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001390 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001391 case lltok::kw_returns_twice:
1392 case lltok::kw_sanitize_address:
1393 case lltok::kw_sanitize_memory:
1394 case lltok::kw_sanitize_thread:
1395 case lltok::kw_ssp:
1396 case lltok::kw_sspreq:
1397 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001398 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001399 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001400 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001401 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001402
1403 case lltok::kw_readnone:
1404 case lltok::kw_readonly:
1405 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001406 }
1407
Chris Lattnerac161bf2009-01-02 07:01:27 +00001408 Lex.Lex();
1409 }
1410}
1411
1412/// ParseOptionalLinkage
1413/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001414/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001415/// ::= 'internal'
1416/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001417/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001418/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001419/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001420/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001421/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001422/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001423/// ::= 'extern_weak'
1424/// ::= 'external'
1425bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1426 HasLinkage = false;
1427 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001428 default: Res=GlobalValue::ExternalLinkage; return false;
1429 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001430 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1431 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1432 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1433 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1434 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001435 case lltok::kw_available_externally:
1436 Res = GlobalValue::AvailableExternallyLinkage;
1437 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001438 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001439 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001440 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1441 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001442 }
1443 Lex.Lex();
1444 HasLinkage = true;
1445 return false;
1446}
1447
1448/// ParseOptionalVisibility
1449/// ::= /*empty*/
1450/// ::= 'default'
1451/// ::= 'hidden'
1452/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001453///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001454bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1455 switch (Lex.getKind()) {
1456 default: Res = GlobalValue::DefaultVisibility; return false;
1457 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1458 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1459 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1460 }
1461 Lex.Lex();
1462 return false;
1463}
1464
Nico Rieck7157bb72014-01-14 15:22:47 +00001465/// ParseOptionalDLLStorageClass
1466/// ::= /*empty*/
1467/// ::= 'dllimport'
1468/// ::= 'dllexport'
1469///
1470bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1471 switch (Lex.getKind()) {
1472 default: Res = GlobalValue::DefaultStorageClass; return false;
1473 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1474 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1475 }
1476 Lex.Lex();
1477 return false;
1478}
1479
Chris Lattnerac161bf2009-01-02 07:01:27 +00001480/// ParseOptionalCallingConv
1481/// ::= /*empty*/
1482/// ::= 'ccc'
1483/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001484/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001485/// ::= 'coldcc'
1486/// ::= 'x86_stdcallcc'
1487/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001488/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001489/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001490/// ::= 'arm_apcscc'
1491/// ::= 'arm_aapcscc'
1492/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001493/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001494/// ::= 'ptx_kernel'
1495/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001496/// ::= 'spir_func'
1497/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001498/// ::= 'x86_64_sysvcc'
1499/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001500/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001501/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001502/// ::= 'preserve_mostcc'
1503/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001504/// ::= 'ghccc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001505/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001506///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001507bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001508 switch (Lex.getKind()) {
1509 default: CC = CallingConv::C; return false;
1510 case lltok::kw_ccc: CC = CallingConv::C; break;
1511 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1512 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1513 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1514 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001515 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001516 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001517 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1518 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1519 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001520 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001521 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1522 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001523 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1524 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001525 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001526 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1527 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001528 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001529 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001530 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1531 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001532 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001533 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001534 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001535 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001536 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001537 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001538
Chris Lattnerac161bf2009-01-02 07:01:27 +00001539 Lex.Lex();
1540 return false;
1541}
1542
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001543/// ParseMetadataAttachment
1544/// ::= !dbg !42
1545bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1546 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1547
1548 std::string Name = Lex.getStrVal();
1549 Kind = M->getMDKindID(Name);
1550 Lex.Lex();
1551
1552 return ParseMDNode(MD);
1553}
1554
Chris Lattner5c427632009-12-30 05:31:19 +00001555/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001556/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001557bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001558 do {
1559 if (Lex.getKind() != lltok::MetadataVar)
1560 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001561
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001562 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001563 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001564 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001565 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001566
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001567 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001568 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001569 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001570
Chris Lattner596760d2009-12-29 21:25:40 +00001571 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001572 } while (EatIfPresent(lltok::comma));
1573 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001574}
1575
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001576/// ParseOptionalFunctionMetadata
1577/// ::= (!dbg !57)*
1578bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1579 while (Lex.getKind() == lltok::MetadataVar) {
1580 unsigned MDK;
1581 MDNode *N;
1582 if (ParseMetadataAttachment(MDK, N))
1583 return true;
1584
1585 F.setMetadata(MDK, N);
1586 }
1587 return false;
1588}
1589
Chris Lattnerac161bf2009-01-02 07:01:27 +00001590/// ParseOptionalAlignment
1591/// ::= /* empty */
1592/// ::= 'align' 4
1593bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1594 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001595 if (!EatIfPresent(lltok::kw_align))
1596 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001597 LocTy AlignLoc = Lex.getLoc();
1598 if (ParseUInt32(Alignment)) return true;
1599 if (!isPowerOf2_32(Alignment))
1600 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001601 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001602 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001603 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001604}
1605
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001606/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001607/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001608/// ::= AttrKind '(' 4 ')'
1609///
1610/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1611bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1612 uint64_t &Bytes) {
1613 assert((AttrKind == lltok::kw_dereferenceable ||
1614 AttrKind == lltok::kw_dereferenceable_or_null) &&
1615 "contract!");
1616
Hal Finkelb0407ba2014-07-18 15:51:28 +00001617 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001618 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001619 return false;
1620 LocTy ParenLoc = Lex.getLoc();
1621 if (!EatIfPresent(lltok::lparen))
1622 return Error(ParenLoc, "expected '('");
1623 LocTy DerefLoc = Lex.getLoc();
1624 if (ParseUInt64(Bytes)) return true;
1625 ParenLoc = Lex.getLoc();
1626 if (!EatIfPresent(lltok::rparen))
1627 return Error(ParenLoc, "expected ')'");
1628 if (!Bytes)
1629 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1630 return false;
1631}
1632
Chris Lattnerb2f39502009-12-30 05:44:30 +00001633/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001634/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001635/// ::= ',' align 4
1636///
1637/// This returns with AteExtraComma set to true if it ate an excess comma at the
1638/// end.
1639bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1640 bool &AteExtraComma) {
1641 AteExtraComma = false;
1642 while (EatIfPresent(lltok::comma)) {
1643 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001644 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001645 AteExtraComma = true;
1646 return false;
1647 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001648
Chris Lattner95b0ff42010-04-23 00:50:50 +00001649 if (Lex.getKind() != lltok::kw_align)
1650 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001651
Chris Lattner95b0ff42010-04-23 00:50:50 +00001652 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001653 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001654
Devang Patelea8a4b92009-09-17 23:04:48 +00001655 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001656}
1657
Eli Friedmanfee02c62011-07-25 23:16:38 +00001658/// ParseScopeAndOrdering
1659/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1660/// else: ::=
1661///
1662/// This sets Scope and Ordering to the parsed values.
1663bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1664 AtomicOrdering &Ordering) {
1665 if (!isAtomic)
1666 return false;
1667
1668 Scope = CrossThread;
1669 if (EatIfPresent(lltok::kw_singlethread))
1670 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001671
1672 return ParseOrdering(Ordering);
1673}
1674
1675/// ParseOrdering
1676/// ::= AtomicOrdering
1677///
1678/// This sets Ordering to the parsed value.
1679bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001680 switch (Lex.getKind()) {
1681 default: return TokError("Expected ordering on atomic instruction");
1682 case lltok::kw_unordered: Ordering = Unordered; break;
1683 case lltok::kw_monotonic: Ordering = Monotonic; break;
1684 case lltok::kw_acquire: Ordering = Acquire; break;
1685 case lltok::kw_release: Ordering = Release; break;
1686 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1687 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1688 }
1689 Lex.Lex();
1690 return false;
1691}
1692
Charles Davisbe5557e2010-02-12 00:31:15 +00001693/// ParseOptionalStackAlignment
1694/// ::= /* empty */
1695/// ::= 'alignstack' '(' 4 ')'
1696bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1697 Alignment = 0;
1698 if (!EatIfPresent(lltok::kw_alignstack))
1699 return false;
1700 LocTy ParenLoc = Lex.getLoc();
1701 if (!EatIfPresent(lltok::lparen))
1702 return Error(ParenLoc, "expected '('");
1703 LocTy AlignLoc = Lex.getLoc();
1704 if (ParseUInt32(Alignment)) return true;
1705 ParenLoc = Lex.getLoc();
1706 if (!EatIfPresent(lltok::rparen))
1707 return Error(ParenLoc, "expected ')'");
1708 if (!isPowerOf2_32(Alignment))
1709 return Error(AlignLoc, "stack alignment is not a power of two");
1710 return false;
1711}
Devang Patelea8a4b92009-09-17 23:04:48 +00001712
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001713/// ParseIndexList - This parses the index list for an insert/extractvalue
1714/// instruction. This sets AteExtraComma in the case where we eat an extra
1715/// comma at the end of the line and find that it is followed by metadata.
1716/// Clients that don't allow metadata can call the version of this function that
1717/// only takes one argument.
1718///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001719/// ParseIndexList
1720/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001721///
1722bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1723 bool &AteExtraComma) {
1724 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001725
Chris Lattnerac161bf2009-01-02 07:01:27 +00001726 if (Lex.getKind() != lltok::comma)
1727 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001728
Chris Lattner3822f632009-01-02 08:05:26 +00001729 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001730 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001731 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001732 AteExtraComma = true;
1733 return false;
1734 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001735 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001736 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001737 Indices.push_back(Idx);
1738 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001739
Chris Lattnerac161bf2009-01-02 07:01:27 +00001740 return false;
1741}
1742
1743//===----------------------------------------------------------------------===//
1744// Type Parsing.
1745//===----------------------------------------------------------------------===//
1746
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001747/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001748bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001749 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001750 switch (Lex.getKind()) {
1751 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001752 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001753 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001754 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001755 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001756 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001757 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001758 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001759 // Type ::= StructType
1760 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001761 return true;
1762 break;
1763 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001764 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001765 Lex.Lex(); // eat the lsquare.
1766 if (ParseArrayVectorType(Result, false))
1767 return true;
1768 break;
1769 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001770 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001771 Lex.Lex();
1772 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001773 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001774 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001775 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001776 } else if (ParseArrayVectorType(Result, true))
1777 return true;
1778 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001779 case lltok::LocalVar: {
1780 // Type ::= %foo
1781 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001782
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001783 // If the type hasn't been defined yet, create a forward definition and
1784 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001785 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001786 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001787 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001788 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001789 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001790 Lex.Lex();
1791 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001792 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001793
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001794 case lltok::LocalVarID: {
1795 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001796 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001797
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001798 // If the type hasn't been defined yet, create a forward definition and
1799 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001800 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001801 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001802 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001803 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001804 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001805 Lex.Lex();
1806 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001807 }
1808 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001809
1810 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001811 while (1) {
1812 switch (Lex.getKind()) {
1813 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001814 default:
1815 if (!AllowVoid && Result->isVoidTy())
1816 return Error(TypeLoc, "void type only allowed for function results");
1817 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001818
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001819 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001820 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001821 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001822 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001823 if (Result->isVoidTy())
1824 return TokError("pointers to void are invalid - use i8* instead");
1825 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001826 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001827 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001828 Lex.Lex();
1829 break;
1830
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001831 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001832 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001833 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001834 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001835 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001836 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001837 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001838 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001839 unsigned AddrSpace;
1840 if (ParseOptionalAddrSpace(AddrSpace) ||
1841 ParseToken(lltok::star, "expected '*' in address space"))
1842 return true;
1843
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001844 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001845 break;
1846 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001847
Chris Lattnerac161bf2009-01-02 07:01:27 +00001848 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1849 case lltok::lparen:
1850 if (ParseFunctionType(Result))
1851 return true;
1852 break;
1853 }
1854 }
1855}
1856
1857/// ParseParameterList
1858/// ::= '(' ')'
1859/// ::= '(' Arg (',' Arg)* ')'
1860/// Arg
1861/// ::= Type OptionalAttributes Value OptionalAttributes
1862bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001863 PerFunctionState &PFS, bool IsMustTailCall,
1864 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001865 if (ParseToken(lltok::lparen, "expected '(' in call"))
1866 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001867
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001868 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001869 while (Lex.getKind() != lltok::rparen) {
1870 // If this isn't the first argument, we need a comma.
1871 if (!ArgList.empty() &&
1872 ParseToken(lltok::comma, "expected ',' in argument list"))
1873 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001874
Reid Kleckner83498642014-08-26 00:33:28 +00001875 // Parse an ellipsis if this is a musttail call in a variadic function.
1876 if (Lex.getKind() == lltok::dotdotdot) {
1877 const char *Msg = "unexpected ellipsis in argument list for ";
1878 if (!IsMustTailCall)
1879 return TokError(Twine(Msg) + "non-musttail call");
1880 if (!InVarArgsFunc)
1881 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1882 Lex.Lex(); // Lex the '...', it is purely for readability.
1883 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1884 }
1885
Chris Lattnerac161bf2009-01-02 07:01:27 +00001886 // Parse the argument.
1887 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001888 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001889 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001890 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001891 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001892 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001893
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001894 if (ArgTy->isMetadataTy()) {
1895 if (ParseMetadataAsValue(V, PFS))
1896 return true;
1897 } else {
1898 // Otherwise, handle normal operands.
1899 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1900 return true;
1901 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001902 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1903 AttrIndex++,
1904 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001905 }
1906
Reid Kleckner83498642014-08-26 00:33:28 +00001907 if (IsMustTailCall && InVarArgsFunc)
1908 return TokError("expected '...' at end of argument list for musttail call "
1909 "in varargs function");
1910
Chris Lattnerac161bf2009-01-02 07:01:27 +00001911 Lex.Lex(); // Lex the ')'.
1912 return false;
1913}
1914
1915
1916
Chris Lattner2ed06b42009-01-05 18:34:07 +00001917/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001918/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001919/// ::= '(' ArgTypeListI ')'
1920/// ArgTypeListI
1921/// ::= /*empty*/
1922/// ::= '...'
1923/// ::= ArgTypeList ',' '...'
1924/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00001925///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001926bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1927 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00001928 isVarArg = false;
1929 assert(Lex.getKind() == lltok::lparen);
1930 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001931
Chris Lattnerac161bf2009-01-02 07:01:27 +00001932 if (Lex.getKind() == lltok::rparen) {
1933 // empty
1934 } else if (Lex.getKind() == lltok::dotdotdot) {
1935 isVarArg = true;
1936 Lex.Lex();
1937 } else {
1938 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00001939 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001940 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001941 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001942
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001943 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00001944 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001945
Chris Lattnerfdd87902009-10-05 05:54:46 +00001946 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001947 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001948
Chris Lattnerdef19492011-06-17 06:36:20 +00001949 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001950 Name = Lex.getStrVal();
1951 Lex.Lex();
1952 }
Chris Lattner3822f632009-01-02 08:05:26 +00001953
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001954 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00001955 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001956
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001957 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001958 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
1959 AttrIndex++, Attrs),
1960 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001961
Chris Lattner3822f632009-01-02 08:05:26 +00001962 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001963 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00001964 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001965 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001966 break;
1967 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001968
Chris Lattnerac161bf2009-01-02 07:01:27 +00001969 // Otherwise must be an argument type.
1970 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00001971 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00001972
Chris Lattnerfdd87902009-10-05 05:54:46 +00001973 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001974 return Error(TypeLoc, "argument can not have void type");
1975
Chris Lattnerdef19492011-06-17 06:36:20 +00001976 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001977 Name = Lex.getStrVal();
1978 Lex.Lex();
1979 } else {
1980 Name = "";
1981 }
Chris Lattner3822f632009-01-02 08:05:26 +00001982
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001983 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00001984 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001985
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001986 ArgList.emplace_back(
1987 TypeLoc, ArgTy,
1988 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
1989 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001990 }
1991 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001992
Chris Lattner3822f632009-01-02 08:05:26 +00001993 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001994}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001995
Chris Lattnerac161bf2009-01-02 07:01:27 +00001996/// ParseFunctionType
1997/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001998bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001999 assert(Lex.getKind() == lltok::lparen);
2000
Chris Lattnerce473c72009-01-05 08:04:33 +00002001 if (!FunctionType::isValidReturnType(Result))
2002 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002003
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002004 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002005 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002006 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002007 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002008
Chris Lattnerac161bf2009-01-02 07:01:27 +00002009 // Reject names on the arguments lists.
2010 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2011 if (!ArgList[i].Name.empty())
2012 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002013 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002014 return Error(ArgList[i].Loc,
2015 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002016 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002017
Jay Foadb804a2b2011-07-12 14:06:48 +00002018 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002019 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002020 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002021
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002022 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002023 return false;
2024}
2025
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002026/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2027/// other structs.
2028bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2029 SmallVector<Type*, 8> Elts;
2030 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002031
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002032 Result = StructType::get(Context, Elts, Packed);
2033 return false;
2034}
2035
2036/// ParseStructDefinition - Parse a struct in a 'type' definition.
2037bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2038 std::pair<Type*, LocTy> &Entry,
2039 Type *&ResultTy) {
2040 // If the type was already defined, diagnose the redefinition.
2041 if (Entry.first && !Entry.second.isValid())
2042 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002043
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002044 // If we have opaque, just return without filling in the definition for the
2045 // struct. This counts as a definition as far as the .ll file goes.
2046 if (EatIfPresent(lltok::kw_opaque)) {
2047 // This type is being defined, so clear the location to indicate this.
2048 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002049
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002050 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002051 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002052 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002053 ResultTy = Entry.first;
2054 return false;
2055 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002056
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002057 // If the type starts with '<', then it is either a packed struct or a vector.
2058 bool isPacked = EatIfPresent(lltok::less);
2059
2060 // If we don't have a struct, then we have a random type alias, which we
2061 // accept for compatibility with old files. These types are not allowed to be
2062 // forward referenced and not allowed to be recursive.
2063 if (Lex.getKind() != lltok::lbrace) {
2064 if (Entry.first)
2065 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002066
Craig Topper2617dcc2014-04-15 06:32:26 +00002067 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002068 if (isPacked)
2069 return ParseArrayVectorType(ResultTy, true);
2070 return ParseType(ResultTy);
2071 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002072
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002073 // This type is being defined, so clear the location to indicate this.
2074 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002075
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002076 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002077 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002078 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002079
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002080 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002081
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002082 SmallVector<Type*, 8> Body;
2083 if (ParseStructBody(Body) ||
2084 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2085 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002086
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002087 STy->setBody(Body, isPacked);
2088 ResultTy = STy;
2089 return false;
2090}
2091
2092
Chris Lattnerac161bf2009-01-02 07:01:27 +00002093/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002094/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002095/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002096/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002097/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002098/// ::= '<' '{' Type (',' Type)* '}' '>'
2099bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002100 assert(Lex.getKind() == lltok::lbrace);
2101 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002102
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002103 // Handle the empty struct.
2104 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002105 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002106
Chris Lattnerf880ca22009-03-09 04:49:14 +00002107 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002108 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002109 if (ParseType(Ty)) return true;
2110 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002111
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002112 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002113 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002114
Chris Lattner3822f632009-01-02 08:05:26 +00002115 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002116 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002117 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002118
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002119 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002120 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002121
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002122 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002123 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002124
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002125 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002126}
2127
2128/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2129/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002130/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002131/// ::= '[' APSINTVAL 'x' Types ']'
2132/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002133bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002134 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2135 Lex.getAPSIntVal().getBitWidth() > 64)
2136 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002137
Chris Lattnerac161bf2009-01-02 07:01:27 +00002138 LocTy SizeLoc = Lex.getLoc();
2139 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002140 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002141
Chris Lattner3822f632009-01-02 08:05:26 +00002142 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2143 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002144
2145 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002146 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002147 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002148
Chris Lattner3822f632009-01-02 08:05:26 +00002149 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2150 "expected end of sequential type"))
2151 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002152
Chris Lattnerac161bf2009-01-02 07:01:27 +00002153 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002154 if (Size == 0)
2155 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002156 if ((unsigned)Size != Size)
2157 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002158 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002159 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002160 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002161 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002162 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002163 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002164 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002165 }
2166 return false;
2167}
2168
2169//===----------------------------------------------------------------------===//
2170// Function Semantic Analysis.
2171//===----------------------------------------------------------------------===//
2172
Chris Lattner3432c622009-10-28 03:39:23 +00002173LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2174 int functionNumber)
2175 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002176
2177 // Insert unnamed arguments into the NumberedVals list.
2178 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2179 AI != E; ++AI)
2180 if (!AI->hasName())
2181 NumberedVals.push_back(AI);
2182}
2183
2184LLParser::PerFunctionState::~PerFunctionState() {
2185 // If there were any forward referenced non-basicblock values, delete them.
2186 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
2187 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
2188 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002189 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002190 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002191 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002192 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002193 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002194
Chris Lattnerac161bf2009-01-02 07:01:27 +00002195 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2196 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
2197 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002198 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002199 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002200 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002201 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002202 }
2203}
2204
Chris Lattner3432c622009-10-28 03:39:23 +00002205bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002206 if (!ForwardRefVals.empty())
2207 return P.Error(ForwardRefVals.begin()->second.second,
2208 "use of undefined value '%" + ForwardRefVals.begin()->first +
2209 "'");
2210 if (!ForwardRefValIDs.empty())
2211 return P.Error(ForwardRefValIDs.begin()->second.second,
2212 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002213 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002214 return false;
2215}
2216
2217
2218/// GetVal - Get a value with the specified name or ID, creating a
2219/// forward reference record if needed. This can return null if the value
2220/// exists but does not have the right type.
2221Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattner229907c2011-07-18 04:54:35 +00002222 Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002223 // Look this name up in the normal function symbol table.
2224 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002225
Chris Lattnerac161bf2009-01-02 07:01:27 +00002226 // If this is a forward reference for the value, see if we already created a
2227 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002228 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002229 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2230 I = ForwardRefVals.find(Name);
2231 if (I != ForwardRefVals.end())
2232 Val = I->second.first;
2233 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002234
Chris Lattnerac161bf2009-01-02 07:01:27 +00002235 // If we have the value in the symbol table or fwd-ref table, return it.
2236 if (Val) {
2237 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002238 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002239 P.Error(Loc, "'%" + Name + "' is not a basic block");
2240 else
2241 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002242 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002243 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002244 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002245
Chris Lattnerac161bf2009-01-02 07:01:27 +00002246 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002247 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002248 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002249 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002250 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002251
Chris Lattnerac161bf2009-01-02 07:01:27 +00002252 // Otherwise, create a new forward reference for this value and remember it.
2253 Value *FwdVal;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002254 if (Ty->isLabelTy())
Owen Anderson55f1c092009-08-13 21:58:54 +00002255 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002256 else
2257 FwdVal = new Argument(Ty, Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002258
Chris Lattnerac161bf2009-01-02 07:01:27 +00002259 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2260 return FwdVal;
2261}
2262
Chris Lattner229907c2011-07-18 04:54:35 +00002263Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00002264 LocTy Loc) {
2265 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002266 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002267
Chris Lattnerac161bf2009-01-02 07:01:27 +00002268 // If this is a forward reference for the value, see if we already created a
2269 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002270 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002271 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2272 I = ForwardRefValIDs.find(ID);
2273 if (I != ForwardRefValIDs.end())
2274 Val = I->second.first;
2275 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002276
Chris Lattnerac161bf2009-01-02 07:01:27 +00002277 // If we have the value in the symbol table or fwd-ref table, return it.
2278 if (Val) {
2279 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002280 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002281 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002282 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002283 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002284 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002285 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002286 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002287
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002288 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002289 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002290 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002291 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002292
Chris Lattnerac161bf2009-01-02 07:01:27 +00002293 // Otherwise, create a new forward reference for this value and remember it.
2294 Value *FwdVal;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002295 if (Ty->isLabelTy())
Owen Anderson55f1c092009-08-13 21:58:54 +00002296 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002297 else
2298 FwdVal = new Argument(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002299
Chris Lattnerac161bf2009-01-02 07:01:27 +00002300 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2301 return FwdVal;
2302}
2303
2304/// SetInstName - After an instruction is parsed and inserted into its
2305/// basic block, this installs its name.
2306bool LLParser::PerFunctionState::SetInstName(int NameID,
2307 const std::string &NameStr,
2308 LocTy NameLoc, Instruction *Inst) {
2309 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002310 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002311 if (NameID != -1 || !NameStr.empty())
2312 return P.Error(NameLoc, "instructions returning void cannot have a name");
2313 return false;
2314 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002315
Chris Lattnerac161bf2009-01-02 07:01:27 +00002316 // If this was a numbered instruction, verify that the instruction is the
2317 // expected value and resolve any forward references.
2318 if (NameStr.empty()) {
2319 // If neither a name nor an ID was specified, just use the next ID.
2320 if (NameID == -1)
2321 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002322
Chris Lattnerac161bf2009-01-02 07:01:27 +00002323 if (unsigned(NameID) != NumberedVals.size())
2324 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002325 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002326
Chris Lattnerac161bf2009-01-02 07:01:27 +00002327 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2328 ForwardRefValIDs.find(NameID);
2329 if (FI != ForwardRefValIDs.end()) {
2330 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002331 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002332 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002333 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2baa6a32009-09-02 15:02:57 +00002334 delete FI->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002335 ForwardRefValIDs.erase(FI);
2336 }
2337
2338 NumberedVals.push_back(Inst);
2339 return false;
2340 }
2341
2342 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2343 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2344 FI = ForwardRefVals.find(NameStr);
2345 if (FI != ForwardRefVals.end()) {
2346 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002347 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002348 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002349 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2fcee702009-09-02 14:22:03 +00002350 delete FI->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002351 ForwardRefVals.erase(FI);
2352 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002353
Chris Lattnerac161bf2009-01-02 07:01:27 +00002354 // Set the name on the instruction.
2355 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002356
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002357 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002358 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002359 NameStr + "'");
2360 return false;
2361}
2362
2363/// GetBB - Get a basic block with the specified name or ID, creating a
2364/// forward reference record if needed.
2365BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2366 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002367 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2368 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002369}
2370
2371BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002372 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2373 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002374}
2375
2376/// DefineBB - Define the specified basic block, which is either named or
2377/// unnamed. If there is an error, this returns null otherwise it returns
2378/// the block being defined.
2379BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2380 LocTy Loc) {
2381 BasicBlock *BB;
2382 if (Name.empty())
2383 BB = GetBB(NumberedVals.size(), Loc);
2384 else
2385 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002386 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002387
Chris Lattnerac161bf2009-01-02 07:01:27 +00002388 // Move the block to the end of the function. Forward ref'd blocks are
2389 // inserted wherever they happen to be referenced.
2390 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002391
Chris Lattnerac161bf2009-01-02 07:01:27 +00002392 // Remove the block from forward ref sets.
2393 if (Name.empty()) {
2394 ForwardRefValIDs.erase(NumberedVals.size());
2395 NumberedVals.push_back(BB);
2396 } else {
2397 // BB forward references are already in the function symbol table.
2398 ForwardRefVals.erase(Name);
2399 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002400
Chris Lattnerac161bf2009-01-02 07:01:27 +00002401 return BB;
2402}
2403
2404//===----------------------------------------------------------------------===//
2405// Constants.
2406//===----------------------------------------------------------------------===//
2407
2408/// ParseValID - Parse an abstract value that doesn't necessarily have a
2409/// type implied. For example, if we parse "4" we don't know what integer type
2410/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002411/// sanity. PFS is used to convert function-local operands of metadata (since
2412/// metadata operands are not just parsed here but also converted to values).
2413/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002414bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002415 ID.Loc = Lex.getLoc();
2416 switch (Lex.getKind()) {
2417 default: return TokError("expected value token");
2418 case lltok::GlobalID: // @42
2419 ID.UIntVal = Lex.getUIntVal();
2420 ID.Kind = ValID::t_GlobalID;
2421 break;
2422 case lltok::GlobalVar: // @foo
2423 ID.StrVal = Lex.getStrVal();
2424 ID.Kind = ValID::t_GlobalName;
2425 break;
2426 case lltok::LocalVarID: // %42
2427 ID.UIntVal = Lex.getUIntVal();
2428 ID.Kind = ValID::t_LocalID;
2429 break;
2430 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002431 ID.StrVal = Lex.getStrVal();
2432 ID.Kind = ValID::t_LocalName;
2433 break;
2434 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002435 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002436 ID.Kind = ValID::t_APSInt;
2437 break;
2438 case lltok::APFloat:
2439 ID.APFloatVal = Lex.getAPFloatVal();
2440 ID.Kind = ValID::t_APFloat;
2441 break;
2442 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002443 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002444 ID.Kind = ValID::t_Constant;
2445 break;
2446 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002447 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002448 ID.Kind = ValID::t_Constant;
2449 break;
2450 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2451 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2452 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002453
Chris Lattnerac161bf2009-01-02 07:01:27 +00002454 case lltok::lbrace: {
2455 // ValID ::= '{' ConstVector '}'
2456 Lex.Lex();
2457 SmallVector<Constant*, 16> Elts;
2458 if (ParseGlobalValueVector(Elts) ||
2459 ParseToken(lltok::rbrace, "expected end of struct constant"))
2460 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002461
David Blaikie1b770232015-08-01 05:10:40 +00002462 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002463 ID.UIntVal = Elts.size();
David Blaikie1b770232015-08-01 05:10:40 +00002464 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2465 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002466 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002467 return false;
2468 }
2469 case lltok::less: {
2470 // ValID ::= '<' ConstVector '>' --> Vector.
2471 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2472 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002473 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002474
Chris Lattnerac161bf2009-01-02 07:01:27 +00002475 SmallVector<Constant*, 16> Elts;
2476 LocTy FirstEltLoc = Lex.getLoc();
2477 if (ParseGlobalValueVector(Elts) ||
2478 (isPackedStruct &&
2479 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2480 ParseToken(lltok::greater, "expected end of constant"))
2481 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002482
Chris Lattnerac161bf2009-01-02 07:01:27 +00002483 if (isPackedStruct) {
David Blaikie1b770232015-08-01 05:10:40 +00002484 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2485 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2486 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002487 ID.UIntVal = Elts.size();
2488 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002489 return false;
2490 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002491
Chris Lattnerac161bf2009-01-02 07:01:27 +00002492 if (Elts.empty())
2493 return Error(ID.Loc, "constant vector must not be empty");
2494
Duncan Sands9dff9be2010-02-15 16:12:20 +00002495 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002496 !Elts[0]->getType()->isFloatingPointTy() &&
2497 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002498 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002499 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002500
Chris Lattnerac161bf2009-01-02 07:01:27 +00002501 // Verify that all the vector elements have the same type.
2502 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2503 if (Elts[i]->getType() != Elts[0]->getType())
2504 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002505 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002506 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002507
Chris Lattner69229312011-02-15 00:14:00 +00002508 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002509 ID.Kind = ValID::t_Constant;
2510 return false;
2511 }
2512 case lltok::lsquare: { // Array Constant
2513 Lex.Lex();
2514 SmallVector<Constant*, 16> Elts;
2515 LocTy FirstEltLoc = Lex.getLoc();
2516 if (ParseGlobalValueVector(Elts) ||
2517 ParseToken(lltok::rsquare, "expected end of array constant"))
2518 return true;
2519
2520 // Handle empty element.
2521 if (Elts.empty()) {
2522 // Use undef instead of an array because it's inconvenient to determine
2523 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002524 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002525 return false;
2526 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002527
Chris Lattnerac161bf2009-01-02 07:01:27 +00002528 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002529 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002530 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002531
Owen Anderson4056ca92009-07-29 22:17:13 +00002532 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002533
Chris Lattnerac161bf2009-01-02 07:01:27 +00002534 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002535 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002536 if (Elts[i]->getType() != Elts[0]->getType())
2537 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002538 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002539 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002540 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002541
Jay Foad83be3612011-06-22 09:24:39 +00002542 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002543 ID.Kind = ValID::t_Constant;
2544 return false;
2545 }
2546 case lltok::kw_c: // c "foo"
2547 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002548 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2549 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002550 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2551 ID.Kind = ValID::t_Constant;
2552 return false;
2553
2554 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002555 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2556 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002557 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002558 Lex.Lex();
2559 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002560 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002561 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002562 ParseStringConstant(ID.StrVal) ||
2563 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002564 ParseToken(lltok::StringConstant, "expected constraint string"))
2565 return true;
2566 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002567 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002568 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002569 ID.Kind = ValID::t_InlineAsm;
2570 return false;
2571 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002572
Chris Lattner3432c622009-10-28 03:39:23 +00002573 case lltok::kw_blockaddress: {
2574 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2575 Lex.Lex();
2576
2577 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002578
Chris Lattner3432c622009-10-28 03:39:23 +00002579 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2580 ParseValID(Fn) ||
2581 ParseToken(lltok::comma, "expected comma in block address expression")||
2582 ParseValID(Label) ||
2583 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2584 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002585
Chris Lattner3432c622009-10-28 03:39:23 +00002586 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2587 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002588 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002589 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002590
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002591 // Try to find the function (but skip it if it's forward-referenced).
2592 GlobalValue *GV = nullptr;
2593 if (Fn.Kind == ValID::t_GlobalID) {
2594 if (Fn.UIntVal < NumberedVals.size())
2595 GV = NumberedVals[Fn.UIntVal];
2596 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2597 GV = M->getNamedValue(Fn.StrVal);
2598 }
2599 Function *F = nullptr;
2600 if (GV) {
2601 // Confirm that it's actually a function with a definition.
2602 if (!isa<Function>(GV))
2603 return Error(Fn.Loc, "expected function name in blockaddress");
2604 F = cast<Function>(GV);
2605 if (F->isDeclaration())
2606 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2607 }
2608
2609 if (!F) {
2610 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002611 GlobalValue *&FwdRef =
2612 ForwardRefBlockAddresses.insert(std::make_pair(
2613 std::move(Fn),
2614 std::map<ValID, GlobalValue *>()))
2615 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2616 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002617 if (!FwdRef)
2618 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2619 GlobalValue::InternalLinkage, nullptr, "");
2620 ID.ConstantVal = FwdRef;
2621 ID.Kind = ValID::t_Constant;
2622 return false;
2623 }
2624
2625 // We found the function; now find the basic block. Don't use PFS, since we
2626 // might be inside a constant expression.
2627 BasicBlock *BB;
2628 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2629 if (Label.Kind == ValID::t_LocalID)
2630 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2631 else
2632 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2633 if (!BB)
2634 return Error(Label.Loc, "referenced value is not a basic block");
2635 } else {
2636 if (Label.Kind == ValID::t_LocalID)
2637 return Error(Label.Loc, "cannot take address of numeric label after "
2638 "the function is defined");
2639 BB = dyn_cast_or_null<BasicBlock>(
2640 F->getValueSymbolTable().lookup(Label.StrVal));
2641 if (!BB)
2642 return Error(Label.Loc, "referenced value is not a basic block");
2643 }
2644
2645 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002646 ID.Kind = ValID::t_Constant;
2647 return false;
2648 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002649
Chris Lattnerac161bf2009-01-02 07:01:27 +00002650 case lltok::kw_trunc:
2651 case lltok::kw_zext:
2652 case lltok::kw_sext:
2653 case lltok::kw_fptrunc:
2654 case lltok::kw_fpext:
2655 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002656 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002657 case lltok::kw_uitofp:
2658 case lltok::kw_sitofp:
2659 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002660 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002661 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002662 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002663 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002664 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002665 Constant *SrcVal;
2666 Lex.Lex();
2667 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2668 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002669 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002670 ParseType(DestTy) ||
2671 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2672 return true;
2673 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2674 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002675 getTypeString(SrcVal->getType()) + "' to '" +
2676 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002677 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002678 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002679 ID.Kind = ValID::t_Constant;
2680 return false;
2681 }
2682 case lltok::kw_extractvalue: {
2683 Lex.Lex();
2684 Constant *Val;
2685 SmallVector<unsigned, 4> Indices;
2686 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2687 ParseGlobalTypeAndValue(Val) ||
2688 ParseIndexList(Indices) ||
2689 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2690 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002691
Chris Lattner392be582010-02-12 20:49:41 +00002692 if (!Val->getType()->isAggregateType())
2693 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002694 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002695 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002696 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002697 ID.Kind = ValID::t_Constant;
2698 return false;
2699 }
2700 case lltok::kw_insertvalue: {
2701 Lex.Lex();
2702 Constant *Val0, *Val1;
2703 SmallVector<unsigned, 4> Indices;
2704 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2705 ParseGlobalTypeAndValue(Val0) ||
2706 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2707 ParseGlobalTypeAndValue(Val1) ||
2708 ParseIndexList(Indices) ||
2709 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2710 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002711 if (!Val0->getType()->isAggregateType())
2712 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002713 Type *IndexedType =
2714 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2715 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002716 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002717 if (IndexedType != Val1->getType())
2718 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2719 getTypeString(Val1->getType()) +
2720 "' instead of '" + getTypeString(IndexedType) +
2721 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002722 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002723 ID.Kind = ValID::t_Constant;
2724 return false;
2725 }
2726 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002727 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002728 unsigned PredVal, Opc = Lex.getUIntVal();
2729 Constant *Val0, *Val1;
2730 Lex.Lex();
2731 if (ParseCmpPredicate(PredVal, Opc) ||
2732 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2733 ParseGlobalTypeAndValue(Val0) ||
2734 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2735 ParseGlobalTypeAndValue(Val1) ||
2736 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2737 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002738
Chris Lattnerac161bf2009-01-02 07:01:27 +00002739 if (Val0->getType() != Val1->getType())
2740 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002741
Chris Lattnerac161bf2009-01-02 07:01:27 +00002742 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002743
Chris Lattnerac161bf2009-01-02 07:01:27 +00002744 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002745 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002746 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002747 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002748 } else {
2749 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002750 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002751 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002752 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002753 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002754 }
2755 ID.Kind = ValID::t_Constant;
2756 return false;
2757 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002758
Chris Lattnerac161bf2009-01-02 07:01:27 +00002759 // Binary Operators.
2760 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002761 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002762 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002763 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002764 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002765 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002766 case lltok::kw_udiv:
2767 case lltok::kw_sdiv:
2768 case lltok::kw_fdiv:
2769 case lltok::kw_urem:
2770 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002771 case lltok::kw_frem:
2772 case lltok::kw_shl:
2773 case lltok::kw_lshr:
2774 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002775 bool NUW = false;
2776 bool NSW = false;
2777 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002778 unsigned Opc = Lex.getUIntVal();
2779 Constant *Val0, *Val1;
2780 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002781 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002782 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2783 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002784 if (EatIfPresent(lltok::kw_nuw))
2785 NUW = true;
2786 if (EatIfPresent(lltok::kw_nsw)) {
2787 NSW = true;
2788 if (EatIfPresent(lltok::kw_nuw))
2789 NUW = true;
2790 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002791 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2792 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002793 if (EatIfPresent(lltok::kw_exact))
2794 Exact = true;
2795 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002796 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2797 ParseGlobalTypeAndValue(Val0) ||
2798 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2799 ParseGlobalTypeAndValue(Val1) ||
2800 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2801 return true;
2802 if (Val0->getType() != Val1->getType())
2803 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002804 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002805 if (NUW)
2806 return Error(ModifierLoc, "nuw only applies to integer operations");
2807 if (NSW)
2808 return Error(ModifierLoc, "nsw only applies to integer operations");
2809 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002810 // Check that the type is valid for the operator.
2811 switch (Opc) {
2812 case Instruction::Add:
2813 case Instruction::Sub:
2814 case Instruction::Mul:
2815 case Instruction::UDiv:
2816 case Instruction::SDiv:
2817 case Instruction::URem:
2818 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002819 case Instruction::Shl:
2820 case Instruction::AShr:
2821 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002822 if (!Val0->getType()->isIntOrIntVectorTy())
2823 return Error(ID.Loc, "constexpr requires integer operands");
2824 break;
2825 case Instruction::FAdd:
2826 case Instruction::FSub:
2827 case Instruction::FMul:
2828 case Instruction::FDiv:
2829 case Instruction::FRem:
2830 if (!Val0->getType()->isFPOrFPVectorTy())
2831 return Error(ID.Loc, "constexpr requires fp operands");
2832 break;
2833 default: llvm_unreachable("Unknown binary operator!");
2834 }
Dan Gohman1b849082009-09-07 23:54:19 +00002835 unsigned Flags = 0;
2836 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2837 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002838 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002839 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002840 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002841 ID.Kind = ValID::t_Constant;
2842 return false;
2843 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002844
Chris Lattnerac161bf2009-01-02 07:01:27 +00002845 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002846 case lltok::kw_and:
2847 case lltok::kw_or:
2848 case lltok::kw_xor: {
2849 unsigned Opc = Lex.getUIntVal();
2850 Constant *Val0, *Val1;
2851 Lex.Lex();
2852 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2853 ParseGlobalTypeAndValue(Val0) ||
2854 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2855 ParseGlobalTypeAndValue(Val1) ||
2856 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2857 return true;
2858 if (Val0->getType() != Val1->getType())
2859 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002860 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002861 return Error(ID.Loc,
2862 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002863 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002864 ID.Kind = ValID::t_Constant;
2865 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002866 }
2867
Chris Lattnerac161bf2009-01-02 07:01:27 +00002868 case lltok::kw_getelementptr:
2869 case lltok::kw_shufflevector:
2870 case lltok::kw_insertelement:
2871 case lltok::kw_extractelement:
2872 case lltok::kw_select: {
2873 unsigned Opc = Lex.getUIntVal();
2874 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002875 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00002876 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002877 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00002878
Dan Gohman1639c392009-07-27 21:53:46 +00002879 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002880 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00002881
2882 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2883 return true;
2884
2885 LocTy ExplicitTypeLoc = Lex.getLoc();
2886 if (Opc == Instruction::GetElementPtr) {
2887 if (ParseType(Ty) ||
2888 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2889 return true;
2890 }
2891
2892 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002893 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2894 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002895
Chris Lattnerac161bf2009-01-02 07:01:27 +00002896 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00002897 if (Elts.size() == 0 ||
2898 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00002899 return Error(ID.Loc, "base of getelementptr must be a pointer");
2900
2901 Type *BaseType = Elts[0]->getType();
2902 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00002903 if (Ty != BasePointerType->getElementType())
2904 return Error(
2905 ExplicitTypeLoc,
2906 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002907
Jay Foaded8db7d2011-07-21 14:31:17 +00002908 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00002909 for (Constant *Val : Indices) {
2910 Type *ValTy = Val->getType();
2911 if (!ValTy->getScalarType()->isIntegerTy())
2912 return Error(ID.Loc, "getelementptr index must be an integer");
2913 if (ValTy->isVectorTy() != BaseType->isVectorTy())
2914 return Error(ID.Loc, "getelementptr index type missmatch");
2915 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00002916 unsigned ValNumEl = ValTy->getVectorNumElements();
2917 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00002918 if (ValNumEl != PtrNumEl)
2919 return Error(
2920 ID.Loc,
2921 "getelementptr vector index has a wrong number of elements");
2922 }
2923 }
2924
Craig Toppere3dcce92015-08-01 22:20:21 +00002925 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00002926 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00002927 return Error(ID.Loc, "base element of getelementptr must be sized");
2928
David Blaikie4a2e73b2015-04-02 18:55:32 +00002929 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00002930 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00002931 ID.ConstantVal =
2932 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002933 } else if (Opc == Instruction::Select) {
2934 if (Elts.size() != 3)
2935 return Error(ID.Loc, "expected three operands to select");
2936 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2937 Elts[2]))
2938 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00002939 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002940 } else if (Opc == Instruction::ShuffleVector) {
2941 if (Elts.size() != 3)
2942 return Error(ID.Loc, "expected three operands to shufflevector");
2943 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2944 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00002945 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002946 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002947 } else if (Opc == Instruction::ExtractElement) {
2948 if (Elts.size() != 2)
2949 return Error(ID.Loc, "expected two operands to extractelement");
2950 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2951 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002952 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002953 } else {
2954 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2955 if (Elts.size() != 3)
2956 return Error(ID.Loc, "expected three operands to insertelement");
2957 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2958 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00002959 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002960 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002961 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002962
Chris Lattnerac161bf2009-01-02 07:01:27 +00002963 ID.Kind = ValID::t_Constant;
2964 return false;
2965 }
2966 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002967
Chris Lattnerac161bf2009-01-02 07:01:27 +00002968 Lex.Lex();
2969 return false;
2970}
2971
2972/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00002973bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002974 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002975 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00002976 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00002977 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00002978 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002979 if (V && !(C = dyn_cast<Constant>(V)))
2980 return Error(ID.Loc, "global values must be constants");
2981 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002982}
2983
Victor Hernandez9d75c962010-01-11 22:31:58 +00002984bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002985 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002986 return ParseType(Ty) ||
2987 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002988}
2989
Rafael Espindola83a362c2015-01-06 22:55:16 +00002990bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00002991 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00002992
2993 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00002994 if (!EatIfPresent(lltok::kw_comdat))
2995 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00002996
2997 if (EatIfPresent(lltok::lparen)) {
2998 if (Lex.getKind() != lltok::ComdatVar)
2999 return TokError("expected comdat variable");
3000 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3001 Lex.Lex();
3002 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3003 return true;
3004 } else {
3005 if (GlobalName.empty())
3006 return TokError("comdat cannot be unnamed");
3007 C = getComdat(GlobalName, KwLoc);
3008 }
3009
David Majnemerdad0a642014-06-27 18:19:56 +00003010 return false;
3011}
3012
Victor Hernandez9d75c962010-01-11 22:31:58 +00003013/// ParseGlobalValueVector
3014/// ::= /*empty*/
3015/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003016bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003017 // Empty list.
3018 if (Lex.getKind() == lltok::rbrace ||
3019 Lex.getKind() == lltok::rsquare ||
3020 Lex.getKind() == lltok::greater ||
3021 Lex.getKind() == lltok::rparen)
3022 return false;
3023
3024 Constant *C;
3025 if (ParseGlobalTypeAndValue(C)) return true;
3026 Elts.push_back(C);
3027
3028 while (EatIfPresent(lltok::comma)) {
3029 if (ParseGlobalTypeAndValue(C)) return true;
3030 Elts.push_back(C);
3031 }
3032
3033 return false;
3034}
3035
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003036bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003037 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003038 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003039 return true;
3040
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003041 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003042 return false;
3043}
3044
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003045/// MDNode:
3046/// ::= !{ ... }
3047/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003048/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003049bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003050 if (Lex.getKind() == lltok::MetadataVar)
3051 return ParseSpecializedMDNode(N);
3052
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003053 return ParseToken(lltok::exclaim, "expected '!' here") ||
3054 ParseMDNodeTail(N);
3055}
3056
3057bool LLParser::ParseMDNodeTail(MDNode *&N) {
3058 // !{ ... }
3059 if (Lex.getKind() == lltok::lbrace)
3060 return ParseMDTuple(N);
3061
3062 // !42
3063 return ParseMDNodeID(N);
3064}
3065
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003066namespace {
3067
3068/// Structure to represent an optional metadata field.
3069template <class FieldTy> struct MDFieldImpl {
3070 typedef MDFieldImpl ImplTy;
3071 FieldTy Val;
3072 bool Seen;
3073
3074 void assign(FieldTy Val) {
3075 Seen = true;
3076 this->Val = std::move(Val);
3077 }
3078
3079 explicit MDFieldImpl(FieldTy Default)
3080 : Val(std::move(Default)), Seen(false) {}
3081};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003082
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003083struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3084 uint64_t Max;
3085
3086 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3087 : ImplTy(Default), Max(Max) {}
3088};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003089struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003090 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003091};
3092struct ColumnField : public MDUnsignedField {
3093 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3094};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003095struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003096 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003097 DwarfTagField(dwarf::Tag DefaultTag)
3098 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003099};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003100struct DwarfAttEncodingField : public MDUnsignedField {
3101 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3102};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003103struct DwarfVirtualityField : public MDUnsignedField {
3104 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3105};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003106struct DwarfLangField : public MDUnsignedField {
3107 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3108};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003109
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003110struct DIFlagField : public MDUnsignedField {
3111 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3112};
3113
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003114struct MDSignedField : public MDFieldImpl<int64_t> {
3115 int64_t Min;
3116 int64_t Max;
3117
3118 MDSignedField(int64_t Default = 0)
3119 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3120 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3121 : ImplTy(Default), Min(Min), Max(Max) {}
3122};
3123
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003124struct MDBoolField : public MDFieldImpl<bool> {
3125 MDBoolField(bool Default = false) : ImplTy(Default) {}
3126};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003127struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003128 bool AllowNull;
3129
3130 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003131};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003132struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3133 MDConstant() : ImplTy(nullptr) {}
3134};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003135struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003136 bool AllowEmpty;
3137 MDStringField(bool AllowEmpty = true)
3138 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003139};
3140struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3141 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3142};
3143
3144} // end namespace
3145
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003146namespace llvm {
3147
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003148template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003149bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003150 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003151 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3152 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003153
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003154 auto &U = Lex.getAPSIntVal();
3155 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003156 return TokError("value for '" + Name + "' too large, limit is " +
3157 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003158 Result.assign(U.getZExtValue());
3159 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003160 Lex.Lex();
3161 return false;
3162}
3163
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003164template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003165bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3166 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3167}
3168template <>
3169bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3170 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3171}
3172
3173template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003174bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3175 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003176 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003177
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003178 if (Lex.getKind() != lltok::DwarfTag)
3179 return TokError("expected DWARF tag");
3180
3181 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3182 if (Tag == dwarf::DW_TAG_invalid)
3183 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003184 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003185
3186 Result.assign(Tag);
3187 Lex.Lex();
3188 return false;
3189}
3190
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003191template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003192bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3193 DwarfVirtualityField &Result) {
3194 if (Lex.getKind() == lltok::APSInt)
3195 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3196
3197 if (Lex.getKind() != lltok::DwarfVirtuality)
3198 return TokError("expected DWARF virtuality code");
3199
3200 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3201 if (!Virtuality)
3202 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3203 Lex.getStrVal() + "'");
3204 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3205 Result.assign(Virtuality);
3206 Lex.Lex();
3207 return false;
3208}
3209
3210template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003211bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3212 if (Lex.getKind() == lltok::APSInt)
3213 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3214
3215 if (Lex.getKind() != lltok::DwarfLang)
3216 return TokError("expected DWARF language");
3217
3218 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3219 if (!Lang)
3220 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3221 "'");
3222 assert(Lang <= Result.Max && "Expected valid DWARF language");
3223 Result.assign(Lang);
3224 Lex.Lex();
3225 return false;
3226}
3227
3228template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003229bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003230 DwarfAttEncodingField &Result) {
3231 if (Lex.getKind() == lltok::APSInt)
3232 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3233
3234 if (Lex.getKind() != lltok::DwarfAttEncoding)
3235 return TokError("expected DWARF type attribute encoding");
3236
3237 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3238 if (!Encoding)
3239 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3240 Lex.getStrVal() + "'");
3241 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3242 Result.assign(Encoding);
3243 Lex.Lex();
3244 return false;
3245}
3246
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003247/// DIFlagField
3248/// ::= uint32
3249/// ::= DIFlagVector
3250/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3251template <>
3252bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3253 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3254
3255 // Parser for a single flag.
3256 auto parseFlag = [&](unsigned &Val) {
3257 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3258 return ParseUInt32(Val);
3259
3260 if (Lex.getKind() != lltok::DIFlag)
3261 return TokError("expected debug info flag");
3262
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003263 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003264 if (!Val)
3265 return TokError(Twine("invalid debug info flag flag '") +
3266 Lex.getStrVal() + "'");
3267 Lex.Lex();
3268 return false;
3269 };
3270
3271 // Parse the flags and combine them together.
3272 unsigned Combined = 0;
3273 do {
3274 unsigned Val;
3275 if (parseFlag(Val))
3276 return true;
3277 Combined |= Val;
3278 } while (EatIfPresent(lltok::bar));
3279
3280 Result.assign(Combined);
3281 return false;
3282}
3283
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003284template <>
3285bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003286 MDSignedField &Result) {
3287 if (Lex.getKind() != lltok::APSInt)
3288 return TokError("expected signed integer");
3289
3290 auto &S = Lex.getAPSIntVal();
3291 if (S < Result.Min)
3292 return TokError("value for '" + Name + "' too small, limit is " +
3293 Twine(Result.Min));
3294 if (S > Result.Max)
3295 return TokError("value for '" + Name + "' too large, limit is " +
3296 Twine(Result.Max));
3297 Result.assign(S.getExtValue());
3298 assert(Result.Val >= Result.Min && "Expected value in range");
3299 assert(Result.Val <= Result.Max && "Expected value in range");
3300 Lex.Lex();
3301 return false;
3302}
3303
3304template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003305bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3306 switch (Lex.getKind()) {
3307 default:
3308 return TokError("expected 'true' or 'false'");
3309 case lltok::kw_true:
3310 Result.assign(true);
3311 break;
3312 case lltok::kw_false:
3313 Result.assign(false);
3314 break;
3315 }
3316 Lex.Lex();
3317 return false;
3318}
3319
3320template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003321bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003322 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003323 if (!Result.AllowNull)
3324 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003325 Lex.Lex();
3326 Result.assign(nullptr);
3327 return false;
3328 }
3329
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003330 Metadata *MD;
3331 if (ParseMetadata(MD, nullptr))
3332 return true;
3333
3334 Result.assign(MD);
3335 return false;
3336}
3337
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003338template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003339bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3340 Metadata *MD;
3341 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3342 return true;
3343
3344 Result.assign(cast<ConstantAsMetadata>(MD));
3345 return false;
3346}
3347
3348template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003349bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003350 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003351 std::string S;
3352 if (ParseStringConstant(S))
3353 return true;
3354
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003355 if (!Result.AllowEmpty && S.empty())
3356 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3357
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003358 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003359 return false;
3360}
3361
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003362template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003363bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3364 SmallVector<Metadata *, 4> MDs;
3365 if (ParseMDNodeVector(MDs))
3366 return true;
3367
3368 Result.assign(std::move(MDs));
3369 return false;
3370}
3371
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003372} // end namespace llvm
3373
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003374template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003375bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003376 do {
3377 if (Lex.getKind() != lltok::LabelStr)
3378 return TokError("expected field label here");
3379
3380 if (parseField())
3381 return true;
3382 } while (EatIfPresent(lltok::comma));
3383
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003384 return false;
3385}
3386
3387template <class ParserTy>
3388bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3389 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3390 Lex.Lex();
3391
3392 if (ParseToken(lltok::lparen, "expected '(' here"))
3393 return true;
3394 if (Lex.getKind() != lltok::rparen)
3395 if (ParseMDFieldsImplBody(parseField))
3396 return true;
3397
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003398 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003399 return ParseToken(lltok::rparen, "expected ')' here");
3400}
3401
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003402template <class FieldTy>
3403bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3404 if (Result.Seen)
3405 return TokError("field '" + Name + "' cannot be specified more than once");
3406
3407 LocTy Loc = Lex.getLoc();
3408 Lex.Lex();
3409 return ParseMDField(Loc, Name, Result);
3410}
3411
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003412bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3413 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003414
3415#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003416 if (Lex.getStrVal() == #CLASS) \
3417 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003418#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003419
3420 return TokError("expected metadata type");
3421}
3422
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003423#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3424#define NOP_FIELD(NAME, TYPE, INIT)
3425#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3426 if (!NAME.Seen) \
3427 return Error(ClosingLoc, "missing required field '" #NAME "'");
3428#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003429 if (Lex.getStrVal() == #NAME) \
3430 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003431#define PARSE_MD_FIELDS() \
3432 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3433 do { \
3434 LocTy ClosingLoc; \
3435 if (ParseMDFieldsImpl([&]() -> bool { \
3436 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3437 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3438 }, ClosingLoc)) \
3439 return true; \
3440 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3441 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003442#define GET_OR_DISTINCT(CLASS, ARGS) \
3443 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003444
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003445/// ParseDILocationFields:
3446/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3447bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003448#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003449 OPTIONAL(line, LineField, ); \
3450 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003451 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003452 OPTIONAL(inlinedAt, MDField, );
3453 PARSE_MD_FIELDS();
3454#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003455
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003456 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003457 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003458 return false;
3459}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003460
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003461/// ParseGenericDINode:
3462/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3463bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003464#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003465 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003466 OPTIONAL(header, MDStringField, ); \
3467 OPTIONAL(operands, MDFieldList, );
3468 PARSE_MD_FIELDS();
3469#undef VISIT_MD_FIELDS
3470
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003471 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003472 (Context, tag.Val, header.Val, operands.Val));
3473 return false;
3474}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003475
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003476/// ParseDISubrange:
3477/// ::= !DISubrange(count: 30, lowerBound: 2)
3478bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003479#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003480 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003481 OPTIONAL(lowerBound, MDSignedField, );
3482 PARSE_MD_FIELDS();
3483#undef VISIT_MD_FIELDS
3484
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003485 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003486 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003487}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003488
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003489/// ParseDIEnumerator:
3490/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3491bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003492#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003493 REQUIRED(name, MDStringField, ); \
3494 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003495 PARSE_MD_FIELDS();
3496#undef VISIT_MD_FIELDS
3497
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003498 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003499 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003500}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003501
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003502/// ParseDIBasicType:
3503/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3504bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003505#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003506 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003507 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003508 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3509 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003510 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003511 PARSE_MD_FIELDS();
3512#undef VISIT_MD_FIELDS
3513
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003514 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003515 align.Val, encoding.Val));
3516 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003517}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003518
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003519/// ParseDIDerivedType:
3520/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003521/// line: 7, scope: !1, baseType: !2, size: 32,
3522/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003523bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003524#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3525 REQUIRED(tag, DwarfTagField, ); \
3526 OPTIONAL(name, MDStringField, ); \
3527 OPTIONAL(file, MDField, ); \
3528 OPTIONAL(line, LineField, ); \
3529 OPTIONAL(scope, MDField, ); \
3530 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003531 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3532 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3533 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003534 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003535 OPTIONAL(extraData, MDField, );
3536 PARSE_MD_FIELDS();
3537#undef VISIT_MD_FIELDS
3538
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003539 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003540 (Context, tag.Val, name.Val, file.Val, line.Val,
3541 scope.Val, baseType.Val, size.Val, align.Val,
3542 offset.Val, flags.Val, extraData.Val));
3543 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003544}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003545
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003546bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003547#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3548 REQUIRED(tag, DwarfTagField, ); \
3549 OPTIONAL(name, MDStringField, ); \
3550 OPTIONAL(file, MDField, ); \
3551 OPTIONAL(line, LineField, ); \
3552 OPTIONAL(scope, MDField, ); \
3553 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003554 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3555 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3556 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003557 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003558 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003559 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003560 OPTIONAL(vtableHolder, MDField, ); \
3561 OPTIONAL(templateParams, MDField, ); \
3562 OPTIONAL(identifier, MDStringField, );
3563 PARSE_MD_FIELDS();
3564#undef VISIT_MD_FIELDS
3565
3566 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003567 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003568 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3569 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3570 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3571 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003572}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003573
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003574bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003575#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003576 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003577 REQUIRED(types, MDField, );
3578 PARSE_MD_FIELDS();
3579#undef VISIT_MD_FIELDS
3580
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003581 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003582 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003583}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003584
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003585/// ParseDIFileType:
3586/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3587bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003588#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3589 REQUIRED(filename, MDStringField, ); \
3590 REQUIRED(directory, MDStringField, );
3591 PARSE_MD_FIELDS();
3592#undef VISIT_MD_FIELDS
3593
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003594 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003595 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003596}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003597
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003598/// ParseDICompileUnit:
3599/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003600/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3601/// splitDebugFilename: "abc.debug", emissionKind: 1,
3602/// enums: !1, retainedTypes: !2, subprograms: !3,
Adrian Prantl1f599f92015-05-21 20:37:30 +00003603/// globals: !4, imports: !5, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003604bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003605 if (!IsDistinct)
3606 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3607
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003608#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3609 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003610 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003611 OPTIONAL(producer, MDStringField, ); \
3612 OPTIONAL(isOptimized, MDBoolField, ); \
3613 OPTIONAL(flags, MDStringField, ); \
3614 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3615 OPTIONAL(splitDebugFilename, MDStringField, ); \
3616 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3617 OPTIONAL(enums, MDField, ); \
3618 OPTIONAL(retainedTypes, MDField, ); \
3619 OPTIONAL(subprograms, MDField, ); \
3620 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003621 OPTIONAL(imports, MDField, ); \
3622 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003623 PARSE_MD_FIELDS();
3624#undef VISIT_MD_FIELDS
3625
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003626 Result = DICompileUnit::getDistinct(
3627 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3628 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3629 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003630 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003631}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003632
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003633/// ParseDISubprogram:
3634/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003635/// file: !1, line: 7, type: !2, isLocal: false,
3636/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003637/// virtuality: DW_VIRTUALTIY_pure_virtual,
3638/// virtualIndex: 10, flags: 11,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003639/// isOptimized: false, function: void ()* @_Z3foov,
3640/// templateParams: !4, declaration: !5, variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003641bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003642#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3643 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003644 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003645 OPTIONAL(linkageName, MDStringField, ); \
3646 OPTIONAL(file, MDField, ); \
3647 OPTIONAL(line, LineField, ); \
3648 OPTIONAL(type, MDField, ); \
3649 OPTIONAL(isLocal, MDBoolField, ); \
3650 OPTIONAL(isDefinition, MDBoolField, (true)); \
3651 OPTIONAL(scopeLine, LineField, ); \
3652 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003653 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003654 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003655 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003656 OPTIONAL(isOptimized, MDBoolField, ); \
3657 OPTIONAL(function, MDConstant, ); \
3658 OPTIONAL(templateParams, MDField, ); \
3659 OPTIONAL(declaration, MDField, ); \
3660 OPTIONAL(variables, MDField, );
3661 PARSE_MD_FIELDS();
3662#undef VISIT_MD_FIELDS
3663
3664 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003665 DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003666 line.Val, type.Val, isLocal.Val, isDefinition.Val,
3667 scopeLine.Val, containingType.Val, virtuality.Val,
3668 virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3669 templateParams.Val, declaration.Val, variables.Val));
3670 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003671}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003672
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003673/// ParseDILexicalBlock:
3674/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3675bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003676#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003677 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003678 OPTIONAL(file, MDField, ); \
3679 OPTIONAL(line, LineField, ); \
3680 OPTIONAL(column, ColumnField, );
3681 PARSE_MD_FIELDS();
3682#undef VISIT_MD_FIELDS
3683
3684 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003685 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003686 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003687}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003688
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003689/// ParseDILexicalBlockFile:
3690/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3691bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003692#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003693 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003694 OPTIONAL(file, MDField, ); \
3695 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3696 PARSE_MD_FIELDS();
3697#undef VISIT_MD_FIELDS
3698
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003699 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003700 (Context, scope.Val, file.Val, discriminator.Val));
3701 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003702}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003703
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003704/// ParseDINamespace:
3705/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3706bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003707#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3708 REQUIRED(scope, MDField, ); \
3709 OPTIONAL(file, MDField, ); \
3710 OPTIONAL(name, MDStringField, ); \
3711 OPTIONAL(line, LineField, );
3712 PARSE_MD_FIELDS();
3713#undef VISIT_MD_FIELDS
3714
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003715 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003716 (Context, scope.Val, file.Val, name.Val, line.Val));
3717 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003718}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003719
Adrian Prantlab1243f2015-06-29 23:03:47 +00003720/// ParseDIModule:
3721/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3722/// includePath: "/usr/include", isysroot: "/")
3723bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3724#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3725 REQUIRED(scope, MDField, ); \
3726 REQUIRED(name, MDStringField, ); \
3727 OPTIONAL(configMacros, MDStringField, ); \
3728 OPTIONAL(includePath, MDStringField, ); \
3729 OPTIONAL(isysroot, MDStringField, );
3730 PARSE_MD_FIELDS();
3731#undef VISIT_MD_FIELDS
3732
3733 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3734 configMacros.Val, includePath.Val, isysroot.Val));
3735 return false;
3736}
3737
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003738/// ParseDITemplateTypeParameter:
3739/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3740bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003741#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003742 OPTIONAL(name, MDStringField, ); \
3743 REQUIRED(type, MDField, );
3744 PARSE_MD_FIELDS();
3745#undef VISIT_MD_FIELDS
3746
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003747 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003748 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003749 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003750}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003751
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003752/// ParseDITemplateValueParameter:
3753/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003754/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003755bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003756#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003757 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003758 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003759 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003760 REQUIRED(value, MDField, );
3761 PARSE_MD_FIELDS();
3762#undef VISIT_MD_FIELDS
3763
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003764 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003765 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003766 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003767}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003768
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003769/// ParseDIGlobalVariable:
3770/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003771/// file: !1, line: 7, type: !2, isLocal: false,
3772/// isDefinition: true, variable: i32* @foo,
3773/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003774bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003775#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003776 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003777 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003778 OPTIONAL(linkageName, MDStringField, ); \
3779 OPTIONAL(file, MDField, ); \
3780 OPTIONAL(line, LineField, ); \
3781 OPTIONAL(type, MDField, ); \
3782 OPTIONAL(isLocal, MDBoolField, ); \
3783 OPTIONAL(isDefinition, MDBoolField, (true)); \
3784 OPTIONAL(variable, MDConstant, ); \
3785 OPTIONAL(declaration, MDField, );
3786 PARSE_MD_FIELDS();
3787#undef VISIT_MD_FIELDS
3788
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003789 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003790 (Context, scope.Val, name.Val, linkageName.Val,
3791 file.Val, line.Val, type.Val, isLocal.Val,
3792 isDefinition.Val, variable.Val, declaration.Val));
3793 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003794}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003795
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003796/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003797/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3798/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
3799/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003800/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003801bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003802#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003803 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003804 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003805 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003806 OPTIONAL(file, MDField, ); \
3807 OPTIONAL(line, LineField, ); \
3808 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003809 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003810 PARSE_MD_FIELDS();
3811#undef VISIT_MD_FIELDS
3812
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003813 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003814 (Context, scope.Val, name.Val, file.Val, line.Val,
3815 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003816 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003817}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003818
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003819/// ParseDIExpression:
3820/// ::= !DIExpression(0, 7, -1)
3821bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003822 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3823 Lex.Lex();
3824
3825 if (ParseToken(lltok::lparen, "expected '(' here"))
3826 return true;
3827
3828 SmallVector<uint64_t, 8> Elements;
3829 if (Lex.getKind() != lltok::rparen)
3830 do {
3831 if (Lex.getKind() == lltok::DwarfOp) {
3832 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3833 Lex.Lex();
3834 Elements.push_back(Op);
3835 continue;
3836 }
3837 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3838 }
3839
3840 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3841 return TokError("expected unsigned integer");
3842
3843 auto &U = Lex.getAPSIntVal();
3844 if (U.ugt(UINT64_MAX))
3845 return TokError("element too large, limit is " + Twine(UINT64_MAX));
3846 Elements.push_back(U.getZExtValue());
3847 Lex.Lex();
3848 } while (EatIfPresent(lltok::comma));
3849
3850 if (ParseToken(lltok::rparen, "expected ')' here"))
3851 return true;
3852
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003853 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003854 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003855}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003856
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003857/// ParseDIObjCProperty:
3858/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003859/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003860bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003861#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003862 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003863 OPTIONAL(file, MDField, ); \
3864 OPTIONAL(line, LineField, ); \
3865 OPTIONAL(setter, MDStringField, ); \
3866 OPTIONAL(getter, MDStringField, ); \
3867 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
3868 OPTIONAL(type, MDField, );
3869 PARSE_MD_FIELDS();
3870#undef VISIT_MD_FIELDS
3871
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003872 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003873 (Context, name.Val, file.Val, line.Val, setter.Val,
3874 getter.Val, attributes.Val, type.Val));
3875 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003876}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003877
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003878/// ParseDIImportedEntity:
3879/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003880/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003881bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003882#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3883 REQUIRED(tag, DwarfTagField, ); \
3884 REQUIRED(scope, MDField, ); \
3885 OPTIONAL(entity, MDField, ); \
3886 OPTIONAL(line, LineField, ); \
3887 OPTIONAL(name, MDStringField, );
3888 PARSE_MD_FIELDS();
3889#undef VISIT_MD_FIELDS
3890
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003891 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003892 entity.Val, line.Val, name.Val));
3893 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003894}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003895
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003896#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003897#undef NOP_FIELD
3898#undef REQUIRE_FIELD
3899#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003900
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003901/// ParseMetadataAsValue
3902/// ::= metadata i32 %local
3903/// ::= metadata i32 @global
3904/// ::= metadata i32 7
3905/// ::= metadata !0
3906/// ::= metadata !{...}
3907/// ::= metadata !"string"
3908bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
3909 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003910 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003911 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003912 return true;
3913
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003914 V = MetadataAsValue::get(Context, MD);
3915 return false;
3916}
3917
3918/// ParseValueAsMetadata
3919/// ::= i32 %local
3920/// ::= i32 @global
3921/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003922bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
3923 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003924 Type *Ty;
3925 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003926 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003927 return true;
3928 if (Ty->isMetadataTy())
3929 return Error(Loc, "invalid metadata-value-metadata roundtrip");
3930
3931 Value *V;
3932 if (ParseValue(Ty, V, PFS))
3933 return true;
3934
3935 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003936 return false;
3937}
3938
3939/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003940/// ::= i32 %local
3941/// ::= i32 @global
3942/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00003943/// ::= !42
3944/// ::= !{...}
3945/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003946/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003947bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003948 if (Lex.getKind() == lltok::MetadataVar) {
3949 MDNode *N;
3950 if (ParseSpecializedMDNode(N))
3951 return true;
3952 MD = N;
3953 return false;
3954 }
3955
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003956 // ValueAsMetadata:
3957 // <type> <value>
3958 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003959 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003960
3961 // '!'.
3962 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
3963 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00003964
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003965 // MDString:
3966 // ::= '!' STRINGCONSTANT
3967 if (Lex.getKind() == lltok::StringConstant) {
3968 MDString *S;
3969 if (ParseMDString(S))
3970 return true;
3971 MD = S;
3972 return false;
3973 }
3974
Dan Gohman8939ba332010-07-14 18:26:50 +00003975 // MDNode:
3976 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003977 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003978 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003979 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003980 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003981 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00003982 return false;
3983}
3984
Victor Hernandez9d75c962010-01-11 22:31:58 +00003985
3986//===----------------------------------------------------------------------===//
3987// Function Parsing.
3988//===----------------------------------------------------------------------===//
3989
Chris Lattner229907c2011-07-18 04:54:35 +00003990bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez9d75c962010-01-11 22:31:58 +00003991 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003992 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003993 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003994
Chris Lattnerac161bf2009-01-02 07:01:27 +00003995 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003996 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00003997 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
3998 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003999 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004000 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004001 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
4002 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004003 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004004 case ValID::t_InlineAsm: {
David Blaikie41ba2b42015-07-27 23:32:19 +00004005 assert(ID.FTy);
4006 if (!InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004007 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004008 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4009 (ID.UIntVal >> 1) & 1,
4010 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004011 return false;
4012 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004013 case ValID::t_GlobalName:
4014 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004015 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004016 case ValID::t_GlobalID:
4017 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004018 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004019 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004020 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004021 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004022 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004023 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004024 return false;
4025 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004026 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004027 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4028 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004029
Dan Gohman518cda42011-12-17 00:04:22 +00004030 // The lexer has no type info, so builds all half, float, and double FP
4031 // constants as double. Fix this here. Long double does not need this.
4032 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004033 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004034 if (Ty->isHalfTy())
4035 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4036 &Ignored);
4037 else if (Ty->isFloatTy())
4038 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4039 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004040 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004041 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004042
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004043 if (V->getType() != Ty)
4044 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004045 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004046
Chris Lattnerac161bf2009-01-02 07:01:27 +00004047 return false;
4048 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004049 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004050 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004051 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004052 return false;
4053 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004054 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004055 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004056 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004057 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004058 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004059 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004060 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004061 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004062 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004063 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004064 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004065 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004066 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004067 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004068 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004069 return false;
4070 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004071 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004072 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004073
Chris Lattnerac161bf2009-01-02 07:01:27 +00004074 V = ID.ConstantVal;
4075 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004076 case ValID::t_ConstantStruct:
4077 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004078 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004079 if (ST->getNumElements() != ID.UIntVal)
4080 return Error(ID.Loc,
4081 "initializer with struct type has wrong # elements");
4082 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4083 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004084
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004085 // Verify that the elements are compatible with the structtype.
4086 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4087 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4088 return Error(ID.Loc, "element " + Twine(i) +
4089 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004090
David Blaikie1b770232015-08-01 05:10:40 +00004091 V = ConstantStruct::get(
4092 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004093 } else
4094 return Error(ID.Loc, "constant expression type mismatch");
4095 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004096 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004097 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004098}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004099
Alex Lorenzd2255952015-07-17 22:07:03 +00004100bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4101 C = nullptr;
4102 ValID ID;
4103 auto Loc = Lex.getLoc();
4104 if (ParseValID(ID, /*PFS=*/nullptr))
4105 return true;
4106 switch (ID.Kind) {
4107 case ValID::t_APSInt:
4108 case ValID::t_APFloat:
4109 case ValID::t_Constant:
4110 case ValID::t_ConstantStruct:
4111 case ValID::t_PackedConstantStruct: {
4112 Value *V;
4113 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4114 return true;
4115 assert(isa<Constant>(V) && "Expected a constant value");
4116 C = cast<Constant>(V);
4117 return false;
4118 }
4119 default:
4120 return Error(Loc, "expected a constant value");
4121 }
4122}
4123
Chris Lattner229907c2011-07-18 04:54:35 +00004124bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004125 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004126 ValID ID;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004127 return ParseValID(ID, PFS) ||
4128 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004129}
4130
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004131bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004132 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004133 return ParseType(Ty) ||
4134 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004135}
4136
Chris Lattner3ed871f2009-10-27 19:13:16 +00004137bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4138 PerFunctionState &PFS) {
4139 Value *V;
4140 Loc = Lex.getLoc();
4141 if (ParseTypeAndValue(V, PFS)) return true;
4142 if (!isa<BasicBlock>(V))
4143 return Error(Loc, "expected a basic block");
4144 BB = cast<BasicBlock>(V);
4145 return false;
4146}
4147
4148
Chris Lattnerac161bf2009-01-02 07:01:27 +00004149/// FunctionHeader
4150/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004151/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004152/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004153bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4154 // Parse the linkage.
4155 LocTy LinkageLoc = Lex.getLoc();
4156 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004157
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004158 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004159 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004160 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004161 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004162 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004163 LocTy RetTypeLoc = Lex.getLoc();
4164 if (ParseOptionalLinkage(Linkage) ||
4165 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004166 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004167 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004168 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004169 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004170 return true;
4171
4172 // Verify that the linkage is ok.
4173 switch ((GlobalValue::LinkageTypes)Linkage) {
4174 case GlobalValue::ExternalLinkage:
4175 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004176 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004177 if (isDefine)
4178 return Error(LinkageLoc, "invalid linkage for function definition");
4179 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004180 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004181 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004182 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004183 case GlobalValue::LinkOnceAnyLinkage:
4184 case GlobalValue::LinkOnceODRLinkage:
4185 case GlobalValue::WeakAnyLinkage:
4186 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004187 if (!isDefine)
4188 return Error(LinkageLoc, "invalid linkage for function declaration");
4189 break;
4190 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004191 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004192 return Error(LinkageLoc, "invalid function linkage type");
4193 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004194
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004195 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4196 return Error(LinkageLoc,
4197 "symbol with local linkage must have default visibility");
4198
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004199 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004200 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004201
Chris Lattnerac161bf2009-01-02 07:01:27 +00004202 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004203
4204 std::string FunctionName;
4205 if (Lex.getKind() == lltok::GlobalVar) {
4206 FunctionName = Lex.getStrVal();
4207 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4208 unsigned NameID = Lex.getUIntVal();
4209
4210 if (NameID != NumberedVals.size())
4211 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004212 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004213 } else {
4214 return TokError("expected function name");
4215 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004216
Chris Lattner3822f632009-01-02 08:05:26 +00004217 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004218
Chris Lattner3822f632009-01-02 08:05:26 +00004219 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004220 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004221
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004222 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004223 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004224 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004225 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004226 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004227 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004228 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004229 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004230 bool UnnamedAddr;
4231 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004232 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004233 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004234 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004235 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004236
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004237 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004238 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4239 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004240 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004241 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004242 (EatIfPresent(lltok::kw_section) &&
4243 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004244 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004245 ParseOptionalAlignment(Alignment) ||
4246 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004247 ParseStringConstant(GC)) ||
4248 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004249 ParseGlobalTypeAndValue(Prefix)) ||
4250 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004251 ParseGlobalTypeAndValue(Prologue)) ||
4252 (EatIfPresent(lltok::kw_personality) &&
4253 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004254 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004255
Michael Gottesman41748d72013-06-27 00:25:01 +00004256 if (FuncAttrs.contains(Attribute::Builtin))
4257 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004258
Chris Lattnerac161bf2009-01-02 07:01:27 +00004259 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004260 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004261 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004262 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004263 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004264
Chris Lattnerac161bf2009-01-02 07:01:27 +00004265 // Okay, if we got here, the function is syntactically valid. Convert types
4266 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004267 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004268 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004269
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004270 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004271 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4272 AttributeSet::ReturnIndex,
4273 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004274
Chris Lattnerac161bf2009-01-02 07:01:27 +00004275 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004276 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004277 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4278 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004279 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4280 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004281 }
4282
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004283 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004284 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4285 AttributeSet::FunctionIndex,
4286 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004287
Bill Wendlinge94d8432012-12-07 23:16:57 +00004288 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004289
Bill Wendling749a43d2012-12-30 13:50:49 +00004290 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004291 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4292
Chris Lattner229907c2011-07-18 04:54:35 +00004293 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004294 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004295 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004296
Craig Topper2617dcc2014-04-15 06:32:26 +00004297 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004298 if (!FunctionName.empty()) {
4299 // If this was a definition of a forward reference, remove the definition
4300 // from the forward reference table and fill in the forward ref.
4301 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4302 ForwardRefVals.find(FunctionName);
4303 if (FRVI != ForwardRefVals.end()) {
4304 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004305 if (!Fn)
4306 return Error(FRVI->second.second, "invalid forward reference to "
4307 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004308 if (Fn->getType() != PFT)
4309 return Error(FRVI->second.second, "invalid forward reference to "
4310 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004311
Chris Lattnerac161bf2009-01-02 07:01:27 +00004312 ForwardRefVals.erase(FRVI);
4313 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004314 // Reject redefinitions.
4315 return Error(NameLoc, "invalid redefinition of function '" +
4316 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004317 } else if (M->getNamedValue(FunctionName)) {
4318 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004319 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004320
Dan Gohman399d6ae2009-08-29 23:37:49 +00004321 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004322 // If this is a definition of a forward referenced function, make sure the
4323 // types agree.
4324 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4325 = ForwardRefValIDs.find(NumberedVals.size());
4326 if (I != ForwardRefValIDs.end()) {
4327 Fn = cast<Function>(I->second.first);
4328 if (Fn->getType() != PFT)
4329 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004330 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004331 ForwardRefValIDs.erase(I);
4332 }
4333 }
4334
Craig Topper2617dcc2014-04-15 06:32:26 +00004335 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004336 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4337 else // Move the forward-reference to the correct spot in the module.
4338 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4339
4340 if (FunctionName.empty())
4341 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004342
Chris Lattnerac161bf2009-01-02 07:01:27 +00004343 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4344 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004345 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004346 Fn->setCallingConv(CC);
4347 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004348 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004349 Fn->setAlignment(Alignment);
4350 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004351 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004352 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004353 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004354 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004355 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004356 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004357
Chris Lattnerac161bf2009-01-02 07:01:27 +00004358 // Add all of the arguments we parsed to the function.
4359 Function::arg_iterator ArgIt = Fn->arg_begin();
4360 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4361 // If the argument has a name, insert it into the argument symbol table.
4362 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004363
Chris Lattnerac161bf2009-01-02 07:01:27 +00004364 // Set the name, if it conflicted, it will be auto-renamed.
4365 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004366
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004367 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004368 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4369 ArgList[i].Name + "'");
4370 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004371
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004372 if (isDefine)
4373 return false;
4374
Robin Morisset039781e2014-08-29 21:53:01 +00004375 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004376 ValID ID;
4377 if (FunctionName.empty()) {
4378 ID.Kind = ValID::t_GlobalID;
4379 ID.UIntVal = NumberedVals.size() - 1;
4380 } else {
4381 ID.Kind = ValID::t_GlobalName;
4382 ID.StrVal = FunctionName;
4383 }
4384 auto Blocks = ForwardRefBlockAddresses.find(ID);
4385 if (Blocks != ForwardRefBlockAddresses.end())
4386 return Error(Blocks->first.Loc,
4387 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004388 return false;
4389}
4390
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004391bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4392 ValID ID;
4393 if (FunctionNumber == -1) {
4394 ID.Kind = ValID::t_GlobalName;
4395 ID.StrVal = F.getName();
4396 } else {
4397 ID.Kind = ValID::t_GlobalID;
4398 ID.UIntVal = FunctionNumber;
4399 }
4400
4401 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4402 if (Blocks == P.ForwardRefBlockAddresses.end())
4403 return false;
4404
4405 for (const auto &I : Blocks->second) {
4406 const ValID &BBID = I.first;
4407 GlobalValue *GV = I.second;
4408
4409 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4410 "Expected local id or name");
4411 BasicBlock *BB;
4412 if (BBID.Kind == ValID::t_LocalName)
4413 BB = GetBB(BBID.StrVal, BBID.Loc);
4414 else
4415 BB = GetBB(BBID.UIntVal, BBID.Loc);
4416 if (!BB)
4417 return P.Error(BBID.Loc, "referenced value is not a basic block");
4418
4419 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4420 GV->eraseFromParent();
4421 }
4422
4423 P.ForwardRefBlockAddresses.erase(Blocks);
4424 return false;
4425}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004426
4427/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004428/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004429bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004430 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004431 return TokError("expected '{' in function body");
4432 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004433
Chris Lattner3432c622009-10-28 03:39:23 +00004434 int FunctionNumber = -1;
4435 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004436
Chris Lattner3432c622009-10-28 03:39:23 +00004437 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004438
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004439 // Resolve block addresses and allow basic blocks to be forward-declared
4440 // within this function.
4441 if (PFS.resolveForwardRefBlockAddresses())
4442 return true;
4443 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4444
Chris Lattnerbbddd962010-01-09 19:20:07 +00004445 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004446 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004447 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004448
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004449 while (Lex.getKind() != lltok::rbrace &&
4450 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004451 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004452
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004453 while (Lex.getKind() != lltok::rbrace)
4454 if (ParseUseListOrder(&PFS))
4455 return true;
4456
Chris Lattnerac161bf2009-01-02 07:01:27 +00004457 // Eat the }.
4458 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004459
Chris Lattnerac161bf2009-01-02 07:01:27 +00004460 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004461 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004462}
4463
4464/// ParseBasicBlock
4465/// ::= LabelStr? Instruction*
4466bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4467 // If this basic block starts out with a name, remember it.
4468 std::string Name;
4469 LocTy NameLoc = Lex.getLoc();
4470 if (Lex.getKind() == lltok::LabelStr) {
4471 Name = Lex.getStrVal();
4472 Lex.Lex();
4473 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004474
Chris Lattnerac161bf2009-01-02 07:01:27 +00004475 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004476 if (!BB)
4477 return Error(NameLoc,
4478 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004479
Chris Lattnerac161bf2009-01-02 07:01:27 +00004480 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004481
Chris Lattnerac161bf2009-01-02 07:01:27 +00004482 // Parse the instructions in this block until we get a terminator.
4483 Instruction *Inst;
4484 do {
4485 // This instruction may have three possibilities for a name: a) none
4486 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4487 LocTy NameLoc = Lex.getLoc();
4488 int NameID = -1;
4489 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004490
Chris Lattnerac161bf2009-01-02 07:01:27 +00004491 if (Lex.getKind() == lltok::LocalVarID) {
4492 NameID = Lex.getUIntVal();
4493 Lex.Lex();
4494 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4495 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004496 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004497 NameStr = Lex.getStrVal();
4498 Lex.Lex();
4499 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4500 return true;
4501 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004502
Chris Lattner77b89dc2009-12-30 05:23:43 +00004503 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004504 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004505 case InstError: return true;
4506 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004507 BB->getInstList().push_back(Inst);
4508
Chris Lattner77b89dc2009-12-30 05:23:43 +00004509 // With a normal result, we check to see if the instruction is followed by
4510 // a comma and metadata.
4511 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004512 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004513 return true;
4514 break;
4515 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004516 BB->getInstList().push_back(Inst);
4517
Chris Lattner77b89dc2009-12-30 05:23:43 +00004518 // If the instruction parser ate an extra comma at the end of it, it
4519 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004520 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004521 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004522 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004523 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004524
Chris Lattnerac161bf2009-01-02 07:01:27 +00004525 // Set the name on the instruction.
4526 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4527 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004528
Chris Lattnerac161bf2009-01-02 07:01:27 +00004529 return false;
4530}
4531
4532//===----------------------------------------------------------------------===//
4533// Instruction Parsing.
4534//===----------------------------------------------------------------------===//
4535
4536/// ParseInstruction - Parse one of the many different instructions.
4537///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004538int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4539 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004540 lltok::Kind Token = Lex.getKind();
4541 if (Token == lltok::Eof)
4542 return TokError("found end of file when expecting more instructions");
4543 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004544 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004545 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004546
Chris Lattnerac161bf2009-01-02 07:01:27 +00004547 switch (Token) {
4548 default: return Error(Loc, "expected instruction opcode");
4549 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004550 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004551 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4552 case lltok::kw_br: return ParseBr(Inst, PFS);
4553 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004554 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004555 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004556 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004557 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4558 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
4559 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
4560 case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4561 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4562 case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004563 // Binary Operators.
4564 case lltok::kw_add:
4565 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004566 case lltok::kw_mul:
4567 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004568 bool NUW = EatIfPresent(lltok::kw_nuw);
4569 bool NSW = EatIfPresent(lltok::kw_nsw);
4570 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004571
Chris Lattnera676c0f2011-02-07 16:40:21 +00004572 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004573
Chris Lattnera676c0f2011-02-07 16:40:21 +00004574 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4575 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4576 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004577 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004578 case lltok::kw_fadd:
4579 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004580 case lltok::kw_fmul:
4581 case lltok::kw_fdiv:
4582 case lltok::kw_frem: {
4583 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4584 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4585 if (Res != 0)
4586 return Res;
4587 if (FMF.any())
4588 Inst->setFastMathFlags(FMF);
4589 return 0;
4590 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004591
Chris Lattner35315d02011-02-06 21:44:57 +00004592 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004593 case lltok::kw_udiv:
4594 case lltok::kw_lshr:
4595 case lltok::kw_ashr: {
4596 bool Exact = EatIfPresent(lltok::kw_exact);
4597
4598 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4599 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4600 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004601 }
4602
Chris Lattnerac161bf2009-01-02 07:01:27 +00004603 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004604 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004605 case lltok::kw_and:
4606 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004607 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004608 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4609 case lltok::kw_fcmp: {
4610 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4611 int Res = ParseCompare(Inst, PFS, KeywordVal);
4612 if (Res != 0)
4613 return Res;
4614 if (FMF.any())
4615 Inst->setFastMathFlags(FMF);
4616 return 0;
4617 }
4618
Chris Lattnerac161bf2009-01-02 07:01:27 +00004619 // Casts.
4620 case lltok::kw_trunc:
4621 case lltok::kw_zext:
4622 case lltok::kw_sext:
4623 case lltok::kw_fptrunc:
4624 case lltok::kw_fpext:
4625 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004626 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004627 case lltok::kw_uitofp:
4628 case lltok::kw_sitofp:
4629 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004630 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004631 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004632 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004633 // Other.
4634 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004635 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004636 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4637 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4638 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4639 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004640 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004641 // Call.
4642 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4643 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4644 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004645 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004646 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004647 case lltok::kw_load: return ParseLoad(Inst, PFS);
4648 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004649 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4650 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004651 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004652 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4653 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4654 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4655 }
4656}
4657
4658/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4659bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004660 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004661 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004662 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004663 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4664 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4665 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4666 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4667 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4668 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4669 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4670 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4671 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4672 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4673 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4674 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4675 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4676 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4677 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4678 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4679 }
4680 } else {
4681 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004682 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004683 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4684 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4685 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4686 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4687 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4688 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4689 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4690 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4691 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4692 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4693 }
4694 }
4695 Lex.Lex();
4696 return false;
4697}
4698
4699//===----------------------------------------------------------------------===//
4700// Terminator Instructions.
4701//===----------------------------------------------------------------------===//
4702
4703/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004704/// ::= 'ret' void (',' !dbg, !1)*
4705/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004706bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004707 PerFunctionState &PFS) {
4708 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004709 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004710 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004711
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004712 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004713
Chris Lattnerfdd87902009-10-05 05:54:46 +00004714 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004715 if (!ResType->isVoidTy())
4716 return Error(TypeLoc, "value doesn't match function result type '" +
4717 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004718
Owen Anderson55f1c092009-08-13 21:58:54 +00004719 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004720 return false;
4721 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004722
Chris Lattnerac161bf2009-01-02 07:01:27 +00004723 Value *RV;
4724 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004725
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004726 if (ResType != RV->getType())
4727 return Error(TypeLoc, "value doesn't match function result type '" +
4728 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004729
Owen Anderson55f1c092009-08-13 21:58:54 +00004730 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004731 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004732}
4733
4734
4735/// ParseBr
4736/// ::= 'br' TypeAndValue
4737/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4738bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4739 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004740 Value *Op0;
4741 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004742 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004743
Chris Lattnerac161bf2009-01-02 07:01:27 +00004744 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4745 Inst = BranchInst::Create(BB);
4746 return false;
4747 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004748
Owen Anderson55f1c092009-08-13 21:58:54 +00004749 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004750 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004751
Chris Lattnerac161bf2009-01-02 07:01:27 +00004752 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004753 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004754 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004755 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004756 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004757
Chris Lattner3ed871f2009-10-27 19:13:16 +00004758 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004759 return false;
4760}
4761
4762/// ParseSwitch
4763/// Instruction
4764/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4765/// JumpTable
4766/// ::= (TypeAndValue ',' TypeAndValue)*
4767bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4768 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004769 Value *Cond;
4770 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004771 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4772 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004773 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004774 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4775 return true;
4776
Duncan Sands19d0b472010-02-16 11:11:14 +00004777 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004778 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004779
Chris Lattnerac161bf2009-01-02 07:01:27 +00004780 // Parse the jump table pairs.
4781 SmallPtrSet<Value*, 32> SeenCases;
4782 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4783 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004784 Value *Constant;
4785 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004786
Chris Lattnerac161bf2009-01-02 07:01:27 +00004787 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4788 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004789 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004790 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004791
David Blaikie70573dc2014-11-19 07:49:26 +00004792 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004793 return Error(CondLoc, "duplicate case value in switch");
4794 if (!isa<ConstantInt>(Constant))
4795 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004796
Chris Lattner3ed871f2009-10-27 19:13:16 +00004797 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004798 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004799
Chris Lattnerac161bf2009-01-02 07:01:27 +00004800 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004801
Chris Lattner3ed871f2009-10-27 19:13:16 +00004802 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004803 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4804 SI->addCase(Table[i].first, Table[i].second);
4805 Inst = SI;
4806 return false;
4807}
4808
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004809/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00004810/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004811/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4812bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004813 LocTy AddrLoc;
4814 Value *Address;
4815 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004816 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4817 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00004818 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004819
Duncan Sands19d0b472010-02-16 11:11:14 +00004820 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004821 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004822
Chris Lattner3ed871f2009-10-27 19:13:16 +00004823 // Parse the destination list.
4824 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004825
Chris Lattner3ed871f2009-10-27 19:13:16 +00004826 if (Lex.getKind() != lltok::rsquare) {
4827 BasicBlock *DestBB;
4828 if (ParseTypeAndBasicBlock(DestBB, PFS))
4829 return true;
4830 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004831
Chris Lattner3ed871f2009-10-27 19:13:16 +00004832 while (EatIfPresent(lltok::comma)) {
4833 if (ParseTypeAndBasicBlock(DestBB, PFS))
4834 return true;
4835 DestList.push_back(DestBB);
4836 }
4837 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004838
Chris Lattner3ed871f2009-10-27 19:13:16 +00004839 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4840 return true;
4841
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004842 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00004843 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4844 IBI->addDestination(DestList[i]);
4845 Inst = IBI;
4846 return false;
4847}
4848
4849
Chris Lattnerac161bf2009-01-02 07:01:27 +00004850/// ParseInvoke
4851/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4852/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4853bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4854 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00004855 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004856 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00004857 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004858 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004859 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004860 LocTy RetTypeLoc;
4861 ValID CalleeID;
4862 SmallVector<ParamInfo, 16> ArgList;
4863
Chris Lattner3ed871f2009-10-27 19:13:16 +00004864 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004865 if (ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004866 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004867 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004868 ParseValID(CalleeID) ||
4869 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004870 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
4871 NoBuiltinLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004872 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004873 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004874 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004875 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004876 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004877
Chris Lattnerac161bf2009-01-02 07:01:27 +00004878 // If RetType is a non-function pointer type, then this is the short syntax
4879 // for the call, which means that RetType is just the return type. Infer the
4880 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00004881 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
4882 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004883 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00004884 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004885 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
4886 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004887
Chris Lattnerac161bf2009-01-02 07:01:27 +00004888 if (!FunctionType::isValidReturnType(RetType))
4889 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004890
Owen Anderson4056ca92009-07-29 22:17:13 +00004891 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004892 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004893
David Blaikie41ba2b42015-07-27 23:32:19 +00004894 CalleeID.FTy = Ty;
4895
Chris Lattnerac161bf2009-01-02 07:01:27 +00004896 // Look up the callee.
4897 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00004898 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
4899 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004900
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004901 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00004902 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004903 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004904 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4905 AttributeSet::ReturnIndex,
4906 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004907
Chris Lattnerac161bf2009-01-02 07:01:27 +00004908 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004909
Chris Lattnerac161bf2009-01-02 07:01:27 +00004910 // Loop through FunctionType's arguments and ensure they are specified
4911 // correctly. Also, gather any parameter attributes.
4912 FunctionType::param_iterator I = Ty->param_begin();
4913 FunctionType::param_iterator E = Ty->param_end();
4914 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004915 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004916 if (I != E) {
4917 ExpectedTy = *I++;
4918 } else if (!Ty->isVarArg()) {
4919 return Error(ArgList[i].Loc, "too many arguments specified");
4920 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004921
Chris Lattnerac161bf2009-01-02 07:01:27 +00004922 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4923 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004924 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004925 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004926 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4927 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004928 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4929 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004930 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004931
Chris Lattnerac161bf2009-01-02 07:01:27 +00004932 if (I != E)
4933 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004934
David Majnemer8d22abd2015-02-23 00:01:32 +00004935 if (FnAttrs.hasAttributes()) {
4936 if (FnAttrs.hasAlignmentAttr())
4937 return Error(CallLoc, "invoke instructions may not have an alignment");
4938
Bill Wendlingf5075a42013-01-27 02:24:02 +00004939 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4940 AttributeSet::FunctionIndex,
4941 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00004942 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004943
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004944 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00004945 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004946
David Blaikie3e807092015-05-13 18:35:26 +00004947 InvokeInst *II = InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004948 II->setCallingConv(CC);
4949 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004950 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004951 Inst = II;
4952 return false;
4953}
4954
Bill Wendlingf891bf82011-07-31 06:30:59 +00004955/// ParseResume
4956/// ::= 'resume' TypeAndValue
4957bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
4958 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00004959 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
4960 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004961
Bill Wendlingf891bf82011-07-31 06:30:59 +00004962 ResumeInst *RI = ResumeInst::Create(Exn);
4963 Inst = RI;
4964 return false;
4965}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004966
David Majnemer654e1302015-07-31 17:58:14 +00004967bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
4968 PerFunctionState &PFS) {
4969 if (ParseToken(lltok::lsquare, "expected '[' in cleanuppad"))
4970 return true;
4971
4972 while (Lex.getKind() != lltok::rsquare) {
4973 // If this isn't the first argument, we need a comma.
4974 if (!Args.empty() &&
4975 ParseToken(lltok::comma, "expected ',' in argument list"))
4976 return true;
4977
4978 // Parse the argument.
4979 LocTy ArgLoc;
4980 Type *ArgTy = nullptr;
4981 if (ParseType(ArgTy, ArgLoc))
4982 return true;
4983
4984 Value *V;
4985 if (ArgTy->isMetadataTy()) {
4986 if (ParseMetadataAsValue(V, PFS))
4987 return true;
4988 } else {
4989 if (ParseValue(ArgTy, V, PFS))
4990 return true;
4991 }
4992 Args.push_back(V);
4993 }
4994
4995 Lex.Lex(); // Lex the ']'.
4996 return false;
4997}
4998
4999/// ParseCleanupRet
5000/// ::= 'cleanupret' ('void' | TypeAndValue) unwind ('to' 'caller' | TypeAndValue)
5001bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
5002 Type *RetTy = nullptr;
5003 Value *RetVal = nullptr;
5004 if (ParseType(RetTy, /*AllowVoid=*/true))
5005 return true;
5006
5007 if (!RetTy->isVoidTy())
5008 if (ParseValue(RetTy, RetVal, PFS))
5009 return true;
5010
5011 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5012 return true;
5013
5014 BasicBlock *UnwindBB = nullptr;
5015 if (Lex.getKind() == lltok::kw_to) {
5016 Lex.Lex();
5017 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5018 return true;
5019 } else {
5020 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5021 return true;
5022 }
5023 }
5024
5025 Inst = CleanupReturnInst::Create(Context, RetVal, UnwindBB);
5026 return false;
5027}
5028
5029/// ParseCatchRet
5030/// ::= 'catchret' TypeAndValue
5031bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
5032 BasicBlock *BB;
5033 if (ParseTypeAndBasicBlock(BB, PFS))
5034 return true;
5035
5036 Inst = CatchReturnInst::Create(BB);
5037 return false;
5038}
5039
5040/// ParseCatchPad
5041/// ::= 'catchpad' Type ParamList 'to' TypeAndValue 'unwind' TypeAndValue
5042bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
5043 Type *RetType = nullptr;
5044
5045 SmallVector<Value *, 8> Args;
5046 if (ParseType(RetType, /*AllowVoid=*/true) || ParseExceptionArgs(Args, PFS))
5047 return true;
5048
5049 BasicBlock *NormalBB, *UnwindBB;
5050 if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5051 ParseTypeAndBasicBlock(NormalBB, PFS) ||
5052 ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5053 ParseTypeAndBasicBlock(UnwindBB, PFS))
5054 return true;
5055
5056 Inst = CatchPadInst::Create(RetType, NormalBB, UnwindBB, Args);
5057 return false;
5058}
5059
5060/// ParseTerminatePad
5061/// ::= 'terminatepad' ParamList 'to' TypeAndValue
5062bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5063 SmallVector<Value *, 8> Args;
5064 if (ParseExceptionArgs(Args, PFS))
5065 return true;
5066
5067 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5068 return true;
5069
5070 BasicBlock *UnwindBB = nullptr;
5071 if (Lex.getKind() == lltok::kw_to) {
5072 Lex.Lex();
5073 if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5074 return true;
5075 } else {
5076 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5077 return true;
5078 }
5079 }
5080
5081 Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5082 return false;
5083}
5084
5085/// ParseCleanupPad
5086/// ::= 'cleanuppad' ParamList
5087bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
5088 Type *RetType = nullptr;
5089
5090 SmallVector<Value *, 8> Args;
5091 if (ParseType(RetType, /*AllowVoid=*/true) || ParseExceptionArgs(Args, PFS))
5092 return true;
5093
5094 Inst = CleanupPadInst::Create(RetType, Args);
5095 return false;
5096}
5097
5098/// ParseCatchEndPad
5099/// ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5100bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5101 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5102 return true;
5103
5104 BasicBlock *UnwindBB = nullptr;
5105 if (Lex.getKind() == lltok::kw_to) {
5106 Lex.Lex();
5107 if (Lex.getKind() == lltok::kw_caller) {
5108 Lex.Lex();
5109 } else {
5110 return true;
5111 }
5112 } else {
5113 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5114 return true;
5115 }
5116 }
5117
5118 Inst = CatchEndPadInst::Create(Context, UnwindBB);
5119 return false;
5120}
5121
Chris Lattnerac161bf2009-01-02 07:01:27 +00005122//===----------------------------------------------------------------------===//
5123// Binary Operators.
5124//===----------------------------------------------------------------------===//
5125
5126/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005127/// ::= ArithmeticOps TypeAndValue ',' Value
5128///
5129/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5130/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005131bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005132 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005133 LocTy Loc; Value *LHS, *RHS;
5134 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5135 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5136 ParseValue(LHS->getType(), RHS, PFS))
5137 return true;
5138
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005139 bool Valid;
5140 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005141 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005142 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005143 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5144 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005145 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005146 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5147 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005148 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005149
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005150 if (!Valid)
5151 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005152
Chris Lattnerac161bf2009-01-02 07:01:27 +00005153 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5154 return false;
5155}
5156
5157/// ParseLogical
5158/// ::= ArithmeticOps TypeAndValue ',' Value {
5159bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5160 unsigned Opc) {
5161 LocTy Loc; Value *LHS, *RHS;
5162 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5163 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5164 ParseValue(LHS->getType(), RHS, PFS))
5165 return true;
5166
Duncan Sands9dff9be2010-02-15 16:12:20 +00005167 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005168 return Error(Loc,"instruction requires integer or integer vector operands");
5169
5170 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5171 return false;
5172}
5173
5174
5175/// ParseCompare
5176/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5177/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005178bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5179 unsigned Opc) {
5180 // Parse the integer/fp comparison predicate.
5181 LocTy Loc;
5182 unsigned Pred;
5183 Value *LHS, *RHS;
5184 if (ParseCmpPredicate(Pred, Opc) ||
5185 ParseTypeAndValue(LHS, Loc, PFS) ||
5186 ParseToken(lltok::comma, "expected ',' after compare value") ||
5187 ParseValue(LHS->getType(), RHS, PFS))
5188 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005189
Chris Lattnerac161bf2009-01-02 07:01:27 +00005190 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005191 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005192 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005193 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005194 } else {
5195 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005196 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005197 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005198 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005199 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005200 }
5201 return false;
5202}
5203
5204//===----------------------------------------------------------------------===//
5205// Other Instructions.
5206//===----------------------------------------------------------------------===//
5207
5208
5209/// ParseCast
5210/// ::= CastOpc TypeAndValue 'to' Type
5211bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5212 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005213 LocTy Loc;
5214 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005215 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005216 if (ParseTypeAndValue(Op, Loc, PFS) ||
5217 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5218 ParseType(DestTy))
5219 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005220
Chris Lattner89d856e2009-03-01 00:53:13 +00005221 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5222 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005223 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005224 getTypeString(Op->getType()) + "' to '" +
5225 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005226 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005227 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5228 return false;
5229}
5230
5231/// ParseSelect
5232/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5233bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5234 LocTy Loc;
5235 Value *Op0, *Op1, *Op2;
5236 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5237 ParseToken(lltok::comma, "expected ',' after select condition") ||
5238 ParseTypeAndValue(Op1, PFS) ||
5239 ParseToken(lltok::comma, "expected ',' after select value") ||
5240 ParseTypeAndValue(Op2, PFS))
5241 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005242
Chris Lattnerac161bf2009-01-02 07:01:27 +00005243 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5244 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005245
Chris Lattnerac161bf2009-01-02 07:01:27 +00005246 Inst = SelectInst::Create(Op0, Op1, Op2);
5247 return false;
5248}
5249
Chris Lattnerb55ab542009-01-05 08:18:44 +00005250/// ParseVA_Arg
5251/// ::= 'va_arg' TypeAndValue ',' Type
5252bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005253 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005254 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005255 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005256 if (ParseTypeAndValue(Op, PFS) ||
5257 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005258 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005259 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005260
Chris Lattnerb55ab542009-01-05 08:18:44 +00005261 if (!EltTy->isFirstClassType())
5262 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005263
5264 Inst = new VAArgInst(Op, EltTy);
5265 return false;
5266}
5267
5268/// ParseExtractElement
5269/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5270bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5271 LocTy Loc;
5272 Value *Op0, *Op1;
5273 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5274 ParseToken(lltok::comma, "expected ',' after extract value") ||
5275 ParseTypeAndValue(Op1, PFS))
5276 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005277
Chris Lattnerac161bf2009-01-02 07:01:27 +00005278 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5279 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005280
Eric Christopherc9742252009-07-25 02:28:41 +00005281 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005282 return false;
5283}
5284
5285/// ParseInsertElement
5286/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5287bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5288 LocTy Loc;
5289 Value *Op0, *Op1, *Op2;
5290 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5291 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5292 ParseTypeAndValue(Op1, PFS) ||
5293 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5294 ParseTypeAndValue(Op2, PFS))
5295 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005296
Chris Lattnerac161bf2009-01-02 07:01:27 +00005297 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005298 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005299
Chris Lattnerac161bf2009-01-02 07:01:27 +00005300 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5301 return false;
5302}
5303
5304/// ParseShuffleVector
5305/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5306bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5307 LocTy Loc;
5308 Value *Op0, *Op1, *Op2;
5309 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5310 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5311 ParseTypeAndValue(Op1, PFS) ||
5312 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5313 ParseTypeAndValue(Op2, PFS))
5314 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005315
Chris Lattnerac161bf2009-01-02 07:01:27 +00005316 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005317 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005318
Chris Lattnerac161bf2009-01-02 07:01:27 +00005319 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5320 return false;
5321}
5322
5323/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005324/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005325int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005326 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005327 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005328
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005329 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005330 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5331 ParseValue(Ty, Op0, PFS) ||
5332 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005333 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005334 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5335 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005336
Chris Lattnerf4f03422009-12-30 05:27:33 +00005337 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005338 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5339 while (1) {
5340 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005341
Chris Lattner3822f632009-01-02 08:05:26 +00005342 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005343 break;
5344
Chris Lattnerf4f03422009-12-30 05:27:33 +00005345 if (Lex.getKind() == lltok::MetadataVar) {
5346 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005347 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005348 }
Devang Patel8f842d32009-10-16 18:45:49 +00005349
Chris Lattner3822f632009-01-02 08:05:26 +00005350 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005351 ParseValue(Ty, Op0, PFS) ||
5352 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005353 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005354 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5355 return true;
5356 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005357
Chris Lattnerac161bf2009-01-02 07:01:27 +00005358 if (!Ty->isFirstClassType())
5359 return Error(TypeLoc, "phi node must have first class type");
5360
Jay Foad52131342011-03-30 11:28:46 +00005361 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005362 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5363 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5364 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005365 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005366}
5367
Bill Wendlingfae14752011-08-12 20:24:12 +00005368/// ParseLandingPad
5369/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5370/// Clause
5371/// ::= 'catch' TypeAndValue
5372/// ::= 'filter'
5373/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5374bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005375 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005376
David Majnemer7fddecc2015-06-17 20:52:32 +00005377 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005378 return true;
5379
David Majnemer7fddecc2015-06-17 20:52:32 +00005380 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005381 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5382
5383 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5384 LandingPadInst::ClauseType CT;
5385 if (EatIfPresent(lltok::kw_catch))
5386 CT = LandingPadInst::Catch;
5387 else if (EatIfPresent(lltok::kw_filter))
5388 CT = LandingPadInst::Filter;
5389 else
5390 return TokError("expected 'catch' or 'filter' clause type");
5391
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005392 Value *V;
5393 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005394 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005395 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005396
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005397 // A 'catch' type expects a non-array constant. A filter clause expects an
5398 // array constant.
5399 if (CT == LandingPadInst::Catch) {
5400 if (isa<ArrayType>(V->getType()))
5401 Error(VLoc, "'catch' clause has an invalid type");
5402 } else {
5403 if (!isa<ArrayType>(V->getType()))
5404 Error(VLoc, "'filter' clause has an invalid type");
5405 }
5406
Owen Andersonf8f259d2015-03-09 07:13:42 +00005407 Constant *CV = dyn_cast<Constant>(V);
5408 if (!CV)
5409 return Error(VLoc, "clause argument must be a constant");
5410 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005411 }
5412
Owen Andersonf8f259d2015-03-09 07:13:42 +00005413 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005414 return false;
5415}
5416
Chris Lattnerac161bf2009-01-02 07:01:27 +00005417/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00005418/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5419/// ParameterList OptionalAttrs
5420/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5421/// ParameterList OptionalAttrs
5422/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005423/// ParameterList OptionalAttrs
5424bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005425 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005426 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005427 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005428 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005429 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005430 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005431 LocTy RetTypeLoc;
5432 ValID CalleeID;
5433 SmallVector<ParamInfo, 16> ArgList;
5434 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005435
Reid Kleckner5772b772014-04-24 20:14:34 +00005436 if ((TCK != CallInst::TCK_None &&
5437 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005438 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00005439 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005440 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005441 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005442 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5443 PFS.getFunction().isVarArg()) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005444 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00005445 BuiltinLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005446 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005447
Chris Lattnerac161bf2009-01-02 07:01:27 +00005448 // If RetType is a non-function pointer type, then this is the short syntax
5449 // for the call, which means that RetType is just the return type. Infer the
5450 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005451 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5452 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005453 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005454 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005455 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5456 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005457
Chris Lattnerac161bf2009-01-02 07:01:27 +00005458 if (!FunctionType::isValidReturnType(RetType))
5459 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005460
Owen Anderson4056ca92009-07-29 22:17:13 +00005461 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005462 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005463
David Blaikie41ba2b42015-07-27 23:32:19 +00005464 CalleeID.FTy = Ty;
5465
Chris Lattnerac161bf2009-01-02 07:01:27 +00005466 // Look up the callee.
5467 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005468 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5469 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005470
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005471 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005472 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005473 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005474 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5475 AttributeSet::ReturnIndex,
5476 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005477
Chris Lattnerac161bf2009-01-02 07:01:27 +00005478 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005479
Chris Lattnerac161bf2009-01-02 07:01:27 +00005480 // Loop through FunctionType's arguments and ensure they are specified
5481 // correctly. Also, gather any parameter attributes.
5482 FunctionType::param_iterator I = Ty->param_begin();
5483 FunctionType::param_iterator E = Ty->param_end();
5484 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005485 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005486 if (I != E) {
5487 ExpectedTy = *I++;
5488 } else if (!Ty->isVarArg()) {
5489 return Error(ArgList[i].Loc, "too many arguments specified");
5490 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005491
Chris Lattnerac161bf2009-01-02 07:01:27 +00005492 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5493 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005494 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005495 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005496 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5497 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005498 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5499 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005500 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005501
Chris Lattnerac161bf2009-01-02 07:01:27 +00005502 if (I != E)
5503 return Error(CallLoc, "not enough parameters specified for call");
5504
David Majnemer8d22abd2015-02-23 00:01:32 +00005505 if (FnAttrs.hasAttributes()) {
5506 if (FnAttrs.hasAlignmentAttr())
5507 return Error(CallLoc, "call instructions may not have an alignment");
5508
Bill Wendlingf5075a42013-01-27 02:24:02 +00005509 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5510 AttributeSet::FunctionIndex,
5511 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005512 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005513
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005514 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005515 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005516
David Blaikie348de692015-04-23 21:36:23 +00005517 CallInst *CI = CallInst::Create(Ty, Callee, Args);
Reid Kleckner5772b772014-04-24 20:14:34 +00005518 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005519 CI->setCallingConv(CC);
5520 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005521 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005522 Inst = CI;
5523 return false;
5524}
5525
5526//===----------------------------------------------------------------------===//
5527// Memory Instructions.
5528//===----------------------------------------------------------------------===//
5529
5530/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005531/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005532int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005533 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005534 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005535 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005536 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005537
5538 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5539
David Majnemera3b0eb22015-02-16 08:38:03 +00005540 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005541
David Majnemera3b0eb22015-02-16 08:38:03 +00005542 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5543 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005544
Chris Lattnerb2f39502009-12-30 05:44:30 +00005545 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005546 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005547 if (Lex.getKind() == lltok::kw_align) {
5548 if (ParseOptionalAlignment(Alignment)) return true;
5549 } else if (Lex.getKind() == lltok::MetadataVar) {
5550 AteExtraComma = true;
5551 } else {
5552 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5553 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5554 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005555 }
5556 }
5557
Dan Gohman2140a742010-05-28 01:14:11 +00005558 if (Size && !Size->getType()->isIntegerTy())
5559 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005560
Reid Kleckner436c42e2014-01-17 23:58:17 +00005561 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5562 AI->setUsedWithInAlloca(IsInAlloca);
5563 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005564 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005565}
5566
5567/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005568/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005569/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005570/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005571int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005572 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005573 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005574 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005575 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005576 AtomicOrdering Ordering = NotAtomic;
5577 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005578
5579 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005580 isAtomic = true;
5581 Lex.Lex();
5582 }
5583
Chris Lattnerbc639292011-11-27 06:56:53 +00005584 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005585 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005586 isVolatile = true;
5587 Lex.Lex();
5588 }
5589
David Blaikie15d9a4c2015-04-06 20:59:48 +00005590 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005591 LocTy ExplicitTypeLoc = Lex.getLoc();
5592 if (ParseType(Ty) ||
5593 ParseToken(lltok::comma, "expected comma after load's type") ||
5594 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005595 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005596 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5597 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005598
David Blaikie15d9a4c2015-04-06 20:59:48 +00005599 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005600 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005601 if (isAtomic && !Alignment)
5602 return Error(Loc, "atomic load must have explicit non-zero alignment");
5603 if (Ordering == Release || Ordering == AcquireRelease)
5604 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005605
David Blaikiea79ac142015-02-27 21:17:42 +00005606 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5607 return Error(ExplicitTypeLoc,
5608 "explicit pointee type doesn't match operand's pointee type");
5609
David Blaikie15d9a4c2015-04-06 20:59:48 +00005610 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005611 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005612}
5613
5614/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005615
5616/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5617/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005618/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005619int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005620 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005621 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005622 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005623 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005624 AtomicOrdering Ordering = NotAtomic;
5625 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005626
5627 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005628 isAtomic = true;
5629 Lex.Lex();
5630 }
5631
Chris Lattnerbc639292011-11-27 06:56:53 +00005632 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005633 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005634 isVolatile = true;
5635 Lex.Lex();
5636 }
5637
Chris Lattnerac161bf2009-01-02 07:01:27 +00005638 if (ParseTypeAndValue(Val, Loc, PFS) ||
5639 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005640 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005641 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005642 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005643 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005644
Duncan Sands19d0b472010-02-16 11:11:14 +00005645 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005646 return Error(PtrLoc, "store operand must be a pointer");
5647 if (!Val->getType()->isFirstClassType())
5648 return Error(Loc, "store operand must be a first class value");
5649 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5650 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005651 if (isAtomic && !Alignment)
5652 return Error(Loc, "atomic store must have explicit non-zero alignment");
5653 if (Ordering == Acquire || Ordering == AcquireRelease)
5654 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005655
Eli Friedman59b66882011-08-09 23:02:53 +00005656 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005657 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005658}
5659
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005660/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005661/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5662/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005663int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005664 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5665 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005666 AtomicOrdering SuccessOrdering = NotAtomic;
5667 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005668 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005669 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005670 bool isWeak = false;
5671
5672 if (EatIfPresent(lltok::kw_weak))
5673 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005674
5675 if (EatIfPresent(lltok::kw_volatile))
5676 isVolatile = true;
5677
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005678 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5679 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5680 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5681 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5682 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005683 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5684 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005685 return true;
5686
Tim Northovere94a5182014-03-11 10:48:52 +00005687 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005688 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005689 if (SuccessOrdering < FailureOrdering)
5690 return TokError("cmpxchg must be at least as ordered on success as failure");
5691 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5692 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005693 if (!Ptr->getType()->isPointerTy())
5694 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5695 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5696 return Error(CmpLoc, "compare value and pointer type do not match");
5697 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5698 return Error(NewLoc, "new value and pointer type do not match");
5699 if (!New->getType()->isIntegerTy())
5700 return Error(NewLoc, "cmpxchg operand must be an integer");
5701 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5702 if (Size < 8 || (Size & (Size - 1)))
5703 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5704 " integer");
5705
Tim Northover420a2162014-06-13 14:24:07 +00005706 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5707 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005708 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005709 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005710 Inst = CXI;
5711 return AteExtraComma ? InstExtraComma : InstNormal;
5712}
5713
5714/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005715/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5716/// 'singlethread'? AtomicOrdering
5717int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005718 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5719 bool AteExtraComma = false;
5720 AtomicOrdering Ordering = NotAtomic;
5721 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005722 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005723 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005724
5725 if (EatIfPresent(lltok::kw_volatile))
5726 isVolatile = true;
5727
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005728 switch (Lex.getKind()) {
5729 default: return TokError("expected binary operation in atomicrmw");
5730 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5731 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5732 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5733 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5734 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5735 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5736 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5737 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5738 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5739 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5740 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5741 }
5742 Lex.Lex(); // Eat the operation.
5743
5744 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5745 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5746 ParseTypeAndValue(Val, ValLoc, PFS) ||
5747 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5748 return true;
5749
5750 if (Ordering == Unordered)
5751 return TokError("atomicrmw cannot be unordered");
5752 if (!Ptr->getType()->isPointerTy())
5753 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5754 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5755 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5756 if (!Val->getType()->isIntegerTy())
5757 return Error(ValLoc, "atomicrmw operand must be an integer");
5758 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5759 if (Size < 8 || (Size & (Size - 1)))
5760 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5761 " integer");
5762
5763 AtomicRMWInst *RMWI =
5764 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5765 RMWI->setVolatile(isVolatile);
5766 Inst = RMWI;
5767 return AteExtraComma ? InstExtraComma : InstNormal;
5768}
5769
Eli Friedmanfee02c62011-07-25 23:16:38 +00005770/// ParseFence
5771/// ::= 'fence' 'singlethread'? AtomicOrdering
5772int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5773 AtomicOrdering Ordering = NotAtomic;
5774 SynchronizationScope Scope = CrossThread;
5775 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5776 return true;
5777
5778 if (Ordering == Unordered)
5779 return TokError("fence cannot be unordered");
5780 if (Ordering == Monotonic)
5781 return TokError("fence cannot be monotonic");
5782
5783 Inst = new FenceInst(Context, Ordering, Scope);
5784 return InstNormal;
5785}
5786
Chris Lattnerac161bf2009-01-02 07:01:27 +00005787/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00005788/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005789int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005790 Value *Ptr = nullptr;
5791 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005792 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00005793
Dan Gohman16cbbe42009-07-29 15:58:36 +00005794 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00005795
David Blaikie79e6c742015-02-27 19:29:02 +00005796 Type *Ty = nullptr;
5797 LocTy ExplicitTypeLoc = Lex.getLoc();
5798 if (ParseType(Ty) ||
5799 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5800 ParseTypeAndValue(Ptr, Loc, PFS))
5801 return true;
5802
Eli Benderskyd9806682013-04-22 17:03:42 +00005803 Type *BaseType = Ptr->getType();
5804 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5805 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005806 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005807
David Blaikie8d757942015-03-09 23:08:44 +00005808 if (Ty != BasePointerType->getElementType())
5809 return Error(ExplicitTypeLoc,
5810 "explicit pointee type doesn't match operand's pointee type");
5811
Chris Lattnerac161bf2009-01-02 07:01:27 +00005812 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005813 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005814 // GEP returns a vector of pointers if at least one of parameters is a vector.
5815 // All vector parameters should have the same vector width.
5816 unsigned GEPWidth = BaseType->isVectorTy() ?
5817 BaseType->getVectorNumElements() : 0;
5818
Chris Lattner3822f632009-01-02 08:05:26 +00005819 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00005820 if (Lex.getKind() == lltok::MetadataVar) {
5821 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00005822 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005823 }
Chris Lattner3822f632009-01-02 08:05:26 +00005824 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005825 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005826 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005827
Nadav Rotem3924cb02011-12-05 06:29:09 +00005828 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005829 unsigned ValNumEl = Val->getType()->getVectorNumElements();
5830 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00005831 return Error(EltLoc,
5832 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005833 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005834 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005835 Indices.push_back(Val);
5836 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005837
Craig Toppere3dcce92015-08-01 22:20:21 +00005838 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00005839 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00005840 return Error(Loc, "base element of getelementptr must be sized");
5841
David Blaikied33bad32015-04-17 22:32:13 +00005842 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005843 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00005844 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00005845 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00005846 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005847 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005848}
5849
5850/// ParseExtractValue
5851/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00005852int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005853 Value *Val; LocTy Loc;
5854 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005855 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005856 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00005857 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005858 return true;
5859
Chris Lattner392be582010-02-12 20:49:41 +00005860 if (!Val->getType()->isAggregateType())
5861 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005862
Jay Foad57aa6362011-07-13 10:26:04 +00005863 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005864 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00005865 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005866 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005867}
5868
5869/// ParseInsertValue
5870/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00005871int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005872 Value *Val0, *Val1; LocTy Loc0, Loc1;
5873 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005874 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005875 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
5876 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
5877 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00005878 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005879 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005880
Chris Lattner392be582010-02-12 20:49:41 +00005881 if (!Val0->getType()->isAggregateType())
5882 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005883
David Majnemer30074532015-02-11 07:43:58 +00005884 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
5885 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005886 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00005887 if (IndexedType != Val1->getType())
5888 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
5889 getTypeString(Val1->getType()) + "' instead of '" +
5890 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00005891 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005892 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005893}
Nick Lewycky49f89192009-04-04 07:22:01 +00005894
5895//===----------------------------------------------------------------------===//
5896// Embedded metadata.
5897//===----------------------------------------------------------------------===//
5898
5899/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005900/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00005901/// Element
5902/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005903bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00005904 if (ParseToken(lltok::lbrace, "expected '{' here"))
5905 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005906
Dan Gohman1e0213a2010-07-13 19:33:27 +00005907 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005908 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00005909 return false;
5910
Nick Lewycky49f89192009-04-04 07:22:01 +00005911 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00005912 // Null is a special case since it is typeless.
5913 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005914 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00005915 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00005916 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005917
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005918 Metadata *MD;
5919 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005920 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005921 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00005922 } while (EatIfPresent(lltok::comma));
5923
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005924 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00005925}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005926
5927//===----------------------------------------------------------------------===//
5928// Use-list order directives.
5929//===----------------------------------------------------------------------===//
5930bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
5931 SMLoc Loc) {
5932 if (V->use_empty())
5933 return Error(Loc, "value has no uses");
5934
5935 unsigned NumUses = 0;
5936 SmallDenseMap<const Use *, unsigned, 16> Order;
5937 for (const Use &U : V->uses()) {
5938 if (++NumUses > Indexes.size())
5939 break;
5940 Order[&U] = Indexes[NumUses - 1];
5941 }
5942 if (NumUses < 2)
5943 return Error(Loc, "value only has one use");
5944 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
5945 return Error(Loc, "wrong number of indexes, expected " +
5946 Twine(std::distance(V->use_begin(), V->use_end())));
5947
5948 V->sortUseList([&](const Use &L, const Use &R) {
5949 return Order.lookup(&L) < Order.lookup(&R);
5950 });
5951 return false;
5952}
5953
5954/// ParseUseListOrderIndexes
5955/// ::= '{' uint32 (',' uint32)+ '}'
5956bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
5957 SMLoc Loc = Lex.getLoc();
5958 if (ParseToken(lltok::lbrace, "expected '{' here"))
5959 return true;
5960 if (Lex.getKind() == lltok::rbrace)
5961 return Lex.Error("expected non-empty list of uselistorder indexes");
5962
5963 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
5964 // indexes should be distinct numbers in the range [0, size-1], and should
5965 // not be in order.
5966 unsigned Offset = 0;
5967 unsigned Max = 0;
5968 bool IsOrdered = true;
5969 assert(Indexes.empty() && "Expected empty order vector");
5970 do {
5971 unsigned Index;
5972 if (ParseUInt32(Index))
5973 return true;
5974
5975 // Update consistency checks.
5976 Offset += Index - Indexes.size();
5977 Max = std::max(Max, Index);
5978 IsOrdered &= Index == Indexes.size();
5979
5980 Indexes.push_back(Index);
5981 } while (EatIfPresent(lltok::comma));
5982
5983 if (ParseToken(lltok::rbrace, "expected '}' here"))
5984 return true;
5985
5986 if (Indexes.size() < 2)
5987 return Error(Loc, "expected >= 2 uselistorder indexes");
5988 if (Offset != 0 || Max >= Indexes.size())
5989 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
5990 if (IsOrdered)
5991 return Error(Loc, "expected uselistorder indexes to change the order");
5992
5993 return false;
5994}
5995
5996/// ParseUseListOrder
5997/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
5998bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
5999 SMLoc Loc = Lex.getLoc();
6000 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6001 return true;
6002
6003 Value *V;
6004 SmallVector<unsigned, 16> Indexes;
6005 if (ParseTypeAndValue(V, PFS) ||
6006 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6007 ParseUseListOrderIndexes(Indexes))
6008 return true;
6009
6010 return sortUseListOrder(V, Indexes, Loc);
6011}
6012
6013/// ParseUseListOrderBB
6014/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6015bool LLParser::ParseUseListOrderBB() {
6016 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6017 SMLoc Loc = Lex.getLoc();
6018 Lex.Lex();
6019
6020 ValID Fn, Label;
6021 SmallVector<unsigned, 16> Indexes;
6022 if (ParseValID(Fn) ||
6023 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6024 ParseValID(Label) ||
6025 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6026 ParseUseListOrderIndexes(Indexes))
6027 return true;
6028
6029 // Check the function.
6030 GlobalValue *GV;
6031 if (Fn.Kind == ValID::t_GlobalName)
6032 GV = M->getNamedValue(Fn.StrVal);
6033 else if (Fn.Kind == ValID::t_GlobalID)
6034 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6035 else
6036 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6037 if (!GV)
6038 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6039 auto *F = dyn_cast<Function>(GV);
6040 if (!F)
6041 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6042 if (F->isDeclaration())
6043 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6044
6045 // Check the basic block.
6046 if (Label.Kind == ValID::t_LocalID)
6047 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6048 if (Label.Kind != ValID::t_LocalName)
6049 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6050 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6051 if (!V)
6052 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6053 if (!isa<BasicBlock>(V))
6054 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6055
6056 return sortUseListOrder(V, Indexes, Loc);
6057}