blob: d1d379242e0427d9d9e6018df124c05e2a6b1853 [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 Blaikieadbda4b2015-08-03 20:08:41 +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 Blaikieadbda4b2015-08-03 20:08:41 +00002462 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002463 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +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 Blaikieadbda4b2015-08-03 20:08:41 +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 =
David Blaikie69374412015-08-03 20:30:53 +00002612 ForwardRefBlockAddresses.insert(std::make_pair, std::move(Fn),
2613 std::map<ValID, GlobalValue *>())
David Blaikieb9cc6592015-03-04 01:40:07 +00002614 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2615 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002616 if (!FwdRef)
2617 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2618 GlobalValue::InternalLinkage, nullptr, "");
2619 ID.ConstantVal = FwdRef;
2620 ID.Kind = ValID::t_Constant;
2621 return false;
2622 }
2623
2624 // We found the function; now find the basic block. Don't use PFS, since we
2625 // might be inside a constant expression.
2626 BasicBlock *BB;
2627 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2628 if (Label.Kind == ValID::t_LocalID)
2629 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2630 else
2631 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2632 if (!BB)
2633 return Error(Label.Loc, "referenced value is not a basic block");
2634 } else {
2635 if (Label.Kind == ValID::t_LocalID)
2636 return Error(Label.Loc, "cannot take address of numeric label after "
2637 "the function is defined");
2638 BB = dyn_cast_or_null<BasicBlock>(
2639 F->getValueSymbolTable().lookup(Label.StrVal));
2640 if (!BB)
2641 return Error(Label.Loc, "referenced value is not a basic block");
2642 }
2643
2644 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002645 ID.Kind = ValID::t_Constant;
2646 return false;
2647 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002648
Chris Lattnerac161bf2009-01-02 07:01:27 +00002649 case lltok::kw_trunc:
2650 case lltok::kw_zext:
2651 case lltok::kw_sext:
2652 case lltok::kw_fptrunc:
2653 case lltok::kw_fpext:
2654 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002655 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002656 case lltok::kw_uitofp:
2657 case lltok::kw_sitofp:
2658 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002659 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002660 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002661 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002662 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002663 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002664 Constant *SrcVal;
2665 Lex.Lex();
2666 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2667 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002668 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002669 ParseType(DestTy) ||
2670 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2671 return true;
2672 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2673 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002674 getTypeString(SrcVal->getType()) + "' to '" +
2675 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002676 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002677 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002678 ID.Kind = ValID::t_Constant;
2679 return false;
2680 }
2681 case lltok::kw_extractvalue: {
2682 Lex.Lex();
2683 Constant *Val;
2684 SmallVector<unsigned, 4> Indices;
2685 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2686 ParseGlobalTypeAndValue(Val) ||
2687 ParseIndexList(Indices) ||
2688 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2689 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002690
Chris Lattner392be582010-02-12 20:49:41 +00002691 if (!Val->getType()->isAggregateType())
2692 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002693 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002694 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002695 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002696 ID.Kind = ValID::t_Constant;
2697 return false;
2698 }
2699 case lltok::kw_insertvalue: {
2700 Lex.Lex();
2701 Constant *Val0, *Val1;
2702 SmallVector<unsigned, 4> Indices;
2703 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2704 ParseGlobalTypeAndValue(Val0) ||
2705 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2706 ParseGlobalTypeAndValue(Val1) ||
2707 ParseIndexList(Indices) ||
2708 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2709 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002710 if (!Val0->getType()->isAggregateType())
2711 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002712 Type *IndexedType =
2713 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2714 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002715 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002716 if (IndexedType != Val1->getType())
2717 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2718 getTypeString(Val1->getType()) +
2719 "' instead of '" + getTypeString(IndexedType) +
2720 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002721 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002722 ID.Kind = ValID::t_Constant;
2723 return false;
2724 }
2725 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002726 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002727 unsigned PredVal, Opc = Lex.getUIntVal();
2728 Constant *Val0, *Val1;
2729 Lex.Lex();
2730 if (ParseCmpPredicate(PredVal, Opc) ||
2731 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2732 ParseGlobalTypeAndValue(Val0) ||
2733 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2734 ParseGlobalTypeAndValue(Val1) ||
2735 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2736 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002737
Chris Lattnerac161bf2009-01-02 07:01:27 +00002738 if (Val0->getType() != Val1->getType())
2739 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002740
Chris Lattnerac161bf2009-01-02 07:01:27 +00002741 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002742
Chris Lattnerac161bf2009-01-02 07:01:27 +00002743 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002744 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002745 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002746 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002747 } else {
2748 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002749 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002750 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002751 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002752 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002753 }
2754 ID.Kind = ValID::t_Constant;
2755 return false;
2756 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002757
Chris Lattnerac161bf2009-01-02 07:01:27 +00002758 // Binary Operators.
2759 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002760 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002761 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002762 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002763 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002764 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002765 case lltok::kw_udiv:
2766 case lltok::kw_sdiv:
2767 case lltok::kw_fdiv:
2768 case lltok::kw_urem:
2769 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002770 case lltok::kw_frem:
2771 case lltok::kw_shl:
2772 case lltok::kw_lshr:
2773 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002774 bool NUW = false;
2775 bool NSW = false;
2776 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002777 unsigned Opc = Lex.getUIntVal();
2778 Constant *Val0, *Val1;
2779 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002780 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002781 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2782 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002783 if (EatIfPresent(lltok::kw_nuw))
2784 NUW = true;
2785 if (EatIfPresent(lltok::kw_nsw)) {
2786 NSW = true;
2787 if (EatIfPresent(lltok::kw_nuw))
2788 NUW = true;
2789 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002790 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2791 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002792 if (EatIfPresent(lltok::kw_exact))
2793 Exact = true;
2794 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002795 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2796 ParseGlobalTypeAndValue(Val0) ||
2797 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2798 ParseGlobalTypeAndValue(Val1) ||
2799 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2800 return true;
2801 if (Val0->getType() != Val1->getType())
2802 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002803 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002804 if (NUW)
2805 return Error(ModifierLoc, "nuw only applies to integer operations");
2806 if (NSW)
2807 return Error(ModifierLoc, "nsw only applies to integer operations");
2808 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002809 // Check that the type is valid for the operator.
2810 switch (Opc) {
2811 case Instruction::Add:
2812 case Instruction::Sub:
2813 case Instruction::Mul:
2814 case Instruction::UDiv:
2815 case Instruction::SDiv:
2816 case Instruction::URem:
2817 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002818 case Instruction::Shl:
2819 case Instruction::AShr:
2820 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002821 if (!Val0->getType()->isIntOrIntVectorTy())
2822 return Error(ID.Loc, "constexpr requires integer operands");
2823 break;
2824 case Instruction::FAdd:
2825 case Instruction::FSub:
2826 case Instruction::FMul:
2827 case Instruction::FDiv:
2828 case Instruction::FRem:
2829 if (!Val0->getType()->isFPOrFPVectorTy())
2830 return Error(ID.Loc, "constexpr requires fp operands");
2831 break;
2832 default: llvm_unreachable("Unknown binary operator!");
2833 }
Dan Gohman1b849082009-09-07 23:54:19 +00002834 unsigned Flags = 0;
2835 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2836 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002837 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002838 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002839 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002840 ID.Kind = ValID::t_Constant;
2841 return false;
2842 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002843
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002845 case lltok::kw_and:
2846 case lltok::kw_or:
2847 case lltok::kw_xor: {
2848 unsigned Opc = Lex.getUIntVal();
2849 Constant *Val0, *Val1;
2850 Lex.Lex();
2851 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2852 ParseGlobalTypeAndValue(Val0) ||
2853 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2854 ParseGlobalTypeAndValue(Val1) ||
2855 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2856 return true;
2857 if (Val0->getType() != Val1->getType())
2858 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002859 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002860 return Error(ID.Loc,
2861 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002862 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002863 ID.Kind = ValID::t_Constant;
2864 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002865 }
2866
Chris Lattnerac161bf2009-01-02 07:01:27 +00002867 case lltok::kw_getelementptr:
2868 case lltok::kw_shufflevector:
2869 case lltok::kw_insertelement:
2870 case lltok::kw_extractelement:
2871 case lltok::kw_select: {
2872 unsigned Opc = Lex.getUIntVal();
2873 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002874 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00002875 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002876 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00002877
Dan Gohman1639c392009-07-27 21:53:46 +00002878 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002879 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00002880
2881 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2882 return true;
2883
2884 LocTy ExplicitTypeLoc = Lex.getLoc();
2885 if (Opc == Instruction::GetElementPtr) {
2886 if (ParseType(Ty) ||
2887 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2888 return true;
2889 }
2890
2891 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002892 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2893 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002894
Chris Lattnerac161bf2009-01-02 07:01:27 +00002895 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00002896 if (Elts.size() == 0 ||
2897 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00002898 return Error(ID.Loc, "base of getelementptr must be a pointer");
2899
2900 Type *BaseType = Elts[0]->getType();
2901 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00002902 if (Ty != BasePointerType->getElementType())
2903 return Error(
2904 ExplicitTypeLoc,
2905 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002906
Jay Foaded8db7d2011-07-21 14:31:17 +00002907 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00002908 for (Constant *Val : Indices) {
2909 Type *ValTy = Val->getType();
2910 if (!ValTy->getScalarType()->isIntegerTy())
2911 return Error(ID.Loc, "getelementptr index must be an integer");
2912 if (ValTy->isVectorTy() != BaseType->isVectorTy())
2913 return Error(ID.Loc, "getelementptr index type missmatch");
2914 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00002915 unsigned ValNumEl = ValTy->getVectorNumElements();
2916 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00002917 if (ValNumEl != PtrNumEl)
2918 return Error(
2919 ID.Loc,
2920 "getelementptr vector index has a wrong number of elements");
2921 }
2922 }
2923
Craig Toppere3dcce92015-08-01 22:20:21 +00002924 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00002925 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00002926 return Error(ID.Loc, "base element of getelementptr must be sized");
2927
David Blaikie4a2e73b2015-04-02 18:55:32 +00002928 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00002929 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00002930 ID.ConstantVal =
2931 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002932 } else if (Opc == Instruction::Select) {
2933 if (Elts.size() != 3)
2934 return Error(ID.Loc, "expected three operands to select");
2935 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2936 Elts[2]))
2937 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00002938 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002939 } else if (Opc == Instruction::ShuffleVector) {
2940 if (Elts.size() != 3)
2941 return Error(ID.Loc, "expected three operands to shufflevector");
2942 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2943 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00002944 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002945 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002946 } else if (Opc == Instruction::ExtractElement) {
2947 if (Elts.size() != 2)
2948 return Error(ID.Loc, "expected two operands to extractelement");
2949 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2950 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002951 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002952 } else {
2953 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2954 if (Elts.size() != 3)
2955 return Error(ID.Loc, "expected three operands to insertelement");
2956 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2957 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00002958 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002959 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002960 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002961
Chris Lattnerac161bf2009-01-02 07:01:27 +00002962 ID.Kind = ValID::t_Constant;
2963 return false;
2964 }
2965 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002966
Chris Lattnerac161bf2009-01-02 07:01:27 +00002967 Lex.Lex();
2968 return false;
2969}
2970
2971/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00002972bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002973 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002974 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00002975 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00002976 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00002977 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002978 if (V && !(C = dyn_cast<Constant>(V)))
2979 return Error(ID.Loc, "global values must be constants");
2980 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002981}
2982
Victor Hernandez9d75c962010-01-11 22:31:58 +00002983bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002984 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002985 return ParseType(Ty) ||
2986 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002987}
2988
Rafael Espindola83a362c2015-01-06 22:55:16 +00002989bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00002990 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00002991
2992 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00002993 if (!EatIfPresent(lltok::kw_comdat))
2994 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00002995
2996 if (EatIfPresent(lltok::lparen)) {
2997 if (Lex.getKind() != lltok::ComdatVar)
2998 return TokError("expected comdat variable");
2999 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3000 Lex.Lex();
3001 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3002 return true;
3003 } else {
3004 if (GlobalName.empty())
3005 return TokError("comdat cannot be unnamed");
3006 C = getComdat(GlobalName, KwLoc);
3007 }
3008
David Majnemerdad0a642014-06-27 18:19:56 +00003009 return false;
3010}
3011
Victor Hernandez9d75c962010-01-11 22:31:58 +00003012/// ParseGlobalValueVector
3013/// ::= /*empty*/
3014/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003015bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003016 // Empty list.
3017 if (Lex.getKind() == lltok::rbrace ||
3018 Lex.getKind() == lltok::rsquare ||
3019 Lex.getKind() == lltok::greater ||
3020 Lex.getKind() == lltok::rparen)
3021 return false;
3022
3023 Constant *C;
3024 if (ParseGlobalTypeAndValue(C)) return true;
3025 Elts.push_back(C);
3026
3027 while (EatIfPresent(lltok::comma)) {
3028 if (ParseGlobalTypeAndValue(C)) return true;
3029 Elts.push_back(C);
3030 }
3031
3032 return false;
3033}
3034
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003035bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003036 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003037 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003038 return true;
3039
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003040 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003041 return false;
3042}
3043
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003044/// MDNode:
3045/// ::= !{ ... }
3046/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003047/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003048bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003049 if (Lex.getKind() == lltok::MetadataVar)
3050 return ParseSpecializedMDNode(N);
3051
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003052 return ParseToken(lltok::exclaim, "expected '!' here") ||
3053 ParseMDNodeTail(N);
3054}
3055
3056bool LLParser::ParseMDNodeTail(MDNode *&N) {
3057 // !{ ... }
3058 if (Lex.getKind() == lltok::lbrace)
3059 return ParseMDTuple(N);
3060
3061 // !42
3062 return ParseMDNodeID(N);
3063}
3064
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003065namespace {
3066
3067/// Structure to represent an optional metadata field.
3068template <class FieldTy> struct MDFieldImpl {
3069 typedef MDFieldImpl ImplTy;
3070 FieldTy Val;
3071 bool Seen;
3072
3073 void assign(FieldTy Val) {
3074 Seen = true;
3075 this->Val = std::move(Val);
3076 }
3077
3078 explicit MDFieldImpl(FieldTy Default)
3079 : Val(std::move(Default)), Seen(false) {}
3080};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003081
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003082struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3083 uint64_t Max;
3084
3085 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3086 : ImplTy(Default), Max(Max) {}
3087};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003088struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003089 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003090};
3091struct ColumnField : public MDUnsignedField {
3092 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3093};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003094struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003095 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003096 DwarfTagField(dwarf::Tag DefaultTag)
3097 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003098};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003099struct DwarfAttEncodingField : public MDUnsignedField {
3100 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3101};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003102struct DwarfVirtualityField : public MDUnsignedField {
3103 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3104};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003105struct DwarfLangField : public MDUnsignedField {
3106 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3107};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003108
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003109struct DIFlagField : public MDUnsignedField {
3110 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3111};
3112
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003113struct MDSignedField : public MDFieldImpl<int64_t> {
3114 int64_t Min;
3115 int64_t Max;
3116
3117 MDSignedField(int64_t Default = 0)
3118 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3119 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3120 : ImplTy(Default), Min(Min), Max(Max) {}
3121};
3122
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003123struct MDBoolField : public MDFieldImpl<bool> {
3124 MDBoolField(bool Default = false) : ImplTy(Default) {}
3125};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003126struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003127 bool AllowNull;
3128
3129 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003130};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003131struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3132 MDConstant() : ImplTy(nullptr) {}
3133};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003134struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003135 bool AllowEmpty;
3136 MDStringField(bool AllowEmpty = true)
3137 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003138};
3139struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3140 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3141};
3142
3143} // end namespace
3144
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003145namespace llvm {
3146
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003147template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003148bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003149 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003150 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3151 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003152
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003153 auto &U = Lex.getAPSIntVal();
3154 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003155 return TokError("value for '" + Name + "' too large, limit is " +
3156 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003157 Result.assign(U.getZExtValue());
3158 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003159 Lex.Lex();
3160 return false;
3161}
3162
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003163template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003164bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3165 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3166}
3167template <>
3168bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3169 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3170}
3171
3172template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003173bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3174 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003175 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003176
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003177 if (Lex.getKind() != lltok::DwarfTag)
3178 return TokError("expected DWARF tag");
3179
3180 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3181 if (Tag == dwarf::DW_TAG_invalid)
3182 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003183 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003184
3185 Result.assign(Tag);
3186 Lex.Lex();
3187 return false;
3188}
3189
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003190template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003191bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3192 DwarfVirtualityField &Result) {
3193 if (Lex.getKind() == lltok::APSInt)
3194 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3195
3196 if (Lex.getKind() != lltok::DwarfVirtuality)
3197 return TokError("expected DWARF virtuality code");
3198
3199 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3200 if (!Virtuality)
3201 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3202 Lex.getStrVal() + "'");
3203 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3204 Result.assign(Virtuality);
3205 Lex.Lex();
3206 return false;
3207}
3208
3209template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003210bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3211 if (Lex.getKind() == lltok::APSInt)
3212 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3213
3214 if (Lex.getKind() != lltok::DwarfLang)
3215 return TokError("expected DWARF language");
3216
3217 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3218 if (!Lang)
3219 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3220 "'");
3221 assert(Lang <= Result.Max && "Expected valid DWARF language");
3222 Result.assign(Lang);
3223 Lex.Lex();
3224 return false;
3225}
3226
3227template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003228bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003229 DwarfAttEncodingField &Result) {
3230 if (Lex.getKind() == lltok::APSInt)
3231 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3232
3233 if (Lex.getKind() != lltok::DwarfAttEncoding)
3234 return TokError("expected DWARF type attribute encoding");
3235
3236 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3237 if (!Encoding)
3238 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3239 Lex.getStrVal() + "'");
3240 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3241 Result.assign(Encoding);
3242 Lex.Lex();
3243 return false;
3244}
3245
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003246/// DIFlagField
3247/// ::= uint32
3248/// ::= DIFlagVector
3249/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3250template <>
3251bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3252 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3253
3254 // Parser for a single flag.
3255 auto parseFlag = [&](unsigned &Val) {
3256 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3257 return ParseUInt32(Val);
3258
3259 if (Lex.getKind() != lltok::DIFlag)
3260 return TokError("expected debug info flag");
3261
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003262 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003263 if (!Val)
3264 return TokError(Twine("invalid debug info flag flag '") +
3265 Lex.getStrVal() + "'");
3266 Lex.Lex();
3267 return false;
3268 };
3269
3270 // Parse the flags and combine them together.
3271 unsigned Combined = 0;
3272 do {
3273 unsigned Val;
3274 if (parseFlag(Val))
3275 return true;
3276 Combined |= Val;
3277 } while (EatIfPresent(lltok::bar));
3278
3279 Result.assign(Combined);
3280 return false;
3281}
3282
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003283template <>
3284bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003285 MDSignedField &Result) {
3286 if (Lex.getKind() != lltok::APSInt)
3287 return TokError("expected signed integer");
3288
3289 auto &S = Lex.getAPSIntVal();
3290 if (S < Result.Min)
3291 return TokError("value for '" + Name + "' too small, limit is " +
3292 Twine(Result.Min));
3293 if (S > Result.Max)
3294 return TokError("value for '" + Name + "' too large, limit is " +
3295 Twine(Result.Max));
3296 Result.assign(S.getExtValue());
3297 assert(Result.Val >= Result.Min && "Expected value in range");
3298 assert(Result.Val <= Result.Max && "Expected value in range");
3299 Lex.Lex();
3300 return false;
3301}
3302
3303template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003304bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3305 switch (Lex.getKind()) {
3306 default:
3307 return TokError("expected 'true' or 'false'");
3308 case lltok::kw_true:
3309 Result.assign(true);
3310 break;
3311 case lltok::kw_false:
3312 Result.assign(false);
3313 break;
3314 }
3315 Lex.Lex();
3316 return false;
3317}
3318
3319template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003320bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003321 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003322 if (!Result.AllowNull)
3323 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003324 Lex.Lex();
3325 Result.assign(nullptr);
3326 return false;
3327 }
3328
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003329 Metadata *MD;
3330 if (ParseMetadata(MD, nullptr))
3331 return true;
3332
3333 Result.assign(MD);
3334 return false;
3335}
3336
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003337template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003338bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3339 Metadata *MD;
3340 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3341 return true;
3342
3343 Result.assign(cast<ConstantAsMetadata>(MD));
3344 return false;
3345}
3346
3347template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003348bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003349 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003350 std::string S;
3351 if (ParseStringConstant(S))
3352 return true;
3353
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003354 if (!Result.AllowEmpty && S.empty())
3355 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3356
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003357 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003358 return false;
3359}
3360
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003361template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003362bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3363 SmallVector<Metadata *, 4> MDs;
3364 if (ParseMDNodeVector(MDs))
3365 return true;
3366
3367 Result.assign(std::move(MDs));
3368 return false;
3369}
3370
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003371} // end namespace llvm
3372
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003373template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003374bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003375 do {
3376 if (Lex.getKind() != lltok::LabelStr)
3377 return TokError("expected field label here");
3378
3379 if (parseField())
3380 return true;
3381 } while (EatIfPresent(lltok::comma));
3382
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003383 return false;
3384}
3385
3386template <class ParserTy>
3387bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3388 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3389 Lex.Lex();
3390
3391 if (ParseToken(lltok::lparen, "expected '(' here"))
3392 return true;
3393 if (Lex.getKind() != lltok::rparen)
3394 if (ParseMDFieldsImplBody(parseField))
3395 return true;
3396
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003397 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003398 return ParseToken(lltok::rparen, "expected ')' here");
3399}
3400
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003401template <class FieldTy>
3402bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3403 if (Result.Seen)
3404 return TokError("field '" + Name + "' cannot be specified more than once");
3405
3406 LocTy Loc = Lex.getLoc();
3407 Lex.Lex();
3408 return ParseMDField(Loc, Name, Result);
3409}
3410
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003411bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3412 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003413
3414#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003415 if (Lex.getStrVal() == #CLASS) \
3416 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003417#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003418
3419 return TokError("expected metadata type");
3420}
3421
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003422#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3423#define NOP_FIELD(NAME, TYPE, INIT)
3424#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3425 if (!NAME.Seen) \
3426 return Error(ClosingLoc, "missing required field '" #NAME "'");
3427#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003428 if (Lex.getStrVal() == #NAME) \
3429 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003430#define PARSE_MD_FIELDS() \
3431 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3432 do { \
3433 LocTy ClosingLoc; \
3434 if (ParseMDFieldsImpl([&]() -> bool { \
3435 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3436 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3437 }, ClosingLoc)) \
3438 return true; \
3439 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3440 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003441#define GET_OR_DISTINCT(CLASS, ARGS) \
3442 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003443
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003444/// ParseDILocationFields:
3445/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3446bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003447#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003448 OPTIONAL(line, LineField, ); \
3449 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003450 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003451 OPTIONAL(inlinedAt, MDField, );
3452 PARSE_MD_FIELDS();
3453#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003454
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003455 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003456 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003457 return false;
3458}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003459
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003460/// ParseGenericDINode:
3461/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3462bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003463#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003464 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003465 OPTIONAL(header, MDStringField, ); \
3466 OPTIONAL(operands, MDFieldList, );
3467 PARSE_MD_FIELDS();
3468#undef VISIT_MD_FIELDS
3469
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003470 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003471 (Context, tag.Val, header.Val, operands.Val));
3472 return false;
3473}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003474
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003475/// ParseDISubrange:
3476/// ::= !DISubrange(count: 30, lowerBound: 2)
3477bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003478#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003479 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003480 OPTIONAL(lowerBound, MDSignedField, );
3481 PARSE_MD_FIELDS();
3482#undef VISIT_MD_FIELDS
3483
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003484 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003485 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003486}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003487
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003488/// ParseDIEnumerator:
3489/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3490bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003491#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003492 REQUIRED(name, MDStringField, ); \
3493 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003494 PARSE_MD_FIELDS();
3495#undef VISIT_MD_FIELDS
3496
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003497 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003498 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003499}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003500
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003501/// ParseDIBasicType:
3502/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3503bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003504#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003505 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003506 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003507 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3508 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003509 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003510 PARSE_MD_FIELDS();
3511#undef VISIT_MD_FIELDS
3512
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003513 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003514 align.Val, encoding.Val));
3515 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003516}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003517
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003518/// ParseDIDerivedType:
3519/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003520/// line: 7, scope: !1, baseType: !2, size: 32,
3521/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003522bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003523#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3524 REQUIRED(tag, DwarfTagField, ); \
3525 OPTIONAL(name, MDStringField, ); \
3526 OPTIONAL(file, MDField, ); \
3527 OPTIONAL(line, LineField, ); \
3528 OPTIONAL(scope, MDField, ); \
3529 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003530 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3531 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3532 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003533 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003534 OPTIONAL(extraData, MDField, );
3535 PARSE_MD_FIELDS();
3536#undef VISIT_MD_FIELDS
3537
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003538 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003539 (Context, tag.Val, name.Val, file.Val, line.Val,
3540 scope.Val, baseType.Val, size.Val, align.Val,
3541 offset.Val, flags.Val, extraData.Val));
3542 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003543}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003544
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003545bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003546#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3547 REQUIRED(tag, DwarfTagField, ); \
3548 OPTIONAL(name, MDStringField, ); \
3549 OPTIONAL(file, MDField, ); \
3550 OPTIONAL(line, LineField, ); \
3551 OPTIONAL(scope, MDField, ); \
3552 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003553 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3554 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3555 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003556 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003557 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003558 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003559 OPTIONAL(vtableHolder, MDField, ); \
3560 OPTIONAL(templateParams, MDField, ); \
3561 OPTIONAL(identifier, MDStringField, );
3562 PARSE_MD_FIELDS();
3563#undef VISIT_MD_FIELDS
3564
3565 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003566 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003567 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3568 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3569 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3570 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003571}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003572
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003573bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003574#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003575 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003576 REQUIRED(types, MDField, );
3577 PARSE_MD_FIELDS();
3578#undef VISIT_MD_FIELDS
3579
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003580 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003581 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003582}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003583
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003584/// ParseDIFileType:
3585/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3586bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003587#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3588 REQUIRED(filename, MDStringField, ); \
3589 REQUIRED(directory, MDStringField, );
3590 PARSE_MD_FIELDS();
3591#undef VISIT_MD_FIELDS
3592
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003593 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003594 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003595}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003596
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003597/// ParseDICompileUnit:
3598/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003599/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3600/// splitDebugFilename: "abc.debug", emissionKind: 1,
3601/// enums: !1, retainedTypes: !2, subprograms: !3,
Adrian Prantl1f599f92015-05-21 20:37:30 +00003602/// globals: !4, imports: !5, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003603bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003604 if (!IsDistinct)
3605 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3606
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003607#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3608 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003609 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003610 OPTIONAL(producer, MDStringField, ); \
3611 OPTIONAL(isOptimized, MDBoolField, ); \
3612 OPTIONAL(flags, MDStringField, ); \
3613 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3614 OPTIONAL(splitDebugFilename, MDStringField, ); \
3615 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3616 OPTIONAL(enums, MDField, ); \
3617 OPTIONAL(retainedTypes, MDField, ); \
3618 OPTIONAL(subprograms, MDField, ); \
3619 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003620 OPTIONAL(imports, MDField, ); \
3621 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003622 PARSE_MD_FIELDS();
3623#undef VISIT_MD_FIELDS
3624
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003625 Result = DICompileUnit::getDistinct(
3626 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3627 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3628 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003629 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003630}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003631
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003632/// ParseDISubprogram:
3633/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003634/// file: !1, line: 7, type: !2, isLocal: false,
3635/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003636/// virtuality: DW_VIRTUALTIY_pure_virtual,
3637/// virtualIndex: 10, flags: 11,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003638/// isOptimized: false, function: void ()* @_Z3foov,
3639/// templateParams: !4, declaration: !5, variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003640bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003641#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3642 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003643 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003644 OPTIONAL(linkageName, MDStringField, ); \
3645 OPTIONAL(file, MDField, ); \
3646 OPTIONAL(line, LineField, ); \
3647 OPTIONAL(type, MDField, ); \
3648 OPTIONAL(isLocal, MDBoolField, ); \
3649 OPTIONAL(isDefinition, MDBoolField, (true)); \
3650 OPTIONAL(scopeLine, LineField, ); \
3651 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003652 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003653 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003654 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003655 OPTIONAL(isOptimized, MDBoolField, ); \
3656 OPTIONAL(function, MDConstant, ); \
3657 OPTIONAL(templateParams, MDField, ); \
3658 OPTIONAL(declaration, MDField, ); \
3659 OPTIONAL(variables, MDField, );
3660 PARSE_MD_FIELDS();
3661#undef VISIT_MD_FIELDS
3662
3663 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003664 DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003665 line.Val, type.Val, isLocal.Val, isDefinition.Val,
3666 scopeLine.Val, containingType.Val, virtuality.Val,
3667 virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3668 templateParams.Val, declaration.Val, variables.Val));
3669 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003670}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003671
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003672/// ParseDILexicalBlock:
3673/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3674bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003675#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003676 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003677 OPTIONAL(file, MDField, ); \
3678 OPTIONAL(line, LineField, ); \
3679 OPTIONAL(column, ColumnField, );
3680 PARSE_MD_FIELDS();
3681#undef VISIT_MD_FIELDS
3682
3683 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003684 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003685 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003686}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003687
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003688/// ParseDILexicalBlockFile:
3689/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3690bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003691#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003692 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003693 OPTIONAL(file, MDField, ); \
3694 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3695 PARSE_MD_FIELDS();
3696#undef VISIT_MD_FIELDS
3697
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003698 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003699 (Context, scope.Val, file.Val, discriminator.Val));
3700 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003701}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003702
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003703/// ParseDINamespace:
3704/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3705bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003706#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3707 REQUIRED(scope, MDField, ); \
3708 OPTIONAL(file, MDField, ); \
3709 OPTIONAL(name, MDStringField, ); \
3710 OPTIONAL(line, LineField, );
3711 PARSE_MD_FIELDS();
3712#undef VISIT_MD_FIELDS
3713
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003714 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003715 (Context, scope.Val, file.Val, name.Val, line.Val));
3716 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003717}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003718
Adrian Prantlab1243f2015-06-29 23:03:47 +00003719/// ParseDIModule:
3720/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3721/// includePath: "/usr/include", isysroot: "/")
3722bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3723#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3724 REQUIRED(scope, MDField, ); \
3725 REQUIRED(name, MDStringField, ); \
3726 OPTIONAL(configMacros, MDStringField, ); \
3727 OPTIONAL(includePath, MDStringField, ); \
3728 OPTIONAL(isysroot, MDStringField, );
3729 PARSE_MD_FIELDS();
3730#undef VISIT_MD_FIELDS
3731
3732 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3733 configMacros.Val, includePath.Val, isysroot.Val));
3734 return false;
3735}
3736
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003737/// ParseDITemplateTypeParameter:
3738/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3739bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003740#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003741 OPTIONAL(name, MDStringField, ); \
3742 REQUIRED(type, MDField, );
3743 PARSE_MD_FIELDS();
3744#undef VISIT_MD_FIELDS
3745
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003746 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003747 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003748 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003749}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003750
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003751/// ParseDITemplateValueParameter:
3752/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003753/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003754bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003755#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003756 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003757 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003758 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003759 REQUIRED(value, MDField, );
3760 PARSE_MD_FIELDS();
3761#undef VISIT_MD_FIELDS
3762
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003763 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003764 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003765 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003766}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003767
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003768/// ParseDIGlobalVariable:
3769/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003770/// file: !1, line: 7, type: !2, isLocal: false,
3771/// isDefinition: true, variable: i32* @foo,
3772/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003773bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003774#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003775 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003776 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003777 OPTIONAL(linkageName, MDStringField, ); \
3778 OPTIONAL(file, MDField, ); \
3779 OPTIONAL(line, LineField, ); \
3780 OPTIONAL(type, MDField, ); \
3781 OPTIONAL(isLocal, MDBoolField, ); \
3782 OPTIONAL(isDefinition, MDBoolField, (true)); \
3783 OPTIONAL(variable, MDConstant, ); \
3784 OPTIONAL(declaration, MDField, );
3785 PARSE_MD_FIELDS();
3786#undef VISIT_MD_FIELDS
3787
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003788 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003789 (Context, scope.Val, name.Val, linkageName.Val,
3790 file.Val, line.Val, type.Val, isLocal.Val,
3791 isDefinition.Val, variable.Val, declaration.Val));
3792 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003793}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003794
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003795/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003796/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3797/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
3798/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003799/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003800bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003801#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003802 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003803 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003804 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003805 OPTIONAL(file, MDField, ); \
3806 OPTIONAL(line, LineField, ); \
3807 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003808 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003809 PARSE_MD_FIELDS();
3810#undef VISIT_MD_FIELDS
3811
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003812 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003813 (Context, scope.Val, name.Val, file.Val, line.Val,
3814 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003815 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003816}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003817
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003818/// ParseDIExpression:
3819/// ::= !DIExpression(0, 7, -1)
3820bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003821 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3822 Lex.Lex();
3823
3824 if (ParseToken(lltok::lparen, "expected '(' here"))
3825 return true;
3826
3827 SmallVector<uint64_t, 8> Elements;
3828 if (Lex.getKind() != lltok::rparen)
3829 do {
3830 if (Lex.getKind() == lltok::DwarfOp) {
3831 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3832 Lex.Lex();
3833 Elements.push_back(Op);
3834 continue;
3835 }
3836 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3837 }
3838
3839 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3840 return TokError("expected unsigned integer");
3841
3842 auto &U = Lex.getAPSIntVal();
3843 if (U.ugt(UINT64_MAX))
3844 return TokError("element too large, limit is " + Twine(UINT64_MAX));
3845 Elements.push_back(U.getZExtValue());
3846 Lex.Lex();
3847 } while (EatIfPresent(lltok::comma));
3848
3849 if (ParseToken(lltok::rparen, "expected ')' here"))
3850 return true;
3851
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003852 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003853 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003854}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003855
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003856/// ParseDIObjCProperty:
3857/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003858/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003859bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003860#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003861 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003862 OPTIONAL(file, MDField, ); \
3863 OPTIONAL(line, LineField, ); \
3864 OPTIONAL(setter, MDStringField, ); \
3865 OPTIONAL(getter, MDStringField, ); \
3866 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
3867 OPTIONAL(type, MDField, );
3868 PARSE_MD_FIELDS();
3869#undef VISIT_MD_FIELDS
3870
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003871 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003872 (Context, name.Val, file.Val, line.Val, setter.Val,
3873 getter.Val, attributes.Val, type.Val));
3874 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003875}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003876
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003877/// ParseDIImportedEntity:
3878/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003879/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003880bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003881#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3882 REQUIRED(tag, DwarfTagField, ); \
3883 REQUIRED(scope, MDField, ); \
3884 OPTIONAL(entity, MDField, ); \
3885 OPTIONAL(line, LineField, ); \
3886 OPTIONAL(name, MDStringField, );
3887 PARSE_MD_FIELDS();
3888#undef VISIT_MD_FIELDS
3889
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003890 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003891 entity.Val, line.Val, name.Val));
3892 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003893}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003894
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003895#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003896#undef NOP_FIELD
3897#undef REQUIRE_FIELD
3898#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003899
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003900/// ParseMetadataAsValue
3901/// ::= metadata i32 %local
3902/// ::= metadata i32 @global
3903/// ::= metadata i32 7
3904/// ::= metadata !0
3905/// ::= metadata !{...}
3906/// ::= metadata !"string"
3907bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
3908 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003909 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003910 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003911 return true;
3912
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003913 V = MetadataAsValue::get(Context, MD);
3914 return false;
3915}
3916
3917/// ParseValueAsMetadata
3918/// ::= i32 %local
3919/// ::= i32 @global
3920/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003921bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
3922 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003923 Type *Ty;
3924 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003925 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003926 return true;
3927 if (Ty->isMetadataTy())
3928 return Error(Loc, "invalid metadata-value-metadata roundtrip");
3929
3930 Value *V;
3931 if (ParseValue(Ty, V, PFS))
3932 return true;
3933
3934 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003935 return false;
3936}
3937
3938/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003939/// ::= i32 %local
3940/// ::= i32 @global
3941/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00003942/// ::= !42
3943/// ::= !{...}
3944/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003945/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003946bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003947 if (Lex.getKind() == lltok::MetadataVar) {
3948 MDNode *N;
3949 if (ParseSpecializedMDNode(N))
3950 return true;
3951 MD = N;
3952 return false;
3953 }
3954
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003955 // ValueAsMetadata:
3956 // <type> <value>
3957 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003958 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003959
3960 // '!'.
3961 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
3962 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00003963
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003964 // MDString:
3965 // ::= '!' STRINGCONSTANT
3966 if (Lex.getKind() == lltok::StringConstant) {
3967 MDString *S;
3968 if (ParseMDString(S))
3969 return true;
3970 MD = S;
3971 return false;
3972 }
3973
Dan Gohman8939ba332010-07-14 18:26:50 +00003974 // MDNode:
3975 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003976 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003977 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003978 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003979 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003980 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00003981 return false;
3982}
3983
Victor Hernandez9d75c962010-01-11 22:31:58 +00003984
3985//===----------------------------------------------------------------------===//
3986// Function Parsing.
3987//===----------------------------------------------------------------------===//
3988
Chris Lattner229907c2011-07-18 04:54:35 +00003989bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez9d75c962010-01-11 22:31:58 +00003990 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003991 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003992 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003993
Chris Lattnerac161bf2009-01-02 07:01:27 +00003994 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003995 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00003996 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
3997 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003998 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003999 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004000 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
4001 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004002 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004003 case ValID::t_InlineAsm: {
David Blaikie41ba2b42015-07-27 23:32:19 +00004004 assert(ID.FTy);
4005 if (!InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004006 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004007 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4008 (ID.UIntVal >> 1) & 1,
4009 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004010 return false;
4011 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004012 case ValID::t_GlobalName:
4013 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004014 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004015 case ValID::t_GlobalID:
4016 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004017 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004018 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004019 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004020 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004021 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004022 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004023 return false;
4024 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004025 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004026 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4027 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004028
Dan Gohman518cda42011-12-17 00:04:22 +00004029 // The lexer has no type info, so builds all half, float, and double FP
4030 // constants as double. Fix this here. Long double does not need this.
4031 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004032 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004033 if (Ty->isHalfTy())
4034 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4035 &Ignored);
4036 else if (Ty->isFloatTy())
4037 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4038 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004039 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004040 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004041
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004042 if (V->getType() != Ty)
4043 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004044 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004045
Chris Lattnerac161bf2009-01-02 07:01:27 +00004046 return false;
4047 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004048 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004049 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004050 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004051 return false;
4052 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004053 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004054 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004055 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004056 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004057 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004058 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004059 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004060 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004061 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004062 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004063 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004064 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004065 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004066 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004067 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004068 return false;
4069 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004070 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004071 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004072
Chris Lattnerac161bf2009-01-02 07:01:27 +00004073 V = ID.ConstantVal;
4074 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004075 case ValID::t_ConstantStruct:
4076 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004077 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004078 if (ST->getNumElements() != ID.UIntVal)
4079 return Error(ID.Loc,
4080 "initializer with struct type has wrong # elements");
4081 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4082 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004083
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004084 // Verify that the elements are compatible with the structtype.
4085 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4086 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4087 return Error(ID.Loc, "element " + Twine(i) +
4088 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004089
David Blaikieadbda4b2015-08-03 20:08:41 +00004090 V = ConstantStruct::get(
4091 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004092 } else
4093 return Error(ID.Loc, "constant expression type mismatch");
4094 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004095 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004096 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004097}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004098
Alex Lorenzd2255952015-07-17 22:07:03 +00004099bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4100 C = nullptr;
4101 ValID ID;
4102 auto Loc = Lex.getLoc();
4103 if (ParseValID(ID, /*PFS=*/nullptr))
4104 return true;
4105 switch (ID.Kind) {
4106 case ValID::t_APSInt:
4107 case ValID::t_APFloat:
4108 case ValID::t_Constant:
4109 case ValID::t_ConstantStruct:
4110 case ValID::t_PackedConstantStruct: {
4111 Value *V;
4112 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4113 return true;
4114 assert(isa<Constant>(V) && "Expected a constant value");
4115 C = cast<Constant>(V);
4116 return false;
4117 }
4118 default:
4119 return Error(Loc, "expected a constant value");
4120 }
4121}
4122
Chris Lattner229907c2011-07-18 04:54:35 +00004123bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004124 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004125 ValID ID;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004126 return ParseValID(ID, PFS) ||
4127 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004128}
4129
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004130bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004131 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004132 return ParseType(Ty) ||
4133 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004134}
4135
Chris Lattner3ed871f2009-10-27 19:13:16 +00004136bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4137 PerFunctionState &PFS) {
4138 Value *V;
4139 Loc = Lex.getLoc();
4140 if (ParseTypeAndValue(V, PFS)) return true;
4141 if (!isa<BasicBlock>(V))
4142 return Error(Loc, "expected a basic block");
4143 BB = cast<BasicBlock>(V);
4144 return false;
4145}
4146
4147
Chris Lattnerac161bf2009-01-02 07:01:27 +00004148/// FunctionHeader
4149/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004150/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004151/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004152bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4153 // Parse the linkage.
4154 LocTy LinkageLoc = Lex.getLoc();
4155 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004156
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004157 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004158 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004159 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004160 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004161 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004162 LocTy RetTypeLoc = Lex.getLoc();
4163 if (ParseOptionalLinkage(Linkage) ||
4164 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004165 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004166 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004167 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004168 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004169 return true;
4170
4171 // Verify that the linkage is ok.
4172 switch ((GlobalValue::LinkageTypes)Linkage) {
4173 case GlobalValue::ExternalLinkage:
4174 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004175 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004176 if (isDefine)
4177 return Error(LinkageLoc, "invalid linkage for function definition");
4178 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004179 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004180 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004181 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004182 case GlobalValue::LinkOnceAnyLinkage:
4183 case GlobalValue::LinkOnceODRLinkage:
4184 case GlobalValue::WeakAnyLinkage:
4185 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004186 if (!isDefine)
4187 return Error(LinkageLoc, "invalid linkage for function declaration");
4188 break;
4189 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004190 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004191 return Error(LinkageLoc, "invalid function linkage type");
4192 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004193
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004194 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4195 return Error(LinkageLoc,
4196 "symbol with local linkage must have default visibility");
4197
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004198 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004199 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004200
Chris Lattnerac161bf2009-01-02 07:01:27 +00004201 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004202
4203 std::string FunctionName;
4204 if (Lex.getKind() == lltok::GlobalVar) {
4205 FunctionName = Lex.getStrVal();
4206 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4207 unsigned NameID = Lex.getUIntVal();
4208
4209 if (NameID != NumberedVals.size())
4210 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004211 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004212 } else {
4213 return TokError("expected function name");
4214 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004215
Chris Lattner3822f632009-01-02 08:05:26 +00004216 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004217
Chris Lattner3822f632009-01-02 08:05:26 +00004218 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004219 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004220
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004221 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004222 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004223 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004224 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004225 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004226 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004227 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004228 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004229 bool UnnamedAddr;
4230 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004231 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004232 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004233 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004234 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004235
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004236 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004237 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4238 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004239 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004240 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004241 (EatIfPresent(lltok::kw_section) &&
4242 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004243 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004244 ParseOptionalAlignment(Alignment) ||
4245 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004246 ParseStringConstant(GC)) ||
4247 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004248 ParseGlobalTypeAndValue(Prefix)) ||
4249 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004250 ParseGlobalTypeAndValue(Prologue)) ||
4251 (EatIfPresent(lltok::kw_personality) &&
4252 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004253 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004254
Michael Gottesman41748d72013-06-27 00:25:01 +00004255 if (FuncAttrs.contains(Attribute::Builtin))
4256 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004257
Chris Lattnerac161bf2009-01-02 07:01:27 +00004258 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004259 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004260 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004261 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004262 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004263
Chris Lattnerac161bf2009-01-02 07:01:27 +00004264 // Okay, if we got here, the function is syntactically valid. Convert types
4265 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004266 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004267 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004268
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004269 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004270 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4271 AttributeSet::ReturnIndex,
4272 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004273
Chris Lattnerac161bf2009-01-02 07:01:27 +00004274 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004275 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004276 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4277 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004278 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4279 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004280 }
4281
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004282 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004283 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4284 AttributeSet::FunctionIndex,
4285 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004286
Bill Wendlinge94d8432012-12-07 23:16:57 +00004287 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004288
Bill Wendling749a43d2012-12-30 13:50:49 +00004289 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004290 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4291
Chris Lattner229907c2011-07-18 04:54:35 +00004292 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004293 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004294 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004295
Craig Topper2617dcc2014-04-15 06:32:26 +00004296 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004297 if (!FunctionName.empty()) {
4298 // If this was a definition of a forward reference, remove the definition
4299 // from the forward reference table and fill in the forward ref.
4300 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4301 ForwardRefVals.find(FunctionName);
4302 if (FRVI != ForwardRefVals.end()) {
4303 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004304 if (!Fn)
4305 return Error(FRVI->second.second, "invalid forward reference to "
4306 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004307 if (Fn->getType() != PFT)
4308 return Error(FRVI->second.second, "invalid forward reference to "
4309 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004310
Chris Lattnerac161bf2009-01-02 07:01:27 +00004311 ForwardRefVals.erase(FRVI);
4312 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004313 // Reject redefinitions.
4314 return Error(NameLoc, "invalid redefinition of function '" +
4315 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004316 } else if (M->getNamedValue(FunctionName)) {
4317 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004318 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004319
Dan Gohman399d6ae2009-08-29 23:37:49 +00004320 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004321 // If this is a definition of a forward referenced function, make sure the
4322 // types agree.
4323 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4324 = ForwardRefValIDs.find(NumberedVals.size());
4325 if (I != ForwardRefValIDs.end()) {
4326 Fn = cast<Function>(I->second.first);
4327 if (Fn->getType() != PFT)
4328 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004329 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004330 ForwardRefValIDs.erase(I);
4331 }
4332 }
4333
Craig Topper2617dcc2014-04-15 06:32:26 +00004334 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004335 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4336 else // Move the forward-reference to the correct spot in the module.
4337 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4338
4339 if (FunctionName.empty())
4340 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004341
Chris Lattnerac161bf2009-01-02 07:01:27 +00004342 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4343 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004344 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004345 Fn->setCallingConv(CC);
4346 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004347 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004348 Fn->setAlignment(Alignment);
4349 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004350 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004351 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004352 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004353 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004354 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004355 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004356
Chris Lattnerac161bf2009-01-02 07:01:27 +00004357 // Add all of the arguments we parsed to the function.
4358 Function::arg_iterator ArgIt = Fn->arg_begin();
4359 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4360 // If the argument has a name, insert it into the argument symbol table.
4361 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004362
Chris Lattnerac161bf2009-01-02 07:01:27 +00004363 // Set the name, if it conflicted, it will be auto-renamed.
4364 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004365
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004366 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004367 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4368 ArgList[i].Name + "'");
4369 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004370
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004371 if (isDefine)
4372 return false;
4373
Robin Morisset039781e2014-08-29 21:53:01 +00004374 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004375 ValID ID;
4376 if (FunctionName.empty()) {
4377 ID.Kind = ValID::t_GlobalID;
4378 ID.UIntVal = NumberedVals.size() - 1;
4379 } else {
4380 ID.Kind = ValID::t_GlobalName;
4381 ID.StrVal = FunctionName;
4382 }
4383 auto Blocks = ForwardRefBlockAddresses.find(ID);
4384 if (Blocks != ForwardRefBlockAddresses.end())
4385 return Error(Blocks->first.Loc,
4386 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004387 return false;
4388}
4389
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004390bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4391 ValID ID;
4392 if (FunctionNumber == -1) {
4393 ID.Kind = ValID::t_GlobalName;
4394 ID.StrVal = F.getName();
4395 } else {
4396 ID.Kind = ValID::t_GlobalID;
4397 ID.UIntVal = FunctionNumber;
4398 }
4399
4400 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4401 if (Blocks == P.ForwardRefBlockAddresses.end())
4402 return false;
4403
4404 for (const auto &I : Blocks->second) {
4405 const ValID &BBID = I.first;
4406 GlobalValue *GV = I.second;
4407
4408 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4409 "Expected local id or name");
4410 BasicBlock *BB;
4411 if (BBID.Kind == ValID::t_LocalName)
4412 BB = GetBB(BBID.StrVal, BBID.Loc);
4413 else
4414 BB = GetBB(BBID.UIntVal, BBID.Loc);
4415 if (!BB)
4416 return P.Error(BBID.Loc, "referenced value is not a basic block");
4417
4418 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4419 GV->eraseFromParent();
4420 }
4421
4422 P.ForwardRefBlockAddresses.erase(Blocks);
4423 return false;
4424}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004425
4426/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004427/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004428bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004429 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004430 return TokError("expected '{' in function body");
4431 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004432
Chris Lattner3432c622009-10-28 03:39:23 +00004433 int FunctionNumber = -1;
4434 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004435
Chris Lattner3432c622009-10-28 03:39:23 +00004436 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004437
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004438 // Resolve block addresses and allow basic blocks to be forward-declared
4439 // within this function.
4440 if (PFS.resolveForwardRefBlockAddresses())
4441 return true;
4442 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4443
Chris Lattnerbbddd962010-01-09 19:20:07 +00004444 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004445 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004446 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004447
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004448 while (Lex.getKind() != lltok::rbrace &&
4449 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004450 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004451
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004452 while (Lex.getKind() != lltok::rbrace)
4453 if (ParseUseListOrder(&PFS))
4454 return true;
4455
Chris Lattnerac161bf2009-01-02 07:01:27 +00004456 // Eat the }.
4457 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004458
Chris Lattnerac161bf2009-01-02 07:01:27 +00004459 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004460 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004461}
4462
4463/// ParseBasicBlock
4464/// ::= LabelStr? Instruction*
4465bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4466 // If this basic block starts out with a name, remember it.
4467 std::string Name;
4468 LocTy NameLoc = Lex.getLoc();
4469 if (Lex.getKind() == lltok::LabelStr) {
4470 Name = Lex.getStrVal();
4471 Lex.Lex();
4472 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004473
Chris Lattnerac161bf2009-01-02 07:01:27 +00004474 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004475 if (!BB)
4476 return Error(NameLoc,
4477 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004478
Chris Lattnerac161bf2009-01-02 07:01:27 +00004479 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004480
Chris Lattnerac161bf2009-01-02 07:01:27 +00004481 // Parse the instructions in this block until we get a terminator.
4482 Instruction *Inst;
4483 do {
4484 // This instruction may have three possibilities for a name: a) none
4485 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4486 LocTy NameLoc = Lex.getLoc();
4487 int NameID = -1;
4488 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004489
Chris Lattnerac161bf2009-01-02 07:01:27 +00004490 if (Lex.getKind() == lltok::LocalVarID) {
4491 NameID = Lex.getUIntVal();
4492 Lex.Lex();
4493 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4494 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004495 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004496 NameStr = Lex.getStrVal();
4497 Lex.Lex();
4498 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4499 return true;
4500 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004501
Chris Lattner77b89dc2009-12-30 05:23:43 +00004502 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004503 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004504 case InstError: return true;
4505 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004506 BB->getInstList().push_back(Inst);
4507
Chris Lattner77b89dc2009-12-30 05:23:43 +00004508 // With a normal result, we check to see if the instruction is followed by
4509 // a comma and metadata.
4510 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004511 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004512 return true;
4513 break;
4514 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004515 BB->getInstList().push_back(Inst);
4516
Chris Lattner77b89dc2009-12-30 05:23:43 +00004517 // If the instruction parser ate an extra comma at the end of it, it
4518 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004519 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004520 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004521 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004522 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004523
Chris Lattnerac161bf2009-01-02 07:01:27 +00004524 // Set the name on the instruction.
4525 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4526 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004527
Chris Lattnerac161bf2009-01-02 07:01:27 +00004528 return false;
4529}
4530
4531//===----------------------------------------------------------------------===//
4532// Instruction Parsing.
4533//===----------------------------------------------------------------------===//
4534
4535/// ParseInstruction - Parse one of the many different instructions.
4536///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004537int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4538 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004539 lltok::Kind Token = Lex.getKind();
4540 if (Token == lltok::Eof)
4541 return TokError("found end of file when expecting more instructions");
4542 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004543 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004544 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004545
Chris Lattnerac161bf2009-01-02 07:01:27 +00004546 switch (Token) {
4547 default: return Error(Loc, "expected instruction opcode");
4548 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004549 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004550 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4551 case lltok::kw_br: return ParseBr(Inst, PFS);
4552 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004553 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004554 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004555 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004556 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4557 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
4558 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
4559 case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4560 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4561 case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004562 // Binary Operators.
4563 case lltok::kw_add:
4564 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004565 case lltok::kw_mul:
4566 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004567 bool NUW = EatIfPresent(lltok::kw_nuw);
4568 bool NSW = EatIfPresent(lltok::kw_nsw);
4569 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004570
Chris Lattnera676c0f2011-02-07 16:40:21 +00004571 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004572
Chris Lattnera676c0f2011-02-07 16:40:21 +00004573 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4574 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4575 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004576 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004577 case lltok::kw_fadd:
4578 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004579 case lltok::kw_fmul:
4580 case lltok::kw_fdiv:
4581 case lltok::kw_frem: {
4582 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4583 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4584 if (Res != 0)
4585 return Res;
4586 if (FMF.any())
4587 Inst->setFastMathFlags(FMF);
4588 return 0;
4589 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004590
Chris Lattner35315d02011-02-06 21:44:57 +00004591 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004592 case lltok::kw_udiv:
4593 case lltok::kw_lshr:
4594 case lltok::kw_ashr: {
4595 bool Exact = EatIfPresent(lltok::kw_exact);
4596
4597 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4598 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4599 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004600 }
4601
Chris Lattnerac161bf2009-01-02 07:01:27 +00004602 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004603 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004604 case lltok::kw_and:
4605 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004606 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004607 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4608 case lltok::kw_fcmp: {
4609 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4610 int Res = ParseCompare(Inst, PFS, KeywordVal);
4611 if (Res != 0)
4612 return Res;
4613 if (FMF.any())
4614 Inst->setFastMathFlags(FMF);
4615 return 0;
4616 }
4617
Chris Lattnerac161bf2009-01-02 07:01:27 +00004618 // Casts.
4619 case lltok::kw_trunc:
4620 case lltok::kw_zext:
4621 case lltok::kw_sext:
4622 case lltok::kw_fptrunc:
4623 case lltok::kw_fpext:
4624 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004625 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004626 case lltok::kw_uitofp:
4627 case lltok::kw_sitofp:
4628 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004629 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004630 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004631 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004632 // Other.
4633 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004634 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004635 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4636 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4637 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4638 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004639 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004640 // Call.
4641 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4642 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4643 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004644 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004645 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004646 case lltok::kw_load: return ParseLoad(Inst, PFS);
4647 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004648 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4649 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004650 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004651 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4652 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4653 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4654 }
4655}
4656
4657/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4658bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004659 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004660 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004661 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004662 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4663 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4664 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4665 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4666 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4667 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4668 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4669 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4670 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4671 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4672 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4673 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4674 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4675 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4676 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4677 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4678 }
4679 } else {
4680 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004681 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004682 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4683 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4684 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4685 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4686 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4687 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4688 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4689 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4690 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4691 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4692 }
4693 }
4694 Lex.Lex();
4695 return false;
4696}
4697
4698//===----------------------------------------------------------------------===//
4699// Terminator Instructions.
4700//===----------------------------------------------------------------------===//
4701
4702/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004703/// ::= 'ret' void (',' !dbg, !1)*
4704/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004705bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004706 PerFunctionState &PFS) {
4707 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004708 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004709 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004710
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004711 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004712
Chris Lattnerfdd87902009-10-05 05:54:46 +00004713 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004714 if (!ResType->isVoidTy())
4715 return Error(TypeLoc, "value doesn't match function result type '" +
4716 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004717
Owen Anderson55f1c092009-08-13 21:58:54 +00004718 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004719 return false;
4720 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004721
Chris Lattnerac161bf2009-01-02 07:01:27 +00004722 Value *RV;
4723 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004724
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004725 if (ResType != RV->getType())
4726 return Error(TypeLoc, "value doesn't match function result type '" +
4727 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004728
Owen Anderson55f1c092009-08-13 21:58:54 +00004729 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004730 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004731}
4732
4733
4734/// ParseBr
4735/// ::= 'br' TypeAndValue
4736/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4737bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4738 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004739 Value *Op0;
4740 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004741 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004742
Chris Lattnerac161bf2009-01-02 07:01:27 +00004743 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4744 Inst = BranchInst::Create(BB);
4745 return false;
4746 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004747
Owen Anderson55f1c092009-08-13 21:58:54 +00004748 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004749 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004750
Chris Lattnerac161bf2009-01-02 07:01:27 +00004751 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004752 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004753 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004754 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004755 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004756
Chris Lattner3ed871f2009-10-27 19:13:16 +00004757 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004758 return false;
4759}
4760
4761/// ParseSwitch
4762/// Instruction
4763/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4764/// JumpTable
4765/// ::= (TypeAndValue ',' TypeAndValue)*
4766bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4767 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004768 Value *Cond;
4769 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004770 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4771 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004772 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004773 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4774 return true;
4775
Duncan Sands19d0b472010-02-16 11:11:14 +00004776 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004777 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004778
Chris Lattnerac161bf2009-01-02 07:01:27 +00004779 // Parse the jump table pairs.
4780 SmallPtrSet<Value*, 32> SeenCases;
4781 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4782 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004783 Value *Constant;
4784 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004785
Chris Lattnerac161bf2009-01-02 07:01:27 +00004786 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4787 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004788 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004789 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004790
David Blaikie70573dc2014-11-19 07:49:26 +00004791 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004792 return Error(CondLoc, "duplicate case value in switch");
4793 if (!isa<ConstantInt>(Constant))
4794 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004795
Chris Lattner3ed871f2009-10-27 19:13:16 +00004796 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004797 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004798
Chris Lattnerac161bf2009-01-02 07:01:27 +00004799 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004800
Chris Lattner3ed871f2009-10-27 19:13:16 +00004801 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004802 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4803 SI->addCase(Table[i].first, Table[i].second);
4804 Inst = SI;
4805 return false;
4806}
4807
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004808/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00004809/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004810/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4811bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004812 LocTy AddrLoc;
4813 Value *Address;
4814 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004815 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4816 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00004817 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004818
Duncan Sands19d0b472010-02-16 11:11:14 +00004819 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004820 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004821
Chris Lattner3ed871f2009-10-27 19:13:16 +00004822 // Parse the destination list.
4823 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004824
Chris Lattner3ed871f2009-10-27 19:13:16 +00004825 if (Lex.getKind() != lltok::rsquare) {
4826 BasicBlock *DestBB;
4827 if (ParseTypeAndBasicBlock(DestBB, PFS))
4828 return true;
4829 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004830
Chris Lattner3ed871f2009-10-27 19:13:16 +00004831 while (EatIfPresent(lltok::comma)) {
4832 if (ParseTypeAndBasicBlock(DestBB, PFS))
4833 return true;
4834 DestList.push_back(DestBB);
4835 }
4836 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004837
Chris Lattner3ed871f2009-10-27 19:13:16 +00004838 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4839 return true;
4840
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004841 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00004842 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4843 IBI->addDestination(DestList[i]);
4844 Inst = IBI;
4845 return false;
4846}
4847
4848
Chris Lattnerac161bf2009-01-02 07:01:27 +00004849/// ParseInvoke
4850/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4851/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4852bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4853 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00004854 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004855 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00004856 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004857 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004858 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004859 LocTy RetTypeLoc;
4860 ValID CalleeID;
4861 SmallVector<ParamInfo, 16> ArgList;
4862
Chris Lattner3ed871f2009-10-27 19:13:16 +00004863 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004864 if (ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004865 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004866 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004867 ParseValID(CalleeID) ||
4868 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004869 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
4870 NoBuiltinLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004871 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004872 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004873 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004874 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004875 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004876
Chris Lattnerac161bf2009-01-02 07:01:27 +00004877 // If RetType is a non-function pointer type, then this is the short syntax
4878 // for the call, which means that RetType is just the return type. Infer the
4879 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00004880 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
4881 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004882 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00004883 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004884 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
4885 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004886
Chris Lattnerac161bf2009-01-02 07:01:27 +00004887 if (!FunctionType::isValidReturnType(RetType))
4888 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004889
Owen Anderson4056ca92009-07-29 22:17:13 +00004890 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004891 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004892
David Blaikie41ba2b42015-07-27 23:32:19 +00004893 CalleeID.FTy = Ty;
4894
Chris Lattnerac161bf2009-01-02 07:01:27 +00004895 // Look up the callee.
4896 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00004897 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
4898 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004899
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004900 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00004901 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004902 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004903 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4904 AttributeSet::ReturnIndex,
4905 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004906
Chris Lattnerac161bf2009-01-02 07:01:27 +00004907 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004908
Chris Lattnerac161bf2009-01-02 07:01:27 +00004909 // Loop through FunctionType's arguments and ensure they are specified
4910 // correctly. Also, gather any parameter attributes.
4911 FunctionType::param_iterator I = Ty->param_begin();
4912 FunctionType::param_iterator E = Ty->param_end();
4913 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004914 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004915 if (I != E) {
4916 ExpectedTy = *I++;
4917 } else if (!Ty->isVarArg()) {
4918 return Error(ArgList[i].Loc, "too many arguments specified");
4919 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004920
Chris Lattnerac161bf2009-01-02 07:01:27 +00004921 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4922 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004923 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004924 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004925 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4926 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004927 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4928 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004929 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004930
Chris Lattnerac161bf2009-01-02 07:01:27 +00004931 if (I != E)
4932 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004933
David Majnemer8d22abd2015-02-23 00:01:32 +00004934 if (FnAttrs.hasAttributes()) {
4935 if (FnAttrs.hasAlignmentAttr())
4936 return Error(CallLoc, "invoke instructions may not have an alignment");
4937
Bill Wendlingf5075a42013-01-27 02:24:02 +00004938 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4939 AttributeSet::FunctionIndex,
4940 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00004941 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004942
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004943 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00004944 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004945
David Blaikie3e807092015-05-13 18:35:26 +00004946 InvokeInst *II = InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004947 II->setCallingConv(CC);
4948 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004949 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004950 Inst = II;
4951 return false;
4952}
4953
Bill Wendlingf891bf82011-07-31 06:30:59 +00004954/// ParseResume
4955/// ::= 'resume' TypeAndValue
4956bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
4957 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00004958 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
4959 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004960
Bill Wendlingf891bf82011-07-31 06:30:59 +00004961 ResumeInst *RI = ResumeInst::Create(Exn);
4962 Inst = RI;
4963 return false;
4964}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004965
David Majnemer654e1302015-07-31 17:58:14 +00004966bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
4967 PerFunctionState &PFS) {
4968 if (ParseToken(lltok::lsquare, "expected '[' in cleanuppad"))
4969 return true;
4970
4971 while (Lex.getKind() != lltok::rsquare) {
4972 // If this isn't the first argument, we need a comma.
4973 if (!Args.empty() &&
4974 ParseToken(lltok::comma, "expected ',' in argument list"))
4975 return true;
4976
4977 // Parse the argument.
4978 LocTy ArgLoc;
4979 Type *ArgTy = nullptr;
4980 if (ParseType(ArgTy, ArgLoc))
4981 return true;
4982
4983 Value *V;
4984 if (ArgTy->isMetadataTy()) {
4985 if (ParseMetadataAsValue(V, PFS))
4986 return true;
4987 } else {
4988 if (ParseValue(ArgTy, V, PFS))
4989 return true;
4990 }
4991 Args.push_back(V);
4992 }
4993
4994 Lex.Lex(); // Lex the ']'.
4995 return false;
4996}
4997
4998/// ParseCleanupRet
4999/// ::= 'cleanupret' ('void' | TypeAndValue) unwind ('to' 'caller' | TypeAndValue)
5000bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
5001 Type *RetTy = nullptr;
5002 Value *RetVal = nullptr;
5003 if (ParseType(RetTy, /*AllowVoid=*/true))
5004 return true;
5005
5006 if (!RetTy->isVoidTy())
5007 if (ParseValue(RetTy, RetVal, PFS))
5008 return true;
5009
5010 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5011 return true;
5012
5013 BasicBlock *UnwindBB = nullptr;
5014 if (Lex.getKind() == lltok::kw_to) {
5015 Lex.Lex();
5016 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5017 return true;
5018 } else {
5019 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5020 return true;
5021 }
5022 }
5023
5024 Inst = CleanupReturnInst::Create(Context, RetVal, UnwindBB);
5025 return false;
5026}
5027
5028/// ParseCatchRet
5029/// ::= 'catchret' TypeAndValue
5030bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
5031 BasicBlock *BB;
5032 if (ParseTypeAndBasicBlock(BB, PFS))
5033 return true;
5034
5035 Inst = CatchReturnInst::Create(BB);
5036 return false;
5037}
5038
5039/// ParseCatchPad
5040/// ::= 'catchpad' Type ParamList 'to' TypeAndValue 'unwind' TypeAndValue
5041bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
5042 Type *RetType = nullptr;
5043
5044 SmallVector<Value *, 8> Args;
5045 if (ParseType(RetType, /*AllowVoid=*/true) || ParseExceptionArgs(Args, PFS))
5046 return true;
5047
5048 BasicBlock *NormalBB, *UnwindBB;
5049 if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5050 ParseTypeAndBasicBlock(NormalBB, PFS) ||
5051 ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5052 ParseTypeAndBasicBlock(UnwindBB, PFS))
5053 return true;
5054
5055 Inst = CatchPadInst::Create(RetType, NormalBB, UnwindBB, Args);
5056 return false;
5057}
5058
5059/// ParseTerminatePad
5060/// ::= 'terminatepad' ParamList 'to' TypeAndValue
5061bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5062 SmallVector<Value *, 8> Args;
5063 if (ParseExceptionArgs(Args, PFS))
5064 return true;
5065
5066 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5067 return true;
5068
5069 BasicBlock *UnwindBB = nullptr;
5070 if (Lex.getKind() == lltok::kw_to) {
5071 Lex.Lex();
5072 if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5073 return true;
5074 } else {
5075 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5076 return true;
5077 }
5078 }
5079
5080 Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5081 return false;
5082}
5083
5084/// ParseCleanupPad
5085/// ::= 'cleanuppad' ParamList
5086bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
5087 Type *RetType = nullptr;
5088
5089 SmallVector<Value *, 8> Args;
5090 if (ParseType(RetType, /*AllowVoid=*/true) || ParseExceptionArgs(Args, PFS))
5091 return true;
5092
5093 Inst = CleanupPadInst::Create(RetType, Args);
5094 return false;
5095}
5096
5097/// ParseCatchEndPad
5098/// ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5099bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5100 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5101 return true;
5102
5103 BasicBlock *UnwindBB = nullptr;
5104 if (Lex.getKind() == lltok::kw_to) {
5105 Lex.Lex();
5106 if (Lex.getKind() == lltok::kw_caller) {
5107 Lex.Lex();
5108 } else {
5109 return true;
5110 }
5111 } else {
5112 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5113 return true;
5114 }
5115 }
5116
5117 Inst = CatchEndPadInst::Create(Context, UnwindBB);
5118 return false;
5119}
5120
Chris Lattnerac161bf2009-01-02 07:01:27 +00005121//===----------------------------------------------------------------------===//
5122// Binary Operators.
5123//===----------------------------------------------------------------------===//
5124
5125/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005126/// ::= ArithmeticOps TypeAndValue ',' Value
5127///
5128/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5129/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005130bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005131 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005132 LocTy Loc; Value *LHS, *RHS;
5133 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5134 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5135 ParseValue(LHS->getType(), RHS, PFS))
5136 return true;
5137
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005138 bool Valid;
5139 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005140 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005141 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005142 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5143 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005144 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005145 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5146 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005147 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005148
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005149 if (!Valid)
5150 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005151
Chris Lattnerac161bf2009-01-02 07:01:27 +00005152 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5153 return false;
5154}
5155
5156/// ParseLogical
5157/// ::= ArithmeticOps TypeAndValue ',' Value {
5158bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5159 unsigned Opc) {
5160 LocTy Loc; Value *LHS, *RHS;
5161 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5162 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5163 ParseValue(LHS->getType(), RHS, PFS))
5164 return true;
5165
Duncan Sands9dff9be2010-02-15 16:12:20 +00005166 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005167 return Error(Loc,"instruction requires integer or integer vector operands");
5168
5169 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5170 return false;
5171}
5172
5173
5174/// ParseCompare
5175/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5176/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005177bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5178 unsigned Opc) {
5179 // Parse the integer/fp comparison predicate.
5180 LocTy Loc;
5181 unsigned Pred;
5182 Value *LHS, *RHS;
5183 if (ParseCmpPredicate(Pred, Opc) ||
5184 ParseTypeAndValue(LHS, Loc, PFS) ||
5185 ParseToken(lltok::comma, "expected ',' after compare value") ||
5186 ParseValue(LHS->getType(), RHS, PFS))
5187 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005188
Chris Lattnerac161bf2009-01-02 07:01:27 +00005189 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005190 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005191 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005192 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005193 } else {
5194 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005195 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005196 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005197 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005198 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005199 }
5200 return false;
5201}
5202
5203//===----------------------------------------------------------------------===//
5204// Other Instructions.
5205//===----------------------------------------------------------------------===//
5206
5207
5208/// ParseCast
5209/// ::= CastOpc TypeAndValue 'to' Type
5210bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5211 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005212 LocTy Loc;
5213 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005214 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005215 if (ParseTypeAndValue(Op, Loc, PFS) ||
5216 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5217 ParseType(DestTy))
5218 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005219
Chris Lattner89d856e2009-03-01 00:53:13 +00005220 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5221 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005222 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005223 getTypeString(Op->getType()) + "' to '" +
5224 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005225 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005226 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5227 return false;
5228}
5229
5230/// ParseSelect
5231/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5232bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5233 LocTy Loc;
5234 Value *Op0, *Op1, *Op2;
5235 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5236 ParseToken(lltok::comma, "expected ',' after select condition") ||
5237 ParseTypeAndValue(Op1, PFS) ||
5238 ParseToken(lltok::comma, "expected ',' after select value") ||
5239 ParseTypeAndValue(Op2, PFS))
5240 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005241
Chris Lattnerac161bf2009-01-02 07:01:27 +00005242 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5243 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005244
Chris Lattnerac161bf2009-01-02 07:01:27 +00005245 Inst = SelectInst::Create(Op0, Op1, Op2);
5246 return false;
5247}
5248
Chris Lattnerb55ab542009-01-05 08:18:44 +00005249/// ParseVA_Arg
5250/// ::= 'va_arg' TypeAndValue ',' Type
5251bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005252 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005253 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005254 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005255 if (ParseTypeAndValue(Op, PFS) ||
5256 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005257 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005258 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005259
Chris Lattnerb55ab542009-01-05 08:18:44 +00005260 if (!EltTy->isFirstClassType())
5261 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005262
5263 Inst = new VAArgInst(Op, EltTy);
5264 return false;
5265}
5266
5267/// ParseExtractElement
5268/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5269bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5270 LocTy Loc;
5271 Value *Op0, *Op1;
5272 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5273 ParseToken(lltok::comma, "expected ',' after extract value") ||
5274 ParseTypeAndValue(Op1, PFS))
5275 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005276
Chris Lattnerac161bf2009-01-02 07:01:27 +00005277 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5278 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005279
Eric Christopherc9742252009-07-25 02:28:41 +00005280 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005281 return false;
5282}
5283
5284/// ParseInsertElement
5285/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5286bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5287 LocTy Loc;
5288 Value *Op0, *Op1, *Op2;
5289 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5290 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5291 ParseTypeAndValue(Op1, PFS) ||
5292 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5293 ParseTypeAndValue(Op2, PFS))
5294 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005295
Chris Lattnerac161bf2009-01-02 07:01:27 +00005296 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005297 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005298
Chris Lattnerac161bf2009-01-02 07:01:27 +00005299 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5300 return false;
5301}
5302
5303/// ParseShuffleVector
5304/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5305bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5306 LocTy Loc;
5307 Value *Op0, *Op1, *Op2;
5308 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5309 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5310 ParseTypeAndValue(Op1, PFS) ||
5311 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5312 ParseTypeAndValue(Op2, PFS))
5313 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005314
Chris Lattnerac161bf2009-01-02 07:01:27 +00005315 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005316 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005317
Chris Lattnerac161bf2009-01-02 07:01:27 +00005318 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5319 return false;
5320}
5321
5322/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005323/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005324int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005325 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005326 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005327
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005328 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005329 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5330 ParseValue(Ty, Op0, PFS) ||
5331 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005332 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005333 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5334 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005335
Chris Lattnerf4f03422009-12-30 05:27:33 +00005336 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005337 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5338 while (1) {
5339 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005340
Chris Lattner3822f632009-01-02 08:05:26 +00005341 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005342 break;
5343
Chris Lattnerf4f03422009-12-30 05:27:33 +00005344 if (Lex.getKind() == lltok::MetadataVar) {
5345 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005346 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005347 }
Devang Patel8f842d32009-10-16 18:45:49 +00005348
Chris Lattner3822f632009-01-02 08:05:26 +00005349 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005350 ParseValue(Ty, Op0, PFS) ||
5351 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005352 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005353 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5354 return true;
5355 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005356
Chris Lattnerac161bf2009-01-02 07:01:27 +00005357 if (!Ty->isFirstClassType())
5358 return Error(TypeLoc, "phi node must have first class type");
5359
Jay Foad52131342011-03-30 11:28:46 +00005360 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005361 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5362 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5363 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005364 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005365}
5366
Bill Wendlingfae14752011-08-12 20:24:12 +00005367/// ParseLandingPad
5368/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5369/// Clause
5370/// ::= 'catch' TypeAndValue
5371/// ::= 'filter'
5372/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5373bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005374 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005375
David Majnemer7fddecc2015-06-17 20:52:32 +00005376 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005377 return true;
5378
David Majnemer7fddecc2015-06-17 20:52:32 +00005379 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005380 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5381
5382 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5383 LandingPadInst::ClauseType CT;
5384 if (EatIfPresent(lltok::kw_catch))
5385 CT = LandingPadInst::Catch;
5386 else if (EatIfPresent(lltok::kw_filter))
5387 CT = LandingPadInst::Filter;
5388 else
5389 return TokError("expected 'catch' or 'filter' clause type");
5390
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005391 Value *V;
5392 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005393 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005394 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005395
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005396 // A 'catch' type expects a non-array constant. A filter clause expects an
5397 // array constant.
5398 if (CT == LandingPadInst::Catch) {
5399 if (isa<ArrayType>(V->getType()))
5400 Error(VLoc, "'catch' clause has an invalid type");
5401 } else {
5402 if (!isa<ArrayType>(V->getType()))
5403 Error(VLoc, "'filter' clause has an invalid type");
5404 }
5405
Owen Andersonf8f259d2015-03-09 07:13:42 +00005406 Constant *CV = dyn_cast<Constant>(V);
5407 if (!CV)
5408 return Error(VLoc, "clause argument must be a constant");
5409 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005410 }
5411
Owen Andersonf8f259d2015-03-09 07:13:42 +00005412 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005413 return false;
5414}
5415
Chris Lattnerac161bf2009-01-02 07:01:27 +00005416/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00005417/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5418/// ParameterList OptionalAttrs
5419/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5420/// ParameterList OptionalAttrs
5421/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005422/// ParameterList OptionalAttrs
5423bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005424 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005425 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005426 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005427 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005428 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005429 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005430 LocTy RetTypeLoc;
5431 ValID CalleeID;
5432 SmallVector<ParamInfo, 16> ArgList;
5433 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005434
Reid Kleckner5772b772014-04-24 20:14:34 +00005435 if ((TCK != CallInst::TCK_None &&
5436 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005437 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00005438 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005439 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005440 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005441 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5442 PFS.getFunction().isVarArg()) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005443 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00005444 BuiltinLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005445 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005446
Chris Lattnerac161bf2009-01-02 07:01:27 +00005447 // If RetType is a non-function pointer type, then this is the short syntax
5448 // for the call, which means that RetType is just the return type. Infer the
5449 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005450 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5451 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005452 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005453 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005454 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5455 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005456
Chris Lattnerac161bf2009-01-02 07:01:27 +00005457 if (!FunctionType::isValidReturnType(RetType))
5458 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005459
Owen Anderson4056ca92009-07-29 22:17:13 +00005460 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005461 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005462
David Blaikie41ba2b42015-07-27 23:32:19 +00005463 CalleeID.FTy = Ty;
5464
Chris Lattnerac161bf2009-01-02 07:01:27 +00005465 // Look up the callee.
5466 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005467 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5468 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005469
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005470 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005471 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005472 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005473 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5474 AttributeSet::ReturnIndex,
5475 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005476
Chris Lattnerac161bf2009-01-02 07:01:27 +00005477 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005478
Chris Lattnerac161bf2009-01-02 07:01:27 +00005479 // Loop through FunctionType's arguments and ensure they are specified
5480 // correctly. Also, gather any parameter attributes.
5481 FunctionType::param_iterator I = Ty->param_begin();
5482 FunctionType::param_iterator E = Ty->param_end();
5483 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005484 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005485 if (I != E) {
5486 ExpectedTy = *I++;
5487 } else if (!Ty->isVarArg()) {
5488 return Error(ArgList[i].Loc, "too many arguments specified");
5489 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005490
Chris Lattnerac161bf2009-01-02 07:01:27 +00005491 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5492 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005493 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005494 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005495 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5496 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005497 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5498 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005499 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005500
Chris Lattnerac161bf2009-01-02 07:01:27 +00005501 if (I != E)
5502 return Error(CallLoc, "not enough parameters specified for call");
5503
David Majnemer8d22abd2015-02-23 00:01:32 +00005504 if (FnAttrs.hasAttributes()) {
5505 if (FnAttrs.hasAlignmentAttr())
5506 return Error(CallLoc, "call instructions may not have an alignment");
5507
Bill Wendlingf5075a42013-01-27 02:24:02 +00005508 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5509 AttributeSet::FunctionIndex,
5510 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005511 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005512
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005513 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005514 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005515
David Blaikie348de692015-04-23 21:36:23 +00005516 CallInst *CI = CallInst::Create(Ty, Callee, Args);
Reid Kleckner5772b772014-04-24 20:14:34 +00005517 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005518 CI->setCallingConv(CC);
5519 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005520 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005521 Inst = CI;
5522 return false;
5523}
5524
5525//===----------------------------------------------------------------------===//
5526// Memory Instructions.
5527//===----------------------------------------------------------------------===//
5528
5529/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005530/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005531int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005532 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005533 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005534 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005535 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005536
5537 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5538
David Majnemera3b0eb22015-02-16 08:38:03 +00005539 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005540
David Majnemera3b0eb22015-02-16 08:38:03 +00005541 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5542 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005543
Chris Lattnerb2f39502009-12-30 05:44:30 +00005544 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005545 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005546 if (Lex.getKind() == lltok::kw_align) {
5547 if (ParseOptionalAlignment(Alignment)) return true;
5548 } else if (Lex.getKind() == lltok::MetadataVar) {
5549 AteExtraComma = true;
5550 } else {
5551 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5552 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5553 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005554 }
5555 }
5556
Dan Gohman2140a742010-05-28 01:14:11 +00005557 if (Size && !Size->getType()->isIntegerTy())
5558 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005559
Reid Kleckner436c42e2014-01-17 23:58:17 +00005560 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5561 AI->setUsedWithInAlloca(IsInAlloca);
5562 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005563 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005564}
5565
5566/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005567/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005568/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005569/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005570int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005571 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005572 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005573 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005574 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005575 AtomicOrdering Ordering = NotAtomic;
5576 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005577
5578 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005579 isAtomic = true;
5580 Lex.Lex();
5581 }
5582
Chris Lattnerbc639292011-11-27 06:56:53 +00005583 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005584 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005585 isVolatile = true;
5586 Lex.Lex();
5587 }
5588
David Blaikie15d9a4c2015-04-06 20:59:48 +00005589 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005590 LocTy ExplicitTypeLoc = Lex.getLoc();
5591 if (ParseType(Ty) ||
5592 ParseToken(lltok::comma, "expected comma after load's type") ||
5593 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005594 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005595 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5596 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005597
David Blaikie15d9a4c2015-04-06 20:59:48 +00005598 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005599 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005600 if (isAtomic && !Alignment)
5601 return Error(Loc, "atomic load must have explicit non-zero alignment");
5602 if (Ordering == Release || Ordering == AcquireRelease)
5603 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005604
David Blaikiea79ac142015-02-27 21:17:42 +00005605 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5606 return Error(ExplicitTypeLoc,
5607 "explicit pointee type doesn't match operand's pointee type");
5608
David Blaikie15d9a4c2015-04-06 20:59:48 +00005609 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005610 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005611}
5612
5613/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005614
5615/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5616/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005617/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005618int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005619 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005620 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005621 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005622 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005623 AtomicOrdering Ordering = NotAtomic;
5624 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005625
5626 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005627 isAtomic = true;
5628 Lex.Lex();
5629 }
5630
Chris Lattnerbc639292011-11-27 06:56:53 +00005631 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005632 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005633 isVolatile = true;
5634 Lex.Lex();
5635 }
5636
Chris Lattnerac161bf2009-01-02 07:01:27 +00005637 if (ParseTypeAndValue(Val, Loc, PFS) ||
5638 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005639 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005640 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005641 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005642 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005643
Duncan Sands19d0b472010-02-16 11:11:14 +00005644 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005645 return Error(PtrLoc, "store operand must be a pointer");
5646 if (!Val->getType()->isFirstClassType())
5647 return Error(Loc, "store operand must be a first class value");
5648 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5649 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005650 if (isAtomic && !Alignment)
5651 return Error(Loc, "atomic store must have explicit non-zero alignment");
5652 if (Ordering == Acquire || Ordering == AcquireRelease)
5653 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005654
Eli Friedman59b66882011-08-09 23:02:53 +00005655 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005656 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005657}
5658
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005659/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005660/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5661/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005662int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005663 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5664 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005665 AtomicOrdering SuccessOrdering = NotAtomic;
5666 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005667 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005668 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005669 bool isWeak = false;
5670
5671 if (EatIfPresent(lltok::kw_weak))
5672 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005673
5674 if (EatIfPresent(lltok::kw_volatile))
5675 isVolatile = true;
5676
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005677 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5678 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5679 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5680 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5681 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005682 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5683 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005684 return true;
5685
Tim Northovere94a5182014-03-11 10:48:52 +00005686 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005687 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005688 if (SuccessOrdering < FailureOrdering)
5689 return TokError("cmpxchg must be at least as ordered on success as failure");
5690 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5691 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005692 if (!Ptr->getType()->isPointerTy())
5693 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5694 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5695 return Error(CmpLoc, "compare value and pointer type do not match");
5696 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5697 return Error(NewLoc, "new value and pointer type do not match");
5698 if (!New->getType()->isIntegerTy())
5699 return Error(NewLoc, "cmpxchg operand must be an integer");
5700 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5701 if (Size < 8 || (Size & (Size - 1)))
5702 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5703 " integer");
5704
Tim Northover420a2162014-06-13 14:24:07 +00005705 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5706 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005707 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005708 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005709 Inst = CXI;
5710 return AteExtraComma ? InstExtraComma : InstNormal;
5711}
5712
5713/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005714/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5715/// 'singlethread'? AtomicOrdering
5716int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005717 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5718 bool AteExtraComma = false;
5719 AtomicOrdering Ordering = NotAtomic;
5720 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005721 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005722 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005723
5724 if (EatIfPresent(lltok::kw_volatile))
5725 isVolatile = true;
5726
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005727 switch (Lex.getKind()) {
5728 default: return TokError("expected binary operation in atomicrmw");
5729 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5730 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5731 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5732 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5733 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5734 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5735 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5736 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5737 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5738 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5739 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5740 }
5741 Lex.Lex(); // Eat the operation.
5742
5743 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5744 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5745 ParseTypeAndValue(Val, ValLoc, PFS) ||
5746 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5747 return true;
5748
5749 if (Ordering == Unordered)
5750 return TokError("atomicrmw cannot be unordered");
5751 if (!Ptr->getType()->isPointerTy())
5752 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5753 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5754 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5755 if (!Val->getType()->isIntegerTy())
5756 return Error(ValLoc, "atomicrmw operand must be an integer");
5757 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5758 if (Size < 8 || (Size & (Size - 1)))
5759 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5760 " integer");
5761
5762 AtomicRMWInst *RMWI =
5763 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5764 RMWI->setVolatile(isVolatile);
5765 Inst = RMWI;
5766 return AteExtraComma ? InstExtraComma : InstNormal;
5767}
5768
Eli Friedmanfee02c62011-07-25 23:16:38 +00005769/// ParseFence
5770/// ::= 'fence' 'singlethread'? AtomicOrdering
5771int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5772 AtomicOrdering Ordering = NotAtomic;
5773 SynchronizationScope Scope = CrossThread;
5774 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5775 return true;
5776
5777 if (Ordering == Unordered)
5778 return TokError("fence cannot be unordered");
5779 if (Ordering == Monotonic)
5780 return TokError("fence cannot be monotonic");
5781
5782 Inst = new FenceInst(Context, Ordering, Scope);
5783 return InstNormal;
5784}
5785
Chris Lattnerac161bf2009-01-02 07:01:27 +00005786/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00005787/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005788int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005789 Value *Ptr = nullptr;
5790 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005791 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00005792
Dan Gohman16cbbe42009-07-29 15:58:36 +00005793 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00005794
David Blaikie79e6c742015-02-27 19:29:02 +00005795 Type *Ty = nullptr;
5796 LocTy ExplicitTypeLoc = Lex.getLoc();
5797 if (ParseType(Ty) ||
5798 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5799 ParseTypeAndValue(Ptr, Loc, PFS))
5800 return true;
5801
Eli Benderskyd9806682013-04-22 17:03:42 +00005802 Type *BaseType = Ptr->getType();
5803 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5804 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005805 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005806
David Blaikie8d757942015-03-09 23:08:44 +00005807 if (Ty != BasePointerType->getElementType())
5808 return Error(ExplicitTypeLoc,
5809 "explicit pointee type doesn't match operand's pointee type");
5810
Chris Lattnerac161bf2009-01-02 07:01:27 +00005811 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005812 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005813 // GEP returns a vector of pointers if at least one of parameters is a vector.
5814 // All vector parameters should have the same vector width.
5815 unsigned GEPWidth = BaseType->isVectorTy() ?
5816 BaseType->getVectorNumElements() : 0;
5817
Chris Lattner3822f632009-01-02 08:05:26 +00005818 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00005819 if (Lex.getKind() == lltok::MetadataVar) {
5820 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00005821 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005822 }
Chris Lattner3822f632009-01-02 08:05:26 +00005823 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005824 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005825 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005826
Nadav Rotem3924cb02011-12-05 06:29:09 +00005827 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005828 unsigned ValNumEl = Val->getType()->getVectorNumElements();
5829 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00005830 return Error(EltLoc,
5831 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005832 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005833 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005834 Indices.push_back(Val);
5835 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005836
Craig Toppere3dcce92015-08-01 22:20:21 +00005837 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00005838 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00005839 return Error(Loc, "base element of getelementptr must be sized");
5840
David Blaikied33bad32015-04-17 22:32:13 +00005841 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005842 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00005843 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00005844 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00005845 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005846 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005847}
5848
5849/// ParseExtractValue
5850/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00005851int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005852 Value *Val; LocTy Loc;
5853 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005854 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005855 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00005856 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005857 return true;
5858
Chris Lattner392be582010-02-12 20:49:41 +00005859 if (!Val->getType()->isAggregateType())
5860 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005861
Jay Foad57aa6362011-07-13 10:26:04 +00005862 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005863 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00005864 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005865 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005866}
5867
5868/// ParseInsertValue
5869/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00005870int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005871 Value *Val0, *Val1; LocTy Loc0, Loc1;
5872 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005873 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005874 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
5875 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
5876 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00005877 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005878 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005879
Chris Lattner392be582010-02-12 20:49:41 +00005880 if (!Val0->getType()->isAggregateType())
5881 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005882
David Majnemer30074532015-02-11 07:43:58 +00005883 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
5884 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005885 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00005886 if (IndexedType != Val1->getType())
5887 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
5888 getTypeString(Val1->getType()) + "' instead of '" +
5889 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00005890 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005891 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005892}
Nick Lewycky49f89192009-04-04 07:22:01 +00005893
5894//===----------------------------------------------------------------------===//
5895// Embedded metadata.
5896//===----------------------------------------------------------------------===//
5897
5898/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005899/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00005900/// Element
5901/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005902bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00005903 if (ParseToken(lltok::lbrace, "expected '{' here"))
5904 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005905
Dan Gohman1e0213a2010-07-13 19:33:27 +00005906 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005907 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00005908 return false;
5909
Nick Lewycky49f89192009-04-04 07:22:01 +00005910 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00005911 // Null is a special case since it is typeless.
5912 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005913 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00005914 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00005915 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005916
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005917 Metadata *MD;
5918 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005919 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005920 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00005921 } while (EatIfPresent(lltok::comma));
5922
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005923 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00005924}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005925
5926//===----------------------------------------------------------------------===//
5927// Use-list order directives.
5928//===----------------------------------------------------------------------===//
5929bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
5930 SMLoc Loc) {
5931 if (V->use_empty())
5932 return Error(Loc, "value has no uses");
5933
5934 unsigned NumUses = 0;
5935 SmallDenseMap<const Use *, unsigned, 16> Order;
5936 for (const Use &U : V->uses()) {
5937 if (++NumUses > Indexes.size())
5938 break;
5939 Order[&U] = Indexes[NumUses - 1];
5940 }
5941 if (NumUses < 2)
5942 return Error(Loc, "value only has one use");
5943 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
5944 return Error(Loc, "wrong number of indexes, expected " +
5945 Twine(std::distance(V->use_begin(), V->use_end())));
5946
5947 V->sortUseList([&](const Use &L, const Use &R) {
5948 return Order.lookup(&L) < Order.lookup(&R);
5949 });
5950 return false;
5951}
5952
5953/// ParseUseListOrderIndexes
5954/// ::= '{' uint32 (',' uint32)+ '}'
5955bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
5956 SMLoc Loc = Lex.getLoc();
5957 if (ParseToken(lltok::lbrace, "expected '{' here"))
5958 return true;
5959 if (Lex.getKind() == lltok::rbrace)
5960 return Lex.Error("expected non-empty list of uselistorder indexes");
5961
5962 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
5963 // indexes should be distinct numbers in the range [0, size-1], and should
5964 // not be in order.
5965 unsigned Offset = 0;
5966 unsigned Max = 0;
5967 bool IsOrdered = true;
5968 assert(Indexes.empty() && "Expected empty order vector");
5969 do {
5970 unsigned Index;
5971 if (ParseUInt32(Index))
5972 return true;
5973
5974 // Update consistency checks.
5975 Offset += Index - Indexes.size();
5976 Max = std::max(Max, Index);
5977 IsOrdered &= Index == Indexes.size();
5978
5979 Indexes.push_back(Index);
5980 } while (EatIfPresent(lltok::comma));
5981
5982 if (ParseToken(lltok::rbrace, "expected '}' here"))
5983 return true;
5984
5985 if (Indexes.size() < 2)
5986 return Error(Loc, "expected >= 2 uselistorder indexes");
5987 if (Offset != 0 || Max >= Indexes.size())
5988 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
5989 if (IsOrdered)
5990 return Error(Loc, "expected uselistorder indexes to change the order");
5991
5992 return false;
5993}
5994
5995/// ParseUseListOrder
5996/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
5997bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
5998 SMLoc Loc = Lex.getLoc();
5999 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6000 return true;
6001
6002 Value *V;
6003 SmallVector<unsigned, 16> Indexes;
6004 if (ParseTypeAndValue(V, PFS) ||
6005 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6006 ParseUseListOrderIndexes(Indexes))
6007 return true;
6008
6009 return sortUseListOrder(V, Indexes, Loc);
6010}
6011
6012/// ParseUseListOrderBB
6013/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6014bool LLParser::ParseUseListOrderBB() {
6015 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6016 SMLoc Loc = Lex.getLoc();
6017 Lex.Lex();
6018
6019 ValID Fn, Label;
6020 SmallVector<unsigned, 16> Indexes;
6021 if (ParseValID(Fn) ||
6022 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6023 ParseValID(Label) ||
6024 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6025 ParseUseListOrderIndexes(Indexes))
6026 return true;
6027
6028 // Check the function.
6029 GlobalValue *GV;
6030 if (Fn.Kind == ValID::t_GlobalName)
6031 GV = M->getNamedValue(Fn.StrVal);
6032 else if (Fn.Kind == ValID::t_GlobalID)
6033 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6034 else
6035 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6036 if (!GV)
6037 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6038 auto *F = dyn_cast<Function>(GV);
6039 if (!F)
6040 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6041 if (F->isDeclaration())
6042 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6043
6044 // Check the basic block.
6045 if (Label.Kind == ValID::t_LocalID)
6046 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6047 if (Label.Kind != ValID::t_LocalName)
6048 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6049 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6050 if (!V)
6051 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6052 if (!isa<BasicBlock>(V))
6053 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6054
6055 return sortUseListOrder(V, Indexes, Loc);
6056}