blob: 172f309204845ed09c68040f5aea2e0d865e7a04 [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"
Chandler Carruth91065212014-03-05 10:34:14 +000016#include "llvm/IR/AutoUpgrade.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000017#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +000019#include "llvm/IR/DebugInfo.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000020#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000021#include "llvm/IR/DerivedTypes.h"
22#include "llvm/IR/InlineAsm.h"
23#include "llvm/IR/Instructions.h"
Manman Ren209b17c2013-09-28 00:22:27 +000024#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/Module.h"
26#include "llvm/IR/Operator.h"
27#include "llvm/IR/ValueSymbolTable.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000028#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000029#include "llvm/Support/ErrorHandling.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000030#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000031#include "llvm/Support/raw_ostream.h"
32using namespace llvm;
33
Chris Lattner229907c2011-07-18 04:54:35 +000034static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000035 std::string Result;
36 raw_string_ostream Tmp(Result);
37 Tmp << *T;
38 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000039}
40
Chris Lattner3822f632009-01-02 08:05:26 +000041/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000042bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000043 // Prime the lexer.
44 Lex.Lex();
45
Chris Lattnerad6f3352009-01-04 20:44:11 +000046 return ParseTopLevelEntities() ||
47 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000048}
49
50/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
51/// module.
52bool LLParser::ValidateEndOfModule() {
Manman Ren209b17c2013-09-28 00:22:27 +000053 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
54 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
55
Bill Wendlingb32b0412013-02-08 06:32:06 +000056 // Handle any function attribute group forward references.
57 for (std::map<Value*, std::vector<unsigned> >::iterator
58 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
59 I != E; ++I) {
60 Value *V = I->first;
61 std::vector<unsigned> &Vec = I->second;
62 AttrBuilder B;
63
64 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
65 VI != VE; ++VI)
66 B.merge(NumberedAttrBuilders[*VI]);
67
68 if (Function *Fn = dyn_cast<Function>(V)) {
69 AttributeSet AS = Fn->getAttributes();
70 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
71 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
72 AS.getFnAttributes());
73
74 FnAttrs.merge(B);
75
76 // If the alignment was parsed as an attribute, move to the alignment
77 // field.
78 if (FnAttrs.hasAlignmentAttr()) {
79 Fn->setAlignment(FnAttrs.getAlignment());
80 FnAttrs.removeAttribute(Attribute::Alignment);
81 }
82
83 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
84 AttributeSet::get(Context,
85 AttributeSet::FunctionIndex,
86 FnAttrs));
87 Fn->setAttributes(AS);
88 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
89 AttributeSet AS = CI->getAttributes();
90 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
91 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
92 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +000093 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +000094 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
95 AttributeSet::get(Context,
96 AttributeSet::FunctionIndex,
97 FnAttrs));
98 CI->setAttributes(AS);
99 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
100 AttributeSet AS = II->getAttributes();
101 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
102 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
103 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000104 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000105 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
106 AttributeSet::get(Context,
107 AttributeSet::FunctionIndex,
108 FnAttrs));
109 II->setAttributes(AS);
110 } else {
111 llvm_unreachable("invalid object with forward attribute group reference");
112 }
113 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000114
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000115 // If there are entries in ForwardRefBlockAddresses at this point, the
116 // function was never defined.
117 if (!ForwardRefBlockAddresses.empty())
118 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
119 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000120
David Majnemer19b51052015-02-11 07:43:56 +0000121 for (const auto &NT : NumberedTypes)
122 if (NT.second.second.isValid())
123 return Error(NT.second.second,
124 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000125
126 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
127 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
128 if (I->second.second.isValid())
129 return Error(I->second.second,
130 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000131
David Majnemerdad0a642014-06-27 18:19:56 +0000132 if (!ForwardRefComdats.empty())
133 return Error(ForwardRefComdats.begin()->second,
134 "use of undefined comdat '$" +
135 ForwardRefComdats.begin()->first + "'");
136
Chris Lattnerac161bf2009-01-02 07:01:27 +0000137 if (!ForwardRefVals.empty())
138 return Error(ForwardRefVals.begin()->second.second,
139 "use of undefined value '@" + ForwardRefVals.begin()->first +
140 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000141
Chris Lattnerac161bf2009-01-02 07:01:27 +0000142 if (!ForwardRefValIDs.empty())
143 return Error(ForwardRefValIDs.begin()->second.second,
144 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000145 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000146
Devang Pateld2541152009-07-08 19:23:54 +0000147 if (!ForwardRefMDNodes.empty())
148 return Error(ForwardRefMDNodes.begin()->second.second,
149 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000150 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000151
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000152 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000153 for (auto &N : NumberedMetadata) {
154 if (N.second && !N.second->isResolved())
155 N.second->resolveCycles();
156 }
Devang Pateld2541152009-07-08 19:23:54 +0000157
Chris Lattnerac161bf2009-01-02 07:01:27 +0000158 // Look for intrinsic functions and CallInst that need to be upgraded
159 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
160 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000161
Manman Ren8b4306c2013-12-02 21:29:56 +0000162 UpgradeDebugInfo(*M);
163
Chris Lattnerac161bf2009-01-02 07:01:27 +0000164 return false;
165}
166
167//===----------------------------------------------------------------------===//
168// Top-Level Entities
169//===----------------------------------------------------------------------===//
170
171bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000172 while (1) {
173 switch (Lex.getKind()) {
174 default: return TokError("expected top-level entity");
175 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000176 case lltok::kw_declare: if (ParseDeclare()) return true; break;
177 case lltok::kw_define: if (ParseDefine()) return true; break;
178 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
179 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000180 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000181 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000182 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000183 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000184 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000185 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000186 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000187 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000188
189 // The Global variable production with no name can have many different
190 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000191 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
192 // OptionalThreadLocal OptionalAddrSpace OptionalUnNammedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000193 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000194 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000195 case lltok::kw_internal: // OptionalLinkage
196 case lltok::kw_weak: // OptionalLinkage
197 case lltok::kw_weak_odr: // OptionalLinkage
198 case lltok::kw_linkonce: // OptionalLinkage
199 case lltok::kw_linkonce_odr: // OptionalLinkage
200 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000201 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000202 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000203 case lltok::kw_external: // OptionalLinkage
204 case lltok::kw_default: // OptionalVisibility
205 case lltok::kw_hidden: // OptionalVisibility
206 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000207 case lltok::kw_dllimport: // OptionalDLLStorageClass
208 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000209 case lltok::kw_thread_local: // OptionalThreadLocal
210 case lltok::kw_addrspace: // OptionalAddrSpace
211 case lltok::kw_constant: // GlobalType
212 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000213 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000214 bool UnnamedAddr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000215 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000216 bool HasLinkage;
217 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000218 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000219 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000220 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000221 parseOptionalUnnamedAddr(UnnamedAddr) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000222 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000223 DLLStorageClass, TLM, UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000224 return true;
225 break;
226 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000227
228 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000229 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
230 case lltok::kw_uselistorder_bb:
231 if (ParseUseListOrderBB()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000232 }
233 }
234}
235
236
237/// toplevelentity
238/// ::= 'module' 'asm' STRINGCONSTANT
239bool LLParser::ParseModuleAsm() {
240 assert(Lex.getKind() == lltok::kw_module);
241 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000242
243 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000244 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
245 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000246
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000247 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000248 return false;
249}
250
251/// toplevelentity
252/// ::= 'target' 'triple' '=' STRINGCONSTANT
253/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
254bool LLParser::ParseTargetDefinition() {
255 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000256 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000257 switch (Lex.Lex()) {
258 default: return TokError("unknown target property");
259 case lltok::kw_triple:
260 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000261 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
262 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000263 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000264 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000265 return false;
266 case lltok::kw_datalayout:
267 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000268 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
269 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000270 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000271 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000272 return false;
273 }
274}
275
Bill Wendling706d3d62012-11-28 08:41:48 +0000276/// toplevelentity
277/// ::= 'deplibs' '=' '[' ']'
278/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
279/// FIXME: Remove in 4.0. Currently parse, but ignore.
280bool LLParser::ParseDepLibs() {
281 assert(Lex.getKind() == lltok::kw_deplibs);
282 Lex.Lex();
283 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
284 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
285 return true;
286
287 if (EatIfPresent(lltok::rsquare))
288 return false;
289
290 do {
291 std::string Str;
292 if (ParseStringConstant(Str)) return true;
293 } while (EatIfPresent(lltok::comma));
294
295 return ParseToken(lltok::rsquare, "expected ']' at end of list");
296}
297
Dan Gohman466876b2009-08-12 23:32:33 +0000298/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000299/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000300bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000301 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000302 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000303 Lex.Lex(); // eat LocalVarID;
304
305 if (ParseToken(lltok::equal, "expected '=' after name") ||
306 ParseToken(lltok::kw_type, "expected 'type' after '='"))
307 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000308
Craig Topper2617dcc2014-04-15 06:32:26 +0000309 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000310 if (ParseStructDefinition(TypeLoc, "",
311 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000312
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000313 if (!isa<StructType>(Result)) {
314 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
315 if (Entry.first)
316 return Error(TypeLoc, "non-struct types may not be recursive");
317 Entry.first = Result;
318 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000319 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000320
Chris Lattnerac161bf2009-01-02 07:01:27 +0000321 return false;
322}
323
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000324
Chris Lattnerac161bf2009-01-02 07:01:27 +0000325/// toplevelentity
326/// ::= LocalVar '=' 'type' type
327bool LLParser::ParseNamedType() {
328 std::string Name = Lex.getStrVal();
329 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000330 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000331
Chris Lattner3822f632009-01-02 08:05:26 +0000332 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000333 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000334 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000335
Craig Topper2617dcc2014-04-15 06:32:26 +0000336 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000337 if (ParseStructDefinition(NameLoc, Name,
338 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000339
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000340 if (!isa<StructType>(Result)) {
341 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
342 if (Entry.first)
343 return Error(NameLoc, "non-struct types may not be recursive");
344 Entry.first = Result;
345 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000346 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000347
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000348 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000349}
350
351
352/// toplevelentity
353/// ::= 'declare' FunctionHeader
354bool LLParser::ParseDeclare() {
355 assert(Lex.getKind() == lltok::kw_declare);
356 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000357
Chris Lattnerac161bf2009-01-02 07:01:27 +0000358 Function *F;
359 return ParseFunctionHeader(F, false);
360}
361
362/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000363/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000364bool LLParser::ParseDefine() {
365 assert(Lex.getKind() == lltok::kw_define);
366 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000367
Chris Lattnerac161bf2009-01-02 07:01:27 +0000368 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000369 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000370 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000371 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000372}
373
Chris Lattner3822f632009-01-02 08:05:26 +0000374/// ParseGlobalType
375/// ::= 'constant'
376/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000377bool LLParser::ParseGlobalType(bool &IsConstant) {
378 if (Lex.getKind() == lltok::kw_constant)
379 IsConstant = true;
380 else if (Lex.getKind() == lltok::kw_global)
381 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000382 else {
383 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000384 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000385 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000386 Lex.Lex();
387 return false;
388}
389
Dan Gohman466876b2009-08-12 23:32:33 +0000390/// ParseUnnamedGlobal:
391/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000392/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
393/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000394/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000395/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
396/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000397bool LLParser::ParseUnnamedGlobal() {
398 unsigned VarID = NumberedVals.size();
399 std::string Name;
400 LocTy NameLoc = Lex.getLoc();
401
402 // Handle the GlobalID form.
403 if (Lex.getKind() == lltok::GlobalID) {
404 if (Lex.getUIntVal() != VarID)
405 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000406 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000407 Lex.Lex(); // eat GlobalID;
408
409 if (ParseToken(lltok::equal, "expected '=' after name"))
410 return true;
411 }
412
413 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000414 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000415 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000416 bool UnnamedAddr;
Dan Gohman466876b2009-08-12 23:32:33 +0000417 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000418 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000419 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000420 ParseOptionalThreadLocal(TLM) ||
421 parseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000422 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000423
Rafael Espindola464fe022014-07-30 22:51:54 +0000424 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000425 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000426 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000427 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000428 UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000429}
430
Chris Lattnerac161bf2009-01-02 07:01:27 +0000431/// ParseNamedGlobal:
432/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000433/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
434/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000435bool LLParser::ParseNamedGlobal() {
436 assert(Lex.getKind() == lltok::GlobalVar);
437 LocTy NameLoc = Lex.getLoc();
438 std::string Name = Lex.getStrVal();
439 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000440
Chris Lattnerac161bf2009-01-02 07:01:27 +0000441 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000442 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000443 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000444 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000445 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
446 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000447 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000448 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000449 ParseOptionalThreadLocal(TLM) ||
450 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000451 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000452
Rafael Espindola464fe022014-07-30 22:51:54 +0000453 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000454 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000455 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000456
457 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000458 UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000459}
460
David Majnemerdad0a642014-06-27 18:19:56 +0000461bool LLParser::parseComdat() {
462 assert(Lex.getKind() == lltok::ComdatVar);
463 std::string Name = Lex.getStrVal();
464 LocTy NameLoc = Lex.getLoc();
465 Lex.Lex();
466
467 if (ParseToken(lltok::equal, "expected '=' here"))
468 return true;
469
470 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
471 return TokError("expected comdat type");
472
473 Comdat::SelectionKind SK;
474 switch (Lex.getKind()) {
475 default:
476 return TokError("unknown selection kind");
477 case lltok::kw_any:
478 SK = Comdat::Any;
479 break;
480 case lltok::kw_exactmatch:
481 SK = Comdat::ExactMatch;
482 break;
483 case lltok::kw_largest:
484 SK = Comdat::Largest;
485 break;
486 case lltok::kw_noduplicates:
487 SK = Comdat::NoDuplicates;
488 break;
489 case lltok::kw_samesize:
490 SK = Comdat::SameSize;
491 break;
492 }
493 Lex.Lex();
494
495 // See if the comdat was forward referenced, if so, use the comdat.
496 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
497 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
498 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
499 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
500
501 Comdat *C;
502 if (I != ComdatSymTab.end())
503 C = &I->second;
504 else
505 C = M->getOrInsertComdat(Name);
506 C->setSelectionKind(SK);
507
508 return false;
509}
510
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000511// MDString:
512// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000513bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000514 std::string Str;
515 if (ParseStringConstant(Str)) return true;
Eli Bendersky5d5e18d2014-06-25 15:41:00 +0000516 llvm::UpgradeMDStringConstant(Str);
Chris Lattner1797fc72009-12-29 21:53:55 +0000517 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000518 return false;
519}
520
521// MDNode:
522// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000523bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000524 // !{ ..., !42, ... }
525 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000526 if (ParseUInt32(MID))
527 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000528
Chris Lattner8eff0152010-04-01 05:14:45 +0000529 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000530 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000531 Result = NumberedMetadata[MID];
532 return false;
533 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000534
Chris Lattner8eff0152010-04-01 05:14:45 +0000535 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000536 auto &FwdRef = ForwardRefMDNodes[MID];
537 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000538
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000539 Result = FwdRef.first.get();
540 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000541 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000542}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000543
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000544/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000545/// !foo = !{ !1, !2 }
546bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000547 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000548 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000549 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000550
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000551 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000552 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000553 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000554 return true;
555
Dan Gohman2637cc12010-07-21 23:38:33 +0000556 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000557 if (Lex.getKind() != lltok::rbrace)
558 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000559 if (ParseToken(lltok::exclaim, "Expected '!' here"))
560 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000561
Craig Topper2617dcc2014-04-15 06:32:26 +0000562 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000563 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000564 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000565 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000566
567 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
568 return true;
569
Devang Patelbe626972009-07-29 00:34:02 +0000570 return false;
571}
572
Devang Patel39e64d42009-07-01 19:21:12 +0000573/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000574/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000575bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000576 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000577 Lex.Lex();
578 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000579
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000580 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000581 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000582 ParseToken(lltok::equal, "expected '=' here"))
583 return true;
584
585 // Detect common error, from old metadata syntax.
586 if (Lex.getKind() == lltok::Type)
587 return TokError("unexpected type in metadata definition");
588
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000589 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000590 if (Lex.getKind() == lltok::MetadataVar) {
591 if (ParseSpecializedMDNode(Init, IsDistinct))
592 return true;
593 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
594 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000595 return true;
596
Chris Lattnerfc58af22009-12-30 04:51:58 +0000597 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000598 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000599 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000600 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000601 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000602
Chris Lattnerfc58af22009-12-30 04:51:58 +0000603 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
604 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000605 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000606 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000607 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000608 }
609
Devang Patel39e64d42009-07-01 19:21:12 +0000610 return false;
611}
612
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000613static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
614 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
615 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
616}
617
Chris Lattnerac161bf2009-01-02 07:01:27 +0000618/// ParseAlias:
Rafael Espindola464fe022014-07-30 22:51:54 +0000619/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
620/// OptionalDLLStorageClass OptionalThreadLocal
621/// OptionalUnNammedAddr 'alias' Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000622///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000623/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000624/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000625///
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000626/// Everything through OptionalUnNammedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000627///
Rafael Espindola464fe022014-07-30 22:51:54 +0000628bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000629 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000630 GlobalVariable::ThreadLocalMode TLM,
631 bool UnnamedAddr) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000632 assert(Lex.getKind() == lltok::kw_alias);
633 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000634
Rafael Espindola78527052013-10-06 15:10:43 +0000635 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
636
Rafael Espindolacaa43562013-10-09 16:07:32 +0000637 if(!GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000638 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000639
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000640 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000641 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000642 "symbol with local linkage must have default visibility");
643
Rafael Espindola64c1e182014-06-03 02:41:57 +0000644 Constant *Aliasee;
645 LocTy AliaseeLoc = Lex.getLoc();
646 if (Lex.getKind() != lltok::kw_bitcast &&
647 Lex.getKind() != lltok::kw_getelementptr &&
648 Lex.getKind() != lltok::kw_addrspacecast &&
649 Lex.getKind() != lltok::kw_inttoptr) {
650 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000651 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000652 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000653 // The bitcast dest type is not present, it is implied by the dest type.
654 ValID ID;
655 if (ParseValID(ID))
656 return true;
657 if (ID.Kind != ValID::t_Constant)
658 return Error(AliaseeLoc, "invalid aliasee");
659 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000660 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000661
Rafael Espindola64c1e182014-06-03 02:41:57 +0000662 Type *AliaseeType = Aliasee->getType();
663 auto *PTy = dyn_cast<PointerType>(AliaseeType);
664 if (!PTy)
665 return Error(AliaseeLoc, "An alias must have pointer type");
666 Type *Ty = PTy->getElementType();
667 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000668
669 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000670 std::unique_ptr<GlobalAlias> GA(
Rafael Espindolaf1bedd3742014-05-17 21:29:57 +0000671 GlobalAlias::create(Ty, AddrSpace, (GlobalValue::LinkageTypes)Linkage,
672 Name, Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000673 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000674 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000675 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000676 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000677
Chris Lattnerac161bf2009-01-02 07:01:27 +0000678 // See if this value already exists in the symbol table. If so, it is either
679 // a redefinition or a definition of a forward reference.
Chris Lattnere38317f2009-10-25 23:22:50 +0000680 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000681 // See if this was a redefinition. If so, there is no entry in
682 // ForwardRefVals.
683 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
684 I = ForwardRefVals.find(Name);
685 if (I == ForwardRefVals.end())
686 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
687
688 // Otherwise, this was a definition of forward ref. Verify that types
689 // agree.
690 if (Val->getType() != GA->getType())
691 return Error(NameLoc,
692 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000693
Chris Lattnerac161bf2009-01-02 07:01:27 +0000694 // If they agree, just RAUW the old value with the alias and remove the
695 // forward ref info.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000696 Val->replaceAllUsesWith(GA.get());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000697 Val->eraseFromParent();
698 ForwardRefVals.erase(I);
699 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000700
Chris Lattnerac161bf2009-01-02 07:01:27 +0000701 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000702 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000703 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000704
Rafael Espindolaaa273822014-05-09 21:49:17 +0000705 // The module owns this now
706 GA.release();
707
Chris Lattnerac161bf2009-01-02 07:01:27 +0000708 return false;
709}
710
711/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000712/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000713/// OptionalThreadLocal OptionalUnNammedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000714/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000715/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000716/// OptionalThreadLocal OptionalUnNammedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000717/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000718///
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000719/// Everything up to and including OptionalUnNammedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000720/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000721///
722bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
723 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000724 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000725 GlobalVariable::ThreadLocalMode TLM,
726 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000727 if (!isValidVisibilityForLinkage(Visibility, Linkage))
728 return Error(NameLoc,
729 "symbol with local linkage must have default visibility");
730
Chris Lattnerac161bf2009-01-02 07:01:27 +0000731 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000732 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000733 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000734 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000735
Craig Topper2617dcc2014-04-15 06:32:26 +0000736 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000737 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000738 ParseOptionalToken(lltok::kw_externally_initialized,
739 IsExternallyInitialized,
740 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000741 ParseGlobalType(IsConstant) ||
742 ParseType(Ty, TyLoc))
743 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000744
Chris Lattnerac161bf2009-01-02 07:01:27 +0000745 // If the linkage is specified and is external, then no initializer is
746 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000747 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000748 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000749 Linkage != GlobalValue::ExternalLinkage)) {
750 if (ParseGlobalValue(Ty, Init))
751 return true;
752 }
753
David Majnemer49b3d9b2015-02-16 08:41:08 +0000754 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000755 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000756
David Majnemer598bd052014-12-09 05:56:09 +0000757 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000758
759 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000760 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000761 GVal = M->getNamedValue(Name);
762 if (GVal) {
Chris Lattnere38317f2009-10-25 23:22:50 +0000763 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
764 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000765 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000766 } else {
767 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
768 I = ForwardRefValIDs.find(NumberedVals.size());
769 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000770 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000771 ForwardRefValIDs.erase(I);
772 }
773 }
774
David Majnemer598bd052014-12-09 05:56:09 +0000775 GlobalVariable *GV;
776 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000777 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
778 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000779 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000780 } else {
David Majnemer598bd052014-12-09 05:56:09 +0000781 if (GVal->getType()->getElementType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000782 return Error(TyLoc,
783 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000784
David Majnemer598bd052014-12-09 05:56:09 +0000785 GV = cast<GlobalVariable>(GVal);
786
Chris Lattnerac161bf2009-01-02 07:01:27 +0000787 // Move the forward-reference to the correct spot in the module.
788 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
789 }
790
791 if (Name.empty())
792 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000793
Chris Lattnerac161bf2009-01-02 07:01:27 +0000794 // Set the parsed properties on the global.
795 if (Init)
796 GV->setInitializer(Init);
797 GV->setConstant(IsConstant);
798 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
799 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000800 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000801 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000802 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000803 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000804
Chris Lattnerac161bf2009-01-02 07:01:27 +0000805 // Parse attributes on the global.
806 while (Lex.getKind() == lltok::comma) {
807 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000808
Chris Lattnerac161bf2009-01-02 07:01:27 +0000809 if (Lex.getKind() == lltok::kw_section) {
810 Lex.Lex();
811 GV->setSection(Lex.getStrVal());
812 if (ParseToken(lltok::StringConstant, "expected global section string"))
813 return true;
814 } else if (Lex.getKind() == lltok::kw_align) {
815 unsigned Alignment;
816 if (ParseOptionalAlignment(Alignment)) return true;
817 GV->setAlignment(Alignment);
818 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000819 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000820 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000821 return true;
822 if (C)
823 GV->setComdat(C);
824 else
825 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000826 }
827 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000828
Chris Lattnerac161bf2009-01-02 07:01:27 +0000829 return false;
830}
831
Bill Wendling63b88192013-02-06 06:52:58 +0000832/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000833/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000834bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000835 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000836 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000837 Lex.Lex();
838
David Majnemerb39e22b2014-12-09 18:33:57 +0000839 if (Lex.getKind() != lltok::AttrGrpID)
840 return TokError("expected attribute group id");
841
Bill Wendling63b88192013-02-06 06:52:58 +0000842 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000843 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000844 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000845 Lex.Lex();
846
847 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000848 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000849 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000850 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000851 ParseToken(lltok::rbrace, "expected end of attribute group"))
852 return true;
853
Bill Wendlingb32b0412013-02-08 06:32:06 +0000854 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000855 return Error(AttrGrpLoc, "attribute group has no attributes");
856
857 return false;
858}
859
Bill Wendling8b0321d2013-02-08 00:52:31 +0000860/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000861/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000862bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
863 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000864 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000865 bool HaveError = false;
866
867 B.clear();
868
Bill Wendling63b88192013-02-06 06:52:58 +0000869 while (true) {
870 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000871 if (Token == lltok::kw_builtin)
872 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000873 switch (Token) {
874 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000875 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000876 return Error(Lex.getLoc(), "unterminated attribute group");
877 case lltok::rbrace:
878 // Finished.
879 return false;
880
Bill Wendlingb32b0412013-02-08 06:32:06 +0000881 case lltok::AttrGrpID: {
882 // Allow a function to reference an attribute group:
883 //
884 // define void @foo() #1 { ... }
885 if (inAttrGrp)
886 HaveError |=
887 Error(Lex.getLoc(),
888 "cannot have an attribute group reference in an attribute group");
889
890 unsigned AttrGrpNum = Lex.getUIntVal();
891 if (inAttrGrp) break;
892
893 // Save the reference to the attribute group. We'll fill it in later.
894 FwdRefAttrGrps.push_back(AttrGrpNum);
895 break;
896 }
Bill Wendling63b88192013-02-06 06:52:58 +0000897 // Target-dependent attributes:
898 case lltok::StringConstant: {
899 std::string Attr = Lex.getStrVal();
900 Lex.Lex();
901 std::string Val;
902 if (EatIfPresent(lltok::equal) &&
903 ParseStringConstant(Val))
904 return true;
905
906 B.addAttribute(Attr, Val);
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000907 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000908 }
909
910 // Target-independent attributes:
911 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000912 // As a hack, we allow function alignment to be initially parsed as an
913 // attribute on a function declaration/definition or added to an attribute
914 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000915 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000916 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000917 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000918 if (ParseToken(lltok::equal, "expected '=' here") ||
919 ParseUInt32(Alignment))
920 return true;
921 } else {
922 if (ParseOptionalAlignment(Alignment))
923 return true;
924 }
Bill Wendling63b88192013-02-06 06:52:58 +0000925 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000926 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000927 }
928 case lltok::kw_alignstack: {
929 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000930 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000931 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000932 if (ParseToken(lltok::equal, "expected '=' here") ||
933 ParseUInt32(Alignment))
934 return true;
935 } else {
936 if (ParseOptionalStackAlignment(Alignment))
937 return true;
938 }
Bill Wendling63b88192013-02-06 06:52:58 +0000939 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000940 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000941 }
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000942 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Michael Gottesman41748d72013-06-27 00:25:01 +0000943 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
Diego Novilloc6399532013-05-24 12:26:52 +0000944 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000945 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
Tom Roeder44cb65f2014-06-05 19:29:43 +0000946 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000947 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
948 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
949 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
950 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
951 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
952 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
953 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
954 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
955 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
956 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
Andrea Di Biagio377496b2013-08-23 11:53:55 +0000957 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
Kostya Serebryanycf880b92013-02-26 06:58:09 +0000958 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
959 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
960 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
961 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
962 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
963 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
964 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
965 case lltok::kw_sanitize_address: B.addAttribute(Attribute::SanitizeAddress); break;
966 case lltok::kw_sanitize_thread: B.addAttribute(Attribute::SanitizeThread); break;
967 case lltok::kw_sanitize_memory: B.addAttribute(Attribute::SanitizeMemory); break;
968 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000969
970 // Error handling.
971 case lltok::kw_inreg:
972 case lltok::kw_signext:
973 case lltok::kw_zeroext:
974 HaveError |=
975 Error(Lex.getLoc(),
976 "invalid use of attribute on a function");
977 break;
978 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +0000979 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +0000980 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +0000981 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000982 case lltok::kw_nest:
983 case lltok::kw_noalias:
984 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +0000985 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +0000986 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000987 case lltok::kw_sret:
988 HaveError |=
989 Error(Lex.getLoc(),
990 "invalid use of parameter-only attribute on a function");
991 break;
Bill Wendling63b88192013-02-06 06:52:58 +0000992 }
993
994 Lex.Lex();
995 }
996}
Chris Lattnerac161bf2009-01-02 07:01:27 +0000997
998//===----------------------------------------------------------------------===//
999// GlobalValue Reference/Resolution Routines.
1000//===----------------------------------------------------------------------===//
1001
1002/// GetGlobalVal - Get a value with the specified name or ID, creating a
1003/// forward reference record if needed. This can return null if the value
1004/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001005GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001006 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001007 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001008 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001009 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001010 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001011 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001012
Chris Lattnerac161bf2009-01-02 07:01:27 +00001013 // Look this name up in the normal function symbol table.
1014 GlobalValue *Val =
1015 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001016
Chris Lattnerac161bf2009-01-02 07:01:27 +00001017 // If this is a forward reference for the value, see if we already created a
1018 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001019 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001020 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
1021 I = ForwardRefVals.find(Name);
1022 if (I != ForwardRefVals.end())
1023 Val = I->second.first;
1024 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001025
Chris Lattnerac161bf2009-01-02 07:01:27 +00001026 // If we have the value in the symbol table or fwd-ref table, return it.
1027 if (Val) {
1028 if (Val->getType() == Ty) return Val;
1029 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001030 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001031 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001032 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001033
Chris Lattnerac161bf2009-01-02 07:01:27 +00001034 // Otherwise, create a new forward reference for this value and remember it.
1035 GlobalValue *FwdVal;
Chris Lattner229907c2011-07-18 04:54:35 +00001036 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sandse2881052009-03-11 08:08:06 +00001037 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001038 else
Owen Andersonb17f3292009-07-08 19:03:57 +00001039 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Craig Topper2617dcc2014-04-15 06:32:26 +00001040 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1041 nullptr, GlobalVariable::NotThreadLocal,
Justin Holewinski898a0a02012-11-16 21:03:47 +00001042 PTy->getAddressSpace());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001043
Chris Lattnerac161bf2009-01-02 07:01:27 +00001044 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1045 return FwdVal;
1046}
1047
Chris Lattner229907c2011-07-18 04:54:35 +00001048GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1049 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001050 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001051 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001052 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001053 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001054
Craig Topper2617dcc2014-04-15 06:32:26 +00001055 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001056
Chris Lattnerac161bf2009-01-02 07:01:27 +00001057 // If this is a forward reference for the value, see if we already created a
1058 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001059 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001060 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1061 I = ForwardRefValIDs.find(ID);
1062 if (I != ForwardRefValIDs.end())
1063 Val = I->second.first;
1064 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001065
Chris Lattnerac161bf2009-01-02 07:01:27 +00001066 // If we have the value in the symbol table or fwd-ref table, return it.
1067 if (Val) {
1068 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001069 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001070 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001071 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001072 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001073
Chris Lattnerac161bf2009-01-02 07:01:27 +00001074 // Otherwise, create a new forward reference for this value and remember it.
1075 GlobalValue *FwdVal;
Chris Lattner229907c2011-07-18 04:54:35 +00001076 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sandse2881052009-03-11 08:08:06 +00001077 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001078 else
Owen Andersonb17f3292009-07-08 19:03:57 +00001079 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Craig Topper2617dcc2014-04-15 06:32:26 +00001080 GlobalValue::ExternalWeakLinkage, nullptr, "");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001081
Chris Lattnerac161bf2009-01-02 07:01:27 +00001082 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1083 return FwdVal;
1084}
1085
1086
1087//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001088// Comdat Reference/Resolution Routines.
1089//===----------------------------------------------------------------------===//
1090
1091Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1092 // Look this name up in the comdat symbol table.
1093 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1094 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1095 if (I != ComdatSymTab.end())
1096 return &I->second;
1097
1098 // Otherwise, create a new forward reference for this value and remember it.
1099 Comdat *C = M->getOrInsertComdat(Name);
1100 ForwardRefComdats[Name] = Loc;
1101 return C;
1102}
1103
1104
1105//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001106// Helper Routines.
1107//===----------------------------------------------------------------------===//
1108
1109/// ParseToken - If the current token has the specified kind, eat it and return
1110/// success. Otherwise, emit the specified error and return failure.
1111bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1112 if (Lex.getKind() != T)
1113 return TokError(ErrMsg);
1114 Lex.Lex();
1115 return false;
1116}
1117
Chris Lattner3822f632009-01-02 08:05:26 +00001118/// ParseStringConstant
1119/// ::= StringConstant
1120bool LLParser::ParseStringConstant(std::string &Result) {
1121 if (Lex.getKind() != lltok::StringConstant)
1122 return TokError("expected string constant");
1123 Result = Lex.getStrVal();
1124 Lex.Lex();
1125 return false;
1126}
1127
1128/// ParseUInt32
1129/// ::= uint32
1130bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001131 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1132 return TokError("expected integer");
1133 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1134 if (Val64 != unsigned(Val64))
1135 return TokError("expected 32-bit integer (too large)");
1136 Val = Val64;
1137 Lex.Lex();
1138 return false;
1139}
1140
Hal Finkelb0407ba2014-07-18 15:51:28 +00001141/// ParseUInt64
1142/// ::= uint64
1143bool LLParser::ParseUInt64(uint64_t &Val) {
1144 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1145 return TokError("expected integer");
1146 Val = Lex.getAPSIntVal().getLimitedValue();
1147 Lex.Lex();
1148 return false;
1149}
1150
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001151/// ParseTLSModel
1152/// := 'localdynamic'
1153/// := 'initialexec'
1154/// := 'localexec'
1155bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1156 switch (Lex.getKind()) {
1157 default:
1158 return TokError("expected localdynamic, initialexec or localexec");
1159 case lltok::kw_localdynamic:
1160 TLM = GlobalVariable::LocalDynamicTLSModel;
1161 break;
1162 case lltok::kw_initialexec:
1163 TLM = GlobalVariable::InitialExecTLSModel;
1164 break;
1165 case lltok::kw_localexec:
1166 TLM = GlobalVariable::LocalExecTLSModel;
1167 break;
1168 }
1169
1170 Lex.Lex();
1171 return false;
1172}
1173
1174/// ParseOptionalThreadLocal
1175/// := /*empty*/
1176/// := 'thread_local'
1177/// := 'thread_local' '(' tlsmodel ')'
1178bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1179 TLM = GlobalVariable::NotThreadLocal;
1180 if (!EatIfPresent(lltok::kw_thread_local))
1181 return false;
1182
1183 TLM = GlobalVariable::GeneralDynamicTLSModel;
1184 if (Lex.getKind() == lltok::lparen) {
1185 Lex.Lex();
1186 return ParseTLSModel(TLM) ||
1187 ParseToken(lltok::rparen, "expected ')' after thread local model");
1188 }
1189 return false;
1190}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001191
1192/// ParseOptionalAddrSpace
1193/// := /*empty*/
1194/// := 'addrspace' '(' uint32 ')'
1195bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1196 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001197 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001198 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001199 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001200 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001201 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001202}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001203
Bill Wendling34c2eb22012-12-04 23:40:58 +00001204/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1205bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1206 bool HaveError = false;
1207
1208 B.clear();
1209
1210 while (1) {
1211 lltok::Kind Token = Lex.getKind();
1212 switch (Token) {
1213 default: // End of attributes.
1214 return HaveError;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001215 case lltok::kw_align: {
1216 unsigned Alignment;
1217 if (ParseOptionalAlignment(Alignment))
1218 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001219 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001220 continue;
1221 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001222 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001223 case lltok::kw_dereferenceable: {
1224 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001225 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001226 return true;
1227 B.addDereferenceableAttr(Bytes);
1228 continue;
1229 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001230 case lltok::kw_dereferenceable_or_null: {
1231 uint64_t Bytes;
1232 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1233 return true;
1234 B.addDereferenceableOrNullAttr(Bytes);
1235 continue;
1236 }
Reid Klecknera534a382013-12-19 02:14:12 +00001237 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001238 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1239 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1240 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1241 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001242 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001243 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1244 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001245 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001246 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1247 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1248 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001249
Stephen Lin7577ed52013-04-20 13:16:13 +00001250 case lltok::kw_alignstack:
1251 case lltok::kw_alwaysinline:
Michael Gottesman41748d72013-06-27 00:25:01 +00001252 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001253 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001254 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001255 case lltok::kw_minsize:
1256 case lltok::kw_naked:
1257 case lltok::kw_nobuiltin:
1258 case lltok::kw_noduplicate:
1259 case lltok::kw_noimplicitfloat:
1260 case lltok::kw_noinline:
1261 case lltok::kw_nonlazybind:
1262 case lltok::kw_noredzone:
1263 case lltok::kw_noreturn:
1264 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001265 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001266 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001267 case lltok::kw_returns_twice:
1268 case lltok::kw_sanitize_address:
1269 case lltok::kw_sanitize_memory:
1270 case lltok::kw_sanitize_thread:
1271 case lltok::kw_ssp:
1272 case lltok::kw_sspreq:
1273 case lltok::kw_sspstrong:
1274 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001275 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1276 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001277 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001278
Bill Wendling34c2eb22012-12-04 23:40:58 +00001279 Lex.Lex();
1280 }
1281}
1282
1283/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1284bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1285 bool HaveError = false;
1286
1287 B.clear();
1288
1289 while (1) {
1290 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001291 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001292 default: // End of attributes.
1293 return HaveError;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001294 case lltok::kw_dereferenceable: {
1295 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001296 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001297 return true;
1298 B.addDereferenceableAttr(Bytes);
1299 continue;
1300 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001301 case lltok::kw_dereferenceable_or_null: {
1302 uint64_t Bytes;
1303 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1304 return true;
1305 B.addDereferenceableOrNullAttr(Bytes);
1306 continue;
1307 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001308 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1309 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001310 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001311 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1312 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001313
Bill Wendling34c2eb22012-12-04 23:40:58 +00001314 // Error handling.
Stephen Lin7577ed52013-04-20 13:16:13 +00001315 case lltok::kw_align:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001316 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001317 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001318 case lltok::kw_nest:
1319 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001320 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001321 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001322 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001323 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001324
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001325 case lltok::kw_alignstack:
1326 case lltok::kw_alwaysinline:
Michael Gottesman41748d72013-06-27 00:25:01 +00001327 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001328 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001329 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001330 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001331 case lltok::kw_minsize:
1332 case lltok::kw_naked:
1333 case lltok::kw_nobuiltin:
1334 case lltok::kw_noduplicate:
1335 case lltok::kw_noimplicitfloat:
1336 case lltok::kw_noinline:
1337 case lltok::kw_nonlazybind:
1338 case lltok::kw_noredzone:
1339 case lltok::kw_noreturn:
1340 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001341 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001342 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001343 case lltok::kw_returns_twice:
1344 case lltok::kw_sanitize_address:
1345 case lltok::kw_sanitize_memory:
1346 case lltok::kw_sanitize_thread:
1347 case lltok::kw_ssp:
1348 case lltok::kw_sspreq:
1349 case lltok::kw_sspstrong:
1350 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001351 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001352 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001353
1354 case lltok::kw_readnone:
1355 case lltok::kw_readonly:
1356 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001357 }
1358
Chris Lattnerac161bf2009-01-02 07:01:27 +00001359 Lex.Lex();
1360 }
1361}
1362
1363/// ParseOptionalLinkage
1364/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001365/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001366/// ::= 'internal'
1367/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001368/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001369/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001370/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001371/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001372/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001373/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001374/// ::= 'extern_weak'
1375/// ::= 'external'
1376bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1377 HasLinkage = false;
1378 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001379 default: Res=GlobalValue::ExternalLinkage; return false;
1380 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001381 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1382 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1383 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1384 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1385 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001386 case lltok::kw_available_externally:
1387 Res = GlobalValue::AvailableExternallyLinkage;
1388 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001389 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001390 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001391 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1392 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001393 }
1394 Lex.Lex();
1395 HasLinkage = true;
1396 return false;
1397}
1398
1399/// ParseOptionalVisibility
1400/// ::= /*empty*/
1401/// ::= 'default'
1402/// ::= 'hidden'
1403/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001404///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001405bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1406 switch (Lex.getKind()) {
1407 default: Res = GlobalValue::DefaultVisibility; return false;
1408 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1409 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1410 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1411 }
1412 Lex.Lex();
1413 return false;
1414}
1415
Nico Rieck7157bb72014-01-14 15:22:47 +00001416/// ParseOptionalDLLStorageClass
1417/// ::= /*empty*/
1418/// ::= 'dllimport'
1419/// ::= 'dllexport'
1420///
1421bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1422 switch (Lex.getKind()) {
1423 default: Res = GlobalValue::DefaultStorageClass; return false;
1424 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1425 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1426 }
1427 Lex.Lex();
1428 return false;
1429}
1430
Chris Lattnerac161bf2009-01-02 07:01:27 +00001431/// ParseOptionalCallingConv
1432/// ::= /*empty*/
1433/// ::= 'ccc'
1434/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001435/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001436/// ::= 'coldcc'
1437/// ::= 'x86_stdcallcc'
1438/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001439/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001440/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001441/// ::= 'arm_apcscc'
1442/// ::= 'arm_aapcscc'
1443/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001444/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001445/// ::= 'ptx_kernel'
1446/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001447/// ::= 'spir_func'
1448/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001449/// ::= 'x86_64_sysvcc'
1450/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001451/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001452/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001453/// ::= 'preserve_mostcc'
1454/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001455/// ::= 'ghccc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001456/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001457///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001458bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001459 switch (Lex.getKind()) {
1460 default: CC = CallingConv::C; return false;
1461 case lltok::kw_ccc: CC = CallingConv::C; break;
1462 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1463 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1464 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1465 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001466 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001467 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001468 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1469 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1470 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001471 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001472 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1473 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001474 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1475 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001476 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001477 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1478 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001479 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001480 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001481 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1482 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001483 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001484 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001485 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001486 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001487 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001488 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001489
Chris Lattnerac161bf2009-01-02 07:01:27 +00001490 Lex.Lex();
1491 return false;
1492}
1493
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001494/// ParseMetadataAttachment
1495/// ::= !dbg !42
1496bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1497 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1498
1499 std::string Name = Lex.getStrVal();
1500 Kind = M->getMDKindID(Name);
1501 Lex.Lex();
1502
1503 return ParseMDNode(MD);
1504}
1505
Chris Lattner5c427632009-12-30 05:31:19 +00001506/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001507/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001508bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001509 do {
1510 if (Lex.getKind() != lltok::MetadataVar)
1511 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001512
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001513 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001514 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001515 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001516 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001517
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001518 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001519 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001520 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001521
Chris Lattner596760d2009-12-29 21:25:40 +00001522 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001523 } while (EatIfPresent(lltok::comma));
1524 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001525}
1526
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001527/// ParseOptionalFunctionMetadata
1528/// ::= (!dbg !57)*
1529bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1530 while (Lex.getKind() == lltok::MetadataVar) {
1531 unsigned MDK;
1532 MDNode *N;
1533 if (ParseMetadataAttachment(MDK, N))
1534 return true;
1535
1536 F.setMetadata(MDK, N);
1537 }
1538 return false;
1539}
1540
Chris Lattnerac161bf2009-01-02 07:01:27 +00001541/// ParseOptionalAlignment
1542/// ::= /* empty */
1543/// ::= 'align' 4
1544bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1545 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001546 if (!EatIfPresent(lltok::kw_align))
1547 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001548 LocTy AlignLoc = Lex.getLoc();
1549 if (ParseUInt32(Alignment)) return true;
1550 if (!isPowerOf2_32(Alignment))
1551 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001552 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001553 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001554 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001555}
1556
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001557/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001558/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001559/// ::= AttrKind '(' 4 ')'
1560///
1561/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1562bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1563 uint64_t &Bytes) {
1564 assert((AttrKind == lltok::kw_dereferenceable ||
1565 AttrKind == lltok::kw_dereferenceable_or_null) &&
1566 "contract!");
1567
Hal Finkelb0407ba2014-07-18 15:51:28 +00001568 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001569 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001570 return false;
1571 LocTy ParenLoc = Lex.getLoc();
1572 if (!EatIfPresent(lltok::lparen))
1573 return Error(ParenLoc, "expected '('");
1574 LocTy DerefLoc = Lex.getLoc();
1575 if (ParseUInt64(Bytes)) return true;
1576 ParenLoc = Lex.getLoc();
1577 if (!EatIfPresent(lltok::rparen))
1578 return Error(ParenLoc, "expected ')'");
1579 if (!Bytes)
1580 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1581 return false;
1582}
1583
Chris Lattnerb2f39502009-12-30 05:44:30 +00001584/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001585/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001586/// ::= ',' align 4
1587///
1588/// This returns with AteExtraComma set to true if it ate an excess comma at the
1589/// end.
1590bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1591 bool &AteExtraComma) {
1592 AteExtraComma = false;
1593 while (EatIfPresent(lltok::comma)) {
1594 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001595 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001596 AteExtraComma = true;
1597 return false;
1598 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001599
Chris Lattner95b0ff42010-04-23 00:50:50 +00001600 if (Lex.getKind() != lltok::kw_align)
1601 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001602
Chris Lattner95b0ff42010-04-23 00:50:50 +00001603 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001604 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001605
Devang Patelea8a4b92009-09-17 23:04:48 +00001606 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001607}
1608
Eli Friedmanfee02c62011-07-25 23:16:38 +00001609/// ParseScopeAndOrdering
1610/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1611/// else: ::=
1612///
1613/// This sets Scope and Ordering to the parsed values.
1614bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1615 AtomicOrdering &Ordering) {
1616 if (!isAtomic)
1617 return false;
1618
1619 Scope = CrossThread;
1620 if (EatIfPresent(lltok::kw_singlethread))
1621 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001622
1623 return ParseOrdering(Ordering);
1624}
1625
1626/// ParseOrdering
1627/// ::= AtomicOrdering
1628///
1629/// This sets Ordering to the parsed value.
1630bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001631 switch (Lex.getKind()) {
1632 default: return TokError("Expected ordering on atomic instruction");
1633 case lltok::kw_unordered: Ordering = Unordered; break;
1634 case lltok::kw_monotonic: Ordering = Monotonic; break;
1635 case lltok::kw_acquire: Ordering = Acquire; break;
1636 case lltok::kw_release: Ordering = Release; break;
1637 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1638 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1639 }
1640 Lex.Lex();
1641 return false;
1642}
1643
Charles Davisbe5557e2010-02-12 00:31:15 +00001644/// ParseOptionalStackAlignment
1645/// ::= /* empty */
1646/// ::= 'alignstack' '(' 4 ')'
1647bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1648 Alignment = 0;
1649 if (!EatIfPresent(lltok::kw_alignstack))
1650 return false;
1651 LocTy ParenLoc = Lex.getLoc();
1652 if (!EatIfPresent(lltok::lparen))
1653 return Error(ParenLoc, "expected '('");
1654 LocTy AlignLoc = Lex.getLoc();
1655 if (ParseUInt32(Alignment)) return true;
1656 ParenLoc = Lex.getLoc();
1657 if (!EatIfPresent(lltok::rparen))
1658 return Error(ParenLoc, "expected ')'");
1659 if (!isPowerOf2_32(Alignment))
1660 return Error(AlignLoc, "stack alignment is not a power of two");
1661 return false;
1662}
Devang Patelea8a4b92009-09-17 23:04:48 +00001663
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001664/// ParseIndexList - This parses the index list for an insert/extractvalue
1665/// instruction. This sets AteExtraComma in the case where we eat an extra
1666/// comma at the end of the line and find that it is followed by metadata.
1667/// Clients that don't allow metadata can call the version of this function that
1668/// only takes one argument.
1669///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001670/// ParseIndexList
1671/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001672///
1673bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1674 bool &AteExtraComma) {
1675 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001676
Chris Lattnerac161bf2009-01-02 07:01:27 +00001677 if (Lex.getKind() != lltok::comma)
1678 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001679
Chris Lattner3822f632009-01-02 08:05:26 +00001680 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001681 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001682 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001683 AteExtraComma = true;
1684 return false;
1685 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001686 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001687 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001688 Indices.push_back(Idx);
1689 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001690
Chris Lattnerac161bf2009-01-02 07:01:27 +00001691 return false;
1692}
1693
1694//===----------------------------------------------------------------------===//
1695// Type Parsing.
1696//===----------------------------------------------------------------------===//
1697
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001698/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001699bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001700 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001701 switch (Lex.getKind()) {
1702 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001703 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001704 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001705 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001706 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001707 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001708 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001709 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001710 // Type ::= StructType
1711 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001712 return true;
1713 break;
1714 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001715 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001716 Lex.Lex(); // eat the lsquare.
1717 if (ParseArrayVectorType(Result, false))
1718 return true;
1719 break;
1720 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001721 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001722 Lex.Lex();
1723 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001724 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001725 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001726 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001727 } else if (ParseArrayVectorType(Result, true))
1728 return true;
1729 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001730 case lltok::LocalVar: {
1731 // Type ::= %foo
1732 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001733
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001734 // If the type hasn't been defined yet, create a forward definition and
1735 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001736 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001737 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001738 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001739 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001740 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001741 Lex.Lex();
1742 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001743 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001744
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001745 case lltok::LocalVarID: {
1746 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001747 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001748
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001749 // If the type hasn't been defined yet, create a forward definition and
1750 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001751 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001752 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001753 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001754 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001755 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001756 Lex.Lex();
1757 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001758 }
1759 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001760
1761 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001762 while (1) {
1763 switch (Lex.getKind()) {
1764 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001765 default:
1766 if (!AllowVoid && Result->isVoidTy())
1767 return Error(TypeLoc, "void type only allowed for function results");
1768 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001769
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001770 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001771 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001772 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001773 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001774 if (Result->isVoidTy())
1775 return TokError("pointers to void are invalid - use i8* instead");
1776 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001777 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001778 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001779 Lex.Lex();
1780 break;
1781
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001782 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001783 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001784 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001785 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001786 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001787 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001788 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001789 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001790 unsigned AddrSpace;
1791 if (ParseOptionalAddrSpace(AddrSpace) ||
1792 ParseToken(lltok::star, "expected '*' in address space"))
1793 return true;
1794
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001795 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001796 break;
1797 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001798
Chris Lattnerac161bf2009-01-02 07:01:27 +00001799 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1800 case lltok::lparen:
1801 if (ParseFunctionType(Result))
1802 return true;
1803 break;
1804 }
1805 }
1806}
1807
1808/// ParseParameterList
1809/// ::= '(' ')'
1810/// ::= '(' Arg (',' Arg)* ')'
1811/// Arg
1812/// ::= Type OptionalAttributes Value OptionalAttributes
1813bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001814 PerFunctionState &PFS, bool IsMustTailCall,
1815 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001816 if (ParseToken(lltok::lparen, "expected '(' in call"))
1817 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001818
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001819 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001820 while (Lex.getKind() != lltok::rparen) {
1821 // If this isn't the first argument, we need a comma.
1822 if (!ArgList.empty() &&
1823 ParseToken(lltok::comma, "expected ',' in argument list"))
1824 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001825
Reid Kleckner83498642014-08-26 00:33:28 +00001826 // Parse an ellipsis if this is a musttail call in a variadic function.
1827 if (Lex.getKind() == lltok::dotdotdot) {
1828 const char *Msg = "unexpected ellipsis in argument list for ";
1829 if (!IsMustTailCall)
1830 return TokError(Twine(Msg) + "non-musttail call");
1831 if (!InVarArgsFunc)
1832 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1833 Lex.Lex(); // Lex the '...', it is purely for readability.
1834 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1835 }
1836
Chris Lattnerac161bf2009-01-02 07:01:27 +00001837 // Parse the argument.
1838 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001839 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001840 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001841 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001842 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001843 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001844
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001845 if (ArgTy->isMetadataTy()) {
1846 if (ParseMetadataAsValue(V, PFS))
1847 return true;
1848 } else {
1849 // Otherwise, handle normal operands.
1850 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1851 return true;
1852 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001853 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1854 AttrIndex++,
1855 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001856 }
1857
Reid Kleckner83498642014-08-26 00:33:28 +00001858 if (IsMustTailCall && InVarArgsFunc)
1859 return TokError("expected '...' at end of argument list for musttail call "
1860 "in varargs function");
1861
Chris Lattnerac161bf2009-01-02 07:01:27 +00001862 Lex.Lex(); // Lex the ')'.
1863 return false;
1864}
1865
1866
1867
Chris Lattner2ed06b42009-01-05 18:34:07 +00001868/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001869/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001870/// ::= '(' ArgTypeListI ')'
1871/// ArgTypeListI
1872/// ::= /*empty*/
1873/// ::= '...'
1874/// ::= ArgTypeList ',' '...'
1875/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00001876///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001877bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1878 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00001879 isVarArg = false;
1880 assert(Lex.getKind() == lltok::lparen);
1881 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001882
Chris Lattnerac161bf2009-01-02 07:01:27 +00001883 if (Lex.getKind() == lltok::rparen) {
1884 // empty
1885 } else if (Lex.getKind() == lltok::dotdotdot) {
1886 isVarArg = true;
1887 Lex.Lex();
1888 } else {
1889 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00001890 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001891 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001892 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001893
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001894 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00001895 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001896
Chris Lattnerfdd87902009-10-05 05:54:46 +00001897 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001898 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001899
Chris Lattnerdef19492011-06-17 06:36:20 +00001900 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001901 Name = Lex.getStrVal();
1902 Lex.Lex();
1903 }
Chris Lattner3822f632009-01-02 08:05:26 +00001904
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001905 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00001906 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001907
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001908 unsigned AttrIndex = 1;
Bill Wendlingd079a442012-10-15 04:46:55 +00001909 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001910 AttributeSet::get(ArgTy->getContext(),
1911 AttrIndex++, Attrs), Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001912
Chris Lattner3822f632009-01-02 08:05:26 +00001913 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001914 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00001915 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001916 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001917 break;
1918 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001919
Chris Lattnerac161bf2009-01-02 07:01:27 +00001920 // Otherwise must be an argument type.
1921 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00001922 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00001923
Chris Lattnerfdd87902009-10-05 05:54:46 +00001924 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001925 return Error(TypeLoc, "argument can not have void type");
1926
Chris Lattnerdef19492011-06-17 06:36:20 +00001927 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001928 Name = Lex.getStrVal();
1929 Lex.Lex();
1930 } else {
1931 Name = "";
1932 }
Chris Lattner3822f632009-01-02 08:05:26 +00001933
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001934 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00001935 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001936
Bill Wendlingd079a442012-10-15 04:46:55 +00001937 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001938 AttributeSet::get(ArgTy->getContext(),
1939 AttrIndex++, Attrs),
Bill Wendlingd079a442012-10-15 04:46:55 +00001940 Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001941 }
1942 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001943
Chris Lattner3822f632009-01-02 08:05:26 +00001944 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001945}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001946
Chris Lattnerac161bf2009-01-02 07:01:27 +00001947/// ParseFunctionType
1948/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001949bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001950 assert(Lex.getKind() == lltok::lparen);
1951
Chris Lattnerce473c72009-01-05 08:04:33 +00001952 if (!FunctionType::isValidReturnType(Result))
1953 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001954
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001955 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001956 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001957 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001958 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001959
Chris Lattnerac161bf2009-01-02 07:01:27 +00001960 // Reject names on the arguments lists.
1961 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1962 if (!ArgList[i].Name.empty())
1963 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001964 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00001965 return Error(ArgList[i].Loc,
1966 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001967 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001968
Jay Foadb804a2b2011-07-12 14:06:48 +00001969 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001970 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001971 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001972
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001973 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001974 return false;
1975}
1976
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001977/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1978/// other structs.
1979bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1980 SmallVector<Type*, 8> Elts;
1981 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001982
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001983 Result = StructType::get(Context, Elts, Packed);
1984 return false;
1985}
1986
1987/// ParseStructDefinition - Parse a struct in a 'type' definition.
1988bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1989 std::pair<Type*, LocTy> &Entry,
1990 Type *&ResultTy) {
1991 // If the type was already defined, diagnose the redefinition.
1992 if (Entry.first && !Entry.second.isValid())
1993 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001994
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001995 // If we have opaque, just return without filling in the definition for the
1996 // struct. This counts as a definition as far as the .ll file goes.
1997 if (EatIfPresent(lltok::kw_opaque)) {
1998 // This type is being defined, so clear the location to indicate this.
1999 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002000
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002001 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002002 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002003 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002004 ResultTy = Entry.first;
2005 return false;
2006 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002007
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002008 // If the type starts with '<', then it is either a packed struct or a vector.
2009 bool isPacked = EatIfPresent(lltok::less);
2010
2011 // If we don't have a struct, then we have a random type alias, which we
2012 // accept for compatibility with old files. These types are not allowed to be
2013 // forward referenced and not allowed to be recursive.
2014 if (Lex.getKind() != lltok::lbrace) {
2015 if (Entry.first)
2016 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002017
Craig Topper2617dcc2014-04-15 06:32:26 +00002018 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002019 if (isPacked)
2020 return ParseArrayVectorType(ResultTy, true);
2021 return ParseType(ResultTy);
2022 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002023
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002024 // This type is being defined, so clear the location to indicate this.
2025 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002026
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002027 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002028 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002029 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002030
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002031 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002032
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002033 SmallVector<Type*, 8> Body;
2034 if (ParseStructBody(Body) ||
2035 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2036 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002037
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002038 STy->setBody(Body, isPacked);
2039 ResultTy = STy;
2040 return false;
2041}
2042
2043
Chris Lattnerac161bf2009-01-02 07:01:27 +00002044/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002045/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002046/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002047/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002048/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002049/// ::= '<' '{' Type (',' Type)* '}' '>'
2050bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002051 assert(Lex.getKind() == lltok::lbrace);
2052 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002053
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002054 // Handle the empty struct.
2055 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002056 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002057
Chris Lattnerf880ca22009-03-09 04:49:14 +00002058 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002059 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002060 if (ParseType(Ty)) return true;
2061 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002062
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002063 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002064 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002065
Chris Lattner3822f632009-01-02 08:05:26 +00002066 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002067 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002068 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002069
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002070 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002071 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002072
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002073 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002074 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002075
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002076 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002077}
2078
2079/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2080/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002081/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002082/// ::= '[' APSINTVAL 'x' Types ']'
2083/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002084bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002085 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2086 Lex.getAPSIntVal().getBitWidth() > 64)
2087 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002088
Chris Lattnerac161bf2009-01-02 07:01:27 +00002089 LocTy SizeLoc = Lex.getLoc();
2090 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002091 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002092
Chris Lattner3822f632009-01-02 08:05:26 +00002093 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2094 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002095
2096 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002097 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002098 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002099
Chris Lattner3822f632009-01-02 08:05:26 +00002100 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2101 "expected end of sequential type"))
2102 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002103
Chris Lattnerac161bf2009-01-02 07:01:27 +00002104 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002105 if (Size == 0)
2106 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002107 if ((unsigned)Size != Size)
2108 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002109 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002110 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002111 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002112 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002113 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002114 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002115 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002116 }
2117 return false;
2118}
2119
2120//===----------------------------------------------------------------------===//
2121// Function Semantic Analysis.
2122//===----------------------------------------------------------------------===//
2123
Chris Lattner3432c622009-10-28 03:39:23 +00002124LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2125 int functionNumber)
2126 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002127
2128 // Insert unnamed arguments into the NumberedVals list.
2129 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2130 AI != E; ++AI)
2131 if (!AI->hasName())
2132 NumberedVals.push_back(AI);
2133}
2134
2135LLParser::PerFunctionState::~PerFunctionState() {
2136 // If there were any forward referenced non-basicblock values, delete them.
2137 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
2138 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
2139 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002140 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002141 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002142 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002143 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002144 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002145
Chris Lattnerac161bf2009-01-02 07:01:27 +00002146 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2147 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
2148 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002149 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002150 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002151 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002152 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002153 }
2154}
2155
Chris Lattner3432c622009-10-28 03:39:23 +00002156bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002157 if (!ForwardRefVals.empty())
2158 return P.Error(ForwardRefVals.begin()->second.second,
2159 "use of undefined value '%" + ForwardRefVals.begin()->first +
2160 "'");
2161 if (!ForwardRefValIDs.empty())
2162 return P.Error(ForwardRefValIDs.begin()->second.second,
2163 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002164 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002165 return false;
2166}
2167
2168
2169/// GetVal - Get a value with the specified name or ID, creating a
2170/// forward reference record if needed. This can return null if the value
2171/// exists but does not have the right type.
2172Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattner229907c2011-07-18 04:54:35 +00002173 Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002174 // Look this name up in the normal function symbol table.
2175 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002176
Chris Lattnerac161bf2009-01-02 07:01:27 +00002177 // If this is a forward reference for the value, see if we already created a
2178 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002179 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002180 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2181 I = ForwardRefVals.find(Name);
2182 if (I != ForwardRefVals.end())
2183 Val = I->second.first;
2184 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002185
Chris Lattnerac161bf2009-01-02 07:01:27 +00002186 // If we have the value in the symbol table or fwd-ref table, return it.
2187 if (Val) {
2188 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002189 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002190 P.Error(Loc, "'%" + Name + "' is not a basic block");
2191 else
2192 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002193 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002194 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002195 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002196
Chris Lattnerac161bf2009-01-02 07:01:27 +00002197 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002198 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002199 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002200 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002201 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002202
Chris Lattnerac161bf2009-01-02 07:01:27 +00002203 // Otherwise, create a new forward reference for this value and remember it.
2204 Value *FwdVal;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002205 if (Ty->isLabelTy())
Owen Anderson55f1c092009-08-13 21:58:54 +00002206 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002207 else
2208 FwdVal = new Argument(Ty, Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002209
Chris Lattnerac161bf2009-01-02 07:01:27 +00002210 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2211 return FwdVal;
2212}
2213
Chris Lattner229907c2011-07-18 04:54:35 +00002214Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00002215 LocTy Loc) {
2216 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002217 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002218
Chris Lattnerac161bf2009-01-02 07:01:27 +00002219 // If this is a forward reference for the value, see if we already created a
2220 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002221 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002222 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2223 I = ForwardRefValIDs.find(ID);
2224 if (I != ForwardRefValIDs.end())
2225 Val = I->second.first;
2226 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002227
Chris Lattnerac161bf2009-01-02 07:01:27 +00002228 // If we have the value in the symbol table or fwd-ref table, return it.
2229 if (Val) {
2230 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002231 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002232 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002233 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002234 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002235 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002236 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002237 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002238
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002239 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002240 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002241 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002242 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002243
Chris Lattnerac161bf2009-01-02 07:01:27 +00002244 // Otherwise, create a new forward reference for this value and remember it.
2245 Value *FwdVal;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002246 if (Ty->isLabelTy())
Owen Anderson55f1c092009-08-13 21:58:54 +00002247 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002248 else
2249 FwdVal = new Argument(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002250
Chris Lattnerac161bf2009-01-02 07:01:27 +00002251 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2252 return FwdVal;
2253}
2254
2255/// SetInstName - After an instruction is parsed and inserted into its
2256/// basic block, this installs its name.
2257bool LLParser::PerFunctionState::SetInstName(int NameID,
2258 const std::string &NameStr,
2259 LocTy NameLoc, Instruction *Inst) {
2260 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002261 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002262 if (NameID != -1 || !NameStr.empty())
2263 return P.Error(NameLoc, "instructions returning void cannot have a name");
2264 return false;
2265 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002266
Chris Lattnerac161bf2009-01-02 07:01:27 +00002267 // If this was a numbered instruction, verify that the instruction is the
2268 // expected value and resolve any forward references.
2269 if (NameStr.empty()) {
2270 // If neither a name nor an ID was specified, just use the next ID.
2271 if (NameID == -1)
2272 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002273
Chris Lattnerac161bf2009-01-02 07:01:27 +00002274 if (unsigned(NameID) != NumberedVals.size())
2275 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002276 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002277
Chris Lattnerac161bf2009-01-02 07:01:27 +00002278 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2279 ForwardRefValIDs.find(NameID);
2280 if (FI != ForwardRefValIDs.end()) {
2281 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002282 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002283 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002284 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2baa6a32009-09-02 15:02:57 +00002285 delete FI->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002286 ForwardRefValIDs.erase(FI);
2287 }
2288
2289 NumberedVals.push_back(Inst);
2290 return false;
2291 }
2292
2293 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2294 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2295 FI = ForwardRefVals.find(NameStr);
2296 if (FI != ForwardRefVals.end()) {
2297 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002298 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002299 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002300 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2fcee702009-09-02 14:22:03 +00002301 delete FI->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002302 ForwardRefVals.erase(FI);
2303 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002304
Chris Lattnerac161bf2009-01-02 07:01:27 +00002305 // Set the name on the instruction.
2306 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002307
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002308 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002309 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002310 NameStr + "'");
2311 return false;
2312}
2313
2314/// GetBB - Get a basic block with the specified name or ID, creating a
2315/// forward reference record if needed.
2316BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2317 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002318 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2319 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002320}
2321
2322BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002323 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2324 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002325}
2326
2327/// DefineBB - Define the specified basic block, which is either named or
2328/// unnamed. If there is an error, this returns null otherwise it returns
2329/// the block being defined.
2330BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2331 LocTy Loc) {
2332 BasicBlock *BB;
2333 if (Name.empty())
2334 BB = GetBB(NumberedVals.size(), Loc);
2335 else
2336 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002337 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002338
Chris Lattnerac161bf2009-01-02 07:01:27 +00002339 // Move the block to the end of the function. Forward ref'd blocks are
2340 // inserted wherever they happen to be referenced.
2341 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002342
Chris Lattnerac161bf2009-01-02 07:01:27 +00002343 // Remove the block from forward ref sets.
2344 if (Name.empty()) {
2345 ForwardRefValIDs.erase(NumberedVals.size());
2346 NumberedVals.push_back(BB);
2347 } else {
2348 // BB forward references are already in the function symbol table.
2349 ForwardRefVals.erase(Name);
2350 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002351
Chris Lattnerac161bf2009-01-02 07:01:27 +00002352 return BB;
2353}
2354
2355//===----------------------------------------------------------------------===//
2356// Constants.
2357//===----------------------------------------------------------------------===//
2358
2359/// ParseValID - Parse an abstract value that doesn't necessarily have a
2360/// type implied. For example, if we parse "4" we don't know what integer type
2361/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002362/// sanity. PFS is used to convert function-local operands of metadata (since
2363/// metadata operands are not just parsed here but also converted to values).
2364/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002365bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002366 ID.Loc = Lex.getLoc();
2367 switch (Lex.getKind()) {
2368 default: return TokError("expected value token");
2369 case lltok::GlobalID: // @42
2370 ID.UIntVal = Lex.getUIntVal();
2371 ID.Kind = ValID::t_GlobalID;
2372 break;
2373 case lltok::GlobalVar: // @foo
2374 ID.StrVal = Lex.getStrVal();
2375 ID.Kind = ValID::t_GlobalName;
2376 break;
2377 case lltok::LocalVarID: // %42
2378 ID.UIntVal = Lex.getUIntVal();
2379 ID.Kind = ValID::t_LocalID;
2380 break;
2381 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002382 ID.StrVal = Lex.getStrVal();
2383 ID.Kind = ValID::t_LocalName;
2384 break;
2385 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002386 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002387 ID.Kind = ValID::t_APSInt;
2388 break;
2389 case lltok::APFloat:
2390 ID.APFloatVal = Lex.getAPFloatVal();
2391 ID.Kind = ValID::t_APFloat;
2392 break;
2393 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002394 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002395 ID.Kind = ValID::t_Constant;
2396 break;
2397 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002398 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002399 ID.Kind = ValID::t_Constant;
2400 break;
2401 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2402 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2403 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002404
Chris Lattnerac161bf2009-01-02 07:01:27 +00002405 case lltok::lbrace: {
2406 // ValID ::= '{' ConstVector '}'
2407 Lex.Lex();
2408 SmallVector<Constant*, 16> Elts;
2409 if (ParseGlobalValueVector(Elts) ||
2410 ParseToken(lltok::rbrace, "expected end of struct constant"))
2411 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002412
Reid Kleckner2ae03e12015-03-04 18:31:10 +00002413 ID.ConstantStructElts = new Constant*[Elts.size()];
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002414 ID.UIntVal = Elts.size();
Reid Kleckner2ae03e12015-03-04 18:31:10 +00002415 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002416 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002417 return false;
2418 }
2419 case lltok::less: {
2420 // ValID ::= '<' ConstVector '>' --> Vector.
2421 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2422 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002423 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002424
Chris Lattnerac161bf2009-01-02 07:01:27 +00002425 SmallVector<Constant*, 16> Elts;
2426 LocTy FirstEltLoc = Lex.getLoc();
2427 if (ParseGlobalValueVector(Elts) ||
2428 (isPackedStruct &&
2429 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2430 ParseToken(lltok::greater, "expected end of constant"))
2431 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002432
Chris Lattnerac161bf2009-01-02 07:01:27 +00002433 if (isPackedStruct) {
Reid Kleckner2ae03e12015-03-04 18:31:10 +00002434 ID.ConstantStructElts = new Constant*[Elts.size()];
2435 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002436 ID.UIntVal = Elts.size();
2437 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002438 return false;
2439 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002440
Chris Lattnerac161bf2009-01-02 07:01:27 +00002441 if (Elts.empty())
2442 return Error(ID.Loc, "constant vector must not be empty");
2443
Duncan Sands9dff9be2010-02-15 16:12:20 +00002444 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002445 !Elts[0]->getType()->isFloatingPointTy() &&
2446 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002447 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002448 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002449
Chris Lattnerac161bf2009-01-02 07:01:27 +00002450 // Verify that all the vector elements have the same type.
2451 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2452 if (Elts[i]->getType() != Elts[0]->getType())
2453 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002454 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002455 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002456
Chris Lattner69229312011-02-15 00:14:00 +00002457 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002458 ID.Kind = ValID::t_Constant;
2459 return false;
2460 }
2461 case lltok::lsquare: { // Array Constant
2462 Lex.Lex();
2463 SmallVector<Constant*, 16> Elts;
2464 LocTy FirstEltLoc = Lex.getLoc();
2465 if (ParseGlobalValueVector(Elts) ||
2466 ParseToken(lltok::rsquare, "expected end of array constant"))
2467 return true;
2468
2469 // Handle empty element.
2470 if (Elts.empty()) {
2471 // Use undef instead of an array because it's inconvenient to determine
2472 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002473 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002474 return false;
2475 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002476
Chris Lattnerac161bf2009-01-02 07:01:27 +00002477 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002478 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002479 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002480
Owen Anderson4056ca92009-07-29 22:17:13 +00002481 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002482
Chris Lattnerac161bf2009-01-02 07:01:27 +00002483 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002484 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002485 if (Elts[i]->getType() != Elts[0]->getType())
2486 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002487 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002488 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002489 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002490
Jay Foad83be3612011-06-22 09:24:39 +00002491 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002492 ID.Kind = ValID::t_Constant;
2493 return false;
2494 }
2495 case lltok::kw_c: // c "foo"
2496 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002497 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2498 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002499 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2500 ID.Kind = ValID::t_Constant;
2501 return false;
2502
2503 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002504 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2505 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002506 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002507 Lex.Lex();
2508 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002509 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002510 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002511 ParseStringConstant(ID.StrVal) ||
2512 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002513 ParseToken(lltok::StringConstant, "expected constraint string"))
2514 return true;
2515 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002516 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002517 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002518 ID.Kind = ValID::t_InlineAsm;
2519 return false;
2520 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002521
Chris Lattner3432c622009-10-28 03:39:23 +00002522 case lltok::kw_blockaddress: {
2523 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2524 Lex.Lex();
2525
2526 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002527
Chris Lattner3432c622009-10-28 03:39:23 +00002528 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2529 ParseValID(Fn) ||
2530 ParseToken(lltok::comma, "expected comma in block address expression")||
2531 ParseValID(Label) ||
2532 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2533 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002534
Chris Lattner3432c622009-10-28 03:39:23 +00002535 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2536 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002537 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002538 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002539
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002540 // Try to find the function (but skip it if it's forward-referenced).
2541 GlobalValue *GV = nullptr;
2542 if (Fn.Kind == ValID::t_GlobalID) {
2543 if (Fn.UIntVal < NumberedVals.size())
2544 GV = NumberedVals[Fn.UIntVal];
2545 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2546 GV = M->getNamedValue(Fn.StrVal);
2547 }
2548 Function *F = nullptr;
2549 if (GV) {
2550 // Confirm that it's actually a function with a definition.
2551 if (!isa<Function>(GV))
2552 return Error(Fn.Loc, "expected function name in blockaddress");
2553 F = cast<Function>(GV);
2554 if (F->isDeclaration())
2555 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2556 }
2557
2558 if (!F) {
2559 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002560 GlobalValue *&FwdRef =
2561 ForwardRefBlockAddresses.insert(std::make_pair(
2562 std::move(Fn),
2563 std::map<ValID, GlobalValue *>()))
2564 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2565 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002566 if (!FwdRef)
2567 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2568 GlobalValue::InternalLinkage, nullptr, "");
2569 ID.ConstantVal = FwdRef;
2570 ID.Kind = ValID::t_Constant;
2571 return false;
2572 }
2573
2574 // We found the function; now find the basic block. Don't use PFS, since we
2575 // might be inside a constant expression.
2576 BasicBlock *BB;
2577 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2578 if (Label.Kind == ValID::t_LocalID)
2579 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2580 else
2581 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2582 if (!BB)
2583 return Error(Label.Loc, "referenced value is not a basic block");
2584 } else {
2585 if (Label.Kind == ValID::t_LocalID)
2586 return Error(Label.Loc, "cannot take address of numeric label after "
2587 "the function is defined");
2588 BB = dyn_cast_or_null<BasicBlock>(
2589 F->getValueSymbolTable().lookup(Label.StrVal));
2590 if (!BB)
2591 return Error(Label.Loc, "referenced value is not a basic block");
2592 }
2593
2594 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002595 ID.Kind = ValID::t_Constant;
2596 return false;
2597 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002598
Chris Lattnerac161bf2009-01-02 07:01:27 +00002599 case lltok::kw_trunc:
2600 case lltok::kw_zext:
2601 case lltok::kw_sext:
2602 case lltok::kw_fptrunc:
2603 case lltok::kw_fpext:
2604 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002605 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002606 case lltok::kw_uitofp:
2607 case lltok::kw_sitofp:
2608 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002609 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002610 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002611 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002612 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002613 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002614 Constant *SrcVal;
2615 Lex.Lex();
2616 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2617 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002618 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002619 ParseType(DestTy) ||
2620 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2621 return true;
2622 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2623 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002624 getTypeString(SrcVal->getType()) + "' to '" +
2625 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002626 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002627 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002628 ID.Kind = ValID::t_Constant;
2629 return false;
2630 }
2631 case lltok::kw_extractvalue: {
2632 Lex.Lex();
2633 Constant *Val;
2634 SmallVector<unsigned, 4> Indices;
2635 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2636 ParseGlobalTypeAndValue(Val) ||
2637 ParseIndexList(Indices) ||
2638 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2639 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002640
Chris Lattner392be582010-02-12 20:49:41 +00002641 if (!Val->getType()->isAggregateType())
2642 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002643 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002644 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002645 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002646 ID.Kind = ValID::t_Constant;
2647 return false;
2648 }
2649 case lltok::kw_insertvalue: {
2650 Lex.Lex();
2651 Constant *Val0, *Val1;
2652 SmallVector<unsigned, 4> Indices;
2653 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2654 ParseGlobalTypeAndValue(Val0) ||
2655 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2656 ParseGlobalTypeAndValue(Val1) ||
2657 ParseIndexList(Indices) ||
2658 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2659 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002660 if (!Val0->getType()->isAggregateType())
2661 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002662 Type *IndexedType =
2663 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2664 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002665 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002666 if (IndexedType != Val1->getType())
2667 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2668 getTypeString(Val1->getType()) +
2669 "' instead of '" + getTypeString(IndexedType) +
2670 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002671 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002672 ID.Kind = ValID::t_Constant;
2673 return false;
2674 }
2675 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002676 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002677 unsigned PredVal, Opc = Lex.getUIntVal();
2678 Constant *Val0, *Val1;
2679 Lex.Lex();
2680 if (ParseCmpPredicate(PredVal, Opc) ||
2681 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2682 ParseGlobalTypeAndValue(Val0) ||
2683 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2684 ParseGlobalTypeAndValue(Val1) ||
2685 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2686 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002687
Chris Lattnerac161bf2009-01-02 07:01:27 +00002688 if (Val0->getType() != Val1->getType())
2689 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002690
Chris Lattnerac161bf2009-01-02 07:01:27 +00002691 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002692
Chris Lattnerac161bf2009-01-02 07:01:27 +00002693 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002694 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002695 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002696 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002697 } else {
2698 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002699 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002700 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002701 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002702 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002703 }
2704 ID.Kind = ValID::t_Constant;
2705 return false;
2706 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002707
Chris Lattnerac161bf2009-01-02 07:01:27 +00002708 // Binary Operators.
2709 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002710 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002711 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002712 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002713 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002714 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002715 case lltok::kw_udiv:
2716 case lltok::kw_sdiv:
2717 case lltok::kw_fdiv:
2718 case lltok::kw_urem:
2719 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002720 case lltok::kw_frem:
2721 case lltok::kw_shl:
2722 case lltok::kw_lshr:
2723 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002724 bool NUW = false;
2725 bool NSW = false;
2726 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002727 unsigned Opc = Lex.getUIntVal();
2728 Constant *Val0, *Val1;
2729 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002730 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002731 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2732 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002733 if (EatIfPresent(lltok::kw_nuw))
2734 NUW = true;
2735 if (EatIfPresent(lltok::kw_nsw)) {
2736 NSW = true;
2737 if (EatIfPresent(lltok::kw_nuw))
2738 NUW = true;
2739 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002740 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2741 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002742 if (EatIfPresent(lltok::kw_exact))
2743 Exact = true;
2744 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002745 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2746 ParseGlobalTypeAndValue(Val0) ||
2747 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2748 ParseGlobalTypeAndValue(Val1) ||
2749 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2750 return true;
2751 if (Val0->getType() != Val1->getType())
2752 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002753 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002754 if (NUW)
2755 return Error(ModifierLoc, "nuw only applies to integer operations");
2756 if (NSW)
2757 return Error(ModifierLoc, "nsw only applies to integer operations");
2758 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002759 // Check that the type is valid for the operator.
2760 switch (Opc) {
2761 case Instruction::Add:
2762 case Instruction::Sub:
2763 case Instruction::Mul:
2764 case Instruction::UDiv:
2765 case Instruction::SDiv:
2766 case Instruction::URem:
2767 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002768 case Instruction::Shl:
2769 case Instruction::AShr:
2770 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002771 if (!Val0->getType()->isIntOrIntVectorTy())
2772 return Error(ID.Loc, "constexpr requires integer operands");
2773 break;
2774 case Instruction::FAdd:
2775 case Instruction::FSub:
2776 case Instruction::FMul:
2777 case Instruction::FDiv:
2778 case Instruction::FRem:
2779 if (!Val0->getType()->isFPOrFPVectorTy())
2780 return Error(ID.Loc, "constexpr requires fp operands");
2781 break;
2782 default: llvm_unreachable("Unknown binary operator!");
2783 }
Dan Gohman1b849082009-09-07 23:54:19 +00002784 unsigned Flags = 0;
2785 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2786 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002787 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002788 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002789 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002790 ID.Kind = ValID::t_Constant;
2791 return false;
2792 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002793
Chris Lattnerac161bf2009-01-02 07:01:27 +00002794 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002795 case lltok::kw_and:
2796 case lltok::kw_or:
2797 case lltok::kw_xor: {
2798 unsigned Opc = Lex.getUIntVal();
2799 Constant *Val0, *Val1;
2800 Lex.Lex();
2801 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2802 ParseGlobalTypeAndValue(Val0) ||
2803 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2804 ParseGlobalTypeAndValue(Val1) ||
2805 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2806 return true;
2807 if (Val0->getType() != Val1->getType())
2808 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002809 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002810 return Error(ID.Loc,
2811 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002812 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002813 ID.Kind = ValID::t_Constant;
2814 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002815 }
2816
Chris Lattnerac161bf2009-01-02 07:01:27 +00002817 case lltok::kw_getelementptr:
2818 case lltok::kw_shufflevector:
2819 case lltok::kw_insertelement:
2820 case lltok::kw_extractelement:
2821 case lltok::kw_select: {
2822 unsigned Opc = Lex.getUIntVal();
2823 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002824 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00002825 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002826 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00002827
Dan Gohman1639c392009-07-27 21:53:46 +00002828 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002829 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00002830
2831 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2832 return true;
2833
2834 LocTy ExplicitTypeLoc = Lex.getLoc();
2835 if (Opc == Instruction::GetElementPtr) {
2836 if (ParseType(Ty) ||
2837 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2838 return true;
2839 }
2840
2841 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002842 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2843 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002844
Chris Lattnerac161bf2009-01-02 07:01:27 +00002845 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00002846 if (Elts.size() == 0 ||
2847 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00002848 return Error(ID.Loc, "base of getelementptr must be a pointer");
2849
2850 Type *BaseType = Elts[0]->getType();
2851 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00002852 if (Ty != BasePointerType->getElementType())
2853 return Error(
2854 ExplicitTypeLoc,
2855 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002856
Jay Foaded8db7d2011-07-21 14:31:17 +00002857 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00002858 for (Constant *Val : Indices) {
2859 Type *ValTy = Val->getType();
2860 if (!ValTy->getScalarType()->isIntegerTy())
2861 return Error(ID.Loc, "getelementptr index must be an integer");
2862 if (ValTy->isVectorTy() != BaseType->isVectorTy())
2863 return Error(ID.Loc, "getelementptr index type missmatch");
2864 if (ValTy->isVectorTy()) {
2865 unsigned ValNumEl = cast<VectorType>(ValTy)->getNumElements();
2866 unsigned PtrNumEl = cast<VectorType>(BaseType)->getNumElements();
2867 if (ValNumEl != PtrNumEl)
2868 return Error(
2869 ID.Loc,
2870 "getelementptr vector index has a wrong number of elements");
2871 }
2872 }
2873
Owen Andersone90f9922015-03-10 06:34:57 +00002874 SmallPtrSet<const Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00002875 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00002876 return Error(ID.Loc, "base element of getelementptr must be sized");
2877
David Blaikie4a2e73b2015-04-02 18:55:32 +00002878 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00002879 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00002880 ID.ConstantVal =
2881 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002882 } else if (Opc == Instruction::Select) {
2883 if (Elts.size() != 3)
2884 return Error(ID.Loc, "expected three operands to select");
2885 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2886 Elts[2]))
2887 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00002888 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002889 } else if (Opc == Instruction::ShuffleVector) {
2890 if (Elts.size() != 3)
2891 return Error(ID.Loc, "expected three operands to shufflevector");
2892 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2893 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00002894 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002895 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002896 } else if (Opc == Instruction::ExtractElement) {
2897 if (Elts.size() != 2)
2898 return Error(ID.Loc, "expected two operands to extractelement");
2899 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2900 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002901 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002902 } else {
2903 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2904 if (Elts.size() != 3)
2905 return Error(ID.Loc, "expected three operands to insertelement");
2906 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2907 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00002908 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00002909 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002910 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002911
Chris Lattnerac161bf2009-01-02 07:01:27 +00002912 ID.Kind = ValID::t_Constant;
2913 return false;
2914 }
2915 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002916
Chris Lattnerac161bf2009-01-02 07:01:27 +00002917 Lex.Lex();
2918 return false;
2919}
2920
2921/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00002922bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002923 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002924 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00002925 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00002926 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00002927 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002928 if (V && !(C = dyn_cast<Constant>(V)))
2929 return Error(ID.Loc, "global values must be constants");
2930 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002931}
2932
Victor Hernandez9d75c962010-01-11 22:31:58 +00002933bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00002934 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002935 return ParseType(Ty) ||
2936 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00002937}
2938
Rafael Espindola83a362c2015-01-06 22:55:16 +00002939bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00002940 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00002941
2942 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00002943 if (!EatIfPresent(lltok::kw_comdat))
2944 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00002945
2946 if (EatIfPresent(lltok::lparen)) {
2947 if (Lex.getKind() != lltok::ComdatVar)
2948 return TokError("expected comdat variable");
2949 C = getComdat(Lex.getStrVal(), Lex.getLoc());
2950 Lex.Lex();
2951 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
2952 return true;
2953 } else {
2954 if (GlobalName.empty())
2955 return TokError("comdat cannot be unnamed");
2956 C = getComdat(GlobalName, KwLoc);
2957 }
2958
David Majnemerdad0a642014-06-27 18:19:56 +00002959 return false;
2960}
2961
Victor Hernandez9d75c962010-01-11 22:31:58 +00002962/// ParseGlobalValueVector
2963/// ::= /*empty*/
2964/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002965bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00002966 // Empty list.
2967 if (Lex.getKind() == lltok::rbrace ||
2968 Lex.getKind() == lltok::rsquare ||
2969 Lex.getKind() == lltok::greater ||
2970 Lex.getKind() == lltok::rparen)
2971 return false;
2972
2973 Constant *C;
2974 if (ParseGlobalTypeAndValue(C)) return true;
2975 Elts.push_back(C);
2976
2977 while (EatIfPresent(lltok::comma)) {
2978 if (ParseGlobalTypeAndValue(C)) return true;
2979 Elts.push_back(C);
2980 }
2981
2982 return false;
2983}
2984
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00002985bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00002986 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00002987 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00002988 return true;
2989
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00002990 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00002991 return false;
2992}
2993
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00002994/// MDNode:
2995/// ::= !{ ... }
2996/// ::= !7
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00002997/// ::= !MDLocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00002998bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00002999 if (Lex.getKind() == lltok::MetadataVar)
3000 return ParseSpecializedMDNode(N);
3001
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003002 return ParseToken(lltok::exclaim, "expected '!' here") ||
3003 ParseMDNodeTail(N);
3004}
3005
3006bool LLParser::ParseMDNodeTail(MDNode *&N) {
3007 // !{ ... }
3008 if (Lex.getKind() == lltok::lbrace)
3009 return ParseMDTuple(N);
3010
3011 // !42
3012 return ParseMDNodeID(N);
3013}
3014
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003015namespace {
3016
3017/// Structure to represent an optional metadata field.
3018template <class FieldTy> struct MDFieldImpl {
3019 typedef MDFieldImpl ImplTy;
3020 FieldTy Val;
3021 bool Seen;
3022
3023 void assign(FieldTy Val) {
3024 Seen = true;
3025 this->Val = std::move(Val);
3026 }
3027
3028 explicit MDFieldImpl(FieldTy Default)
3029 : Val(std::move(Default)), Seen(false) {}
3030};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003031
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003032struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3033 uint64_t Max;
3034
3035 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3036 : ImplTy(Default), Max(Max) {}
3037};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003038struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003039 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003040};
3041struct ColumnField : public MDUnsignedField {
3042 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3043};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003044struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003045 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003046 DwarfTagField(dwarf::Tag DefaultTag)
3047 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003048};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003049struct DwarfAttEncodingField : public MDUnsignedField {
3050 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3051};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003052struct DwarfVirtualityField : public MDUnsignedField {
3053 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3054};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003055struct DwarfLangField : public MDUnsignedField {
3056 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3057};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003058
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003059struct DIFlagField : public MDUnsignedField {
3060 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3061};
3062
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003063struct MDSignedField : public MDFieldImpl<int64_t> {
3064 int64_t Min;
3065 int64_t Max;
3066
3067 MDSignedField(int64_t Default = 0)
3068 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3069 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3070 : ImplTy(Default), Min(Min), Max(Max) {}
3071};
3072
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003073struct MDBoolField : public MDFieldImpl<bool> {
3074 MDBoolField(bool Default = false) : ImplTy(Default) {}
3075};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003076struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003077 bool AllowNull;
3078
3079 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003080};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003081struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3082 MDConstant() : ImplTy(nullptr) {}
3083};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003084struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003085 bool AllowEmpty;
3086 MDStringField(bool AllowEmpty = true)
3087 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003088};
3089struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3090 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3091};
3092
3093} // end namespace
3094
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003095namespace llvm {
3096
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003097template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003098bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003099 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003100 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3101 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003102
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003103 auto &U = Lex.getAPSIntVal();
3104 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003105 return TokError("value for '" + Name + "' too large, limit is " +
3106 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003107 Result.assign(U.getZExtValue());
3108 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003109 Lex.Lex();
3110 return false;
3111}
3112
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003113template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003114bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3115 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3116}
3117template <>
3118bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3119 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3120}
3121
3122template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003123bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3124 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003125 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003126
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003127 if (Lex.getKind() != lltok::DwarfTag)
3128 return TokError("expected DWARF tag");
3129
3130 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3131 if (Tag == dwarf::DW_TAG_invalid)
3132 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003133 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003134
3135 Result.assign(Tag);
3136 Lex.Lex();
3137 return false;
3138}
3139
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003140template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003141bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3142 DwarfVirtualityField &Result) {
3143 if (Lex.getKind() == lltok::APSInt)
3144 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3145
3146 if (Lex.getKind() != lltok::DwarfVirtuality)
3147 return TokError("expected DWARF virtuality code");
3148
3149 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3150 if (!Virtuality)
3151 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3152 Lex.getStrVal() + "'");
3153 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3154 Result.assign(Virtuality);
3155 Lex.Lex();
3156 return false;
3157}
3158
3159template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003160bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3161 if (Lex.getKind() == lltok::APSInt)
3162 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3163
3164 if (Lex.getKind() != lltok::DwarfLang)
3165 return TokError("expected DWARF language");
3166
3167 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3168 if (!Lang)
3169 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3170 "'");
3171 assert(Lang <= Result.Max && "Expected valid DWARF language");
3172 Result.assign(Lang);
3173 Lex.Lex();
3174 return false;
3175}
3176
3177template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003178bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003179 DwarfAttEncodingField &Result) {
3180 if (Lex.getKind() == lltok::APSInt)
3181 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3182
3183 if (Lex.getKind() != lltok::DwarfAttEncoding)
3184 return TokError("expected DWARF type attribute encoding");
3185
3186 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3187 if (!Encoding)
3188 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3189 Lex.getStrVal() + "'");
3190 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3191 Result.assign(Encoding);
3192 Lex.Lex();
3193 return false;
3194}
3195
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003196/// DIFlagField
3197/// ::= uint32
3198/// ::= DIFlagVector
3199/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3200template <>
3201bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3202 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3203
3204 // Parser for a single flag.
3205 auto parseFlag = [&](unsigned &Val) {
3206 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3207 return ParseUInt32(Val);
3208
3209 if (Lex.getKind() != lltok::DIFlag)
3210 return TokError("expected debug info flag");
3211
Duncan P. N. Exon Smith5261e4b2015-04-07 01:21:40 +00003212 Val = DebugNode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003213 if (!Val)
3214 return TokError(Twine("invalid debug info flag flag '") +
3215 Lex.getStrVal() + "'");
3216 Lex.Lex();
3217 return false;
3218 };
3219
3220 // Parse the flags and combine them together.
3221 unsigned Combined = 0;
3222 do {
3223 unsigned Val;
3224 if (parseFlag(Val))
3225 return true;
3226 Combined |= Val;
3227 } while (EatIfPresent(lltok::bar));
3228
3229 Result.assign(Combined);
3230 return false;
3231}
3232
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003233template <>
3234bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003235 MDSignedField &Result) {
3236 if (Lex.getKind() != lltok::APSInt)
3237 return TokError("expected signed integer");
3238
3239 auto &S = Lex.getAPSIntVal();
3240 if (S < Result.Min)
3241 return TokError("value for '" + Name + "' too small, limit is " +
3242 Twine(Result.Min));
3243 if (S > Result.Max)
3244 return TokError("value for '" + Name + "' too large, limit is " +
3245 Twine(Result.Max));
3246 Result.assign(S.getExtValue());
3247 assert(Result.Val >= Result.Min && "Expected value in range");
3248 assert(Result.Val <= Result.Max && "Expected value in range");
3249 Lex.Lex();
3250 return false;
3251}
3252
3253template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003254bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3255 switch (Lex.getKind()) {
3256 default:
3257 return TokError("expected 'true' or 'false'");
3258 case lltok::kw_true:
3259 Result.assign(true);
3260 break;
3261 case lltok::kw_false:
3262 Result.assign(false);
3263 break;
3264 }
3265 Lex.Lex();
3266 return false;
3267}
3268
3269template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003270bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003271 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003272 if (!Result.AllowNull)
3273 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003274 Lex.Lex();
3275 Result.assign(nullptr);
3276 return false;
3277 }
3278
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003279 Metadata *MD;
3280 if (ParseMetadata(MD, nullptr))
3281 return true;
3282
3283 Result.assign(MD);
3284 return false;
3285}
3286
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003287template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003288bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3289 Metadata *MD;
3290 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3291 return true;
3292
3293 Result.assign(cast<ConstantAsMetadata>(MD));
3294 return false;
3295}
3296
3297template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003298bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003299 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003300 std::string S;
3301 if (ParseStringConstant(S))
3302 return true;
3303
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003304 if (!Result.AllowEmpty && S.empty())
3305 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3306
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003307 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003308 return false;
3309}
3310
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003311template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003312bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3313 SmallVector<Metadata *, 4> MDs;
3314 if (ParseMDNodeVector(MDs))
3315 return true;
3316
3317 Result.assign(std::move(MDs));
3318 return false;
3319}
3320
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003321} // end namespace llvm
3322
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003323template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003324bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003325 do {
3326 if (Lex.getKind() != lltok::LabelStr)
3327 return TokError("expected field label here");
3328
3329 if (parseField())
3330 return true;
3331 } while (EatIfPresent(lltok::comma));
3332
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003333 return false;
3334}
3335
3336template <class ParserTy>
3337bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3338 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3339 Lex.Lex();
3340
3341 if (ParseToken(lltok::lparen, "expected '(' here"))
3342 return true;
3343 if (Lex.getKind() != lltok::rparen)
3344 if (ParseMDFieldsImplBody(parseField))
3345 return true;
3346
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003347 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003348 return ParseToken(lltok::rparen, "expected ')' here");
3349}
3350
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003351template <class FieldTy>
3352bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3353 if (Result.Seen)
3354 return TokError("field '" + Name + "' cannot be specified more than once");
3355
3356 LocTy Loc = Lex.getLoc();
3357 Lex.Lex();
3358 return ParseMDField(Loc, Name, Result);
3359}
3360
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003361bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3362 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003363
3364#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003365 if (Lex.getStrVal() == #CLASS) \
3366 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003367#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003368
3369 return TokError("expected metadata type");
3370}
3371
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003372#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3373#define NOP_FIELD(NAME, TYPE, INIT)
3374#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3375 if (!NAME.Seen) \
3376 return Error(ClosingLoc, "missing required field '" #NAME "'");
3377#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003378 if (Lex.getStrVal() == #NAME) \
3379 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003380#define PARSE_MD_FIELDS() \
3381 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3382 do { \
3383 LocTy ClosingLoc; \
3384 if (ParseMDFieldsImpl([&]() -> bool { \
3385 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3386 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3387 }, ClosingLoc)) \
3388 return true; \
3389 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3390 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003391#define GET_OR_DISTINCT(CLASS, ARGS) \
3392 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003393
3394/// ParseMDLocationFields:
3395/// ::= !MDLocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3396bool LLParser::ParseMDLocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003397#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003398 OPTIONAL(line, LineField, ); \
3399 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003400 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003401 OPTIONAL(inlinedAt, MDField, );
3402 PARSE_MD_FIELDS();
3403#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003404
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003405 Result = GET_OR_DISTINCT(
3406 MDLocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003407 return false;
3408}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003409
3410/// ParseGenericDebugNode:
3411/// ::= !GenericDebugNode(tag: 15, header: "...", operands: {...})
3412bool LLParser::ParseGenericDebugNode(MDNode *&Result, bool IsDistinct) {
3413#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003414 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003415 OPTIONAL(header, MDStringField, ); \
3416 OPTIONAL(operands, MDFieldList, );
3417 PARSE_MD_FIELDS();
3418#undef VISIT_MD_FIELDS
3419
3420 Result = GET_OR_DISTINCT(GenericDebugNode,
3421 (Context, tag.Val, header.Val, operands.Val));
3422 return false;
3423}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003424
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003425/// ParseMDSubrange:
3426/// ::= !MDSubrange(count: 30, lowerBound: 2)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003427bool LLParser::ParseMDSubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003428#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003429 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003430 OPTIONAL(lowerBound, MDSignedField, );
3431 PARSE_MD_FIELDS();
3432#undef VISIT_MD_FIELDS
3433
3434 Result = GET_OR_DISTINCT(MDSubrange, (Context, count.Val, lowerBound.Val));
3435 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003436}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003437
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003438/// ParseMDEnumerator:
3439/// ::= !MDEnumerator(value: 30, name: "SomeKind")
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003440bool LLParser::ParseMDEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003441#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003442 REQUIRED(name, MDStringField, ); \
3443 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003444 PARSE_MD_FIELDS();
3445#undef VISIT_MD_FIELDS
3446
3447 Result = GET_OR_DISTINCT(MDEnumerator, (Context, value.Val, name.Val));
3448 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003449}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003450
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003451/// ParseMDBasicType:
3452/// ::= !MDBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003453bool LLParser::ParseMDBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003454#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003455 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003456 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003457 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3458 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003459 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003460 PARSE_MD_FIELDS();
3461#undef VISIT_MD_FIELDS
3462
3463 Result = GET_OR_DISTINCT(MDBasicType, (Context, tag.Val, name.Val, size.Val,
3464 align.Val, encoding.Val));
3465 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003466}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003467
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003468/// ParseMDDerivedType:
3469/// ::= !MDDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
3470/// line: 7, scope: !1, baseType: !2, size: 32,
3471/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003472bool LLParser::ParseMDDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003473#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3474 REQUIRED(tag, DwarfTagField, ); \
3475 OPTIONAL(name, MDStringField, ); \
3476 OPTIONAL(file, MDField, ); \
3477 OPTIONAL(line, LineField, ); \
3478 OPTIONAL(scope, MDField, ); \
3479 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003480 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3481 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3482 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003483 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003484 OPTIONAL(extraData, MDField, );
3485 PARSE_MD_FIELDS();
3486#undef VISIT_MD_FIELDS
3487
3488 Result = GET_OR_DISTINCT(MDDerivedType,
3489 (Context, tag.Val, name.Val, file.Val, line.Val,
3490 scope.Val, baseType.Val, size.Val, align.Val,
3491 offset.Val, flags.Val, extraData.Val));
3492 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003493}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003494
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003495bool LLParser::ParseMDCompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003496#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3497 REQUIRED(tag, DwarfTagField, ); \
3498 OPTIONAL(name, MDStringField, ); \
3499 OPTIONAL(file, MDField, ); \
3500 OPTIONAL(line, LineField, ); \
3501 OPTIONAL(scope, MDField, ); \
3502 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003503 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3504 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3505 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003506 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003507 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003508 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003509 OPTIONAL(vtableHolder, MDField, ); \
3510 OPTIONAL(templateParams, MDField, ); \
3511 OPTIONAL(identifier, MDStringField, );
3512 PARSE_MD_FIELDS();
3513#undef VISIT_MD_FIELDS
3514
3515 Result = GET_OR_DISTINCT(
3516 MDCompositeType,
3517 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3518 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3519 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3520 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003521}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003522
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003523bool LLParser::ParseMDSubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003524#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003525 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003526 REQUIRED(types, MDField, );
3527 PARSE_MD_FIELDS();
3528#undef VISIT_MD_FIELDS
3529
3530 Result = GET_OR_DISTINCT(MDSubroutineType, (Context, flags.Val, types.Val));
3531 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003532}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003533
3534/// ParseMDFileType:
3535/// ::= !MDFileType(filename: "path/to/file", directory: "/path/to/dir")
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003536bool LLParser::ParseMDFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003537#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3538 REQUIRED(filename, MDStringField, ); \
3539 REQUIRED(directory, MDStringField, );
3540 PARSE_MD_FIELDS();
3541#undef VISIT_MD_FIELDS
3542
3543 Result = GET_OR_DISTINCT(MDFile, (Context, filename.Val, directory.Val));
3544 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003545}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003546
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003547/// ParseMDCompileUnit:
3548/// ::= !MDCompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
3549/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3550/// splitDebugFilename: "abc.debug", emissionKind: 1,
3551/// enums: !1, retainedTypes: !2, subprograms: !3,
3552/// globals: !4, imports: !5)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003553bool LLParser::ParseMDCompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003554#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3555 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003556 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003557 OPTIONAL(producer, MDStringField, ); \
3558 OPTIONAL(isOptimized, MDBoolField, ); \
3559 OPTIONAL(flags, MDStringField, ); \
3560 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3561 OPTIONAL(splitDebugFilename, MDStringField, ); \
3562 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3563 OPTIONAL(enums, MDField, ); \
3564 OPTIONAL(retainedTypes, MDField, ); \
3565 OPTIONAL(subprograms, MDField, ); \
3566 OPTIONAL(globals, MDField, ); \
3567 OPTIONAL(imports, MDField, );
3568 PARSE_MD_FIELDS();
3569#undef VISIT_MD_FIELDS
3570
3571 Result = GET_OR_DISTINCT(MDCompileUnit,
3572 (Context, language.Val, file.Val, producer.Val,
3573 isOptimized.Val, flags.Val, runtimeVersion.Val,
3574 splitDebugFilename.Val, emissionKind.Val, enums.Val,
3575 retainedTypes.Val, subprograms.Val, globals.Val,
3576 imports.Val));
3577 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003578}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003579
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003580/// ParseMDSubprogram:
3581/// ::= !MDSubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
3582/// file: !1, line: 7, type: !2, isLocal: false,
3583/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003584/// virtuality: DW_VIRTUALTIY_pure_virtual,
3585/// virtualIndex: 10, flags: 11,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003586/// isOptimized: false, function: void ()* @_Z3foov,
3587/// templateParams: !4, declaration: !5, variables: !6)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003588bool LLParser::ParseMDSubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003589#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3590 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003591 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003592 OPTIONAL(linkageName, MDStringField, ); \
3593 OPTIONAL(file, MDField, ); \
3594 OPTIONAL(line, LineField, ); \
3595 OPTIONAL(type, MDField, ); \
3596 OPTIONAL(isLocal, MDBoolField, ); \
3597 OPTIONAL(isDefinition, MDBoolField, (true)); \
3598 OPTIONAL(scopeLine, LineField, ); \
3599 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003600 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003601 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003602 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003603 OPTIONAL(isOptimized, MDBoolField, ); \
3604 OPTIONAL(function, MDConstant, ); \
3605 OPTIONAL(templateParams, MDField, ); \
3606 OPTIONAL(declaration, MDField, ); \
3607 OPTIONAL(variables, MDField, );
3608 PARSE_MD_FIELDS();
3609#undef VISIT_MD_FIELDS
3610
3611 Result = GET_OR_DISTINCT(
3612 MDSubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
3613 line.Val, type.Val, isLocal.Val, isDefinition.Val,
3614 scopeLine.Val, containingType.Val, virtuality.Val,
3615 virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3616 templateParams.Val, declaration.Val, variables.Val));
3617 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003618}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003619
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003620/// ParseMDLexicalBlock:
3621/// ::= !MDLexicalBlock(scope: !0, file: !2, line: 7, column: 9)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003622bool LLParser::ParseMDLexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003623#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003624 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003625 OPTIONAL(file, MDField, ); \
3626 OPTIONAL(line, LineField, ); \
3627 OPTIONAL(column, ColumnField, );
3628 PARSE_MD_FIELDS();
3629#undef VISIT_MD_FIELDS
3630
3631 Result = GET_OR_DISTINCT(
3632 MDLexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
3633 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003634}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003635
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003636/// ParseMDLexicalBlockFile:
3637/// ::= !MDLexicalBlockFile(scope: !0, file: !2, discriminator: 9)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003638bool LLParser::ParseMDLexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003639#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003640 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003641 OPTIONAL(file, MDField, ); \
3642 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3643 PARSE_MD_FIELDS();
3644#undef VISIT_MD_FIELDS
3645
3646 Result = GET_OR_DISTINCT(MDLexicalBlockFile,
3647 (Context, scope.Val, file.Val, discriminator.Val));
3648 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003649}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003650
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003651/// ParseMDNamespace:
3652/// ::= !MDNamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003653bool LLParser::ParseMDNamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003654#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3655 REQUIRED(scope, MDField, ); \
3656 OPTIONAL(file, MDField, ); \
3657 OPTIONAL(name, MDStringField, ); \
3658 OPTIONAL(line, LineField, );
3659 PARSE_MD_FIELDS();
3660#undef VISIT_MD_FIELDS
3661
3662 Result = GET_OR_DISTINCT(MDNamespace,
3663 (Context, scope.Val, file.Val, name.Val, line.Val));
3664 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003665}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003666
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003667/// ParseMDTemplateTypeParameter:
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003668/// ::= !MDTemplateTypeParameter(name: "Ty", type: !1)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003669bool LLParser::ParseMDTemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003670#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003671 OPTIONAL(name, MDStringField, ); \
3672 REQUIRED(type, MDField, );
3673 PARSE_MD_FIELDS();
3674#undef VISIT_MD_FIELDS
3675
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003676 Result =
3677 GET_OR_DISTINCT(MDTemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003678 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003679}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003680
3681/// ParseMDTemplateValueParameter:
3682/// ::= !MDTemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003683/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003684bool LLParser::ParseMDTemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003685#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003686 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003687 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003688 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003689 REQUIRED(value, MDField, );
3690 PARSE_MD_FIELDS();
3691#undef VISIT_MD_FIELDS
3692
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003693 Result = GET_OR_DISTINCT(MDTemplateValueParameter,
3694 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003695 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003696}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003697
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003698/// ParseMDGlobalVariable:
3699/// ::= !MDGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
3700/// file: !1, line: 7, type: !2, isLocal: false,
3701/// isDefinition: true, variable: i32* @foo,
3702/// declaration: !3)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003703bool LLParser::ParseMDGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003704#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003705 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003706 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003707 OPTIONAL(linkageName, MDStringField, ); \
3708 OPTIONAL(file, MDField, ); \
3709 OPTIONAL(line, LineField, ); \
3710 OPTIONAL(type, MDField, ); \
3711 OPTIONAL(isLocal, MDBoolField, ); \
3712 OPTIONAL(isDefinition, MDBoolField, (true)); \
3713 OPTIONAL(variable, MDConstant, ); \
3714 OPTIONAL(declaration, MDField, );
3715 PARSE_MD_FIELDS();
3716#undef VISIT_MD_FIELDS
3717
3718 Result = GET_OR_DISTINCT(MDGlobalVariable,
3719 (Context, scope.Val, name.Val, linkageName.Val,
3720 file.Val, line.Val, type.Val, isLocal.Val,
3721 isDefinition.Val, variable.Val, declaration.Val));
3722 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003723}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003724
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003725/// ParseMDLocalVariable:
3726/// ::= !MDLocalVariable(tag: DW_TAG_arg_variable, scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003727/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003728bool LLParser::ParseMDLocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003729#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3730 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003731 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003732 OPTIONAL(name, MDStringField, ); \
3733 OPTIONAL(file, MDField, ); \
3734 OPTIONAL(line, LineField, ); \
3735 OPTIONAL(type, MDField, ); \
3736 OPTIONAL(arg, MDUnsignedField, (0, UINT8_MAX)); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003737 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003738 PARSE_MD_FIELDS();
3739#undef VISIT_MD_FIELDS
3740
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003741 Result = GET_OR_DISTINCT(MDLocalVariable,
3742 (Context, tag.Val, scope.Val, name.Val, file.Val,
3743 line.Val, type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003744 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003745}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003746
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003747/// ParseMDExpression:
3748/// ::= !MDExpression(0, 7, -1)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003749bool LLParser::ParseMDExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003750 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3751 Lex.Lex();
3752
3753 if (ParseToken(lltok::lparen, "expected '(' here"))
3754 return true;
3755
3756 SmallVector<uint64_t, 8> Elements;
3757 if (Lex.getKind() != lltok::rparen)
3758 do {
3759 if (Lex.getKind() == lltok::DwarfOp) {
3760 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3761 Lex.Lex();
3762 Elements.push_back(Op);
3763 continue;
3764 }
3765 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3766 }
3767
3768 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3769 return TokError("expected unsigned integer");
3770
3771 auto &U = Lex.getAPSIntVal();
3772 if (U.ugt(UINT64_MAX))
3773 return TokError("element too large, limit is " + Twine(UINT64_MAX));
3774 Elements.push_back(U.getZExtValue());
3775 Lex.Lex();
3776 } while (EatIfPresent(lltok::comma));
3777
3778 if (ParseToken(lltok::rparen, "expected ')' here"))
3779 return true;
3780
3781 Result = GET_OR_DISTINCT(MDExpression, (Context, Elements));
3782 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003783}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003784
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003785/// ParseMDObjCProperty:
3786/// ::= !MDObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
3787/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003788bool LLParser::ParseMDObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003789#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003790 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003791 OPTIONAL(file, MDField, ); \
3792 OPTIONAL(line, LineField, ); \
3793 OPTIONAL(setter, MDStringField, ); \
3794 OPTIONAL(getter, MDStringField, ); \
3795 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
3796 OPTIONAL(type, MDField, );
3797 PARSE_MD_FIELDS();
3798#undef VISIT_MD_FIELDS
3799
3800 Result = GET_OR_DISTINCT(MDObjCProperty,
3801 (Context, name.Val, file.Val, line.Val, setter.Val,
3802 getter.Val, attributes.Val, type.Val));
3803 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003804}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003805
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003806/// ParseMDImportedEntity:
3807/// ::= !MDImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
3808/// line: 7, name: "foo")
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003809bool LLParser::ParseMDImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003810#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3811 REQUIRED(tag, DwarfTagField, ); \
3812 REQUIRED(scope, MDField, ); \
3813 OPTIONAL(entity, MDField, ); \
3814 OPTIONAL(line, LineField, ); \
3815 OPTIONAL(name, MDStringField, );
3816 PARSE_MD_FIELDS();
3817#undef VISIT_MD_FIELDS
3818
3819 Result = GET_OR_DISTINCT(MDImportedEntity, (Context, tag.Val, scope.Val,
3820 entity.Val, line.Val, name.Val));
3821 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003822}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003823
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003824#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003825#undef NOP_FIELD
3826#undef REQUIRE_FIELD
3827#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003828
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003829/// ParseMetadataAsValue
3830/// ::= metadata i32 %local
3831/// ::= metadata i32 @global
3832/// ::= metadata i32 7
3833/// ::= metadata !0
3834/// ::= metadata !{...}
3835/// ::= metadata !"string"
3836bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
3837 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003838 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003839 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003840 return true;
3841
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003842 V = MetadataAsValue::get(Context, MD);
3843 return false;
3844}
3845
3846/// ParseValueAsMetadata
3847/// ::= i32 %local
3848/// ::= i32 @global
3849/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003850bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
3851 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003852 Type *Ty;
3853 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003854 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003855 return true;
3856 if (Ty->isMetadataTy())
3857 return Error(Loc, "invalid metadata-value-metadata roundtrip");
3858
3859 Value *V;
3860 if (ParseValue(Ty, V, PFS))
3861 return true;
3862
3863 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003864 return false;
3865}
3866
3867/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003868/// ::= i32 %local
3869/// ::= i32 @global
3870/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00003871/// ::= !42
3872/// ::= !{...}
3873/// ::= !"string"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003874/// ::= !MDLocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003875bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003876 if (Lex.getKind() == lltok::MetadataVar) {
3877 MDNode *N;
3878 if (ParseSpecializedMDNode(N))
3879 return true;
3880 MD = N;
3881 return false;
3882 }
3883
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003884 // ValueAsMetadata:
3885 // <type> <value>
3886 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003887 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003888
3889 // '!'.
3890 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
3891 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00003892
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003893 // MDString:
3894 // ::= '!' STRINGCONSTANT
3895 if (Lex.getKind() == lltok::StringConstant) {
3896 MDString *S;
3897 if (ParseMDString(S))
3898 return true;
3899 MD = S;
3900 return false;
3901 }
3902
Dan Gohman8939ba332010-07-14 18:26:50 +00003903 // MDNode:
3904 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003905 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003906 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003907 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003908 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00003909 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00003910 return false;
3911}
3912
Victor Hernandez9d75c962010-01-11 22:31:58 +00003913
3914//===----------------------------------------------------------------------===//
3915// Function Parsing.
3916//===----------------------------------------------------------------------===//
3917
Chris Lattner229907c2011-07-18 04:54:35 +00003918bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez9d75c962010-01-11 22:31:58 +00003919 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00003920 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003921 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003922
Chris Lattnerac161bf2009-01-02 07:01:27 +00003923 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003924 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00003925 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
3926 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003927 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003928 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00003929 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
3930 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003931 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003932 case ValID::t_InlineAsm: {
Chris Lattner229907c2011-07-18 04:54:35 +00003933 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00003934 FunctionType *FTy =
Craig Topper2617dcc2014-04-15 06:32:26 +00003935 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003936 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
3937 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosierf42fad62012-09-05 00:08:17 +00003938 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosierd8c76102012-09-05 19:00:49 +00003939 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00003940 return false;
3941 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00003942 case ValID::t_GlobalName:
3943 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003944 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003945 case ValID::t_GlobalID:
3946 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00003947 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003948 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00003949 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003950 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00003951 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00003952 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003953 return false;
3954 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00003955 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003956 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
3957 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003958
Dan Gohman518cda42011-12-17 00:04:22 +00003959 // The lexer has no type info, so builds all half, float, and double FP
3960 // constants as double. Fix this here. Long double does not need this.
3961 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00003962 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00003963 if (Ty->isHalfTy())
3964 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
3965 &Ignored);
3966 else if (Ty->isFloatTy())
3967 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
3968 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003969 }
Owen Anderson69c464d2009-07-27 20:59:43 +00003970 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003971
Chris Lattner8f57d29e2009-01-05 18:24:23 +00003972 if (V->getType() != Ty)
3973 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00003974 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003975
Chris Lattnerac161bf2009-01-02 07:01:27 +00003976 return false;
3977 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00003978 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003979 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00003980 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00003981 return false;
3982 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00003983 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003984 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00003985 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00003986 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003987 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00003988 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00003989 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00003990 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00003991 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00003992 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003993 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00003994 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00003995 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00003996 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00003997 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003998 return false;
3999 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004000 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004001 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004002
Chris Lattnerac161bf2009-01-02 07:01:27 +00004003 V = ID.ConstantVal;
4004 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004005 case ValID::t_ConstantStruct:
4006 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004007 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004008 if (ST->getNumElements() != ID.UIntVal)
4009 return Error(ID.Loc,
4010 "initializer with struct type has wrong # elements");
4011 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4012 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004013
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004014 // Verify that the elements are compatible with the structtype.
4015 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4016 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4017 return Error(ID.Loc, "element " + Twine(i) +
4018 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004019
Reid Kleckner2ae03e12015-03-04 18:31:10 +00004020 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
4021 ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004022 } else
4023 return Error(ID.Loc, "constant expression type mismatch");
4024 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004025 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004026 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004027}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004028
Chris Lattner229907c2011-07-18 04:54:35 +00004029bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004030 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004031 ValID ID;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004032 return ParseValID(ID, PFS) ||
4033 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004034}
4035
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004036bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004037 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004038 return ParseType(Ty) ||
4039 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004040}
4041
Chris Lattner3ed871f2009-10-27 19:13:16 +00004042bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4043 PerFunctionState &PFS) {
4044 Value *V;
4045 Loc = Lex.getLoc();
4046 if (ParseTypeAndValue(V, PFS)) return true;
4047 if (!isa<BasicBlock>(V))
4048 return Error(Loc, "expected a basic block");
4049 BB = cast<BasicBlock>(V);
4050 return false;
4051}
4052
4053
Chris Lattnerac161bf2009-01-02 07:01:27 +00004054/// FunctionHeader
4055/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004056/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004057/// OptionalAlign OptGC OptionalPrefix OptionalPrologue
Chris Lattnerac161bf2009-01-02 07:01:27 +00004058bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4059 // Parse the linkage.
4060 LocTy LinkageLoc = Lex.getLoc();
4061 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004062
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004063 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004064 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004065 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004066 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004067 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004068 LocTy RetTypeLoc = Lex.getLoc();
4069 if (ParseOptionalLinkage(Linkage) ||
4070 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004071 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004072 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004073 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004074 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004075 return true;
4076
4077 // Verify that the linkage is ok.
4078 switch ((GlobalValue::LinkageTypes)Linkage) {
4079 case GlobalValue::ExternalLinkage:
4080 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004081 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004082 if (isDefine)
4083 return Error(LinkageLoc, "invalid linkage for function definition");
4084 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004085 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004086 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004087 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004088 case GlobalValue::LinkOnceAnyLinkage:
4089 case GlobalValue::LinkOnceODRLinkage:
4090 case GlobalValue::WeakAnyLinkage:
4091 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004092 if (!isDefine)
4093 return Error(LinkageLoc, "invalid linkage for function declaration");
4094 break;
4095 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004096 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004097 return Error(LinkageLoc, "invalid function linkage type");
4098 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004099
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004100 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4101 return Error(LinkageLoc,
4102 "symbol with local linkage must have default visibility");
4103
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004104 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004105 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004106
Chris Lattnerac161bf2009-01-02 07:01:27 +00004107 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004108
4109 std::string FunctionName;
4110 if (Lex.getKind() == lltok::GlobalVar) {
4111 FunctionName = Lex.getStrVal();
4112 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4113 unsigned NameID = Lex.getUIntVal();
4114
4115 if (NameID != NumberedVals.size())
4116 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004117 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004118 } else {
4119 return TokError("expected function name");
4120 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004121
Chris Lattner3822f632009-01-02 08:05:26 +00004122 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004123
Chris Lattner3822f632009-01-02 08:05:26 +00004124 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004125 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004126
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004127 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004128 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004129 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004130 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004131 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004132 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004133 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004134 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004135 bool UnnamedAddr;
4136 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004137 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004138 Constant *Prologue = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004139 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004140
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004141 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004142 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4143 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004144 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004145 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004146 (EatIfPresent(lltok::kw_section) &&
4147 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004148 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004149 ParseOptionalAlignment(Alignment) ||
4150 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004151 ParseStringConstant(GC)) ||
4152 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004153 ParseGlobalTypeAndValue(Prefix)) ||
4154 (EatIfPresent(lltok::kw_prologue) &&
4155 ParseGlobalTypeAndValue(Prologue)))
Chris Lattner3822f632009-01-02 08:05:26 +00004156 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004157
Michael Gottesman41748d72013-06-27 00:25:01 +00004158 if (FuncAttrs.contains(Attribute::Builtin))
4159 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004160
Chris Lattnerac161bf2009-01-02 07:01:27 +00004161 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004162 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004163 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004164 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004165 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004166
Chris Lattnerac161bf2009-01-02 07:01:27 +00004167 // Okay, if we got here, the function is syntactically valid. Convert types
4168 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004169 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004170 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004171
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004172 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004173 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4174 AttributeSet::ReturnIndex,
4175 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004176
Chris Lattnerac161bf2009-01-02 07:01:27 +00004177 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004178 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004179 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4180 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004181 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4182 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004183 }
4184
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004185 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004186 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4187 AttributeSet::FunctionIndex,
4188 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004189
Bill Wendlinge94d8432012-12-07 23:16:57 +00004190 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004191
Bill Wendling749a43d2012-12-30 13:50:49 +00004192 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004193 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4194
Chris Lattner229907c2011-07-18 04:54:35 +00004195 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004196 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004197 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004198
Craig Topper2617dcc2014-04-15 06:32:26 +00004199 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004200 if (!FunctionName.empty()) {
4201 // If this was a definition of a forward reference, remove the definition
4202 // from the forward reference table and fill in the forward ref.
4203 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4204 ForwardRefVals.find(FunctionName);
4205 if (FRVI != ForwardRefVals.end()) {
4206 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004207 if (!Fn)
4208 return Error(FRVI->second.second, "invalid forward reference to "
4209 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004210 if (Fn->getType() != PFT)
4211 return Error(FRVI->second.second, "invalid forward reference to "
4212 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004213
Chris Lattnerac161bf2009-01-02 07:01:27 +00004214 ForwardRefVals.erase(FRVI);
4215 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004216 // Reject redefinitions.
4217 return Error(NameLoc, "invalid redefinition of function '" +
4218 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004219 } else if (M->getNamedValue(FunctionName)) {
4220 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004221 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004222
Dan Gohman399d6ae2009-08-29 23:37:49 +00004223 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004224 // If this is a definition of a forward referenced function, make sure the
4225 // types agree.
4226 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4227 = ForwardRefValIDs.find(NumberedVals.size());
4228 if (I != ForwardRefValIDs.end()) {
4229 Fn = cast<Function>(I->second.first);
4230 if (Fn->getType() != PFT)
4231 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004232 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004233 ForwardRefValIDs.erase(I);
4234 }
4235 }
4236
Craig Topper2617dcc2014-04-15 06:32:26 +00004237 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004238 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4239 else // Move the forward-reference to the correct spot in the module.
4240 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4241
4242 if (FunctionName.empty())
4243 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004244
Chris Lattnerac161bf2009-01-02 07:01:27 +00004245 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4246 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004247 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004248 Fn->setCallingConv(CC);
4249 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004250 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004251 Fn->setAlignment(Alignment);
4252 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004253 Fn->setComdat(C);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004254 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004255 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004256 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004257 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004258
Chris Lattnerac161bf2009-01-02 07:01:27 +00004259 // Add all of the arguments we parsed to the function.
4260 Function::arg_iterator ArgIt = Fn->arg_begin();
4261 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4262 // If the argument has a name, insert it into the argument symbol table.
4263 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004264
Chris Lattnerac161bf2009-01-02 07:01:27 +00004265 // Set the name, if it conflicted, it will be auto-renamed.
4266 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004267
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004268 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004269 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4270 ArgList[i].Name + "'");
4271 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004272
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004273 if (isDefine)
4274 return false;
4275
Robin Morisset039781e2014-08-29 21:53:01 +00004276 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004277 ValID ID;
4278 if (FunctionName.empty()) {
4279 ID.Kind = ValID::t_GlobalID;
4280 ID.UIntVal = NumberedVals.size() - 1;
4281 } else {
4282 ID.Kind = ValID::t_GlobalName;
4283 ID.StrVal = FunctionName;
4284 }
4285 auto Blocks = ForwardRefBlockAddresses.find(ID);
4286 if (Blocks != ForwardRefBlockAddresses.end())
4287 return Error(Blocks->first.Loc,
4288 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004289 return false;
4290}
4291
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004292bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4293 ValID ID;
4294 if (FunctionNumber == -1) {
4295 ID.Kind = ValID::t_GlobalName;
4296 ID.StrVal = F.getName();
4297 } else {
4298 ID.Kind = ValID::t_GlobalID;
4299 ID.UIntVal = FunctionNumber;
4300 }
4301
4302 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4303 if (Blocks == P.ForwardRefBlockAddresses.end())
4304 return false;
4305
4306 for (const auto &I : Blocks->second) {
4307 const ValID &BBID = I.first;
4308 GlobalValue *GV = I.second;
4309
4310 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4311 "Expected local id or name");
4312 BasicBlock *BB;
4313 if (BBID.Kind == ValID::t_LocalName)
4314 BB = GetBB(BBID.StrVal, BBID.Loc);
4315 else
4316 BB = GetBB(BBID.UIntVal, BBID.Loc);
4317 if (!BB)
4318 return P.Error(BBID.Loc, "referenced value is not a basic block");
4319
4320 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4321 GV->eraseFromParent();
4322 }
4323
4324 P.ForwardRefBlockAddresses.erase(Blocks);
4325 return false;
4326}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004327
4328/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004329/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004330bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004331 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004332 return TokError("expected '{' in function body");
4333 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004334
Chris Lattner3432c622009-10-28 03:39:23 +00004335 int FunctionNumber = -1;
4336 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004337
Chris Lattner3432c622009-10-28 03:39:23 +00004338 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004339
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004340 // Resolve block addresses and allow basic blocks to be forward-declared
4341 // within this function.
4342 if (PFS.resolveForwardRefBlockAddresses())
4343 return true;
4344 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4345
Chris Lattnerbbddd962010-01-09 19:20:07 +00004346 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004347 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004348 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004349
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004350 while (Lex.getKind() != lltok::rbrace &&
4351 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004352 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004353
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004354 while (Lex.getKind() != lltok::rbrace)
4355 if (ParseUseListOrder(&PFS))
4356 return true;
4357
Chris Lattnerac161bf2009-01-02 07:01:27 +00004358 // Eat the }.
4359 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004360
Chris Lattnerac161bf2009-01-02 07:01:27 +00004361 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004362 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004363}
4364
4365/// ParseBasicBlock
4366/// ::= LabelStr? Instruction*
4367bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4368 // If this basic block starts out with a name, remember it.
4369 std::string Name;
4370 LocTy NameLoc = Lex.getLoc();
4371 if (Lex.getKind() == lltok::LabelStr) {
4372 Name = Lex.getStrVal();
4373 Lex.Lex();
4374 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004375
Chris Lattnerac161bf2009-01-02 07:01:27 +00004376 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004377 if (!BB)
4378 return Error(NameLoc,
4379 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004380
Chris Lattnerac161bf2009-01-02 07:01:27 +00004381 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004382
Chris Lattnerac161bf2009-01-02 07:01:27 +00004383 // Parse the instructions in this block until we get a terminator.
4384 Instruction *Inst;
4385 do {
4386 // This instruction may have three possibilities for a name: a) none
4387 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4388 LocTy NameLoc = Lex.getLoc();
4389 int NameID = -1;
4390 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004391
Chris Lattnerac161bf2009-01-02 07:01:27 +00004392 if (Lex.getKind() == lltok::LocalVarID) {
4393 NameID = Lex.getUIntVal();
4394 Lex.Lex();
4395 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4396 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004397 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004398 NameStr = Lex.getStrVal();
4399 Lex.Lex();
4400 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4401 return true;
4402 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004403
Chris Lattner77b89dc2009-12-30 05:23:43 +00004404 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004405 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004406 case InstError: return true;
4407 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004408 BB->getInstList().push_back(Inst);
4409
Chris Lattner77b89dc2009-12-30 05:23:43 +00004410 // With a normal result, we check to see if the instruction is followed by
4411 // a comma and metadata.
4412 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004413 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004414 return true;
4415 break;
4416 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004417 BB->getInstList().push_back(Inst);
4418
Chris Lattner77b89dc2009-12-30 05:23:43 +00004419 // If the instruction parser ate an extra comma at the end of it, it
4420 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004421 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004422 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004423 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004424 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004425
Chris Lattnerac161bf2009-01-02 07:01:27 +00004426 // Set the name on the instruction.
4427 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4428 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004429
Chris Lattnerac161bf2009-01-02 07:01:27 +00004430 return false;
4431}
4432
4433//===----------------------------------------------------------------------===//
4434// Instruction Parsing.
4435//===----------------------------------------------------------------------===//
4436
4437/// ParseInstruction - Parse one of the many different instructions.
4438///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004439int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4440 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004441 lltok::Kind Token = Lex.getKind();
4442 if (Token == lltok::Eof)
4443 return TokError("found end of file when expecting more instructions");
4444 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004445 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004446 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004447
Chris Lattnerac161bf2009-01-02 07:01:27 +00004448 switch (Token) {
4449 default: return Error(Loc, "expected instruction opcode");
4450 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004451 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004452 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4453 case lltok::kw_br: return ParseBr(Inst, PFS);
4454 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004455 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004456 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004457 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004458 // Binary Operators.
4459 case lltok::kw_add:
4460 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004461 case lltok::kw_mul:
4462 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004463 bool NUW = EatIfPresent(lltok::kw_nuw);
4464 bool NSW = EatIfPresent(lltok::kw_nsw);
4465 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004466
Chris Lattnera676c0f2011-02-07 16:40:21 +00004467 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004468
Chris Lattnera676c0f2011-02-07 16:40:21 +00004469 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4470 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4471 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004472 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004473 case lltok::kw_fadd:
4474 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004475 case lltok::kw_fmul:
4476 case lltok::kw_fdiv:
4477 case lltok::kw_frem: {
4478 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4479 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4480 if (Res != 0)
4481 return Res;
4482 if (FMF.any())
4483 Inst->setFastMathFlags(FMF);
4484 return 0;
4485 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004486
Chris Lattner35315d02011-02-06 21:44:57 +00004487 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004488 case lltok::kw_udiv:
4489 case lltok::kw_lshr:
4490 case lltok::kw_ashr: {
4491 bool Exact = EatIfPresent(lltok::kw_exact);
4492
4493 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4494 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4495 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004496 }
4497
Chris Lattnerac161bf2009-01-02 07:01:27 +00004498 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004499 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004500 case lltok::kw_and:
4501 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004502 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004503 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004504 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004505 // Casts.
4506 case lltok::kw_trunc:
4507 case lltok::kw_zext:
4508 case lltok::kw_sext:
4509 case lltok::kw_fptrunc:
4510 case lltok::kw_fpext:
4511 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004512 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004513 case lltok::kw_uitofp:
4514 case lltok::kw_sitofp:
4515 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004516 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004517 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004518 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004519 // Other.
4520 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004521 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004522 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4523 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4524 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4525 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004526 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004527 // Call.
4528 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4529 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4530 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004531 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004532 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004533 case lltok::kw_load: return ParseLoad(Inst, PFS);
4534 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004535 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4536 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004537 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004538 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4539 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4540 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4541 }
4542}
4543
4544/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4545bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004546 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004547 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004548 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004549 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4550 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4551 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4552 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4553 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4554 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4555 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4556 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4557 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4558 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4559 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4560 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4561 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4562 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4563 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4564 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4565 }
4566 } else {
4567 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004568 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004569 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4570 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4571 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4572 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4573 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4574 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4575 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4576 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4577 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4578 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4579 }
4580 }
4581 Lex.Lex();
4582 return false;
4583}
4584
4585//===----------------------------------------------------------------------===//
4586// Terminator Instructions.
4587//===----------------------------------------------------------------------===//
4588
4589/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004590/// ::= 'ret' void (',' !dbg, !1)*
4591/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004592bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004593 PerFunctionState &PFS) {
4594 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004595 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004596 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004597
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004598 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004599
Chris Lattnerfdd87902009-10-05 05:54:46 +00004600 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004601 if (!ResType->isVoidTy())
4602 return Error(TypeLoc, "value doesn't match function result type '" +
4603 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004604
Owen Anderson55f1c092009-08-13 21:58:54 +00004605 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004606 return false;
4607 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004608
Chris Lattnerac161bf2009-01-02 07:01:27 +00004609 Value *RV;
4610 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004611
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004612 if (ResType != RV->getType())
4613 return Error(TypeLoc, "value doesn't match function result type '" +
4614 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004615
Owen Anderson55f1c092009-08-13 21:58:54 +00004616 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004617 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004618}
4619
4620
4621/// ParseBr
4622/// ::= 'br' TypeAndValue
4623/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4624bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4625 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004626 Value *Op0;
4627 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004628 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004629
Chris Lattnerac161bf2009-01-02 07:01:27 +00004630 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4631 Inst = BranchInst::Create(BB);
4632 return false;
4633 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004634
Owen Anderson55f1c092009-08-13 21:58:54 +00004635 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004636 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004637
Chris Lattnerac161bf2009-01-02 07:01:27 +00004638 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004639 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004640 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004641 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004642 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004643
Chris Lattner3ed871f2009-10-27 19:13:16 +00004644 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004645 return false;
4646}
4647
4648/// ParseSwitch
4649/// Instruction
4650/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4651/// JumpTable
4652/// ::= (TypeAndValue ',' TypeAndValue)*
4653bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4654 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004655 Value *Cond;
4656 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004657 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4658 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004659 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004660 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4661 return true;
4662
Duncan Sands19d0b472010-02-16 11:11:14 +00004663 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004664 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004665
Chris Lattnerac161bf2009-01-02 07:01:27 +00004666 // Parse the jump table pairs.
4667 SmallPtrSet<Value*, 32> SeenCases;
4668 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4669 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004670 Value *Constant;
4671 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004672
Chris Lattnerac161bf2009-01-02 07:01:27 +00004673 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4674 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004675 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004676 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004677
David Blaikie70573dc2014-11-19 07:49:26 +00004678 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004679 return Error(CondLoc, "duplicate case value in switch");
4680 if (!isa<ConstantInt>(Constant))
4681 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004682
Chris Lattner3ed871f2009-10-27 19:13:16 +00004683 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004684 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004685
Chris Lattnerac161bf2009-01-02 07:01:27 +00004686 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004687
Chris Lattner3ed871f2009-10-27 19:13:16 +00004688 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004689 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4690 SI->addCase(Table[i].first, Table[i].second);
4691 Inst = SI;
4692 return false;
4693}
4694
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004695/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00004696/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004697/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4698bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004699 LocTy AddrLoc;
4700 Value *Address;
4701 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004702 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4703 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00004704 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004705
Duncan Sands19d0b472010-02-16 11:11:14 +00004706 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004707 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004708
Chris Lattner3ed871f2009-10-27 19:13:16 +00004709 // Parse the destination list.
4710 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004711
Chris Lattner3ed871f2009-10-27 19:13:16 +00004712 if (Lex.getKind() != lltok::rsquare) {
4713 BasicBlock *DestBB;
4714 if (ParseTypeAndBasicBlock(DestBB, PFS))
4715 return true;
4716 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004717
Chris Lattner3ed871f2009-10-27 19:13:16 +00004718 while (EatIfPresent(lltok::comma)) {
4719 if (ParseTypeAndBasicBlock(DestBB, PFS))
4720 return true;
4721 DestList.push_back(DestBB);
4722 }
4723 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004724
Chris Lattner3ed871f2009-10-27 19:13:16 +00004725 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4726 return true;
4727
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004728 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00004729 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4730 IBI->addDestination(DestList[i]);
4731 Inst = IBI;
4732 return false;
4733}
4734
4735
Chris Lattnerac161bf2009-01-02 07:01:27 +00004736/// ParseInvoke
4737/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4738/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4739bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4740 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00004741 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004742 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00004743 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004744 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004745 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004746 LocTy RetTypeLoc;
4747 ValID CalleeID;
4748 SmallVector<ParamInfo, 16> ArgList;
4749
Chris Lattner3ed871f2009-10-27 19:13:16 +00004750 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004751 if (ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004752 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004753 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004754 ParseValID(CalleeID) ||
4755 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004756 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
4757 NoBuiltinLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004758 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004759 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004760 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004761 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004762 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004763
Chris Lattnerac161bf2009-01-02 07:01:27 +00004764 // If RetType is a non-function pointer type, then this is the short syntax
4765 // for the call, which means that RetType is just the return type. Infer the
4766 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00004767 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
4768 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004769 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00004770 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004771 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
4772 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004773
Chris Lattnerac161bf2009-01-02 07:01:27 +00004774 if (!FunctionType::isValidReturnType(RetType))
4775 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004776
Owen Anderson4056ca92009-07-29 22:17:13 +00004777 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004778 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004779
Chris Lattnerac161bf2009-01-02 07:01:27 +00004780 // Look up the callee.
4781 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00004782 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
4783 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004784
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004785 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00004786 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004787 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004788 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4789 AttributeSet::ReturnIndex,
4790 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004791
Chris Lattnerac161bf2009-01-02 07:01:27 +00004792 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004793
Chris Lattnerac161bf2009-01-02 07:01:27 +00004794 // Loop through FunctionType's arguments and ensure they are specified
4795 // correctly. Also, gather any parameter attributes.
4796 FunctionType::param_iterator I = Ty->param_begin();
4797 FunctionType::param_iterator E = Ty->param_end();
4798 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004799 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004800 if (I != E) {
4801 ExpectedTy = *I++;
4802 } else if (!Ty->isVarArg()) {
4803 return Error(ArgList[i].Loc, "too many arguments specified");
4804 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004805
Chris Lattnerac161bf2009-01-02 07:01:27 +00004806 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
4807 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004808 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004809 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004810 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4811 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004812 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4813 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004814 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004815
Chris Lattnerac161bf2009-01-02 07:01:27 +00004816 if (I != E)
4817 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004818
David Majnemer8d22abd2015-02-23 00:01:32 +00004819 if (FnAttrs.hasAttributes()) {
4820 if (FnAttrs.hasAlignmentAttr())
4821 return Error(CallLoc, "invoke instructions may not have an alignment");
4822
Bill Wendlingf5075a42013-01-27 02:24:02 +00004823 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4824 AttributeSet::FunctionIndex,
4825 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00004826 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004827
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004828 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00004829 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004830
Jay Foad5bd375a2011-07-15 08:37:34 +00004831 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004832 II->setCallingConv(CC);
4833 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004834 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004835 Inst = II;
4836 return false;
4837}
4838
Bill Wendlingf891bf82011-07-31 06:30:59 +00004839/// ParseResume
4840/// ::= 'resume' TypeAndValue
4841bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
4842 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00004843 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
4844 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004845
Bill Wendlingf891bf82011-07-31 06:30:59 +00004846 ResumeInst *RI = ResumeInst::Create(Exn);
4847 Inst = RI;
4848 return false;
4849}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004850
4851//===----------------------------------------------------------------------===//
4852// Binary Operators.
4853//===----------------------------------------------------------------------===//
4854
4855/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004856/// ::= ArithmeticOps TypeAndValue ',' Value
4857///
4858/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
4859/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00004860bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004861 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004862 LocTy Loc; Value *LHS, *RHS;
4863 if (ParseTypeAndValue(LHS, Loc, PFS) ||
4864 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
4865 ParseValue(LHS->getType(), RHS, PFS))
4866 return true;
4867
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004868 bool Valid;
4869 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00004870 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004871 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00004872 Valid = LHS->getType()->isIntOrIntVectorTy() ||
4873 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004874 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00004875 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
4876 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004877 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004878
Chris Lattnereeefa9a2009-01-05 08:24:46 +00004879 if (!Valid)
4880 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004881
Chris Lattnerac161bf2009-01-02 07:01:27 +00004882 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
4883 return false;
4884}
4885
4886/// ParseLogical
4887/// ::= ArithmeticOps TypeAndValue ',' Value {
4888bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
4889 unsigned Opc) {
4890 LocTy Loc; Value *LHS, *RHS;
4891 if (ParseTypeAndValue(LHS, Loc, PFS) ||
4892 ParseToken(lltok::comma, "expected ',' in logical operation") ||
4893 ParseValue(LHS->getType(), RHS, PFS))
4894 return true;
4895
Duncan Sands9dff9be2010-02-15 16:12:20 +00004896 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004897 return Error(Loc,"instruction requires integer or integer vector operands");
4898
4899 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
4900 return false;
4901}
4902
4903
4904/// ParseCompare
4905/// ::= 'icmp' IPredicates TypeAndValue ',' Value
4906/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00004907bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
4908 unsigned Opc) {
4909 // Parse the integer/fp comparison predicate.
4910 LocTy Loc;
4911 unsigned Pred;
4912 Value *LHS, *RHS;
4913 if (ParseCmpPredicate(Pred, Opc) ||
4914 ParseTypeAndValue(LHS, Loc, PFS) ||
4915 ParseToken(lltok::comma, "expected ',' after compare value") ||
4916 ParseValue(LHS->getType(), RHS, PFS))
4917 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004918
Chris Lattnerac161bf2009-01-02 07:01:27 +00004919 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00004920 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004921 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00004922 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004923 } else {
4924 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00004925 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00004926 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004927 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00004928 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004929 }
4930 return false;
4931}
4932
4933//===----------------------------------------------------------------------===//
4934// Other Instructions.
4935//===----------------------------------------------------------------------===//
4936
4937
4938/// ParseCast
4939/// ::= CastOpc TypeAndValue 'to' Type
4940bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
4941 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004942 LocTy Loc;
4943 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00004944 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004945 if (ParseTypeAndValue(Op, Loc, PFS) ||
4946 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
4947 ParseType(DestTy))
4948 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004949
Chris Lattner89d856e2009-03-01 00:53:13 +00004950 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
4951 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004952 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004953 getTypeString(Op->getType()) + "' to '" +
4954 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00004955 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004956 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
4957 return false;
4958}
4959
4960/// ParseSelect
4961/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4962bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
4963 LocTy Loc;
4964 Value *Op0, *Op1, *Op2;
4965 if (ParseTypeAndValue(Op0, Loc, PFS) ||
4966 ParseToken(lltok::comma, "expected ',' after select condition") ||
4967 ParseTypeAndValue(Op1, PFS) ||
4968 ParseToken(lltok::comma, "expected ',' after select value") ||
4969 ParseTypeAndValue(Op2, PFS))
4970 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004971
Chris Lattnerac161bf2009-01-02 07:01:27 +00004972 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
4973 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004974
Chris Lattnerac161bf2009-01-02 07:01:27 +00004975 Inst = SelectInst::Create(Op0, Op1, Op2);
4976 return false;
4977}
4978
Chris Lattnerb55ab542009-01-05 08:18:44 +00004979/// ParseVA_Arg
4980/// ::= 'va_arg' TypeAndValue ',' Type
4981bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004982 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00004983 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00004984 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004985 if (ParseTypeAndValue(Op, PFS) ||
4986 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00004987 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004988 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004989
Chris Lattnerb55ab542009-01-05 08:18:44 +00004990 if (!EltTy->isFirstClassType())
4991 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004992
4993 Inst = new VAArgInst(Op, EltTy);
4994 return false;
4995}
4996
4997/// ParseExtractElement
4998/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
4999bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5000 LocTy Loc;
5001 Value *Op0, *Op1;
5002 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5003 ParseToken(lltok::comma, "expected ',' after extract value") ||
5004 ParseTypeAndValue(Op1, PFS))
5005 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005006
Chris Lattnerac161bf2009-01-02 07:01:27 +00005007 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5008 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005009
Eric Christopherc9742252009-07-25 02:28:41 +00005010 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005011 return false;
5012}
5013
5014/// ParseInsertElement
5015/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5016bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5017 LocTy Loc;
5018 Value *Op0, *Op1, *Op2;
5019 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5020 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5021 ParseTypeAndValue(Op1, PFS) ||
5022 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5023 ParseTypeAndValue(Op2, PFS))
5024 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005025
Chris Lattnerac161bf2009-01-02 07:01:27 +00005026 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005027 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005028
Chris Lattnerac161bf2009-01-02 07:01:27 +00005029 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5030 return false;
5031}
5032
5033/// ParseShuffleVector
5034/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5035bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5036 LocTy Loc;
5037 Value *Op0, *Op1, *Op2;
5038 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5039 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5040 ParseTypeAndValue(Op1, PFS) ||
5041 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5042 ParseTypeAndValue(Op2, PFS))
5043 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005044
Chris Lattnerac161bf2009-01-02 07:01:27 +00005045 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005046 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005047
Chris Lattnerac161bf2009-01-02 07:01:27 +00005048 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5049 return false;
5050}
5051
5052/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005053/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005054int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005055 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005056 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005057
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005058 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005059 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5060 ParseValue(Ty, Op0, PFS) ||
5061 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005062 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005063 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5064 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005065
Chris Lattnerf4f03422009-12-30 05:27:33 +00005066 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005067 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5068 while (1) {
5069 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005070
Chris Lattner3822f632009-01-02 08:05:26 +00005071 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005072 break;
5073
Chris Lattnerf4f03422009-12-30 05:27:33 +00005074 if (Lex.getKind() == lltok::MetadataVar) {
5075 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005076 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005077 }
Devang Patel8f842d32009-10-16 18:45:49 +00005078
Chris Lattner3822f632009-01-02 08:05:26 +00005079 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005080 ParseValue(Ty, Op0, PFS) ||
5081 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005082 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005083 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5084 return true;
5085 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005086
Chris Lattnerac161bf2009-01-02 07:01:27 +00005087 if (!Ty->isFirstClassType())
5088 return Error(TypeLoc, "phi node must have first class type");
5089
Jay Foad52131342011-03-30 11:28:46 +00005090 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005091 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5092 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5093 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005094 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005095}
5096
Bill Wendlingfae14752011-08-12 20:24:12 +00005097/// ParseLandingPad
5098/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5099/// Clause
5100/// ::= 'catch' TypeAndValue
5101/// ::= 'filter'
5102/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5103bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005104 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005105 Value *PersFn; LocTy PersFnLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005106
5107 if (ParseType(Ty, TyLoc) ||
5108 ParseToken(lltok::kw_personality, "expected 'personality'") ||
5109 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
5110 return true;
5111
Owen Andersonf8f259d2015-03-09 07:13:42 +00005112 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, PersFn, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005113 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5114
5115 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5116 LandingPadInst::ClauseType CT;
5117 if (EatIfPresent(lltok::kw_catch))
5118 CT = LandingPadInst::Catch;
5119 else if (EatIfPresent(lltok::kw_filter))
5120 CT = LandingPadInst::Filter;
5121 else
5122 return TokError("expected 'catch' or 'filter' clause type");
5123
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005124 Value *V;
5125 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005126 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005127 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005128
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005129 // A 'catch' type expects a non-array constant. A filter clause expects an
5130 // array constant.
5131 if (CT == LandingPadInst::Catch) {
5132 if (isa<ArrayType>(V->getType()))
5133 Error(VLoc, "'catch' clause has an invalid type");
5134 } else {
5135 if (!isa<ArrayType>(V->getType()))
5136 Error(VLoc, "'filter' clause has an invalid type");
5137 }
5138
Owen Andersonf8f259d2015-03-09 07:13:42 +00005139 Constant *CV = dyn_cast<Constant>(V);
5140 if (!CV)
5141 return Error(VLoc, "clause argument must be a constant");
5142 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005143 }
5144
Owen Andersonf8f259d2015-03-09 07:13:42 +00005145 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005146 return false;
5147}
5148
Chris Lattnerac161bf2009-01-02 07:01:27 +00005149/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00005150/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5151/// ParameterList OptionalAttrs
5152/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5153/// ParameterList OptionalAttrs
5154/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005155/// ParameterList OptionalAttrs
5156bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005157 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005158 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005159 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005160 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005161 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005162 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005163 LocTy RetTypeLoc;
5164 ValID CalleeID;
5165 SmallVector<ParamInfo, 16> ArgList;
5166 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005167
Reid Kleckner5772b772014-04-24 20:14:34 +00005168 if ((TCK != CallInst::TCK_None &&
5169 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005170 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00005171 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005172 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005173 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005174 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5175 PFS.getFunction().isVarArg()) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005176 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00005177 BuiltinLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005178 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005179
Chris Lattnerac161bf2009-01-02 07:01:27 +00005180 // If RetType is a non-function pointer type, then this is the short syntax
5181 // for the call, which means that RetType is just the return type. Infer the
5182 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005183 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5184 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005185 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005186 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005187 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5188 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005189
Chris Lattnerac161bf2009-01-02 07:01:27 +00005190 if (!FunctionType::isValidReturnType(RetType))
5191 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005192
Owen Anderson4056ca92009-07-29 22:17:13 +00005193 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005194 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005195
Chris Lattnerac161bf2009-01-02 07:01:27 +00005196 // Look up the callee.
5197 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005198 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5199 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005200
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005201 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005202 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005203 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005204 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5205 AttributeSet::ReturnIndex,
5206 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005207
Chris Lattnerac161bf2009-01-02 07:01:27 +00005208 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005209
Chris Lattnerac161bf2009-01-02 07:01:27 +00005210 // Loop through FunctionType's arguments and ensure they are specified
5211 // correctly. Also, gather any parameter attributes.
5212 FunctionType::param_iterator I = Ty->param_begin();
5213 FunctionType::param_iterator E = Ty->param_end();
5214 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005215 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005216 if (I != E) {
5217 ExpectedTy = *I++;
5218 } else if (!Ty->isVarArg()) {
5219 return Error(ArgList[i].Loc, "too many arguments specified");
5220 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005221
Chris Lattnerac161bf2009-01-02 07:01:27 +00005222 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5223 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005224 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005225 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005226 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5227 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005228 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5229 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005230 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005231
Chris Lattnerac161bf2009-01-02 07:01:27 +00005232 if (I != E)
5233 return Error(CallLoc, "not enough parameters specified for call");
5234
David Majnemer8d22abd2015-02-23 00:01:32 +00005235 if (FnAttrs.hasAttributes()) {
5236 if (FnAttrs.hasAlignmentAttr())
5237 return Error(CallLoc, "call instructions may not have an alignment");
5238
Bill Wendlingf5075a42013-01-27 02:24:02 +00005239 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5240 AttributeSet::FunctionIndex,
5241 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005242 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005243
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005244 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005245 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005246
David Blaikie348de692015-04-23 21:36:23 +00005247 CallInst *CI = CallInst::Create(Ty, Callee, Args);
Reid Kleckner5772b772014-04-24 20:14:34 +00005248 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005249 CI->setCallingConv(CC);
5250 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005251 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005252 Inst = CI;
5253 return false;
5254}
5255
5256//===----------------------------------------------------------------------===//
5257// Memory Instructions.
5258//===----------------------------------------------------------------------===//
5259
5260/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005261/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005262int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005263 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005264 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005265 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005266 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005267
5268 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5269
David Majnemera3b0eb22015-02-16 08:38:03 +00005270 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005271
David Majnemera3b0eb22015-02-16 08:38:03 +00005272 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5273 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005274
Chris Lattnerb2f39502009-12-30 05:44:30 +00005275 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005276 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005277 if (Lex.getKind() == lltok::kw_align) {
5278 if (ParseOptionalAlignment(Alignment)) return true;
5279 } else if (Lex.getKind() == lltok::MetadataVar) {
5280 AteExtraComma = true;
5281 } else {
5282 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5283 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5284 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005285 }
5286 }
5287
Dan Gohman2140a742010-05-28 01:14:11 +00005288 if (Size && !Size->getType()->isIntegerTy())
5289 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005290
Reid Kleckner436c42e2014-01-17 23:58:17 +00005291 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5292 AI->setUsedWithInAlloca(IsInAlloca);
5293 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005294 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005295}
5296
5297/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005298/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005299/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005300/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005301int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005302 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005303 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005304 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005305 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005306 AtomicOrdering Ordering = NotAtomic;
5307 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005308
5309 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005310 isAtomic = true;
5311 Lex.Lex();
5312 }
5313
Chris Lattnerbc639292011-11-27 06:56:53 +00005314 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005315 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005316 isVolatile = true;
5317 Lex.Lex();
5318 }
5319
David Blaikie15d9a4c2015-04-06 20:59:48 +00005320 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005321 LocTy ExplicitTypeLoc = Lex.getLoc();
5322 if (ParseType(Ty) ||
5323 ParseToken(lltok::comma, "expected comma after load's type") ||
5324 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005325 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005326 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5327 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005328
David Blaikie15d9a4c2015-04-06 20:59:48 +00005329 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005330 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005331 if (isAtomic && !Alignment)
5332 return Error(Loc, "atomic load must have explicit non-zero alignment");
5333 if (Ordering == Release || Ordering == AcquireRelease)
5334 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005335
David Blaikiea79ac142015-02-27 21:17:42 +00005336 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5337 return Error(ExplicitTypeLoc,
5338 "explicit pointee type doesn't match operand's pointee type");
5339
David Blaikie15d9a4c2015-04-06 20:59:48 +00005340 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005341 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005342}
5343
5344/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005345
5346/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5347/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005348/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005349int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005350 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005351 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005352 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005353 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005354 AtomicOrdering Ordering = NotAtomic;
5355 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005356
5357 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005358 isAtomic = true;
5359 Lex.Lex();
5360 }
5361
Chris Lattnerbc639292011-11-27 06:56:53 +00005362 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005363 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005364 isVolatile = true;
5365 Lex.Lex();
5366 }
5367
Chris Lattnerac161bf2009-01-02 07:01:27 +00005368 if (ParseTypeAndValue(Val, Loc, PFS) ||
5369 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005370 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005371 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005372 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005373 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005374
Duncan Sands19d0b472010-02-16 11:11:14 +00005375 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005376 return Error(PtrLoc, "store operand must be a pointer");
5377 if (!Val->getType()->isFirstClassType())
5378 return Error(Loc, "store operand must be a first class value");
5379 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5380 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005381 if (isAtomic && !Alignment)
5382 return Error(Loc, "atomic store must have explicit non-zero alignment");
5383 if (Ordering == Acquire || Ordering == AcquireRelease)
5384 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005385
Eli Friedman59b66882011-08-09 23:02:53 +00005386 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005387 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005388}
5389
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005390/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005391/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5392/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005393int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005394 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5395 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005396 AtomicOrdering SuccessOrdering = NotAtomic;
5397 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005398 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005399 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005400 bool isWeak = false;
5401
5402 if (EatIfPresent(lltok::kw_weak))
5403 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005404
5405 if (EatIfPresent(lltok::kw_volatile))
5406 isVolatile = true;
5407
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005408 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5409 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5410 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5411 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5412 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005413 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5414 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005415 return true;
5416
Tim Northovere94a5182014-03-11 10:48:52 +00005417 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005418 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005419 if (SuccessOrdering < FailureOrdering)
5420 return TokError("cmpxchg must be at least as ordered on success as failure");
5421 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5422 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005423 if (!Ptr->getType()->isPointerTy())
5424 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5425 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5426 return Error(CmpLoc, "compare value and pointer type do not match");
5427 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5428 return Error(NewLoc, "new value and pointer type do not match");
5429 if (!New->getType()->isIntegerTy())
5430 return Error(NewLoc, "cmpxchg operand must be an integer");
5431 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5432 if (Size < 8 || (Size & (Size - 1)))
5433 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5434 " integer");
5435
Tim Northover420a2162014-06-13 14:24:07 +00005436 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5437 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005438 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005439 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005440 Inst = CXI;
5441 return AteExtraComma ? InstExtraComma : InstNormal;
5442}
5443
5444/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005445/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5446/// 'singlethread'? AtomicOrdering
5447int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005448 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5449 bool AteExtraComma = false;
5450 AtomicOrdering Ordering = NotAtomic;
5451 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005452 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005453 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005454
5455 if (EatIfPresent(lltok::kw_volatile))
5456 isVolatile = true;
5457
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005458 switch (Lex.getKind()) {
5459 default: return TokError("expected binary operation in atomicrmw");
5460 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5461 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5462 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5463 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5464 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5465 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5466 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5467 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5468 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5469 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5470 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5471 }
5472 Lex.Lex(); // Eat the operation.
5473
5474 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5475 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5476 ParseTypeAndValue(Val, ValLoc, PFS) ||
5477 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5478 return true;
5479
5480 if (Ordering == Unordered)
5481 return TokError("atomicrmw cannot be unordered");
5482 if (!Ptr->getType()->isPointerTy())
5483 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5484 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5485 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5486 if (!Val->getType()->isIntegerTy())
5487 return Error(ValLoc, "atomicrmw operand must be an integer");
5488 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5489 if (Size < 8 || (Size & (Size - 1)))
5490 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5491 " integer");
5492
5493 AtomicRMWInst *RMWI =
5494 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5495 RMWI->setVolatile(isVolatile);
5496 Inst = RMWI;
5497 return AteExtraComma ? InstExtraComma : InstNormal;
5498}
5499
Eli Friedmanfee02c62011-07-25 23:16:38 +00005500/// ParseFence
5501/// ::= 'fence' 'singlethread'? AtomicOrdering
5502int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5503 AtomicOrdering Ordering = NotAtomic;
5504 SynchronizationScope Scope = CrossThread;
5505 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5506 return true;
5507
5508 if (Ordering == Unordered)
5509 return TokError("fence cannot be unordered");
5510 if (Ordering == Monotonic)
5511 return TokError("fence cannot be monotonic");
5512
5513 Inst = new FenceInst(Context, Ordering, Scope);
5514 return InstNormal;
5515}
5516
Chris Lattnerac161bf2009-01-02 07:01:27 +00005517/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00005518/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005519int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005520 Value *Ptr = nullptr;
5521 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005522 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00005523
Dan Gohman16cbbe42009-07-29 15:58:36 +00005524 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00005525
David Blaikie79e6c742015-02-27 19:29:02 +00005526 Type *Ty = nullptr;
5527 LocTy ExplicitTypeLoc = Lex.getLoc();
5528 if (ParseType(Ty) ||
5529 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5530 ParseTypeAndValue(Ptr, Loc, PFS))
5531 return true;
5532
Eli Benderskyd9806682013-04-22 17:03:42 +00005533 Type *BaseType = Ptr->getType();
5534 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5535 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005536 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005537
David Blaikie8d757942015-03-09 23:08:44 +00005538 if (Ty != BasePointerType->getElementType())
5539 return Error(ExplicitTypeLoc,
5540 "explicit pointee type doesn't match operand's pointee type");
5541
Chris Lattnerac161bf2009-01-02 07:01:27 +00005542 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005543 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005544 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00005545 if (Lex.getKind() == lltok::MetadataVar) {
5546 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00005547 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005548 }
Chris Lattner3822f632009-01-02 08:05:26 +00005549 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005550 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005551 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem3924cb02011-12-05 06:29:09 +00005552 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
5553 return Error(EltLoc, "getelementptr index type missmatch");
5554 if (Val->getType()->isVectorTy()) {
5555 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
5556 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
5557 if (ValNumEl != PtrNumEl)
5558 return Error(EltLoc,
5559 "getelementptr vector index has a wrong number of elements");
5560 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005561 Indices.push_back(Val);
5562 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005563
Owen Andersone90f9922015-03-10 06:34:57 +00005564 SmallPtrSet<const Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00005565 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00005566 return Error(Loc, "base element of getelementptr must be sized");
5567
David Blaikied33bad32015-04-17 22:32:13 +00005568 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005569 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00005570 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00005571 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00005572 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005573 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005574}
5575
5576/// ParseExtractValue
5577/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00005578int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005579 Value *Val; LocTy Loc;
5580 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005581 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005582 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00005583 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005584 return true;
5585
Chris Lattner392be582010-02-12 20:49:41 +00005586 if (!Val->getType()->isAggregateType())
5587 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005588
Jay Foad57aa6362011-07-13 10:26:04 +00005589 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005590 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00005591 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005592 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005593}
5594
5595/// ParseInsertValue
5596/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00005597int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005598 Value *Val0, *Val1; LocTy Loc0, Loc1;
5599 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005600 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005601 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
5602 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
5603 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00005604 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005605 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005606
Chris Lattner392be582010-02-12 20:49:41 +00005607 if (!Val0->getType()->isAggregateType())
5608 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005609
David Majnemer30074532015-02-11 07:43:58 +00005610 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
5611 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005612 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00005613 if (IndexedType != Val1->getType())
5614 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
5615 getTypeString(Val1->getType()) + "' instead of '" +
5616 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00005617 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005618 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005619}
Nick Lewycky49f89192009-04-04 07:22:01 +00005620
5621//===----------------------------------------------------------------------===//
5622// Embedded metadata.
5623//===----------------------------------------------------------------------===//
5624
5625/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005626/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00005627/// Element
5628/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005629bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00005630 if (ParseToken(lltok::lbrace, "expected '{' here"))
5631 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005632
Dan Gohman1e0213a2010-07-13 19:33:27 +00005633 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005634 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00005635 return false;
5636
Nick Lewycky49f89192009-04-04 07:22:01 +00005637 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00005638 // Null is a special case since it is typeless.
5639 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005640 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00005641 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00005642 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005643
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005644 Metadata *MD;
5645 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005646 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00005647 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00005648 } while (EatIfPresent(lltok::comma));
5649
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00005650 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00005651}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00005652
5653//===----------------------------------------------------------------------===//
5654// Use-list order directives.
5655//===----------------------------------------------------------------------===//
5656bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
5657 SMLoc Loc) {
5658 if (V->use_empty())
5659 return Error(Loc, "value has no uses");
5660
5661 unsigned NumUses = 0;
5662 SmallDenseMap<const Use *, unsigned, 16> Order;
5663 for (const Use &U : V->uses()) {
5664 if (++NumUses > Indexes.size())
5665 break;
5666 Order[&U] = Indexes[NumUses - 1];
5667 }
5668 if (NumUses < 2)
5669 return Error(Loc, "value only has one use");
5670 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
5671 return Error(Loc, "wrong number of indexes, expected " +
5672 Twine(std::distance(V->use_begin(), V->use_end())));
5673
5674 V->sortUseList([&](const Use &L, const Use &R) {
5675 return Order.lookup(&L) < Order.lookup(&R);
5676 });
5677 return false;
5678}
5679
5680/// ParseUseListOrderIndexes
5681/// ::= '{' uint32 (',' uint32)+ '}'
5682bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
5683 SMLoc Loc = Lex.getLoc();
5684 if (ParseToken(lltok::lbrace, "expected '{' here"))
5685 return true;
5686 if (Lex.getKind() == lltok::rbrace)
5687 return Lex.Error("expected non-empty list of uselistorder indexes");
5688
5689 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
5690 // indexes should be distinct numbers in the range [0, size-1], and should
5691 // not be in order.
5692 unsigned Offset = 0;
5693 unsigned Max = 0;
5694 bool IsOrdered = true;
5695 assert(Indexes.empty() && "Expected empty order vector");
5696 do {
5697 unsigned Index;
5698 if (ParseUInt32(Index))
5699 return true;
5700
5701 // Update consistency checks.
5702 Offset += Index - Indexes.size();
5703 Max = std::max(Max, Index);
5704 IsOrdered &= Index == Indexes.size();
5705
5706 Indexes.push_back(Index);
5707 } while (EatIfPresent(lltok::comma));
5708
5709 if (ParseToken(lltok::rbrace, "expected '}' here"))
5710 return true;
5711
5712 if (Indexes.size() < 2)
5713 return Error(Loc, "expected >= 2 uselistorder indexes");
5714 if (Offset != 0 || Max >= Indexes.size())
5715 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
5716 if (IsOrdered)
5717 return Error(Loc, "expected uselistorder indexes to change the order");
5718
5719 return false;
5720}
5721
5722/// ParseUseListOrder
5723/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
5724bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
5725 SMLoc Loc = Lex.getLoc();
5726 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
5727 return true;
5728
5729 Value *V;
5730 SmallVector<unsigned, 16> Indexes;
5731 if (ParseTypeAndValue(V, PFS) ||
5732 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
5733 ParseUseListOrderIndexes(Indexes))
5734 return true;
5735
5736 return sortUseListOrder(V, Indexes, Loc);
5737}
5738
5739/// ParseUseListOrderBB
5740/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
5741bool LLParser::ParseUseListOrderBB() {
5742 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
5743 SMLoc Loc = Lex.getLoc();
5744 Lex.Lex();
5745
5746 ValID Fn, Label;
5747 SmallVector<unsigned, 16> Indexes;
5748 if (ParseValID(Fn) ||
5749 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
5750 ParseValID(Label) ||
5751 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
5752 ParseUseListOrderIndexes(Indexes))
5753 return true;
5754
5755 // Check the function.
5756 GlobalValue *GV;
5757 if (Fn.Kind == ValID::t_GlobalName)
5758 GV = M->getNamedValue(Fn.StrVal);
5759 else if (Fn.Kind == ValID::t_GlobalID)
5760 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
5761 else
5762 return Error(Fn.Loc, "expected function name in uselistorder_bb");
5763 if (!GV)
5764 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
5765 auto *F = dyn_cast<Function>(GV);
5766 if (!F)
5767 return Error(Fn.Loc, "expected function name in uselistorder_bb");
5768 if (F->isDeclaration())
5769 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
5770
5771 // Check the basic block.
5772 if (Label.Kind == ValID::t_LocalID)
5773 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
5774 if (Label.Kind != ValID::t_LocalName)
5775 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
5776 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
5777 if (!V)
5778 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
5779 if (!isa<BasicBlock>(V))
5780 return Error(Label.Loc, "expected basic block in uselistorder_bb");
5781
5782 return sortUseListOrder(V, Indexes, Loc);
5783}