blob: 8ec5c6a4aa676f3dedfc36e022f31fdef4011668 [file] [log] [blame]
Chris Lattnerac161bf2009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
David Blaikieadbda4b2015-08-03 20:08:41 +000016#include "llvm/ADT/STLExtras.h"
Alex Lorenz8955f7d2015-06-23 17:10:10 +000017#include "llvm/AsmParser/SlotMapping.h"
Chandler Carruth91065212014-03-05 10:34:14 +000018#include "llvm/IR/AutoUpgrade.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/CallingConv.h"
20#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +000021#include "llvm/IR/DebugInfo.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000022#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/InlineAsm.h"
25#include "llvm/IR/Instructions.h"
Manman Ren209b17c2013-09-28 00:22:27 +000026#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
29#include "llvm/IR/ValueSymbolTable.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000030#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000031#include "llvm/Support/ErrorHandling.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000032#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000033#include "llvm/Support/raw_ostream.h"
34using namespace llvm;
35
Chris Lattner229907c2011-07-18 04:54:35 +000036static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000037 std::string Result;
38 raw_string_ostream Tmp(Result);
39 Tmp << *T;
40 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000041}
42
Chris Lattner3822f632009-01-02 08:05:26 +000043/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000044bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000045 // Prime the lexer.
46 Lex.Lex();
47
Chris Lattnerad6f3352009-01-04 20:44:11 +000048 return ParseTopLevelEntities() ||
49 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000050}
51
Alex Lorenz1de2acd2015-08-21 21:32:39 +000052bool LLParser::parseStandaloneConstantValue(Constant *&C,
53 const SlotMapping *Slots) {
54 restoreParsingState(Slots);
Alex Lorenzd2255952015-07-17 22:07:03 +000055 Lex.Lex();
56
57 Type *Ty = nullptr;
58 if (ParseType(Ty) || parseConstantValue(Ty, C))
59 return true;
60 if (Lex.getKind() != lltok::Eof)
61 return Error(Lex.getLoc(), "expected end of string");
62 return false;
63}
64
Alex Lorenz1de2acd2015-08-21 21:32:39 +000065void LLParser::restoreParsingState(const SlotMapping *Slots) {
66 if (!Slots)
67 return;
68 NumberedVals = Slots->GlobalValues;
69 NumberedMetadata = Slots->MetadataNodes;
70 for (const auto &I : Slots->NamedTypes)
71 NamedTypes.insert(
72 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
73 for (const auto &I : Slots->Types)
74 NumberedTypes.insert(
75 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
76}
77
Chris Lattnerac161bf2009-01-02 07:01:27 +000078/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
79/// module.
80bool LLParser::ValidateEndOfModule() {
Manman Ren209b17c2013-09-28 00:22:27 +000081 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
82 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
83
Bill Wendlingb32b0412013-02-08 06:32:06 +000084 // Handle any function attribute group forward references.
85 for (std::map<Value*, std::vector<unsigned> >::iterator
86 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
87 I != E; ++I) {
88 Value *V = I->first;
89 std::vector<unsigned> &Vec = I->second;
90 AttrBuilder B;
91
92 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
93 VI != VE; ++VI)
94 B.merge(NumberedAttrBuilders[*VI]);
95
96 if (Function *Fn = dyn_cast<Function>(V)) {
97 AttributeSet AS = Fn->getAttributes();
98 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
99 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
100 AS.getFnAttributes());
101
102 FnAttrs.merge(B);
103
104 // If the alignment was parsed as an attribute, move to the alignment
105 // field.
106 if (FnAttrs.hasAlignmentAttr()) {
107 Fn->setAlignment(FnAttrs.getAlignment());
108 FnAttrs.removeAttribute(Attribute::Alignment);
109 }
110
111 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
112 AttributeSet::get(Context,
113 AttributeSet::FunctionIndex,
114 FnAttrs));
115 Fn->setAttributes(AS);
116 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
117 AttributeSet AS = CI->getAttributes();
118 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
119 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
120 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000121 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000122 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
123 AttributeSet::get(Context,
124 AttributeSet::FunctionIndex,
125 FnAttrs));
126 CI->setAttributes(AS);
127 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
128 AttributeSet AS = II->getAttributes();
129 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
130 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
131 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000132 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000133 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
134 AttributeSet::get(Context,
135 AttributeSet::FunctionIndex,
136 FnAttrs));
137 II->setAttributes(AS);
138 } else {
139 llvm_unreachable("invalid object with forward attribute group reference");
140 }
141 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000142
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000143 // If there are entries in ForwardRefBlockAddresses at this point, the
144 // function was never defined.
145 if (!ForwardRefBlockAddresses.empty())
146 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
147 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000148
David Majnemer19b51052015-02-11 07:43:56 +0000149 for (const auto &NT : NumberedTypes)
150 if (NT.second.second.isValid())
151 return Error(NT.second.second,
152 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000153
154 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
155 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
156 if (I->second.second.isValid())
157 return Error(I->second.second,
158 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000159
David Majnemerdad0a642014-06-27 18:19:56 +0000160 if (!ForwardRefComdats.empty())
161 return Error(ForwardRefComdats.begin()->second,
162 "use of undefined comdat '$" +
163 ForwardRefComdats.begin()->first + "'");
164
Chris Lattnerac161bf2009-01-02 07:01:27 +0000165 if (!ForwardRefVals.empty())
166 return Error(ForwardRefVals.begin()->second.second,
167 "use of undefined value '@" + ForwardRefVals.begin()->first +
168 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000169
Chris Lattnerac161bf2009-01-02 07:01:27 +0000170 if (!ForwardRefValIDs.empty())
171 return Error(ForwardRefValIDs.begin()->second.second,
172 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000173 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000174
Devang Pateld2541152009-07-08 19:23:54 +0000175 if (!ForwardRefMDNodes.empty())
176 return Error(ForwardRefMDNodes.begin()->second.second,
177 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000178 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000179
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000180 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000181 for (auto &N : NumberedMetadata) {
182 if (N.second && !N.second->isResolved())
183 N.second->resolveCycles();
184 }
Devang Pateld2541152009-07-08 19:23:54 +0000185
Chris Lattnerac161bf2009-01-02 07:01:27 +0000186 // Look for intrinsic functions and CallInst that need to be upgraded
187 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
188 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000189
Manman Ren8b4306c2013-12-02 21:29:56 +0000190 UpgradeDebugInfo(*M);
191
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000192 if (!Slots)
193 return false;
194 // Initialize the slot mapping.
195 // Because by this point we've parsed and validated everything, we can "steal"
196 // the mapping from LLParser as it doesn't need it anymore.
197 Slots->GlobalValues = std::move(NumberedVals);
198 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000199 for (const auto &I : NamedTypes)
200 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
201 for (const auto &I : NumberedTypes)
202 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000203
Chris Lattnerac161bf2009-01-02 07:01:27 +0000204 return false;
205}
206
207//===----------------------------------------------------------------------===//
208// Top-Level Entities
209//===----------------------------------------------------------------------===//
210
211bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000212 while (1) {
213 switch (Lex.getKind()) {
214 default: return TokError("expected top-level entity");
215 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000216 case lltok::kw_declare: if (ParseDeclare()) return true; break;
217 case lltok::kw_define: if (ParseDefine()) return true; break;
218 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
219 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000220 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000221 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000222 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000223 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000224 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000225 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000226 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000227 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000228
229 // The Global variable production with no name can have many different
230 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000231 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000232 // OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000233 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000234 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000235 case lltok::kw_internal: // OptionalLinkage
236 case lltok::kw_weak: // OptionalLinkage
237 case lltok::kw_weak_odr: // OptionalLinkage
238 case lltok::kw_linkonce: // OptionalLinkage
239 case lltok::kw_linkonce_odr: // OptionalLinkage
240 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000241 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000242 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000243 case lltok::kw_external: // OptionalLinkage
244 case lltok::kw_default: // OptionalVisibility
245 case lltok::kw_hidden: // OptionalVisibility
246 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000247 case lltok::kw_dllimport: // OptionalDLLStorageClass
248 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000249 case lltok::kw_thread_local: // OptionalThreadLocal
250 case lltok::kw_addrspace: // OptionalAddrSpace
251 case lltok::kw_constant: // GlobalType
252 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000253 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000254 bool UnnamedAddr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000255 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000256 bool HasLinkage;
257 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000258 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000259 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000260 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000261 parseOptionalUnnamedAddr(UnnamedAddr) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000262 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000263 DLLStorageClass, TLM, UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000264 return true;
265 break;
266 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000267
268 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000269 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
270 case lltok::kw_uselistorder_bb:
271 if (ParseUseListOrderBB()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000272 }
273 }
274}
275
276
277/// toplevelentity
278/// ::= 'module' 'asm' STRINGCONSTANT
279bool LLParser::ParseModuleAsm() {
280 assert(Lex.getKind() == lltok::kw_module);
281 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000282
283 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000284 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
285 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000286
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000287 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000288 return false;
289}
290
291/// toplevelentity
292/// ::= 'target' 'triple' '=' STRINGCONSTANT
293/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
294bool LLParser::ParseTargetDefinition() {
295 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000296 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000297 switch (Lex.Lex()) {
298 default: return TokError("unknown target property");
299 case lltok::kw_triple:
300 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000301 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
302 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000303 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000304 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000305 return false;
306 case lltok::kw_datalayout:
307 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000308 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
309 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000310 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000311 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000312 return false;
313 }
314}
315
Bill Wendling706d3d62012-11-28 08:41:48 +0000316/// toplevelentity
317/// ::= 'deplibs' '=' '[' ']'
318/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
319/// FIXME: Remove in 4.0. Currently parse, but ignore.
320bool LLParser::ParseDepLibs() {
321 assert(Lex.getKind() == lltok::kw_deplibs);
322 Lex.Lex();
323 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
324 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
325 return true;
326
327 if (EatIfPresent(lltok::rsquare))
328 return false;
329
330 do {
331 std::string Str;
332 if (ParseStringConstant(Str)) return true;
333 } while (EatIfPresent(lltok::comma));
334
335 return ParseToken(lltok::rsquare, "expected ']' at end of list");
336}
337
Dan Gohman466876b2009-08-12 23:32:33 +0000338/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000339/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000340bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000341 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000342 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000343 Lex.Lex(); // eat LocalVarID;
344
345 if (ParseToken(lltok::equal, "expected '=' after name") ||
346 ParseToken(lltok::kw_type, "expected 'type' after '='"))
347 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000348
Craig Topper2617dcc2014-04-15 06:32:26 +0000349 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000350 if (ParseStructDefinition(TypeLoc, "",
351 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000352
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000353 if (!isa<StructType>(Result)) {
354 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
355 if (Entry.first)
356 return Error(TypeLoc, "non-struct types may not be recursive");
357 Entry.first = Result;
358 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000359 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000360
Chris Lattnerac161bf2009-01-02 07:01:27 +0000361 return false;
362}
363
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000364
Chris Lattnerac161bf2009-01-02 07:01:27 +0000365/// toplevelentity
366/// ::= LocalVar '=' 'type' type
367bool LLParser::ParseNamedType() {
368 std::string Name = Lex.getStrVal();
369 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000370 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000371
Chris Lattner3822f632009-01-02 08:05:26 +0000372 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000373 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000374 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000375
Craig Topper2617dcc2014-04-15 06:32:26 +0000376 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000377 if (ParseStructDefinition(NameLoc, Name,
378 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000379
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000380 if (!isa<StructType>(Result)) {
381 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
382 if (Entry.first)
383 return Error(NameLoc, "non-struct types may not be recursive");
384 Entry.first = Result;
385 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000386 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000387
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000388 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000389}
390
391
392/// toplevelentity
393/// ::= 'declare' FunctionHeader
394bool LLParser::ParseDeclare() {
395 assert(Lex.getKind() == lltok::kw_declare);
396 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000397
Chris Lattnerac161bf2009-01-02 07:01:27 +0000398 Function *F;
399 return ParseFunctionHeader(F, false);
400}
401
402/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000403/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000404bool LLParser::ParseDefine() {
405 assert(Lex.getKind() == lltok::kw_define);
406 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000407
Chris Lattnerac161bf2009-01-02 07:01:27 +0000408 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000409 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000410 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000411 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000412}
413
Chris Lattner3822f632009-01-02 08:05:26 +0000414/// ParseGlobalType
415/// ::= 'constant'
416/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000417bool LLParser::ParseGlobalType(bool &IsConstant) {
418 if (Lex.getKind() == lltok::kw_constant)
419 IsConstant = true;
420 else if (Lex.getKind() == lltok::kw_global)
421 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000422 else {
423 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000424 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000425 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000426 Lex.Lex();
427 return false;
428}
429
Dan Gohman466876b2009-08-12 23:32:33 +0000430/// ParseUnnamedGlobal:
431/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000432/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
433/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000434/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000435/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
436/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000437bool LLParser::ParseUnnamedGlobal() {
438 unsigned VarID = NumberedVals.size();
439 std::string Name;
440 LocTy NameLoc = Lex.getLoc();
441
442 // Handle the GlobalID form.
443 if (Lex.getKind() == lltok::GlobalID) {
444 if (Lex.getUIntVal() != VarID)
445 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000446 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000447 Lex.Lex(); // eat GlobalID;
448
449 if (ParseToken(lltok::equal, "expected '=' after name"))
450 return true;
451 }
452
453 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000454 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000455 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000456 bool UnnamedAddr;
Dan Gohman466876b2009-08-12 23:32:33 +0000457 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000458 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000459 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000460 ParseOptionalThreadLocal(TLM) ||
461 parseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000462 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000463
Rafael Espindola464fe022014-07-30 22:51:54 +0000464 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000466 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000468 UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000469}
470
Chris Lattnerac161bf2009-01-02 07:01:27 +0000471/// ParseNamedGlobal:
472/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000473/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
474/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000475bool LLParser::ParseNamedGlobal() {
476 assert(Lex.getKind() == lltok::GlobalVar);
477 LocTy NameLoc = Lex.getLoc();
478 std::string Name = Lex.getStrVal();
479 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000480
Chris Lattnerac161bf2009-01-02 07:01:27 +0000481 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000482 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000483 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000484 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000485 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
486 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000487 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000488 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000489 ParseOptionalThreadLocal(TLM) ||
490 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000491 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000492
Rafael Espindola464fe022014-07-30 22:51:54 +0000493 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000495 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000496
497 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000498 UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000499}
500
David Majnemerdad0a642014-06-27 18:19:56 +0000501bool LLParser::parseComdat() {
502 assert(Lex.getKind() == lltok::ComdatVar);
503 std::string Name = Lex.getStrVal();
504 LocTy NameLoc = Lex.getLoc();
505 Lex.Lex();
506
507 if (ParseToken(lltok::equal, "expected '=' here"))
508 return true;
509
510 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
511 return TokError("expected comdat type");
512
513 Comdat::SelectionKind SK;
514 switch (Lex.getKind()) {
515 default:
516 return TokError("unknown selection kind");
517 case lltok::kw_any:
518 SK = Comdat::Any;
519 break;
520 case lltok::kw_exactmatch:
521 SK = Comdat::ExactMatch;
522 break;
523 case lltok::kw_largest:
524 SK = Comdat::Largest;
525 break;
526 case lltok::kw_noduplicates:
527 SK = Comdat::NoDuplicates;
528 break;
529 case lltok::kw_samesize:
530 SK = Comdat::SameSize;
531 break;
532 }
533 Lex.Lex();
534
535 // See if the comdat was forward referenced, if so, use the comdat.
536 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
537 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
538 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
539 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
540
541 Comdat *C;
542 if (I != ComdatSymTab.end())
543 C = &I->second;
544 else
545 C = M->getOrInsertComdat(Name);
546 C->setSelectionKind(SK);
547
548 return false;
549}
550
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000551// MDString:
552// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000553bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000554 std::string Str;
555 if (ParseStringConstant(Str)) return true;
Eli Bendersky5d5e18d2014-06-25 15:41:00 +0000556 llvm::UpgradeMDStringConstant(Str);
Chris Lattner1797fc72009-12-29 21:53:55 +0000557 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000558 return false;
559}
560
561// MDNode:
562// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000563bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000564 // !{ ..., !42, ... }
565 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000566 if (ParseUInt32(MID))
567 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000568
Chris Lattner8eff0152010-04-01 05:14:45 +0000569 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000570 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000571 Result = NumberedMetadata[MID];
572 return false;
573 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000574
Chris Lattner8eff0152010-04-01 05:14:45 +0000575 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000576 auto &FwdRef = ForwardRefMDNodes[MID];
577 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000578
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000579 Result = FwdRef.first.get();
580 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000581 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000582}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000583
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000584/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000585/// !foo = !{ !1, !2 }
586bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000587 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000588 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000589 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000590
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000591 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000592 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000593 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000594 return true;
595
Dan Gohman2637cc12010-07-21 23:38:33 +0000596 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000597 if (Lex.getKind() != lltok::rbrace)
598 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000599 if (ParseToken(lltok::exclaim, "Expected '!' here"))
600 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000601
Craig Topper2617dcc2014-04-15 06:32:26 +0000602 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000603 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000604 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000605 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000606
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000607 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000608}
609
Devang Patel39e64d42009-07-01 19:21:12 +0000610/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000611/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000612bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000613 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000614 Lex.Lex();
615 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000616
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000617 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000618 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000619 ParseToken(lltok::equal, "expected '=' here"))
620 return true;
621
622 // Detect common error, from old metadata syntax.
623 if (Lex.getKind() == lltok::Type)
624 return TokError("unexpected type in metadata definition");
625
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000626 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000627 if (Lex.getKind() == lltok::MetadataVar) {
628 if (ParseSpecializedMDNode(Init, IsDistinct))
629 return true;
630 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
631 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000632 return true;
633
Chris Lattnerfc58af22009-12-30 04:51:58 +0000634 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000635 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000636 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000637 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000638 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000639
Chris Lattnerfc58af22009-12-30 04:51:58 +0000640 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
641 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000642 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000643 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000644 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000645 }
646
Devang Patel39e64d42009-07-01 19:21:12 +0000647 return false;
648}
649
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000650static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
651 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
652 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
653}
654
Chris Lattnerac161bf2009-01-02 07:01:27 +0000655/// ParseAlias:
Rafael Espindola464fe022014-07-30 22:51:54 +0000656/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
657/// OptionalDLLStorageClass OptionalThreadLocal
Eric Christopher536f0a92015-05-28 23:07:39 +0000658/// OptionalUnnamedAddr 'alias' Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000659///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000660/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000661/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000662///
Eric Christopher536f0a92015-05-28 23:07:39 +0000663/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000664///
Rafael Espindola464fe022014-07-30 22:51:54 +0000665bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000666 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000667 GlobalVariable::ThreadLocalMode TLM,
668 bool UnnamedAddr) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000669 assert(Lex.getKind() == lltok::kw_alias);
670 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000671
Rafael Espindola78527052013-10-06 15:10:43 +0000672 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
673
Rafael Espindolacaa43562013-10-09 16:07:32 +0000674 if(!GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000675 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000676
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000677 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000678 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000679 "symbol with local linkage must have default visibility");
680
Rafael Espindola64c1e182014-06-03 02:41:57 +0000681 Constant *Aliasee;
682 LocTy AliaseeLoc = Lex.getLoc();
683 if (Lex.getKind() != lltok::kw_bitcast &&
684 Lex.getKind() != lltok::kw_getelementptr &&
685 Lex.getKind() != lltok::kw_addrspacecast &&
686 Lex.getKind() != lltok::kw_inttoptr) {
687 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000688 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000689 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000690 // The bitcast dest type is not present, it is implied by the dest type.
691 ValID ID;
692 if (ParseValID(ID))
693 return true;
694 if (ID.Kind != ValID::t_Constant)
695 return Error(AliaseeLoc, "invalid aliasee");
696 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000697 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000698
Rafael Espindola64c1e182014-06-03 02:41:57 +0000699 Type *AliaseeType = Aliasee->getType();
700 auto *PTy = dyn_cast<PointerType>(AliaseeType);
701 if (!PTy)
702 return Error(AliaseeLoc, "An alias must have pointer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000703
704 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000705 std::unique_ptr<GlobalAlias> GA(
David Blaikief64246b2015-04-29 21:22:39 +0000706 GlobalAlias::create(PTy, (GlobalValue::LinkageTypes)Linkage, Name,
707 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000708 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000709 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000710 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000711 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000712
Rafael Espindola54fc2982015-06-17 17:53:31 +0000713 if (Name.empty())
714 NumberedVals.push_back(GA.get());
715
Chris Lattnerac161bf2009-01-02 07:01:27 +0000716 // See if this value already exists in the symbol table. If so, it is either
717 // a redefinition or a definition of a forward reference.
Chris Lattnere38317f2009-10-25 23:22:50 +0000718 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000719 // See if this was a redefinition. If so, there is no entry in
720 // ForwardRefVals.
721 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
722 I = ForwardRefVals.find(Name);
723 if (I == ForwardRefVals.end())
724 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
725
726 // Otherwise, this was a definition of forward ref. Verify that types
727 // agree.
728 if (Val->getType() != GA->getType())
729 return Error(NameLoc,
730 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000731
Chris Lattnerac161bf2009-01-02 07:01:27 +0000732 // If they agree, just RAUW the old value with the alias and remove the
733 // forward ref info.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000734 Val->replaceAllUsesWith(GA.get());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000735 Val->eraseFromParent();
736 ForwardRefVals.erase(I);
737 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000738
Chris Lattnerac161bf2009-01-02 07:01:27 +0000739 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000740 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000741 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000742
Rafael Espindolaaa273822014-05-09 21:49:17 +0000743 // The module owns this now
744 GA.release();
745
Chris Lattnerac161bf2009-01-02 07:01:27 +0000746 return false;
747}
748
749/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000750/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000751/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000752/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000753/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000754/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000755/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000756///
Eric Christopher536f0a92015-05-28 23:07:39 +0000757/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000758/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000759///
760bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
761 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000762 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000763 GlobalVariable::ThreadLocalMode TLM,
764 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000765 if (!isValidVisibilityForLinkage(Visibility, Linkage))
766 return Error(NameLoc,
767 "symbol with local linkage must have default visibility");
768
Chris Lattnerac161bf2009-01-02 07:01:27 +0000769 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000770 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000771 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000772 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000773
Craig Topper2617dcc2014-04-15 06:32:26 +0000774 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000775 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000776 ParseOptionalToken(lltok::kw_externally_initialized,
777 IsExternallyInitialized,
778 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000779 ParseGlobalType(IsConstant) ||
780 ParseType(Ty, TyLoc))
781 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000782
Chris Lattnerac161bf2009-01-02 07:01:27 +0000783 // If the linkage is specified and is external, then no initializer is
784 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000785 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000786 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000787 Linkage != GlobalValue::ExternalLinkage)) {
788 if (ParseGlobalValue(Ty, Init))
789 return true;
790 }
791
David Majnemer49b3d9b2015-02-16 08:41:08 +0000792 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000793 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000794
David Majnemer598bd052014-12-09 05:56:09 +0000795 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000796
797 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000798 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000799 GVal = M->getNamedValue(Name);
800 if (GVal) {
Chris Lattnere38317f2009-10-25 23:22:50 +0000801 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
802 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000803 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000804 } else {
805 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
806 I = ForwardRefValIDs.find(NumberedVals.size());
807 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000808 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000809 ForwardRefValIDs.erase(I);
810 }
811 }
812
David Majnemer598bd052014-12-09 05:56:09 +0000813 GlobalVariable *GV;
814 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000815 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
816 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000817 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000818 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000819 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000820 return Error(TyLoc,
821 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000822
David Majnemer598bd052014-12-09 05:56:09 +0000823 GV = cast<GlobalVariable>(GVal);
824
Chris Lattnerac161bf2009-01-02 07:01:27 +0000825 // Move the forward-reference to the correct spot in the module.
826 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
827 }
828
829 if (Name.empty())
830 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000831
Chris Lattnerac161bf2009-01-02 07:01:27 +0000832 // Set the parsed properties on the global.
833 if (Init)
834 GV->setInitializer(Init);
835 GV->setConstant(IsConstant);
836 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
837 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000838 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000839 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000840 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000841 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000842
Chris Lattnerac161bf2009-01-02 07:01:27 +0000843 // Parse attributes on the global.
844 while (Lex.getKind() == lltok::comma) {
845 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000846
Chris Lattnerac161bf2009-01-02 07:01:27 +0000847 if (Lex.getKind() == lltok::kw_section) {
848 Lex.Lex();
849 GV->setSection(Lex.getStrVal());
850 if (ParseToken(lltok::StringConstant, "expected global section string"))
851 return true;
852 } else if (Lex.getKind() == lltok::kw_align) {
853 unsigned Alignment;
854 if (ParseOptionalAlignment(Alignment)) return true;
855 GV->setAlignment(Alignment);
856 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000857 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000858 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000859 return true;
860 if (C)
861 GV->setComdat(C);
862 else
863 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000864 }
865 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000866
Chris Lattnerac161bf2009-01-02 07:01:27 +0000867 return false;
868}
869
Bill Wendling63b88192013-02-06 06:52:58 +0000870/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000871/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000872bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000873 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000874 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000875 Lex.Lex();
876
David Majnemerb39e22b2014-12-09 18:33:57 +0000877 if (Lex.getKind() != lltok::AttrGrpID)
878 return TokError("expected attribute group id");
879
Bill Wendling63b88192013-02-06 06:52:58 +0000880 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000881 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000882 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000883 Lex.Lex();
884
885 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000886 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000887 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000888 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000889 ParseToken(lltok::rbrace, "expected end of attribute group"))
890 return true;
891
Bill Wendlingb32b0412013-02-08 06:32:06 +0000892 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000893 return Error(AttrGrpLoc, "attribute group has no attributes");
894
895 return false;
896}
897
Bill Wendling8b0321d2013-02-08 00:52:31 +0000898/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000899/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000900bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
901 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000902 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000903 bool HaveError = false;
904
905 B.clear();
906
Bill Wendling63b88192013-02-06 06:52:58 +0000907 while (true) {
908 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000909 if (Token == lltok::kw_builtin)
910 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000911 switch (Token) {
912 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000913 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000914 return Error(Lex.getLoc(), "unterminated attribute group");
915 case lltok::rbrace:
916 // Finished.
917 return false;
918
Bill Wendlingb32b0412013-02-08 06:32:06 +0000919 case lltok::AttrGrpID: {
920 // Allow a function to reference an attribute group:
921 //
922 // define void @foo() #1 { ... }
923 if (inAttrGrp)
924 HaveError |=
925 Error(Lex.getLoc(),
926 "cannot have an attribute group reference in an attribute group");
927
928 unsigned AttrGrpNum = Lex.getUIntVal();
929 if (inAttrGrp) break;
930
931 // Save the reference to the attribute group. We'll fill it in later.
932 FwdRefAttrGrps.push_back(AttrGrpNum);
933 break;
934 }
Bill Wendling63b88192013-02-06 06:52:58 +0000935 // Target-dependent attributes:
936 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +0000937 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +0000938 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000939 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000940 }
941
942 // Target-independent attributes:
943 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000944 // As a hack, we allow function alignment to be initially parsed as an
945 // attribute on a function declaration/definition or added to an attribute
946 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000947 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000948 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000949 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000950 if (ParseToken(lltok::equal, "expected '=' here") ||
951 ParseUInt32(Alignment))
952 return true;
953 } else {
954 if (ParseOptionalAlignment(Alignment))
955 return true;
956 }
Bill Wendling63b88192013-02-06 06:52:58 +0000957 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000958 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000959 }
960 case lltok::kw_alignstack: {
961 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000962 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000963 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000964 if (ParseToken(lltok::equal, "expected '=' here") ||
965 ParseUInt32(Alignment))
966 return true;
967 } else {
968 if (ParseOptionalStackAlignment(Alignment))
969 return true;
970 }
Bill Wendling63b88192013-02-06 06:52:58 +0000971 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000972 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000973 }
Igor Laevsky39d662f2015-07-11 10:30:36 +0000974 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
975 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
976 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
977 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
978 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
979 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
980 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
981 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
982 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
983 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
984 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
985 case lltok::kw_noimplicitfloat:
986 B.addAttribute(Attribute::NoImplicitFloat); break;
987 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
988 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
989 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
990 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
991 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
992 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
993 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
994 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
995 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
996 case lltok::kw_returns_twice:
997 B.addAttribute(Attribute::ReturnsTwice); break;
998 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
999 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1000 case lltok::kw_sspstrong:
1001 B.addAttribute(Attribute::StackProtectStrong); break;
1002 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1003 case lltok::kw_sanitize_address:
1004 B.addAttribute(Attribute::SanitizeAddress); break;
1005 case lltok::kw_sanitize_thread:
1006 B.addAttribute(Attribute::SanitizeThread); break;
1007 case lltok::kw_sanitize_memory:
1008 B.addAttribute(Attribute::SanitizeMemory); break;
1009 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001010
1011 // Error handling.
1012 case lltok::kw_inreg:
1013 case lltok::kw_signext:
1014 case lltok::kw_zeroext:
1015 HaveError |=
1016 Error(Lex.getLoc(),
1017 "invalid use of attribute on a function");
1018 break;
1019 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001020 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001021 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001022 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001023 case lltok::kw_nest:
1024 case lltok::kw_noalias:
1025 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001026 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001027 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001028 case lltok::kw_sret:
1029 HaveError |=
1030 Error(Lex.getLoc(),
1031 "invalid use of parameter-only attribute on a function");
1032 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001033 }
1034
1035 Lex.Lex();
1036 }
1037}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001038
1039//===----------------------------------------------------------------------===//
1040// GlobalValue Reference/Resolution Routines.
1041//===----------------------------------------------------------------------===//
1042
Karl Schimpf77729782015-09-03 18:06:44 +00001043static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1044 const std::string &Name) {
1045 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1046 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1047 else
1048 return new GlobalVariable(*M, PTy->getElementType(), false,
1049 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1050 nullptr, GlobalVariable::NotThreadLocal,
1051 PTy->getAddressSpace());
1052}
1053
Chris Lattnerac161bf2009-01-02 07:01:27 +00001054/// GetGlobalVal - Get a value with the specified name or ID, creating a
1055/// forward reference record if needed. This can return null if the value
1056/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001057GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001058 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001059 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001060 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001061 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001062 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001063 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001064
Chris Lattnerac161bf2009-01-02 07:01:27 +00001065 // Look this name up in the normal function symbol table.
1066 GlobalValue *Val =
1067 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001068
Chris Lattnerac161bf2009-01-02 07:01:27 +00001069 // If this is a forward reference for the value, see if we already created a
1070 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001071 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001072 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
1073 I = ForwardRefVals.find(Name);
1074 if (I != ForwardRefVals.end())
1075 Val = I->second.first;
1076 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001077
Chris Lattnerac161bf2009-01-02 07:01:27 +00001078 // If we have the value in the symbol table or fwd-ref table, return it.
1079 if (Val) {
1080 if (Val->getType() == Ty) return Val;
1081 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001082 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001083 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001084 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001085
Chris Lattnerac161bf2009-01-02 07:01:27 +00001086 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001087 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001088 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1089 return FwdVal;
1090}
1091
Chris Lattner229907c2011-07-18 04:54:35 +00001092GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1093 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001094 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001095 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001096 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001097 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001098
Craig Topper2617dcc2014-04-15 06:32:26 +00001099 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001100
Chris Lattnerac161bf2009-01-02 07:01:27 +00001101 // If this is a forward reference for the value, see if we already created a
1102 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001103 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001104 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1105 I = ForwardRefValIDs.find(ID);
1106 if (I != ForwardRefValIDs.end())
1107 Val = I->second.first;
1108 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001109
Chris Lattnerac161bf2009-01-02 07:01:27 +00001110 // If we have the value in the symbol table or fwd-ref table, return it.
1111 if (Val) {
1112 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001113 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001114 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001115 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001116 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001117
Chris Lattnerac161bf2009-01-02 07:01:27 +00001118 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001119 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001120 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1121 return FwdVal;
1122}
1123
1124
1125//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001126// Comdat Reference/Resolution Routines.
1127//===----------------------------------------------------------------------===//
1128
1129Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1130 // Look this name up in the comdat symbol table.
1131 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1132 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1133 if (I != ComdatSymTab.end())
1134 return &I->second;
1135
1136 // Otherwise, create a new forward reference for this value and remember it.
1137 Comdat *C = M->getOrInsertComdat(Name);
1138 ForwardRefComdats[Name] = Loc;
1139 return C;
1140}
1141
1142
1143//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001144// Helper Routines.
1145//===----------------------------------------------------------------------===//
1146
1147/// ParseToken - If the current token has the specified kind, eat it and return
1148/// success. Otherwise, emit the specified error and return failure.
1149bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1150 if (Lex.getKind() != T)
1151 return TokError(ErrMsg);
1152 Lex.Lex();
1153 return false;
1154}
1155
Chris Lattner3822f632009-01-02 08:05:26 +00001156/// ParseStringConstant
1157/// ::= StringConstant
1158bool LLParser::ParseStringConstant(std::string &Result) {
1159 if (Lex.getKind() != lltok::StringConstant)
1160 return TokError("expected string constant");
1161 Result = Lex.getStrVal();
1162 Lex.Lex();
1163 return false;
1164}
1165
1166/// ParseUInt32
1167/// ::= uint32
1168bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001169 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1170 return TokError("expected integer");
1171 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1172 if (Val64 != unsigned(Val64))
1173 return TokError("expected 32-bit integer (too large)");
1174 Val = Val64;
1175 Lex.Lex();
1176 return false;
1177}
1178
Hal Finkelb0407ba2014-07-18 15:51:28 +00001179/// ParseUInt64
1180/// ::= uint64
1181bool LLParser::ParseUInt64(uint64_t &Val) {
1182 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1183 return TokError("expected integer");
1184 Val = Lex.getAPSIntVal().getLimitedValue();
1185 Lex.Lex();
1186 return false;
1187}
1188
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001189/// ParseTLSModel
1190/// := 'localdynamic'
1191/// := 'initialexec'
1192/// := 'localexec'
1193bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1194 switch (Lex.getKind()) {
1195 default:
1196 return TokError("expected localdynamic, initialexec or localexec");
1197 case lltok::kw_localdynamic:
1198 TLM = GlobalVariable::LocalDynamicTLSModel;
1199 break;
1200 case lltok::kw_initialexec:
1201 TLM = GlobalVariable::InitialExecTLSModel;
1202 break;
1203 case lltok::kw_localexec:
1204 TLM = GlobalVariable::LocalExecTLSModel;
1205 break;
1206 }
1207
1208 Lex.Lex();
1209 return false;
1210}
1211
1212/// ParseOptionalThreadLocal
1213/// := /*empty*/
1214/// := 'thread_local'
1215/// := 'thread_local' '(' tlsmodel ')'
1216bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1217 TLM = GlobalVariable::NotThreadLocal;
1218 if (!EatIfPresent(lltok::kw_thread_local))
1219 return false;
1220
1221 TLM = GlobalVariable::GeneralDynamicTLSModel;
1222 if (Lex.getKind() == lltok::lparen) {
1223 Lex.Lex();
1224 return ParseTLSModel(TLM) ||
1225 ParseToken(lltok::rparen, "expected ')' after thread local model");
1226 }
1227 return false;
1228}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001229
1230/// ParseOptionalAddrSpace
1231/// := /*empty*/
1232/// := 'addrspace' '(' uint32 ')'
1233bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1234 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001235 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001236 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001237 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001238 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001239 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001240}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001241
Artur Pilipenko17376c42015-08-03 14:31:49 +00001242/// ParseStringAttribute
1243/// := StringConstant
1244/// := StringConstant '=' StringConstant
1245bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1246 std::string Attr = Lex.getStrVal();
1247 Lex.Lex();
1248 std::string Val;
1249 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1250 return true;
1251 B.addAttribute(Attr, Val);
1252 return false;
1253}
1254
Bill Wendling34c2eb22012-12-04 23:40:58 +00001255/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1256bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1257 bool HaveError = false;
1258
1259 B.clear();
1260
1261 while (1) {
1262 lltok::Kind Token = Lex.getKind();
1263 switch (Token) {
1264 default: // End of attributes.
1265 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001266 case lltok::StringConstant: {
1267 if (ParseStringAttribute(B))
1268 return true;
1269 continue;
1270 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001271 case lltok::kw_align: {
1272 unsigned Alignment;
1273 if (ParseOptionalAlignment(Alignment))
1274 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001275 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001276 continue;
1277 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001278 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001279 case lltok::kw_dereferenceable: {
1280 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001281 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001282 return true;
1283 B.addDereferenceableAttr(Bytes);
1284 continue;
1285 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001286 case lltok::kw_dereferenceable_or_null: {
1287 uint64_t Bytes;
1288 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1289 return true;
1290 B.addDereferenceableOrNullAttr(Bytes);
1291 continue;
1292 }
Reid Klecknera534a382013-12-19 02:14:12 +00001293 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001294 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1295 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1296 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1297 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001298 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001299 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1300 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001301 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001302 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1303 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1304 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001305
Stephen Lin7577ed52013-04-20 13:16:13 +00001306 case lltok::kw_alignstack:
1307 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001308 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001309 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001310 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001311 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001312 case lltok::kw_minsize:
1313 case lltok::kw_naked:
1314 case lltok::kw_nobuiltin:
1315 case lltok::kw_noduplicate:
1316 case lltok::kw_noimplicitfloat:
1317 case lltok::kw_noinline:
1318 case lltok::kw_nonlazybind:
1319 case lltok::kw_noredzone:
1320 case lltok::kw_noreturn:
1321 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001322 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001323 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001324 case lltok::kw_returns_twice:
1325 case lltok::kw_sanitize_address:
1326 case lltok::kw_sanitize_memory:
1327 case lltok::kw_sanitize_thread:
1328 case lltok::kw_ssp:
1329 case lltok::kw_sspreq:
1330 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001331 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001332 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001333 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1334 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001335 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001336
Bill Wendling34c2eb22012-12-04 23:40:58 +00001337 Lex.Lex();
1338 }
1339}
1340
1341/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1342bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1343 bool HaveError = false;
1344
1345 B.clear();
1346
1347 while (1) {
1348 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001349 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001350 default: // End of attributes.
1351 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001352 case lltok::StringConstant: {
1353 if (ParseStringAttribute(B))
1354 return true;
1355 continue;
1356 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001357 case lltok::kw_dereferenceable: {
1358 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001359 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001360 return true;
1361 B.addDereferenceableAttr(Bytes);
1362 continue;
1363 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001364 case lltok::kw_dereferenceable_or_null: {
1365 uint64_t Bytes;
1366 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1367 return true;
1368 B.addDereferenceableOrNullAttr(Bytes);
1369 continue;
1370 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001371 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1372 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001373 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001374 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1375 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001376
Bill Wendling34c2eb22012-12-04 23:40:58 +00001377 // Error handling.
Stephen Lin7577ed52013-04-20 13:16:13 +00001378 case lltok::kw_align:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001379 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001380 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001381 case lltok::kw_nest:
1382 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001383 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001384 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001385 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001386 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001387
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001388 case lltok::kw_alignstack:
1389 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001390 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001391 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001392 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001393 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001394 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001395 case lltok::kw_minsize:
1396 case lltok::kw_naked:
1397 case lltok::kw_nobuiltin:
1398 case lltok::kw_noduplicate:
1399 case lltok::kw_noimplicitfloat:
1400 case lltok::kw_noinline:
1401 case lltok::kw_nonlazybind:
1402 case lltok::kw_noredzone:
1403 case lltok::kw_noreturn:
1404 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001405 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001406 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001407 case lltok::kw_returns_twice:
1408 case lltok::kw_sanitize_address:
1409 case lltok::kw_sanitize_memory:
1410 case lltok::kw_sanitize_thread:
1411 case lltok::kw_ssp:
1412 case lltok::kw_sspreq:
1413 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001414 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001415 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001416 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001417 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001418
1419 case lltok::kw_readnone:
1420 case lltok::kw_readonly:
1421 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001422 }
1423
Chris Lattnerac161bf2009-01-02 07:01:27 +00001424 Lex.Lex();
1425 }
1426}
1427
1428/// ParseOptionalLinkage
1429/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001430/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001431/// ::= 'internal'
1432/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001433/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001434/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001435/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001436/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001437/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001438/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001439/// ::= 'extern_weak'
1440/// ::= 'external'
1441bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1442 HasLinkage = false;
1443 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001444 default: Res=GlobalValue::ExternalLinkage; return false;
1445 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001446 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1447 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1448 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1449 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1450 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001451 case lltok::kw_available_externally:
1452 Res = GlobalValue::AvailableExternallyLinkage;
1453 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001454 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001455 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001456 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1457 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001458 }
1459 Lex.Lex();
1460 HasLinkage = true;
1461 return false;
1462}
1463
1464/// ParseOptionalVisibility
1465/// ::= /*empty*/
1466/// ::= 'default'
1467/// ::= 'hidden'
1468/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001469///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001470bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1471 switch (Lex.getKind()) {
1472 default: Res = GlobalValue::DefaultVisibility; return false;
1473 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1474 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1475 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1476 }
1477 Lex.Lex();
1478 return false;
1479}
1480
Nico Rieck7157bb72014-01-14 15:22:47 +00001481/// ParseOptionalDLLStorageClass
1482/// ::= /*empty*/
1483/// ::= 'dllimport'
1484/// ::= 'dllexport'
1485///
1486bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1487 switch (Lex.getKind()) {
1488 default: Res = GlobalValue::DefaultStorageClass; return false;
1489 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1490 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1491 }
1492 Lex.Lex();
1493 return false;
1494}
1495
Chris Lattnerac161bf2009-01-02 07:01:27 +00001496/// ParseOptionalCallingConv
1497/// ::= /*empty*/
1498/// ::= 'ccc'
1499/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001500/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001501/// ::= 'coldcc'
1502/// ::= 'x86_stdcallcc'
1503/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001504/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001505/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001506/// ::= 'arm_apcscc'
1507/// ::= 'arm_aapcscc'
1508/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001509/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001510/// ::= 'ptx_kernel'
1511/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001512/// ::= 'spir_func'
1513/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001514/// ::= 'x86_64_sysvcc'
1515/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001516/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001517/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001518/// ::= 'preserve_mostcc'
1519/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001520/// ::= 'ghccc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001521/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001522///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001523bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001524 switch (Lex.getKind()) {
1525 default: CC = CallingConv::C; return false;
1526 case lltok::kw_ccc: CC = CallingConv::C; break;
1527 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1528 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1529 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1530 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001531 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001532 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001533 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1534 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1535 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001536 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001537 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1538 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001539 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1540 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001541 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001542 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1543 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001544 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001545 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001546 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1547 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001548 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001549 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001550 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001551 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001552 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001553 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001554
Chris Lattnerac161bf2009-01-02 07:01:27 +00001555 Lex.Lex();
1556 return false;
1557}
1558
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001559/// ParseMetadataAttachment
1560/// ::= !dbg !42
1561bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1562 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1563
1564 std::string Name = Lex.getStrVal();
1565 Kind = M->getMDKindID(Name);
1566 Lex.Lex();
1567
1568 return ParseMDNode(MD);
1569}
1570
Chris Lattner5c427632009-12-30 05:31:19 +00001571/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001572/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001573bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001574 do {
1575 if (Lex.getKind() != lltok::MetadataVar)
1576 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001577
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001578 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001579 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001580 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001581 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001582
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001583 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001584 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001585 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001586
Chris Lattner596760d2009-12-29 21:25:40 +00001587 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001588 } while (EatIfPresent(lltok::comma));
1589 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001590}
1591
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001592/// ParseOptionalFunctionMetadata
1593/// ::= (!dbg !57)*
1594bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1595 while (Lex.getKind() == lltok::MetadataVar) {
1596 unsigned MDK;
1597 MDNode *N;
1598 if (ParseMetadataAttachment(MDK, N))
1599 return true;
1600
1601 F.setMetadata(MDK, N);
1602 }
1603 return false;
1604}
1605
Chris Lattnerac161bf2009-01-02 07:01:27 +00001606/// ParseOptionalAlignment
1607/// ::= /* empty */
1608/// ::= 'align' 4
1609bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1610 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001611 if (!EatIfPresent(lltok::kw_align))
1612 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001613 LocTy AlignLoc = Lex.getLoc();
1614 if (ParseUInt32(Alignment)) return true;
1615 if (!isPowerOf2_32(Alignment))
1616 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001617 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001618 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001619 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001620}
1621
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001622/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001623/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001624/// ::= AttrKind '(' 4 ')'
1625///
1626/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1627bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1628 uint64_t &Bytes) {
1629 assert((AttrKind == lltok::kw_dereferenceable ||
1630 AttrKind == lltok::kw_dereferenceable_or_null) &&
1631 "contract!");
1632
Hal Finkelb0407ba2014-07-18 15:51:28 +00001633 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001634 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001635 return false;
1636 LocTy ParenLoc = Lex.getLoc();
1637 if (!EatIfPresent(lltok::lparen))
1638 return Error(ParenLoc, "expected '('");
1639 LocTy DerefLoc = Lex.getLoc();
1640 if (ParseUInt64(Bytes)) return true;
1641 ParenLoc = Lex.getLoc();
1642 if (!EatIfPresent(lltok::rparen))
1643 return Error(ParenLoc, "expected ')'");
1644 if (!Bytes)
1645 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1646 return false;
1647}
1648
Chris Lattnerb2f39502009-12-30 05:44:30 +00001649/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001650/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001651/// ::= ',' align 4
1652///
1653/// This returns with AteExtraComma set to true if it ate an excess comma at the
1654/// end.
1655bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1656 bool &AteExtraComma) {
1657 AteExtraComma = false;
1658 while (EatIfPresent(lltok::comma)) {
1659 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001660 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001661 AteExtraComma = true;
1662 return false;
1663 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001664
Chris Lattner95b0ff42010-04-23 00:50:50 +00001665 if (Lex.getKind() != lltok::kw_align)
1666 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001667
Chris Lattner95b0ff42010-04-23 00:50:50 +00001668 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001669 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001670
Devang Patelea8a4b92009-09-17 23:04:48 +00001671 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001672}
1673
Eli Friedmanfee02c62011-07-25 23:16:38 +00001674/// ParseScopeAndOrdering
1675/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1676/// else: ::=
1677///
1678/// This sets Scope and Ordering to the parsed values.
1679bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1680 AtomicOrdering &Ordering) {
1681 if (!isAtomic)
1682 return false;
1683
1684 Scope = CrossThread;
1685 if (EatIfPresent(lltok::kw_singlethread))
1686 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001687
1688 return ParseOrdering(Ordering);
1689}
1690
1691/// ParseOrdering
1692/// ::= AtomicOrdering
1693///
1694/// This sets Ordering to the parsed value.
1695bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001696 switch (Lex.getKind()) {
1697 default: return TokError("Expected ordering on atomic instruction");
1698 case lltok::kw_unordered: Ordering = Unordered; break;
1699 case lltok::kw_monotonic: Ordering = Monotonic; break;
1700 case lltok::kw_acquire: Ordering = Acquire; break;
1701 case lltok::kw_release: Ordering = Release; break;
1702 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1703 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1704 }
1705 Lex.Lex();
1706 return false;
1707}
1708
Charles Davisbe5557e2010-02-12 00:31:15 +00001709/// ParseOptionalStackAlignment
1710/// ::= /* empty */
1711/// ::= 'alignstack' '(' 4 ')'
1712bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1713 Alignment = 0;
1714 if (!EatIfPresent(lltok::kw_alignstack))
1715 return false;
1716 LocTy ParenLoc = Lex.getLoc();
1717 if (!EatIfPresent(lltok::lparen))
1718 return Error(ParenLoc, "expected '('");
1719 LocTy AlignLoc = Lex.getLoc();
1720 if (ParseUInt32(Alignment)) return true;
1721 ParenLoc = Lex.getLoc();
1722 if (!EatIfPresent(lltok::rparen))
1723 return Error(ParenLoc, "expected ')'");
1724 if (!isPowerOf2_32(Alignment))
1725 return Error(AlignLoc, "stack alignment is not a power of two");
1726 return false;
1727}
Devang Patelea8a4b92009-09-17 23:04:48 +00001728
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001729/// ParseIndexList - This parses the index list for an insert/extractvalue
1730/// instruction. This sets AteExtraComma in the case where we eat an extra
1731/// comma at the end of the line and find that it is followed by metadata.
1732/// Clients that don't allow metadata can call the version of this function that
1733/// only takes one argument.
1734///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001735/// ParseIndexList
1736/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001737///
1738bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1739 bool &AteExtraComma) {
1740 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001741
Chris Lattnerac161bf2009-01-02 07:01:27 +00001742 if (Lex.getKind() != lltok::comma)
1743 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001744
Chris Lattner3822f632009-01-02 08:05:26 +00001745 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001746 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001747 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001748 AteExtraComma = true;
1749 return false;
1750 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001751 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001752 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001753 Indices.push_back(Idx);
1754 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001755
Chris Lattnerac161bf2009-01-02 07:01:27 +00001756 return false;
1757}
1758
1759//===----------------------------------------------------------------------===//
1760// Type Parsing.
1761//===----------------------------------------------------------------------===//
1762
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001763/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001764bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001765 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001766 switch (Lex.getKind()) {
1767 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001768 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001769 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001770 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001771 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001772 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001773 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001774 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001775 // Type ::= StructType
1776 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001777 return true;
1778 break;
1779 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001780 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001781 Lex.Lex(); // eat the lsquare.
1782 if (ParseArrayVectorType(Result, false))
1783 return true;
1784 break;
1785 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001786 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001787 Lex.Lex();
1788 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001789 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001790 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001791 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001792 } else if (ParseArrayVectorType(Result, true))
1793 return true;
1794 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001795 case lltok::LocalVar: {
1796 // Type ::= %foo
1797 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001798
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001799 // If the type hasn't been defined yet, create a forward definition and
1800 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001801 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001802 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001803 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001804 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001805 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001806 Lex.Lex();
1807 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001808 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001809
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001810 case lltok::LocalVarID: {
1811 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001812 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001813
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001814 // If the type hasn't been defined yet, create a forward definition and
1815 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001816 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001817 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001818 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001819 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001820 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001821 Lex.Lex();
1822 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001823 }
1824 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001825
1826 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001827 while (1) {
1828 switch (Lex.getKind()) {
1829 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001830 default:
1831 if (!AllowVoid && Result->isVoidTy())
1832 return Error(TypeLoc, "void type only allowed for function results");
1833 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001834
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001835 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001836 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001837 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001838 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001839 if (Result->isVoidTy())
1840 return TokError("pointers to void are invalid - use i8* instead");
1841 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001842 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001843 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001844 Lex.Lex();
1845 break;
1846
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001847 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001848 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001849 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001850 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001851 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001852 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001853 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001854 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001855 unsigned AddrSpace;
1856 if (ParseOptionalAddrSpace(AddrSpace) ||
1857 ParseToken(lltok::star, "expected '*' in address space"))
1858 return true;
1859
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001860 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001861 break;
1862 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001863
Chris Lattnerac161bf2009-01-02 07:01:27 +00001864 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1865 case lltok::lparen:
1866 if (ParseFunctionType(Result))
1867 return true;
1868 break;
1869 }
1870 }
1871}
1872
1873/// ParseParameterList
1874/// ::= '(' ')'
1875/// ::= '(' Arg (',' Arg)* ')'
1876/// Arg
1877/// ::= Type OptionalAttributes Value OptionalAttributes
1878bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001879 PerFunctionState &PFS, bool IsMustTailCall,
1880 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001881 if (ParseToken(lltok::lparen, "expected '(' in call"))
1882 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001883
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001884 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001885 while (Lex.getKind() != lltok::rparen) {
1886 // If this isn't the first argument, we need a comma.
1887 if (!ArgList.empty() &&
1888 ParseToken(lltok::comma, "expected ',' in argument list"))
1889 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001890
Reid Kleckner83498642014-08-26 00:33:28 +00001891 // Parse an ellipsis if this is a musttail call in a variadic function.
1892 if (Lex.getKind() == lltok::dotdotdot) {
1893 const char *Msg = "unexpected ellipsis in argument list for ";
1894 if (!IsMustTailCall)
1895 return TokError(Twine(Msg) + "non-musttail call");
1896 if (!InVarArgsFunc)
1897 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1898 Lex.Lex(); // Lex the '...', it is purely for readability.
1899 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1900 }
1901
Chris Lattnerac161bf2009-01-02 07:01:27 +00001902 // Parse the argument.
1903 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001904 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001905 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001906 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001907 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001908 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001909
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001910 if (ArgTy->isMetadataTy()) {
1911 if (ParseMetadataAsValue(V, PFS))
1912 return true;
1913 } else {
1914 // Otherwise, handle normal operands.
1915 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1916 return true;
1917 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001918 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1919 AttrIndex++,
1920 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001921 }
1922
Reid Kleckner83498642014-08-26 00:33:28 +00001923 if (IsMustTailCall && InVarArgsFunc)
1924 return TokError("expected '...' at end of argument list for musttail call "
1925 "in varargs function");
1926
Chris Lattnerac161bf2009-01-02 07:01:27 +00001927 Lex.Lex(); // Lex the ')'.
1928 return false;
1929}
1930
1931
1932
Chris Lattner2ed06b42009-01-05 18:34:07 +00001933/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001934/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001935/// ::= '(' ArgTypeListI ')'
1936/// ArgTypeListI
1937/// ::= /*empty*/
1938/// ::= '...'
1939/// ::= ArgTypeList ',' '...'
1940/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00001941///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001942bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1943 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00001944 isVarArg = false;
1945 assert(Lex.getKind() == lltok::lparen);
1946 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001947
Chris Lattnerac161bf2009-01-02 07:01:27 +00001948 if (Lex.getKind() == lltok::rparen) {
1949 // empty
1950 } else if (Lex.getKind() == lltok::dotdotdot) {
1951 isVarArg = true;
1952 Lex.Lex();
1953 } else {
1954 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00001955 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001956 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001957 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001958
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001959 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00001960 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001961
Chris Lattnerfdd87902009-10-05 05:54:46 +00001962 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001963 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001964
Chris Lattnerdef19492011-06-17 06:36:20 +00001965 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001966 Name = Lex.getStrVal();
1967 Lex.Lex();
1968 }
Chris Lattner3822f632009-01-02 08:05:26 +00001969
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001970 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00001971 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001972
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001973 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001974 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
1975 AttrIndex++, Attrs),
1976 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001977
Chris Lattner3822f632009-01-02 08:05:26 +00001978 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001979 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00001980 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001981 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001982 break;
1983 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001984
Chris Lattnerac161bf2009-01-02 07:01:27 +00001985 // Otherwise must be an argument type.
1986 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00001987 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00001988
Chris Lattnerfdd87902009-10-05 05:54:46 +00001989 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001990 return Error(TypeLoc, "argument can not have void type");
1991
Chris Lattnerdef19492011-06-17 06:36:20 +00001992 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001993 Name = Lex.getStrVal();
1994 Lex.Lex();
1995 } else {
1996 Name = "";
1997 }
Chris Lattner3822f632009-01-02 08:05:26 +00001998
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001999 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002000 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002001
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002002 ArgList.emplace_back(
2003 TypeLoc, ArgTy,
2004 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2005 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002006 }
2007 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002008
Chris Lattner3822f632009-01-02 08:05:26 +00002009 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002010}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002011
Chris Lattnerac161bf2009-01-02 07:01:27 +00002012/// ParseFunctionType
2013/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002014bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002015 assert(Lex.getKind() == lltok::lparen);
2016
Chris Lattnerce473c72009-01-05 08:04:33 +00002017 if (!FunctionType::isValidReturnType(Result))
2018 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002019
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002020 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002021 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002022 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002023 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002024
Chris Lattnerac161bf2009-01-02 07:01:27 +00002025 // Reject names on the arguments lists.
2026 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2027 if (!ArgList[i].Name.empty())
2028 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002029 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002030 return Error(ArgList[i].Loc,
2031 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002032 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002033
Jay Foadb804a2b2011-07-12 14:06:48 +00002034 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002035 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002036 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002037
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002038 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002039 return false;
2040}
2041
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002042/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2043/// other structs.
2044bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2045 SmallVector<Type*, 8> Elts;
2046 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002047
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002048 Result = StructType::get(Context, Elts, Packed);
2049 return false;
2050}
2051
2052/// ParseStructDefinition - Parse a struct in a 'type' definition.
2053bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2054 std::pair<Type*, LocTy> &Entry,
2055 Type *&ResultTy) {
2056 // If the type was already defined, diagnose the redefinition.
2057 if (Entry.first && !Entry.second.isValid())
2058 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002059
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002060 // If we have opaque, just return without filling in the definition for the
2061 // struct. This counts as a definition as far as the .ll file goes.
2062 if (EatIfPresent(lltok::kw_opaque)) {
2063 // This type is being defined, so clear the location to indicate this.
2064 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002065
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002066 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002067 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002068 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002069 ResultTy = Entry.first;
2070 return false;
2071 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002072
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002073 // If the type starts with '<', then it is either a packed struct or a vector.
2074 bool isPacked = EatIfPresent(lltok::less);
2075
2076 // If we don't have a struct, then we have a random type alias, which we
2077 // accept for compatibility with old files. These types are not allowed to be
2078 // forward referenced and not allowed to be recursive.
2079 if (Lex.getKind() != lltok::lbrace) {
2080 if (Entry.first)
2081 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002082
Craig Topper2617dcc2014-04-15 06:32:26 +00002083 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002084 if (isPacked)
2085 return ParseArrayVectorType(ResultTy, true);
2086 return ParseType(ResultTy);
2087 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002088
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002089 // This type is being defined, so clear the location to indicate this.
2090 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002091
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002092 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002093 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002094 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002095
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002096 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002097
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002098 SmallVector<Type*, 8> Body;
2099 if (ParseStructBody(Body) ||
2100 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2101 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002102
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002103 STy->setBody(Body, isPacked);
2104 ResultTy = STy;
2105 return false;
2106}
2107
2108
Chris Lattnerac161bf2009-01-02 07:01:27 +00002109/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002110/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002111/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002112/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002113/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002114/// ::= '<' '{' Type (',' Type)* '}' '>'
2115bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002116 assert(Lex.getKind() == lltok::lbrace);
2117 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002118
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002119 // Handle the empty struct.
2120 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002121 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002122
Chris Lattnerf880ca22009-03-09 04:49:14 +00002123 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002124 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002125 if (ParseType(Ty)) return true;
2126 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002127
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002128 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002129 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002130
Chris Lattner3822f632009-01-02 08:05:26 +00002131 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002132 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002133 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002134
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002135 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002136 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002137
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002138 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002139 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002140
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002141 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002142}
2143
2144/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2145/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002146/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002147/// ::= '[' APSINTVAL 'x' Types ']'
2148/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002149bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002150 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2151 Lex.getAPSIntVal().getBitWidth() > 64)
2152 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002153
Chris Lattnerac161bf2009-01-02 07:01:27 +00002154 LocTy SizeLoc = Lex.getLoc();
2155 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002156 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002157
Chris Lattner3822f632009-01-02 08:05:26 +00002158 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2159 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002160
2161 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002162 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002163 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002164
Chris Lattner3822f632009-01-02 08:05:26 +00002165 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2166 "expected end of sequential type"))
2167 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002168
Chris Lattnerac161bf2009-01-02 07:01:27 +00002169 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002170 if (Size == 0)
2171 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002172 if ((unsigned)Size != Size)
2173 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002174 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002175 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002176 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002177 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002178 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002179 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002180 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002181 }
2182 return false;
2183}
2184
2185//===----------------------------------------------------------------------===//
2186// Function Semantic Analysis.
2187//===----------------------------------------------------------------------===//
2188
Chris Lattner3432c622009-10-28 03:39:23 +00002189LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2190 int functionNumber)
2191 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002192
2193 // Insert unnamed arguments into the NumberedVals list.
2194 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2195 AI != E; ++AI)
2196 if (!AI->hasName())
2197 NumberedVals.push_back(AI);
2198}
2199
2200LLParser::PerFunctionState::~PerFunctionState() {
2201 // If there were any forward referenced non-basicblock values, delete them.
2202 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
2203 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
2204 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002205 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002206 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002207 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002208 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002209 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002210
Chris Lattnerac161bf2009-01-02 07:01:27 +00002211 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2212 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
2213 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002214 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002215 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002216 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002217 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002218 }
2219}
2220
Chris Lattner3432c622009-10-28 03:39:23 +00002221bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002222 if (!ForwardRefVals.empty())
2223 return P.Error(ForwardRefVals.begin()->second.second,
2224 "use of undefined value '%" + ForwardRefVals.begin()->first +
2225 "'");
2226 if (!ForwardRefValIDs.empty())
2227 return P.Error(ForwardRefValIDs.begin()->second.second,
2228 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002229 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002230 return false;
2231}
2232
2233
2234/// GetVal - Get a value with the specified name or ID, creating a
2235/// forward reference record if needed. This can return null if the value
2236/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002237Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
2238 LocTy Loc, OperatorConstraint OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002239 // Look this name up in the normal function symbol table.
2240 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002241
Chris Lattnerac161bf2009-01-02 07:01:27 +00002242 // If this is a forward reference for the value, see if we already created a
2243 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002244 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002245 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2246 I = ForwardRefVals.find(Name);
2247 if (I != ForwardRefVals.end())
2248 Val = I->second.first;
2249 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002250
Chris Lattnerac161bf2009-01-02 07:01:27 +00002251 // If we have the value in the symbol table or fwd-ref table, return it.
2252 if (Val) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002253 // Check operator constraints.
2254 switch (OC) {
2255 case OC_None:
2256 // no constraint
2257 break;
2258 case OC_CatchPad:
2259 if (!isa<CatchPadInst>(Val)) {
2260 P.Error(Loc, "'%" + Name + "' is not a catchpad");
2261 return nullptr;
2262 }
2263 break;
2264 case OC_CleanupPad:
2265 if (!isa<CleanupPadInst>(Val)) {
2266 P.Error(Loc, "'%" + Name + "' is not a cleanuppad");
2267 return nullptr;
2268 }
2269 break;
2270 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002271 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002272 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002273 P.Error(Loc, "'%" + Name + "' is not a basic block");
2274 else
2275 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002276 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002277 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002278 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002279
Chris Lattnerac161bf2009-01-02 07:01:27 +00002280 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002281 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002282 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002283 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002284 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002285
Chris Lattnerac161bf2009-01-02 07:01:27 +00002286 // Otherwise, create a new forward reference for this value and remember it.
2287 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002288 if (Ty->isLabelTy()) {
2289 assert(!OC);
Owen Anderson55f1c092009-08-13 21:58:54 +00002290 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002291 } else if (!OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002292 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002293 } else {
2294 switch (OC) {
2295 case OC_CatchPad:
2296 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {},
2297 Name);
2298 break;
2299 case OC_CleanupPad:
2300 FwdVal = CleanupPadInst::Create(F.getContext(), {}, Name);
2301 break;
2302 default:
2303 llvm_unreachable("unexpected constraint");
2304 }
2305 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002306
Chris Lattnerac161bf2009-01-02 07:01:27 +00002307 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2308 return FwdVal;
2309}
2310
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002311Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc,
2312 OperatorConstraint OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002313 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002314 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002315
Chris Lattnerac161bf2009-01-02 07:01:27 +00002316 // If this is a forward reference for the value, see if we already created a
2317 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002318 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002319 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2320 I = ForwardRefValIDs.find(ID);
2321 if (I != ForwardRefValIDs.end())
2322 Val = I->second.first;
2323 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002324
Chris Lattnerac161bf2009-01-02 07:01:27 +00002325 // If we have the value in the symbol table or fwd-ref table, return it.
2326 if (Val) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002327 // Check operator constraint.
2328 switch (OC) {
2329 case OC_None:
2330 // no constraint
2331 break;
2332 case OC_CatchPad:
2333 if (!isa<CatchPadInst>(Val)) {
2334 P.Error(Loc, "'%" + Twine(ID) + "' is not a catchpad");
2335 return nullptr;
2336 }
2337 break;
2338 case OC_CleanupPad:
2339 if (!isa<CleanupPadInst>(Val)) {
2340 P.Error(Loc, "'%" + Twine(ID) + "' is not a cleanuppad");
2341 return nullptr;
2342 }
2343 break;
2344 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002345 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002346 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002347 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002348 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002349 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002350 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002351 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002352 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002353
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002354 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002355 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002356 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002357 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002358
Chris Lattnerac161bf2009-01-02 07:01:27 +00002359 // Otherwise, create a new forward reference for this value and remember it.
2360 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002361 if (Ty->isLabelTy()) {
2362 assert(!OC);
Owen Anderson55f1c092009-08-13 21:58:54 +00002363 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002364 } else if (!OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002365 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002366 } else {
2367 switch (OC) {
2368 case OC_CatchPad:
2369 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {});
2370 break;
2371 case OC_CleanupPad:
2372 FwdVal = CleanupPadInst::Create(F.getContext(), {});
2373 break;
2374 default:
2375 llvm_unreachable("unexpected constraint");
2376 }
2377 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002378
Chris Lattnerac161bf2009-01-02 07:01:27 +00002379 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2380 return FwdVal;
2381}
2382
2383/// SetInstName - After an instruction is parsed and inserted into its
2384/// basic block, this installs its name.
2385bool LLParser::PerFunctionState::SetInstName(int NameID,
2386 const std::string &NameStr,
2387 LocTy NameLoc, Instruction *Inst) {
2388 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002389 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002390 if (NameID != -1 || !NameStr.empty())
2391 return P.Error(NameLoc, "instructions returning void cannot have a name");
2392 return false;
2393 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002394
Chris Lattnerac161bf2009-01-02 07:01:27 +00002395 // If this was a numbered instruction, verify that the instruction is the
2396 // expected value and resolve any forward references.
2397 if (NameStr.empty()) {
2398 // If neither a name nor an ID was specified, just use the next ID.
2399 if (NameID == -1)
2400 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002401
Chris Lattnerac161bf2009-01-02 07:01:27 +00002402 if (unsigned(NameID) != NumberedVals.size())
2403 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002404 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002405
Chris Lattnerac161bf2009-01-02 07:01:27 +00002406 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2407 ForwardRefValIDs.find(NameID);
2408 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002409 Value *Sentinel = FI->second.first;
2410 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002411 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002412 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002413 // Check operator constraints. We only put cleanuppads or catchpads in
2414 // the forward value map if the value is constrained to match.
2415 if (isa<CatchPadInst>(Sentinel)) {
2416 if (!isa<CatchPadInst>(Inst))
2417 return P.Error(FI->second.second,
2418 "'%" + Twine(NameID) + "' is not a catchpad");
2419 } else if (isa<CleanupPadInst>(Sentinel)) {
2420 if (!isa<CleanupPadInst>(Inst))
2421 return P.Error(FI->second.second,
2422 "'%" + Twine(NameID) + "' is not a cleanuppad");
2423 }
2424
2425 Sentinel->replaceAllUsesWith(Inst);
2426 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002427 ForwardRefValIDs.erase(FI);
2428 }
2429
2430 NumberedVals.push_back(Inst);
2431 return false;
2432 }
2433
2434 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2435 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2436 FI = ForwardRefVals.find(NameStr);
2437 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002438 Value *Sentinel = FI->second.first;
2439 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002440 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002441 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002442 // Check operator constraints. We only put cleanuppads or catchpads in
2443 // the forward value map if the value is constrained to match.
2444 if (isa<CatchPadInst>(Sentinel)) {
2445 if (!isa<CatchPadInst>(Inst))
2446 return P.Error(FI->second.second,
2447 "'%" + NameStr + "' is not a catchpad");
2448 } else if (isa<CleanupPadInst>(Sentinel)) {
2449 if (!isa<CleanupPadInst>(Inst))
2450 return P.Error(FI->second.second,
2451 "'%" + NameStr + "' is not a cleanuppad");
2452 }
2453
2454 Sentinel->replaceAllUsesWith(Inst);
2455 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002456 ForwardRefVals.erase(FI);
2457 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002458
Chris Lattnerac161bf2009-01-02 07:01:27 +00002459 // Set the name on the instruction.
2460 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002461
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002462 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002463 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002464 NameStr + "'");
2465 return false;
2466}
2467
2468/// GetBB - Get a basic block with the specified name or ID, creating a
2469/// forward reference record if needed.
2470BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2471 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002472 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2473 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002474}
2475
2476BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002477 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2478 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002479}
2480
2481/// DefineBB - Define the specified basic block, which is either named or
2482/// unnamed. If there is an error, this returns null otherwise it returns
2483/// the block being defined.
2484BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2485 LocTy Loc) {
2486 BasicBlock *BB;
2487 if (Name.empty())
2488 BB = GetBB(NumberedVals.size(), Loc);
2489 else
2490 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002491 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002492
Chris Lattnerac161bf2009-01-02 07:01:27 +00002493 // Move the block to the end of the function. Forward ref'd blocks are
2494 // inserted wherever they happen to be referenced.
2495 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002496
Chris Lattnerac161bf2009-01-02 07:01:27 +00002497 // Remove the block from forward ref sets.
2498 if (Name.empty()) {
2499 ForwardRefValIDs.erase(NumberedVals.size());
2500 NumberedVals.push_back(BB);
2501 } else {
2502 // BB forward references are already in the function symbol table.
2503 ForwardRefVals.erase(Name);
2504 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002505
Chris Lattnerac161bf2009-01-02 07:01:27 +00002506 return BB;
2507}
2508
2509//===----------------------------------------------------------------------===//
2510// Constants.
2511//===----------------------------------------------------------------------===//
2512
2513/// ParseValID - Parse an abstract value that doesn't necessarily have a
2514/// type implied. For example, if we parse "4" we don't know what integer type
2515/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002516/// sanity. PFS is used to convert function-local operands of metadata (since
2517/// metadata operands are not just parsed here but also converted to values).
2518/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002519bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002520 ID.Loc = Lex.getLoc();
2521 switch (Lex.getKind()) {
2522 default: return TokError("expected value token");
2523 case lltok::GlobalID: // @42
2524 ID.UIntVal = Lex.getUIntVal();
2525 ID.Kind = ValID::t_GlobalID;
2526 break;
2527 case lltok::GlobalVar: // @foo
2528 ID.StrVal = Lex.getStrVal();
2529 ID.Kind = ValID::t_GlobalName;
2530 break;
2531 case lltok::LocalVarID: // %42
2532 ID.UIntVal = Lex.getUIntVal();
2533 ID.Kind = ValID::t_LocalID;
2534 break;
2535 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002536 ID.StrVal = Lex.getStrVal();
2537 ID.Kind = ValID::t_LocalName;
2538 break;
2539 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002540 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002541 ID.Kind = ValID::t_APSInt;
2542 break;
2543 case lltok::APFloat:
2544 ID.APFloatVal = Lex.getAPFloatVal();
2545 ID.Kind = ValID::t_APFloat;
2546 break;
2547 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002548 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002549 ID.Kind = ValID::t_Constant;
2550 break;
2551 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002552 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002553 ID.Kind = ValID::t_Constant;
2554 break;
2555 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2556 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2557 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002558
Chris Lattnerac161bf2009-01-02 07:01:27 +00002559 case lltok::lbrace: {
2560 // ValID ::= '{' ConstVector '}'
2561 Lex.Lex();
2562 SmallVector<Constant*, 16> Elts;
2563 if (ParseGlobalValueVector(Elts) ||
2564 ParseToken(lltok::rbrace, "expected end of struct constant"))
2565 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002566
David Blaikieadbda4b2015-08-03 20:08:41 +00002567 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002568 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002569 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2570 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002571 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002572 return false;
2573 }
2574 case lltok::less: {
2575 // ValID ::= '<' ConstVector '>' --> Vector.
2576 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2577 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002578 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002579
Chris Lattnerac161bf2009-01-02 07:01:27 +00002580 SmallVector<Constant*, 16> Elts;
2581 LocTy FirstEltLoc = Lex.getLoc();
2582 if (ParseGlobalValueVector(Elts) ||
2583 (isPackedStruct &&
2584 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2585 ParseToken(lltok::greater, "expected end of constant"))
2586 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002587
Chris Lattnerac161bf2009-01-02 07:01:27 +00002588 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002589 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2590 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2591 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002592 ID.UIntVal = Elts.size();
2593 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002594 return false;
2595 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002596
Chris Lattnerac161bf2009-01-02 07:01:27 +00002597 if (Elts.empty())
2598 return Error(ID.Loc, "constant vector must not be empty");
2599
Duncan Sands9dff9be2010-02-15 16:12:20 +00002600 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002601 !Elts[0]->getType()->isFloatingPointTy() &&
2602 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002603 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002604 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002605
Chris Lattnerac161bf2009-01-02 07:01:27 +00002606 // Verify that all the vector elements have the same type.
2607 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2608 if (Elts[i]->getType() != Elts[0]->getType())
2609 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002610 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002611 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002612
Chris Lattner69229312011-02-15 00:14:00 +00002613 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002614 ID.Kind = ValID::t_Constant;
2615 return false;
2616 }
2617 case lltok::lsquare: { // Array Constant
2618 Lex.Lex();
2619 SmallVector<Constant*, 16> Elts;
2620 LocTy FirstEltLoc = Lex.getLoc();
2621 if (ParseGlobalValueVector(Elts) ||
2622 ParseToken(lltok::rsquare, "expected end of array constant"))
2623 return true;
2624
2625 // Handle empty element.
2626 if (Elts.empty()) {
2627 // Use undef instead of an array because it's inconvenient to determine
2628 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002629 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002630 return false;
2631 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002632
Chris Lattnerac161bf2009-01-02 07:01:27 +00002633 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002634 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002635 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002636
Owen Anderson4056ca92009-07-29 22:17:13 +00002637 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002638
Chris Lattnerac161bf2009-01-02 07:01:27 +00002639 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002640 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002641 if (Elts[i]->getType() != Elts[0]->getType())
2642 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002643 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002644 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002645 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002646
Jay Foad83be3612011-06-22 09:24:39 +00002647 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002648 ID.Kind = ValID::t_Constant;
2649 return false;
2650 }
2651 case lltok::kw_c: // c "foo"
2652 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002653 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2654 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002655 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2656 ID.Kind = ValID::t_Constant;
2657 return false;
2658
2659 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002660 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2661 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002662 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002663 Lex.Lex();
2664 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002665 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002666 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002667 ParseStringConstant(ID.StrVal) ||
2668 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002669 ParseToken(lltok::StringConstant, "expected constraint string"))
2670 return true;
2671 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002672 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002673 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002674 ID.Kind = ValID::t_InlineAsm;
2675 return false;
2676 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002677
Chris Lattner3432c622009-10-28 03:39:23 +00002678 case lltok::kw_blockaddress: {
2679 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2680 Lex.Lex();
2681
2682 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002683
Chris Lattner3432c622009-10-28 03:39:23 +00002684 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2685 ParseValID(Fn) ||
2686 ParseToken(lltok::comma, "expected comma in block address expression")||
2687 ParseValID(Label) ||
2688 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2689 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002690
Chris Lattner3432c622009-10-28 03:39:23 +00002691 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2692 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002693 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002694 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002695
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002696 // Try to find the function (but skip it if it's forward-referenced).
2697 GlobalValue *GV = nullptr;
2698 if (Fn.Kind == ValID::t_GlobalID) {
2699 if (Fn.UIntVal < NumberedVals.size())
2700 GV = NumberedVals[Fn.UIntVal];
2701 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2702 GV = M->getNamedValue(Fn.StrVal);
2703 }
2704 Function *F = nullptr;
2705 if (GV) {
2706 // Confirm that it's actually a function with a definition.
2707 if (!isa<Function>(GV))
2708 return Error(Fn.Loc, "expected function name in blockaddress");
2709 F = cast<Function>(GV);
2710 if (F->isDeclaration())
2711 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2712 }
2713
2714 if (!F) {
2715 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002716 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002717 ForwardRefBlockAddresses.insert(std::make_pair(
2718 std::move(Fn),
2719 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002720 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2721 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002722 if (!FwdRef)
2723 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2724 GlobalValue::InternalLinkage, nullptr, "");
2725 ID.ConstantVal = FwdRef;
2726 ID.Kind = ValID::t_Constant;
2727 return false;
2728 }
2729
2730 // We found the function; now find the basic block. Don't use PFS, since we
2731 // might be inside a constant expression.
2732 BasicBlock *BB;
2733 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2734 if (Label.Kind == ValID::t_LocalID)
2735 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2736 else
2737 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2738 if (!BB)
2739 return Error(Label.Loc, "referenced value is not a basic block");
2740 } else {
2741 if (Label.Kind == ValID::t_LocalID)
2742 return Error(Label.Loc, "cannot take address of numeric label after "
2743 "the function is defined");
2744 BB = dyn_cast_or_null<BasicBlock>(
2745 F->getValueSymbolTable().lookup(Label.StrVal));
2746 if (!BB)
2747 return Error(Label.Loc, "referenced value is not a basic block");
2748 }
2749
2750 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002751 ID.Kind = ValID::t_Constant;
2752 return false;
2753 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002754
Chris Lattnerac161bf2009-01-02 07:01:27 +00002755 case lltok::kw_trunc:
2756 case lltok::kw_zext:
2757 case lltok::kw_sext:
2758 case lltok::kw_fptrunc:
2759 case lltok::kw_fpext:
2760 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002761 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002762 case lltok::kw_uitofp:
2763 case lltok::kw_sitofp:
2764 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002765 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002766 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002767 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002768 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002769 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002770 Constant *SrcVal;
2771 Lex.Lex();
2772 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2773 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002774 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002775 ParseType(DestTy) ||
2776 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2777 return true;
2778 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2779 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002780 getTypeString(SrcVal->getType()) + "' to '" +
2781 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002782 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002783 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002784 ID.Kind = ValID::t_Constant;
2785 return false;
2786 }
2787 case lltok::kw_extractvalue: {
2788 Lex.Lex();
2789 Constant *Val;
2790 SmallVector<unsigned, 4> Indices;
2791 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2792 ParseGlobalTypeAndValue(Val) ||
2793 ParseIndexList(Indices) ||
2794 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2795 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002796
Chris Lattner392be582010-02-12 20:49:41 +00002797 if (!Val->getType()->isAggregateType())
2798 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002799 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002800 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002801 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002802 ID.Kind = ValID::t_Constant;
2803 return false;
2804 }
2805 case lltok::kw_insertvalue: {
2806 Lex.Lex();
2807 Constant *Val0, *Val1;
2808 SmallVector<unsigned, 4> Indices;
2809 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2810 ParseGlobalTypeAndValue(Val0) ||
2811 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2812 ParseGlobalTypeAndValue(Val1) ||
2813 ParseIndexList(Indices) ||
2814 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2815 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002816 if (!Val0->getType()->isAggregateType())
2817 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002818 Type *IndexedType =
2819 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2820 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002821 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002822 if (IndexedType != Val1->getType())
2823 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2824 getTypeString(Val1->getType()) +
2825 "' instead of '" + getTypeString(IndexedType) +
2826 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002827 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002828 ID.Kind = ValID::t_Constant;
2829 return false;
2830 }
2831 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002832 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002833 unsigned PredVal, Opc = Lex.getUIntVal();
2834 Constant *Val0, *Val1;
2835 Lex.Lex();
2836 if (ParseCmpPredicate(PredVal, Opc) ||
2837 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2838 ParseGlobalTypeAndValue(Val0) ||
2839 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2840 ParseGlobalTypeAndValue(Val1) ||
2841 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2842 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002843
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 if (Val0->getType() != Val1->getType())
2845 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002846
Chris Lattnerac161bf2009-01-02 07:01:27 +00002847 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002848
Chris Lattnerac161bf2009-01-02 07:01:27 +00002849 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002850 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002851 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002852 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002853 } else {
2854 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002855 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002856 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002857 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002858 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002859 }
2860 ID.Kind = ValID::t_Constant;
2861 return false;
2862 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002863
Chris Lattnerac161bf2009-01-02 07:01:27 +00002864 // Binary Operators.
2865 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002866 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002867 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002868 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002869 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002870 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002871 case lltok::kw_udiv:
2872 case lltok::kw_sdiv:
2873 case lltok::kw_fdiv:
2874 case lltok::kw_urem:
2875 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002876 case lltok::kw_frem:
2877 case lltok::kw_shl:
2878 case lltok::kw_lshr:
2879 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002880 bool NUW = false;
2881 bool NSW = false;
2882 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002883 unsigned Opc = Lex.getUIntVal();
2884 Constant *Val0, *Val1;
2885 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002886 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002887 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2888 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002889 if (EatIfPresent(lltok::kw_nuw))
2890 NUW = true;
2891 if (EatIfPresent(lltok::kw_nsw)) {
2892 NSW = true;
2893 if (EatIfPresent(lltok::kw_nuw))
2894 NUW = true;
2895 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002896 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2897 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002898 if (EatIfPresent(lltok::kw_exact))
2899 Exact = true;
2900 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002901 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2902 ParseGlobalTypeAndValue(Val0) ||
2903 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2904 ParseGlobalTypeAndValue(Val1) ||
2905 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2906 return true;
2907 if (Val0->getType() != Val1->getType())
2908 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002909 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002910 if (NUW)
2911 return Error(ModifierLoc, "nuw only applies to integer operations");
2912 if (NSW)
2913 return Error(ModifierLoc, "nsw only applies to integer operations");
2914 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002915 // Check that the type is valid for the operator.
2916 switch (Opc) {
2917 case Instruction::Add:
2918 case Instruction::Sub:
2919 case Instruction::Mul:
2920 case Instruction::UDiv:
2921 case Instruction::SDiv:
2922 case Instruction::URem:
2923 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002924 case Instruction::Shl:
2925 case Instruction::AShr:
2926 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002927 if (!Val0->getType()->isIntOrIntVectorTy())
2928 return Error(ID.Loc, "constexpr requires integer operands");
2929 break;
2930 case Instruction::FAdd:
2931 case Instruction::FSub:
2932 case Instruction::FMul:
2933 case Instruction::FDiv:
2934 case Instruction::FRem:
2935 if (!Val0->getType()->isFPOrFPVectorTy())
2936 return Error(ID.Loc, "constexpr requires fp operands");
2937 break;
2938 default: llvm_unreachable("Unknown binary operator!");
2939 }
Dan Gohman1b849082009-09-07 23:54:19 +00002940 unsigned Flags = 0;
2941 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2942 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002943 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002944 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002945 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002946 ID.Kind = ValID::t_Constant;
2947 return false;
2948 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002949
Chris Lattnerac161bf2009-01-02 07:01:27 +00002950 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002951 case lltok::kw_and:
2952 case lltok::kw_or:
2953 case lltok::kw_xor: {
2954 unsigned Opc = Lex.getUIntVal();
2955 Constant *Val0, *Val1;
2956 Lex.Lex();
2957 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2958 ParseGlobalTypeAndValue(Val0) ||
2959 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2960 ParseGlobalTypeAndValue(Val1) ||
2961 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2962 return true;
2963 if (Val0->getType() != Val1->getType())
2964 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002965 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002966 return Error(ID.Loc,
2967 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002968 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002969 ID.Kind = ValID::t_Constant;
2970 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002971 }
2972
Chris Lattnerac161bf2009-01-02 07:01:27 +00002973 case lltok::kw_getelementptr:
2974 case lltok::kw_shufflevector:
2975 case lltok::kw_insertelement:
2976 case lltok::kw_extractelement:
2977 case lltok::kw_select: {
2978 unsigned Opc = Lex.getUIntVal();
2979 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002980 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00002981 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002982 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00002983
Dan Gohman1639c392009-07-27 21:53:46 +00002984 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002985 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00002986
2987 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2988 return true;
2989
2990 LocTy ExplicitTypeLoc = Lex.getLoc();
2991 if (Opc == Instruction::GetElementPtr) {
2992 if (ParseType(Ty) ||
2993 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2994 return true;
2995 }
2996
2997 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002998 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2999 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003000
Chris Lattnerac161bf2009-01-02 07:01:27 +00003001 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003002 if (Elts.size() == 0 ||
3003 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003004 return Error(ID.Loc, "base of getelementptr must be a pointer");
3005
3006 Type *BaseType = Elts[0]->getType();
3007 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003008 if (Ty != BasePointerType->getElementType())
3009 return Error(
3010 ExplicitTypeLoc,
3011 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003012
Jay Foaded8db7d2011-07-21 14:31:17 +00003013 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003014 for (Constant *Val : Indices) {
3015 Type *ValTy = Val->getType();
3016 if (!ValTy->getScalarType()->isIntegerTy())
3017 return Error(ID.Loc, "getelementptr index must be an integer");
3018 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3019 return Error(ID.Loc, "getelementptr index type missmatch");
3020 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003021 unsigned ValNumEl = ValTy->getVectorNumElements();
3022 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003023 if (ValNumEl != PtrNumEl)
3024 return Error(
3025 ID.Loc,
3026 "getelementptr vector index has a wrong number of elements");
3027 }
3028 }
3029
Craig Toppere3dcce92015-08-01 22:20:21 +00003030 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003031 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003032 return Error(ID.Loc, "base element of getelementptr must be sized");
3033
David Blaikie4a2e73b2015-04-02 18:55:32 +00003034 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003035 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00003036 ID.ConstantVal =
3037 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003038 } else if (Opc == Instruction::Select) {
3039 if (Elts.size() != 3)
3040 return Error(ID.Loc, "expected three operands to select");
3041 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3042 Elts[2]))
3043 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003044 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003045 } else if (Opc == Instruction::ShuffleVector) {
3046 if (Elts.size() != 3)
3047 return Error(ID.Loc, "expected three operands to shufflevector");
3048 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3049 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003050 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003051 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003052 } else if (Opc == Instruction::ExtractElement) {
3053 if (Elts.size() != 2)
3054 return Error(ID.Loc, "expected two operands to extractelement");
3055 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3056 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003057 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003058 } else {
3059 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3060 if (Elts.size() != 3)
3061 return Error(ID.Loc, "expected three operands to insertelement");
3062 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3063 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003064 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003065 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003066 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003067
Chris Lattnerac161bf2009-01-02 07:01:27 +00003068 ID.Kind = ValID::t_Constant;
3069 return false;
3070 }
3071 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003072
Chris Lattnerac161bf2009-01-02 07:01:27 +00003073 Lex.Lex();
3074 return false;
3075}
3076
3077/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003078bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003079 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003080 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003081 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003082 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003083 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003084 if (V && !(C = dyn_cast<Constant>(V)))
3085 return Error(ID.Loc, "global values must be constants");
3086 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003087}
3088
Victor Hernandez9d75c962010-01-11 22:31:58 +00003089bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003090 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003091 return ParseType(Ty) ||
3092 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003093}
3094
Rafael Espindola83a362c2015-01-06 22:55:16 +00003095bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003096 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003097
3098 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003099 if (!EatIfPresent(lltok::kw_comdat))
3100 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003101
3102 if (EatIfPresent(lltok::lparen)) {
3103 if (Lex.getKind() != lltok::ComdatVar)
3104 return TokError("expected comdat variable");
3105 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3106 Lex.Lex();
3107 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3108 return true;
3109 } else {
3110 if (GlobalName.empty())
3111 return TokError("comdat cannot be unnamed");
3112 C = getComdat(GlobalName, KwLoc);
3113 }
3114
David Majnemerdad0a642014-06-27 18:19:56 +00003115 return false;
3116}
3117
Victor Hernandez9d75c962010-01-11 22:31:58 +00003118/// ParseGlobalValueVector
3119/// ::= /*empty*/
3120/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003121bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003122 // Empty list.
3123 if (Lex.getKind() == lltok::rbrace ||
3124 Lex.getKind() == lltok::rsquare ||
3125 Lex.getKind() == lltok::greater ||
3126 Lex.getKind() == lltok::rparen)
3127 return false;
3128
3129 Constant *C;
3130 if (ParseGlobalTypeAndValue(C)) return true;
3131 Elts.push_back(C);
3132
3133 while (EatIfPresent(lltok::comma)) {
3134 if (ParseGlobalTypeAndValue(C)) return true;
3135 Elts.push_back(C);
3136 }
3137
3138 return false;
3139}
3140
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003141bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003142 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003143 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003144 return true;
3145
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003146 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003147 return false;
3148}
3149
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003150/// MDNode:
3151/// ::= !{ ... }
3152/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003153/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003154bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003155 if (Lex.getKind() == lltok::MetadataVar)
3156 return ParseSpecializedMDNode(N);
3157
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003158 return ParseToken(lltok::exclaim, "expected '!' here") ||
3159 ParseMDNodeTail(N);
3160}
3161
3162bool LLParser::ParseMDNodeTail(MDNode *&N) {
3163 // !{ ... }
3164 if (Lex.getKind() == lltok::lbrace)
3165 return ParseMDTuple(N);
3166
3167 // !42
3168 return ParseMDNodeID(N);
3169}
3170
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003171namespace {
3172
3173/// Structure to represent an optional metadata field.
3174template <class FieldTy> struct MDFieldImpl {
3175 typedef MDFieldImpl ImplTy;
3176 FieldTy Val;
3177 bool Seen;
3178
3179 void assign(FieldTy Val) {
3180 Seen = true;
3181 this->Val = std::move(Val);
3182 }
3183
3184 explicit MDFieldImpl(FieldTy Default)
3185 : Val(std::move(Default)), Seen(false) {}
3186};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003187
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003188struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3189 uint64_t Max;
3190
3191 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3192 : ImplTy(Default), Max(Max) {}
3193};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003194struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003195 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003196};
3197struct ColumnField : public MDUnsignedField {
3198 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3199};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003200struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003201 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003202 DwarfTagField(dwarf::Tag DefaultTag)
3203 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003204};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003205struct DwarfAttEncodingField : public MDUnsignedField {
3206 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3207};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003208struct DwarfVirtualityField : public MDUnsignedField {
3209 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3210};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003211struct DwarfLangField : public MDUnsignedField {
3212 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3213};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003214
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003215struct DIFlagField : public MDUnsignedField {
3216 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3217};
3218
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003219struct MDSignedField : public MDFieldImpl<int64_t> {
3220 int64_t Min;
3221 int64_t Max;
3222
3223 MDSignedField(int64_t Default = 0)
3224 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3225 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3226 : ImplTy(Default), Min(Min), Max(Max) {}
3227};
3228
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003229struct MDBoolField : public MDFieldImpl<bool> {
3230 MDBoolField(bool Default = false) : ImplTy(Default) {}
3231};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003232struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003233 bool AllowNull;
3234
3235 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003236};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003237struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3238 MDConstant() : ImplTy(nullptr) {}
3239};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003240struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003241 bool AllowEmpty;
3242 MDStringField(bool AllowEmpty = true)
3243 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003244};
3245struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3246 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3247};
3248
3249} // end namespace
3250
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003251namespace llvm {
3252
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003253template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003254bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003255 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003256 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3257 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003258
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003259 auto &U = Lex.getAPSIntVal();
3260 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003261 return TokError("value for '" + Name + "' too large, limit is " +
3262 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003263 Result.assign(U.getZExtValue());
3264 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003265 Lex.Lex();
3266 return false;
3267}
3268
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003269template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003270bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3271 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3272}
3273template <>
3274bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3275 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3276}
3277
3278template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003279bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3280 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003281 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003282
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003283 if (Lex.getKind() != lltok::DwarfTag)
3284 return TokError("expected DWARF tag");
3285
3286 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3287 if (Tag == dwarf::DW_TAG_invalid)
3288 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003289 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003290
3291 Result.assign(Tag);
3292 Lex.Lex();
3293 return false;
3294}
3295
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003296template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003297bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3298 DwarfVirtualityField &Result) {
3299 if (Lex.getKind() == lltok::APSInt)
3300 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3301
3302 if (Lex.getKind() != lltok::DwarfVirtuality)
3303 return TokError("expected DWARF virtuality code");
3304
3305 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3306 if (!Virtuality)
3307 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3308 Lex.getStrVal() + "'");
3309 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3310 Result.assign(Virtuality);
3311 Lex.Lex();
3312 return false;
3313}
3314
3315template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003316bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3317 if (Lex.getKind() == lltok::APSInt)
3318 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3319
3320 if (Lex.getKind() != lltok::DwarfLang)
3321 return TokError("expected DWARF language");
3322
3323 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3324 if (!Lang)
3325 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3326 "'");
3327 assert(Lang <= Result.Max && "Expected valid DWARF language");
3328 Result.assign(Lang);
3329 Lex.Lex();
3330 return false;
3331}
3332
3333template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003334bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003335 DwarfAttEncodingField &Result) {
3336 if (Lex.getKind() == lltok::APSInt)
3337 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3338
3339 if (Lex.getKind() != lltok::DwarfAttEncoding)
3340 return TokError("expected DWARF type attribute encoding");
3341
3342 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3343 if (!Encoding)
3344 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3345 Lex.getStrVal() + "'");
3346 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3347 Result.assign(Encoding);
3348 Lex.Lex();
3349 return false;
3350}
3351
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003352/// DIFlagField
3353/// ::= uint32
3354/// ::= DIFlagVector
3355/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3356template <>
3357bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3358 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3359
3360 // Parser for a single flag.
3361 auto parseFlag = [&](unsigned &Val) {
3362 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3363 return ParseUInt32(Val);
3364
3365 if (Lex.getKind() != lltok::DIFlag)
3366 return TokError("expected debug info flag");
3367
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003368 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003369 if (!Val)
3370 return TokError(Twine("invalid debug info flag flag '") +
3371 Lex.getStrVal() + "'");
3372 Lex.Lex();
3373 return false;
3374 };
3375
3376 // Parse the flags and combine them together.
3377 unsigned Combined = 0;
3378 do {
3379 unsigned Val;
3380 if (parseFlag(Val))
3381 return true;
3382 Combined |= Val;
3383 } while (EatIfPresent(lltok::bar));
3384
3385 Result.assign(Combined);
3386 return false;
3387}
3388
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003389template <>
3390bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003391 MDSignedField &Result) {
3392 if (Lex.getKind() != lltok::APSInt)
3393 return TokError("expected signed integer");
3394
3395 auto &S = Lex.getAPSIntVal();
3396 if (S < Result.Min)
3397 return TokError("value for '" + Name + "' too small, limit is " +
3398 Twine(Result.Min));
3399 if (S > Result.Max)
3400 return TokError("value for '" + Name + "' too large, limit is " +
3401 Twine(Result.Max));
3402 Result.assign(S.getExtValue());
3403 assert(Result.Val >= Result.Min && "Expected value in range");
3404 assert(Result.Val <= Result.Max && "Expected value in range");
3405 Lex.Lex();
3406 return false;
3407}
3408
3409template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003410bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3411 switch (Lex.getKind()) {
3412 default:
3413 return TokError("expected 'true' or 'false'");
3414 case lltok::kw_true:
3415 Result.assign(true);
3416 break;
3417 case lltok::kw_false:
3418 Result.assign(false);
3419 break;
3420 }
3421 Lex.Lex();
3422 return false;
3423}
3424
3425template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003426bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003427 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003428 if (!Result.AllowNull)
3429 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003430 Lex.Lex();
3431 Result.assign(nullptr);
3432 return false;
3433 }
3434
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003435 Metadata *MD;
3436 if (ParseMetadata(MD, nullptr))
3437 return true;
3438
3439 Result.assign(MD);
3440 return false;
3441}
3442
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003443template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003444bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3445 Metadata *MD;
3446 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3447 return true;
3448
3449 Result.assign(cast<ConstantAsMetadata>(MD));
3450 return false;
3451}
3452
3453template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003454bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003455 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003456 std::string S;
3457 if (ParseStringConstant(S))
3458 return true;
3459
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003460 if (!Result.AllowEmpty && S.empty())
3461 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3462
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003463 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003464 return false;
3465}
3466
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003467template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003468bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3469 SmallVector<Metadata *, 4> MDs;
3470 if (ParseMDNodeVector(MDs))
3471 return true;
3472
3473 Result.assign(std::move(MDs));
3474 return false;
3475}
3476
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003477} // end namespace llvm
3478
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003479template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003480bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003481 do {
3482 if (Lex.getKind() != lltok::LabelStr)
3483 return TokError("expected field label here");
3484
3485 if (parseField())
3486 return true;
3487 } while (EatIfPresent(lltok::comma));
3488
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003489 return false;
3490}
3491
3492template <class ParserTy>
3493bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3494 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3495 Lex.Lex();
3496
3497 if (ParseToken(lltok::lparen, "expected '(' here"))
3498 return true;
3499 if (Lex.getKind() != lltok::rparen)
3500 if (ParseMDFieldsImplBody(parseField))
3501 return true;
3502
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003503 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003504 return ParseToken(lltok::rparen, "expected ')' here");
3505}
3506
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003507template <class FieldTy>
3508bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3509 if (Result.Seen)
3510 return TokError("field '" + Name + "' cannot be specified more than once");
3511
3512 LocTy Loc = Lex.getLoc();
3513 Lex.Lex();
3514 return ParseMDField(Loc, Name, Result);
3515}
3516
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003517bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3518 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003519
3520#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003521 if (Lex.getStrVal() == #CLASS) \
3522 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003523#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003524
3525 return TokError("expected metadata type");
3526}
3527
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003528#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3529#define NOP_FIELD(NAME, TYPE, INIT)
3530#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3531 if (!NAME.Seen) \
3532 return Error(ClosingLoc, "missing required field '" #NAME "'");
3533#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003534 if (Lex.getStrVal() == #NAME) \
3535 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003536#define PARSE_MD_FIELDS() \
3537 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3538 do { \
3539 LocTy ClosingLoc; \
3540 if (ParseMDFieldsImpl([&]() -> bool { \
3541 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3542 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3543 }, ClosingLoc)) \
3544 return true; \
3545 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3546 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003547#define GET_OR_DISTINCT(CLASS, ARGS) \
3548 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003549
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003550/// ParseDILocationFields:
3551/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3552bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003553#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003554 OPTIONAL(line, LineField, ); \
3555 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003556 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003557 OPTIONAL(inlinedAt, MDField, );
3558 PARSE_MD_FIELDS();
3559#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003560
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003561 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003562 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003563 return false;
3564}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003565
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003566/// ParseGenericDINode:
3567/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3568bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003569#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003570 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003571 OPTIONAL(header, MDStringField, ); \
3572 OPTIONAL(operands, MDFieldList, );
3573 PARSE_MD_FIELDS();
3574#undef VISIT_MD_FIELDS
3575
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003576 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003577 (Context, tag.Val, header.Val, operands.Val));
3578 return false;
3579}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003580
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003581/// ParseDISubrange:
3582/// ::= !DISubrange(count: 30, lowerBound: 2)
3583bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003584#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003585 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003586 OPTIONAL(lowerBound, MDSignedField, );
3587 PARSE_MD_FIELDS();
3588#undef VISIT_MD_FIELDS
3589
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003590 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003591 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003592}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003593
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003594/// ParseDIEnumerator:
3595/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3596bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003597#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003598 REQUIRED(name, MDStringField, ); \
3599 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003600 PARSE_MD_FIELDS();
3601#undef VISIT_MD_FIELDS
3602
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003603 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003604 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003605}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003606
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003607/// ParseDIBasicType:
3608/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3609bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003610#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003611 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003612 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003613 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3614 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003615 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003616 PARSE_MD_FIELDS();
3617#undef VISIT_MD_FIELDS
3618
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003619 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003620 align.Val, encoding.Val));
3621 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003622}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003623
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003624/// ParseDIDerivedType:
3625/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003626/// line: 7, scope: !1, baseType: !2, size: 32,
3627/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003628bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003629#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3630 REQUIRED(tag, DwarfTagField, ); \
3631 OPTIONAL(name, MDStringField, ); \
3632 OPTIONAL(file, MDField, ); \
3633 OPTIONAL(line, LineField, ); \
3634 OPTIONAL(scope, MDField, ); \
3635 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003636 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3637 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3638 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003639 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003640 OPTIONAL(extraData, MDField, );
3641 PARSE_MD_FIELDS();
3642#undef VISIT_MD_FIELDS
3643
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003644 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003645 (Context, tag.Val, name.Val, file.Val, line.Val,
3646 scope.Val, baseType.Val, size.Val, align.Val,
3647 offset.Val, flags.Val, extraData.Val));
3648 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003649}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003650
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003651bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003652#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3653 REQUIRED(tag, DwarfTagField, ); \
3654 OPTIONAL(name, MDStringField, ); \
3655 OPTIONAL(file, MDField, ); \
3656 OPTIONAL(line, LineField, ); \
3657 OPTIONAL(scope, MDField, ); \
3658 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003659 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3660 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3661 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003662 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003663 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003664 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003665 OPTIONAL(vtableHolder, MDField, ); \
3666 OPTIONAL(templateParams, MDField, ); \
3667 OPTIONAL(identifier, MDStringField, );
3668 PARSE_MD_FIELDS();
3669#undef VISIT_MD_FIELDS
3670
3671 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003672 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003673 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3674 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3675 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3676 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003677}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003678
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003679bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003680#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003681 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003682 REQUIRED(types, MDField, );
3683 PARSE_MD_FIELDS();
3684#undef VISIT_MD_FIELDS
3685
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003686 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003687 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003688}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003689
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003690/// ParseDIFileType:
3691/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3692bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003693#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3694 REQUIRED(filename, MDStringField, ); \
3695 REQUIRED(directory, MDStringField, );
3696 PARSE_MD_FIELDS();
3697#undef VISIT_MD_FIELDS
3698
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003699 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003700 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003701}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003702
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003703/// ParseDICompileUnit:
3704/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003705/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3706/// splitDebugFilename: "abc.debug", emissionKind: 1,
3707/// enums: !1, retainedTypes: !2, subprograms: !3,
Adrian Prantl1f599f92015-05-21 20:37:30 +00003708/// globals: !4, imports: !5, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003709bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003710 if (!IsDistinct)
3711 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3712
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003713#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3714 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003715 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003716 OPTIONAL(producer, MDStringField, ); \
3717 OPTIONAL(isOptimized, MDBoolField, ); \
3718 OPTIONAL(flags, MDStringField, ); \
3719 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3720 OPTIONAL(splitDebugFilename, MDStringField, ); \
3721 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3722 OPTIONAL(enums, MDField, ); \
3723 OPTIONAL(retainedTypes, MDField, ); \
3724 OPTIONAL(subprograms, MDField, ); \
3725 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003726 OPTIONAL(imports, MDField, ); \
3727 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003728 PARSE_MD_FIELDS();
3729#undef VISIT_MD_FIELDS
3730
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003731 Result = DICompileUnit::getDistinct(
3732 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3733 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3734 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003735 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003736}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003737
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003738/// ParseDISubprogram:
3739/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003740/// file: !1, line: 7, type: !2, isLocal: false,
3741/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003742/// virtuality: DW_VIRTUALTIY_pure_virtual,
3743/// virtualIndex: 10, flags: 11,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003744/// isOptimized: false, function: void ()* @_Z3foov,
3745/// templateParams: !4, declaration: !5, variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003746bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003747 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003748#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3749 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003750 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003751 OPTIONAL(linkageName, MDStringField, ); \
3752 OPTIONAL(file, MDField, ); \
3753 OPTIONAL(line, LineField, ); \
3754 OPTIONAL(type, MDField, ); \
3755 OPTIONAL(isLocal, MDBoolField, ); \
3756 OPTIONAL(isDefinition, MDBoolField, (true)); \
3757 OPTIONAL(scopeLine, LineField, ); \
3758 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003759 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003760 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003761 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003762 OPTIONAL(isOptimized, MDBoolField, ); \
3763 OPTIONAL(function, MDConstant, ); \
3764 OPTIONAL(templateParams, MDField, ); \
3765 OPTIONAL(declaration, MDField, ); \
3766 OPTIONAL(variables, MDField, );
3767 PARSE_MD_FIELDS();
3768#undef VISIT_MD_FIELDS
3769
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003770 if (isDefinition.Val && !IsDistinct)
3771 return Lex.Error(
3772 Loc,
3773 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3774
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003775 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003776 DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003777 line.Val, type.Val, isLocal.Val, isDefinition.Val,
3778 scopeLine.Val, containingType.Val, virtuality.Val,
3779 virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3780 templateParams.Val, declaration.Val, variables.Val));
3781 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003782}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003783
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003784/// ParseDILexicalBlock:
3785/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3786bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003787#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003788 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003789 OPTIONAL(file, MDField, ); \
3790 OPTIONAL(line, LineField, ); \
3791 OPTIONAL(column, ColumnField, );
3792 PARSE_MD_FIELDS();
3793#undef VISIT_MD_FIELDS
3794
3795 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003796 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003797 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003798}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003799
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003800/// ParseDILexicalBlockFile:
3801/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3802bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003803#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003804 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003805 OPTIONAL(file, MDField, ); \
3806 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3807 PARSE_MD_FIELDS();
3808#undef VISIT_MD_FIELDS
3809
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003810 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003811 (Context, scope.Val, file.Val, discriminator.Val));
3812 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003813}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003814
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003815/// ParseDINamespace:
3816/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3817bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003818#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3819 REQUIRED(scope, MDField, ); \
3820 OPTIONAL(file, MDField, ); \
3821 OPTIONAL(name, MDStringField, ); \
3822 OPTIONAL(line, LineField, );
3823 PARSE_MD_FIELDS();
3824#undef VISIT_MD_FIELDS
3825
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003826 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003827 (Context, scope.Val, file.Val, name.Val, line.Val));
3828 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003829}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003830
Adrian Prantlab1243f2015-06-29 23:03:47 +00003831/// ParseDIModule:
3832/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3833/// includePath: "/usr/include", isysroot: "/")
3834bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3835#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3836 REQUIRED(scope, MDField, ); \
3837 REQUIRED(name, MDStringField, ); \
3838 OPTIONAL(configMacros, MDStringField, ); \
3839 OPTIONAL(includePath, MDStringField, ); \
3840 OPTIONAL(isysroot, MDStringField, );
3841 PARSE_MD_FIELDS();
3842#undef VISIT_MD_FIELDS
3843
3844 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3845 configMacros.Val, includePath.Val, isysroot.Val));
3846 return false;
3847}
3848
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003849/// ParseDITemplateTypeParameter:
3850/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3851bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003852#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003853 OPTIONAL(name, MDStringField, ); \
3854 REQUIRED(type, MDField, );
3855 PARSE_MD_FIELDS();
3856#undef VISIT_MD_FIELDS
3857
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003858 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003859 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003860 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003861}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003862
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003863/// ParseDITemplateValueParameter:
3864/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003865/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003866bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003867#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003868 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003869 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003870 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003871 REQUIRED(value, MDField, );
3872 PARSE_MD_FIELDS();
3873#undef VISIT_MD_FIELDS
3874
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003875 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003876 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003877 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003878}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003879
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003880/// ParseDIGlobalVariable:
3881/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003882/// file: !1, line: 7, type: !2, isLocal: false,
3883/// isDefinition: true, variable: i32* @foo,
3884/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003885bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003886#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003887 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003888 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003889 OPTIONAL(linkageName, MDStringField, ); \
3890 OPTIONAL(file, MDField, ); \
3891 OPTIONAL(line, LineField, ); \
3892 OPTIONAL(type, MDField, ); \
3893 OPTIONAL(isLocal, MDBoolField, ); \
3894 OPTIONAL(isDefinition, MDBoolField, (true)); \
3895 OPTIONAL(variable, MDConstant, ); \
3896 OPTIONAL(declaration, MDField, );
3897 PARSE_MD_FIELDS();
3898#undef VISIT_MD_FIELDS
3899
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003900 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003901 (Context, scope.Val, name.Val, linkageName.Val,
3902 file.Val, line.Val, type.Val, isLocal.Val,
3903 isDefinition.Val, variable.Val, declaration.Val));
3904 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003905}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003906
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003907/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003908/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3909/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
3910/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003911/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003912bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003913#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003914 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003915 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003916 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003917 OPTIONAL(file, MDField, ); \
3918 OPTIONAL(line, LineField, ); \
3919 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003920 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003921 PARSE_MD_FIELDS();
3922#undef VISIT_MD_FIELDS
3923
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003924 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003925 (Context, scope.Val, name.Val, file.Val, line.Val,
3926 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003927 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003928}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003929
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003930/// ParseDIExpression:
3931/// ::= !DIExpression(0, 7, -1)
3932bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003933 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3934 Lex.Lex();
3935
3936 if (ParseToken(lltok::lparen, "expected '(' here"))
3937 return true;
3938
3939 SmallVector<uint64_t, 8> Elements;
3940 if (Lex.getKind() != lltok::rparen)
3941 do {
3942 if (Lex.getKind() == lltok::DwarfOp) {
3943 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3944 Lex.Lex();
3945 Elements.push_back(Op);
3946 continue;
3947 }
3948 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3949 }
3950
3951 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3952 return TokError("expected unsigned integer");
3953
3954 auto &U = Lex.getAPSIntVal();
3955 if (U.ugt(UINT64_MAX))
3956 return TokError("element too large, limit is " + Twine(UINT64_MAX));
3957 Elements.push_back(U.getZExtValue());
3958 Lex.Lex();
3959 } while (EatIfPresent(lltok::comma));
3960
3961 if (ParseToken(lltok::rparen, "expected ')' here"))
3962 return true;
3963
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003964 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003965 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003966}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003967
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003968/// ParseDIObjCProperty:
3969/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003970/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003971bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003972#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003973 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003974 OPTIONAL(file, MDField, ); \
3975 OPTIONAL(line, LineField, ); \
3976 OPTIONAL(setter, MDStringField, ); \
3977 OPTIONAL(getter, MDStringField, ); \
3978 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
3979 OPTIONAL(type, MDField, );
3980 PARSE_MD_FIELDS();
3981#undef VISIT_MD_FIELDS
3982
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003983 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003984 (Context, name.Val, file.Val, line.Val, setter.Val,
3985 getter.Val, attributes.Val, type.Val));
3986 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003987}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003988
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003989/// ParseDIImportedEntity:
3990/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003991/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003992bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00003993#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3994 REQUIRED(tag, DwarfTagField, ); \
3995 REQUIRED(scope, MDField, ); \
3996 OPTIONAL(entity, MDField, ); \
3997 OPTIONAL(line, LineField, ); \
3998 OPTIONAL(name, MDStringField, );
3999 PARSE_MD_FIELDS();
4000#undef VISIT_MD_FIELDS
4001
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004002 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004003 entity.Val, line.Val, name.Val));
4004 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004005}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004006
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004007#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004008#undef NOP_FIELD
4009#undef REQUIRE_FIELD
4010#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004011
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004012/// ParseMetadataAsValue
4013/// ::= metadata i32 %local
4014/// ::= metadata i32 @global
4015/// ::= metadata i32 7
4016/// ::= metadata !0
4017/// ::= metadata !{...}
4018/// ::= metadata !"string"
4019bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4020 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004021 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004022 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004023 return true;
4024
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004025 V = MetadataAsValue::get(Context, MD);
4026 return false;
4027}
4028
4029/// ParseValueAsMetadata
4030/// ::= i32 %local
4031/// ::= i32 @global
4032/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004033bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4034 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004035 Type *Ty;
4036 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004037 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004038 return true;
4039 if (Ty->isMetadataTy())
4040 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4041
4042 Value *V;
4043 if (ParseValue(Ty, V, PFS))
4044 return true;
4045
4046 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004047 return false;
4048}
4049
4050/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004051/// ::= i32 %local
4052/// ::= i32 @global
4053/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004054/// ::= !42
4055/// ::= !{...}
4056/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004057/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004058bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004059 if (Lex.getKind() == lltok::MetadataVar) {
4060 MDNode *N;
4061 if (ParseSpecializedMDNode(N))
4062 return true;
4063 MD = N;
4064 return false;
4065 }
4066
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004067 // ValueAsMetadata:
4068 // <type> <value>
4069 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004070 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004071
4072 // '!'.
4073 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4074 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004075
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004076 // MDString:
4077 // ::= '!' STRINGCONSTANT
4078 if (Lex.getKind() == lltok::StringConstant) {
4079 MDString *S;
4080 if (ParseMDString(S))
4081 return true;
4082 MD = S;
4083 return false;
4084 }
4085
Dan Gohman8939ba332010-07-14 18:26:50 +00004086 // MDNode:
4087 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004088 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004089 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004090 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004091 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004092 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004093 return false;
4094}
4095
Victor Hernandez9d75c962010-01-11 22:31:58 +00004096
4097//===----------------------------------------------------------------------===//
4098// Function Parsing.
4099//===----------------------------------------------------------------------===//
4100
Chris Lattner229907c2011-07-18 04:54:35 +00004101bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004102 PerFunctionState *PFS,
4103 OperatorConstraint OC) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004104 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004105 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004106
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004107 if (OC && ID.Kind != ValID::t_LocalID && ID.Kind != ValID::t_LocalName) {
4108 switch (OC) {
4109 case OC_CatchPad:
4110 return Error(ID.Loc, "Catchpad value required in this position");
4111 case OC_CleanupPad:
4112 return Error(ID.Loc, "Cleanuppad value required in this position");
4113 default:
4114 llvm_unreachable("Unexpected constraint kind");
4115 }
4116 }
4117
Chris Lattnerac161bf2009-01-02 07:01:27 +00004118 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004119 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004120 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004121 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc, OC);
Craig Topper2617dcc2014-04-15 06:32:26 +00004122 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004123 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004124 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004125 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc, OC);
Craig Topper2617dcc2014-04-15 06:32:26 +00004126 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004127 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004128 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004129 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004130 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4131 (ID.UIntVal >> 1) & 1,
4132 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004133 return false;
4134 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004135 case ValID::t_GlobalName:
4136 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004137 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004138 case ValID::t_GlobalID:
4139 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004140 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004141 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004142 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004143 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004144 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004145 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004146 return false;
4147 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004148 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004149 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4150 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004151
Dan Gohman518cda42011-12-17 00:04:22 +00004152 // The lexer has no type info, so builds all half, float, and double FP
4153 // constants as double. Fix this here. Long double does not need this.
4154 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004155 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004156 if (Ty->isHalfTy())
4157 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4158 &Ignored);
4159 else if (Ty->isFloatTy())
4160 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4161 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004162 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004163 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004164
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004165 if (V->getType() != Ty)
4166 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004167 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004168
Chris Lattnerac161bf2009-01-02 07:01:27 +00004169 return false;
4170 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004171 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004172 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004173 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004174 return false;
4175 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004176 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004177 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004178 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004179 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004180 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004181 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004182 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004183 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004184 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004185 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004186 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004187 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004188 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004189 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004190 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004191 return false;
4192 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004193 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004194 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004195
Chris Lattnerac161bf2009-01-02 07:01:27 +00004196 V = ID.ConstantVal;
4197 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004198 case ValID::t_ConstantStruct:
4199 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004200 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004201 if (ST->getNumElements() != ID.UIntVal)
4202 return Error(ID.Loc,
4203 "initializer with struct type has wrong # elements");
4204 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4205 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004206
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004207 // Verify that the elements are compatible with the structtype.
4208 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4209 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4210 return Error(ID.Loc, "element " + Twine(i) +
4211 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004212
David Blaikieadbda4b2015-08-03 20:08:41 +00004213 V = ConstantStruct::get(
4214 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004215 } else
4216 return Error(ID.Loc, "constant expression type mismatch");
4217 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004218 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004219 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004220}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004221
Alex Lorenzd2255952015-07-17 22:07:03 +00004222bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4223 C = nullptr;
4224 ValID ID;
4225 auto Loc = Lex.getLoc();
4226 if (ParseValID(ID, /*PFS=*/nullptr))
4227 return true;
4228 switch (ID.Kind) {
4229 case ValID::t_APSInt:
4230 case ValID::t_APFloat:
4231 case ValID::t_Constant:
4232 case ValID::t_ConstantStruct:
4233 case ValID::t_PackedConstantStruct: {
4234 Value *V;
4235 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4236 return true;
4237 assert(isa<Constant>(V) && "Expected a constant value");
4238 C = cast<Constant>(V);
4239 return false;
4240 }
4241 default:
4242 return Error(Loc, "expected a constant value");
4243 }
4244}
4245
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004246bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS,
4247 OperatorConstraint OC) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004248 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004249 ValID ID;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004250 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS, OC);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004251}
4252
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004253bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004254 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004255 return ParseType(Ty) ||
4256 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004257}
4258
Chris Lattner3ed871f2009-10-27 19:13:16 +00004259bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4260 PerFunctionState &PFS) {
4261 Value *V;
4262 Loc = Lex.getLoc();
4263 if (ParseTypeAndValue(V, PFS)) return true;
4264 if (!isa<BasicBlock>(V))
4265 return Error(Loc, "expected a basic block");
4266 BB = cast<BasicBlock>(V);
4267 return false;
4268}
4269
4270
Chris Lattnerac161bf2009-01-02 07:01:27 +00004271/// FunctionHeader
4272/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004273/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004274/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004275bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4276 // Parse the linkage.
4277 LocTy LinkageLoc = Lex.getLoc();
4278 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004279
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004280 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004281 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004282 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004283 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004284 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004285 LocTy RetTypeLoc = Lex.getLoc();
4286 if (ParseOptionalLinkage(Linkage) ||
4287 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004288 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004289 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004290 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004291 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004292 return true;
4293
4294 // Verify that the linkage is ok.
4295 switch ((GlobalValue::LinkageTypes)Linkage) {
4296 case GlobalValue::ExternalLinkage:
4297 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004298 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004299 if (isDefine)
4300 return Error(LinkageLoc, "invalid linkage for function definition");
4301 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004302 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004303 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004304 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004305 case GlobalValue::LinkOnceAnyLinkage:
4306 case GlobalValue::LinkOnceODRLinkage:
4307 case GlobalValue::WeakAnyLinkage:
4308 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004309 if (!isDefine)
4310 return Error(LinkageLoc, "invalid linkage for function declaration");
4311 break;
4312 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004313 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004314 return Error(LinkageLoc, "invalid function linkage type");
4315 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004316
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004317 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4318 return Error(LinkageLoc,
4319 "symbol with local linkage must have default visibility");
4320
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004321 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004322 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004323
Chris Lattnerac161bf2009-01-02 07:01:27 +00004324 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004325
4326 std::string FunctionName;
4327 if (Lex.getKind() == lltok::GlobalVar) {
4328 FunctionName = Lex.getStrVal();
4329 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4330 unsigned NameID = Lex.getUIntVal();
4331
4332 if (NameID != NumberedVals.size())
4333 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004334 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004335 } else {
4336 return TokError("expected function name");
4337 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004338
Chris Lattner3822f632009-01-02 08:05:26 +00004339 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004340
Chris Lattner3822f632009-01-02 08:05:26 +00004341 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004342 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004343
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004344 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004345 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004346 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004347 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004348 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004349 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004350 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004351 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004352 bool UnnamedAddr;
4353 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004354 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004355 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004356 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004357 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004358
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004359 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004360 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4361 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004362 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004363 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004364 (EatIfPresent(lltok::kw_section) &&
4365 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004366 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004367 ParseOptionalAlignment(Alignment) ||
4368 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004369 ParseStringConstant(GC)) ||
4370 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004371 ParseGlobalTypeAndValue(Prefix)) ||
4372 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004373 ParseGlobalTypeAndValue(Prologue)) ||
4374 (EatIfPresent(lltok::kw_personality) &&
4375 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004376 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004377
Michael Gottesman41748d72013-06-27 00:25:01 +00004378 if (FuncAttrs.contains(Attribute::Builtin))
4379 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004380
Chris Lattnerac161bf2009-01-02 07:01:27 +00004381 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004382 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004383 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004384 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004385 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004386
Chris Lattnerac161bf2009-01-02 07:01:27 +00004387 // Okay, if we got here, the function is syntactically valid. Convert types
4388 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004389 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004390 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004391
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004392 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004393 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4394 AttributeSet::ReturnIndex,
4395 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004396
Chris Lattnerac161bf2009-01-02 07:01:27 +00004397 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004398 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004399 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4400 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004401 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4402 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004403 }
4404
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004405 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004406 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4407 AttributeSet::FunctionIndex,
4408 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004409
Bill Wendlinge94d8432012-12-07 23:16:57 +00004410 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004411
Bill Wendling749a43d2012-12-30 13:50:49 +00004412 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004413 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4414
Chris Lattner229907c2011-07-18 04:54:35 +00004415 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004416 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004417 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004418
Craig Topper2617dcc2014-04-15 06:32:26 +00004419 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004420 if (!FunctionName.empty()) {
4421 // If this was a definition of a forward reference, remove the definition
4422 // from the forward reference table and fill in the forward ref.
4423 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4424 ForwardRefVals.find(FunctionName);
4425 if (FRVI != ForwardRefVals.end()) {
4426 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004427 if (!Fn)
4428 return Error(FRVI->second.second, "invalid forward reference to "
4429 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004430 if (Fn->getType() != PFT)
4431 return Error(FRVI->second.second, "invalid forward reference to "
4432 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004433
Chris Lattnerac161bf2009-01-02 07:01:27 +00004434 ForwardRefVals.erase(FRVI);
4435 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004436 // Reject redefinitions.
4437 return Error(NameLoc, "invalid redefinition of function '" +
4438 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004439 } else if (M->getNamedValue(FunctionName)) {
4440 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004441 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004442
Dan Gohman399d6ae2009-08-29 23:37:49 +00004443 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004444 // If this is a definition of a forward referenced function, make sure the
4445 // types agree.
4446 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4447 = ForwardRefValIDs.find(NumberedVals.size());
4448 if (I != ForwardRefValIDs.end()) {
4449 Fn = cast<Function>(I->second.first);
4450 if (Fn->getType() != PFT)
4451 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004452 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004453 ForwardRefValIDs.erase(I);
4454 }
4455 }
4456
Craig Topper2617dcc2014-04-15 06:32:26 +00004457 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004458 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4459 else // Move the forward-reference to the correct spot in the module.
4460 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4461
4462 if (FunctionName.empty())
4463 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004464
Chris Lattnerac161bf2009-01-02 07:01:27 +00004465 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4466 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004467 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004468 Fn->setCallingConv(CC);
4469 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004470 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004471 Fn->setAlignment(Alignment);
4472 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004473 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004474 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004475 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004476 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004477 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004478 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004479
Chris Lattnerac161bf2009-01-02 07:01:27 +00004480 // Add all of the arguments we parsed to the function.
4481 Function::arg_iterator ArgIt = Fn->arg_begin();
4482 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4483 // If the argument has a name, insert it into the argument symbol table.
4484 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004485
Chris Lattnerac161bf2009-01-02 07:01:27 +00004486 // Set the name, if it conflicted, it will be auto-renamed.
4487 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004488
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004489 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004490 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4491 ArgList[i].Name + "'");
4492 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004493
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004494 if (isDefine)
4495 return false;
4496
Robin Morisset039781e2014-08-29 21:53:01 +00004497 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004498 ValID ID;
4499 if (FunctionName.empty()) {
4500 ID.Kind = ValID::t_GlobalID;
4501 ID.UIntVal = NumberedVals.size() - 1;
4502 } else {
4503 ID.Kind = ValID::t_GlobalName;
4504 ID.StrVal = FunctionName;
4505 }
4506 auto Blocks = ForwardRefBlockAddresses.find(ID);
4507 if (Blocks != ForwardRefBlockAddresses.end())
4508 return Error(Blocks->first.Loc,
4509 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004510 return false;
4511}
4512
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004513bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4514 ValID ID;
4515 if (FunctionNumber == -1) {
4516 ID.Kind = ValID::t_GlobalName;
4517 ID.StrVal = F.getName();
4518 } else {
4519 ID.Kind = ValID::t_GlobalID;
4520 ID.UIntVal = FunctionNumber;
4521 }
4522
4523 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4524 if (Blocks == P.ForwardRefBlockAddresses.end())
4525 return false;
4526
4527 for (const auto &I : Blocks->second) {
4528 const ValID &BBID = I.first;
4529 GlobalValue *GV = I.second;
4530
4531 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4532 "Expected local id or name");
4533 BasicBlock *BB;
4534 if (BBID.Kind == ValID::t_LocalName)
4535 BB = GetBB(BBID.StrVal, BBID.Loc);
4536 else
4537 BB = GetBB(BBID.UIntVal, BBID.Loc);
4538 if (!BB)
4539 return P.Error(BBID.Loc, "referenced value is not a basic block");
4540
4541 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4542 GV->eraseFromParent();
4543 }
4544
4545 P.ForwardRefBlockAddresses.erase(Blocks);
4546 return false;
4547}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004548
4549/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004550/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004551bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004552 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004553 return TokError("expected '{' in function body");
4554 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004555
Chris Lattner3432c622009-10-28 03:39:23 +00004556 int FunctionNumber = -1;
4557 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004558
Chris Lattner3432c622009-10-28 03:39:23 +00004559 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004560
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004561 // Resolve block addresses and allow basic blocks to be forward-declared
4562 // within this function.
4563 if (PFS.resolveForwardRefBlockAddresses())
4564 return true;
4565 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4566
Chris Lattnerbbddd962010-01-09 19:20:07 +00004567 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004568 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004569 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004570
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004571 while (Lex.getKind() != lltok::rbrace &&
4572 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004573 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004574
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004575 while (Lex.getKind() != lltok::rbrace)
4576 if (ParseUseListOrder(&PFS))
4577 return true;
4578
Chris Lattnerac161bf2009-01-02 07:01:27 +00004579 // Eat the }.
4580 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004581
Chris Lattnerac161bf2009-01-02 07:01:27 +00004582 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004583 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004584}
4585
4586/// ParseBasicBlock
4587/// ::= LabelStr? Instruction*
4588bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4589 // If this basic block starts out with a name, remember it.
4590 std::string Name;
4591 LocTy NameLoc = Lex.getLoc();
4592 if (Lex.getKind() == lltok::LabelStr) {
4593 Name = Lex.getStrVal();
4594 Lex.Lex();
4595 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004596
Chris Lattnerac161bf2009-01-02 07:01:27 +00004597 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004598 if (!BB)
4599 return Error(NameLoc,
4600 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004601
Chris Lattnerac161bf2009-01-02 07:01:27 +00004602 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004603
Chris Lattnerac161bf2009-01-02 07:01:27 +00004604 // Parse the instructions in this block until we get a terminator.
4605 Instruction *Inst;
4606 do {
4607 // This instruction may have three possibilities for a name: a) none
4608 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4609 LocTy NameLoc = Lex.getLoc();
4610 int NameID = -1;
4611 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004612
Chris Lattnerac161bf2009-01-02 07:01:27 +00004613 if (Lex.getKind() == lltok::LocalVarID) {
4614 NameID = Lex.getUIntVal();
4615 Lex.Lex();
4616 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4617 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004618 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004619 NameStr = Lex.getStrVal();
4620 Lex.Lex();
4621 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4622 return true;
4623 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004624
Chris Lattner77b89dc2009-12-30 05:23:43 +00004625 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004626 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004627 case InstError: return true;
4628 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004629 BB->getInstList().push_back(Inst);
4630
Chris Lattner77b89dc2009-12-30 05:23:43 +00004631 // With a normal result, we check to see if the instruction is followed by
4632 // a comma and metadata.
4633 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004634 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004635 return true;
4636 break;
4637 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004638 BB->getInstList().push_back(Inst);
4639
Chris Lattner77b89dc2009-12-30 05:23:43 +00004640 // If the instruction parser ate an extra comma at the end of it, it
4641 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004642 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004643 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004644 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004645 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004646
Chris Lattnerac161bf2009-01-02 07:01:27 +00004647 // Set the name on the instruction.
4648 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4649 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004650
Chris Lattnerac161bf2009-01-02 07:01:27 +00004651 return false;
4652}
4653
4654//===----------------------------------------------------------------------===//
4655// Instruction Parsing.
4656//===----------------------------------------------------------------------===//
4657
4658/// ParseInstruction - Parse one of the many different instructions.
4659///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004660int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4661 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004662 lltok::Kind Token = Lex.getKind();
4663 if (Token == lltok::Eof)
4664 return TokError("found end of file when expecting more instructions");
4665 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004666 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004667 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004668
Chris Lattnerac161bf2009-01-02 07:01:27 +00004669 switch (Token) {
4670 default: return Error(Loc, "expected instruction opcode");
4671 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004672 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004673 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4674 case lltok::kw_br: return ParseBr(Inst, PFS);
4675 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004676 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004677 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004678 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004679 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4680 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
4681 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
4682 case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4683 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4684 case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00004685 case lltok::kw_cleanupendpad: return ParseCleanupEndPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004686 // Binary Operators.
4687 case lltok::kw_add:
4688 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004689 case lltok::kw_mul:
4690 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004691 bool NUW = EatIfPresent(lltok::kw_nuw);
4692 bool NSW = EatIfPresent(lltok::kw_nsw);
4693 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004694
Chris Lattnera676c0f2011-02-07 16:40:21 +00004695 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004696
Chris Lattnera676c0f2011-02-07 16:40:21 +00004697 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4698 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4699 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004700 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004701 case lltok::kw_fadd:
4702 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004703 case lltok::kw_fmul:
4704 case lltok::kw_fdiv:
4705 case lltok::kw_frem: {
4706 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4707 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4708 if (Res != 0)
4709 return Res;
4710 if (FMF.any())
4711 Inst->setFastMathFlags(FMF);
4712 return 0;
4713 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004714
Chris Lattner35315d02011-02-06 21:44:57 +00004715 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004716 case lltok::kw_udiv:
4717 case lltok::kw_lshr:
4718 case lltok::kw_ashr: {
4719 bool Exact = EatIfPresent(lltok::kw_exact);
4720
4721 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4722 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4723 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004724 }
4725
Chris Lattnerac161bf2009-01-02 07:01:27 +00004726 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004727 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004728 case lltok::kw_and:
4729 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004730 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004731 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4732 case lltok::kw_fcmp: {
4733 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4734 int Res = ParseCompare(Inst, PFS, KeywordVal);
4735 if (Res != 0)
4736 return Res;
4737 if (FMF.any())
4738 Inst->setFastMathFlags(FMF);
4739 return 0;
4740 }
4741
Chris Lattnerac161bf2009-01-02 07:01:27 +00004742 // Casts.
4743 case lltok::kw_trunc:
4744 case lltok::kw_zext:
4745 case lltok::kw_sext:
4746 case lltok::kw_fptrunc:
4747 case lltok::kw_fpext:
4748 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004749 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004750 case lltok::kw_uitofp:
4751 case lltok::kw_sitofp:
4752 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004753 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004754 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004755 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004756 // Other.
4757 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004758 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004759 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4760 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4761 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4762 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004763 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004764 // Call.
4765 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4766 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4767 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004768 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004769 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004770 case lltok::kw_load: return ParseLoad(Inst, PFS);
4771 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004772 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4773 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004774 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004775 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4776 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4777 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4778 }
4779}
4780
4781/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4782bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004783 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004784 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004785 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004786 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4787 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4788 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4789 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4790 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4791 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4792 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4793 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4794 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4795 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4796 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4797 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4798 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4799 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4800 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4801 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4802 }
4803 } else {
4804 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004805 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004806 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4807 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4808 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4809 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4810 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4811 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4812 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4813 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4814 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4815 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4816 }
4817 }
4818 Lex.Lex();
4819 return false;
4820}
4821
4822//===----------------------------------------------------------------------===//
4823// Terminator Instructions.
4824//===----------------------------------------------------------------------===//
4825
4826/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004827/// ::= 'ret' void (',' !dbg, !1)*
4828/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004829bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004830 PerFunctionState &PFS) {
4831 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004832 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004833 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004834
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004835 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004836
Chris Lattnerfdd87902009-10-05 05:54:46 +00004837 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004838 if (!ResType->isVoidTy())
4839 return Error(TypeLoc, "value doesn't match function result type '" +
4840 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004841
Owen Anderson55f1c092009-08-13 21:58:54 +00004842 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004843 return false;
4844 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004845
Chris Lattnerac161bf2009-01-02 07:01:27 +00004846 Value *RV;
4847 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004848
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004849 if (ResType != RV->getType())
4850 return Error(TypeLoc, "value doesn't match function result type '" +
4851 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004852
Owen Anderson55f1c092009-08-13 21:58:54 +00004853 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004854 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004855}
4856
4857
4858/// ParseBr
4859/// ::= 'br' TypeAndValue
4860/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4861bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4862 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004863 Value *Op0;
4864 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004865 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004866
Chris Lattnerac161bf2009-01-02 07:01:27 +00004867 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4868 Inst = BranchInst::Create(BB);
4869 return false;
4870 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004871
Owen Anderson55f1c092009-08-13 21:58:54 +00004872 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004873 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004874
Chris Lattnerac161bf2009-01-02 07:01:27 +00004875 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004876 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004877 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004878 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004879 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004880
Chris Lattner3ed871f2009-10-27 19:13:16 +00004881 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004882 return false;
4883}
4884
4885/// ParseSwitch
4886/// Instruction
4887/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4888/// JumpTable
4889/// ::= (TypeAndValue ',' TypeAndValue)*
4890bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4891 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004892 Value *Cond;
4893 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004894 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4895 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004896 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004897 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4898 return true;
4899
Duncan Sands19d0b472010-02-16 11:11:14 +00004900 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004901 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004902
Chris Lattnerac161bf2009-01-02 07:01:27 +00004903 // Parse the jump table pairs.
4904 SmallPtrSet<Value*, 32> SeenCases;
4905 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4906 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004907 Value *Constant;
4908 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004909
Chris Lattnerac161bf2009-01-02 07:01:27 +00004910 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4911 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004912 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004913 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004914
David Blaikie70573dc2014-11-19 07:49:26 +00004915 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004916 return Error(CondLoc, "duplicate case value in switch");
4917 if (!isa<ConstantInt>(Constant))
4918 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004919
Chris Lattner3ed871f2009-10-27 19:13:16 +00004920 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004921 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004922
Chris Lattnerac161bf2009-01-02 07:01:27 +00004923 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004924
Chris Lattner3ed871f2009-10-27 19:13:16 +00004925 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004926 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4927 SI->addCase(Table[i].first, Table[i].second);
4928 Inst = SI;
4929 return false;
4930}
4931
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004932/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00004933/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004934/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4935bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004936 LocTy AddrLoc;
4937 Value *Address;
4938 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004939 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4940 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00004941 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004942
Duncan Sands19d0b472010-02-16 11:11:14 +00004943 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004944 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004945
Chris Lattner3ed871f2009-10-27 19:13:16 +00004946 // Parse the destination list.
4947 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004948
Chris Lattner3ed871f2009-10-27 19:13:16 +00004949 if (Lex.getKind() != lltok::rsquare) {
4950 BasicBlock *DestBB;
4951 if (ParseTypeAndBasicBlock(DestBB, PFS))
4952 return true;
4953 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004954
Chris Lattner3ed871f2009-10-27 19:13:16 +00004955 while (EatIfPresent(lltok::comma)) {
4956 if (ParseTypeAndBasicBlock(DestBB, PFS))
4957 return true;
4958 DestList.push_back(DestBB);
4959 }
4960 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004961
Chris Lattner3ed871f2009-10-27 19:13:16 +00004962 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4963 return true;
4964
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004965 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00004966 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4967 IBI->addDestination(DestList[i]);
4968 Inst = IBI;
4969 return false;
4970}
4971
4972
Chris Lattnerac161bf2009-01-02 07:01:27 +00004973/// ParseInvoke
4974/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4975/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4976bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4977 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00004978 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004979 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00004980 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004981 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004982 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004983 LocTy RetTypeLoc;
4984 ValID CalleeID;
4985 SmallVector<ParamInfo, 16> ArgList;
4986
Chris Lattner3ed871f2009-10-27 19:13:16 +00004987 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004988 if (ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004989 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004990 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004991 ParseValID(CalleeID) ||
4992 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004993 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
4994 NoBuiltinLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004995 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004996 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004997 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004998 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004999 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005000
Chris Lattnerac161bf2009-01-02 07:01:27 +00005001 // If RetType is a non-function pointer type, then this is the short syntax
5002 // for the call, which means that RetType is just the return type. Infer the
5003 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005004 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5005 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005006 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005007 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005008 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5009 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005010
Chris Lattnerac161bf2009-01-02 07:01:27 +00005011 if (!FunctionType::isValidReturnType(RetType))
5012 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005013
Owen Anderson4056ca92009-07-29 22:17:13 +00005014 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005015 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005016
David Blaikie41ba2b42015-07-27 23:32:19 +00005017 CalleeID.FTy = Ty;
5018
Chris Lattnerac161bf2009-01-02 07:01:27 +00005019 // Look up the callee.
5020 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005021 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5022 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005023
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005024 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005025 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005026 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005027 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5028 AttributeSet::ReturnIndex,
5029 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005030
Chris Lattnerac161bf2009-01-02 07:01:27 +00005031 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005032
Chris Lattnerac161bf2009-01-02 07:01:27 +00005033 // Loop through FunctionType's arguments and ensure they are specified
5034 // correctly. Also, gather any parameter attributes.
5035 FunctionType::param_iterator I = Ty->param_begin();
5036 FunctionType::param_iterator E = Ty->param_end();
5037 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005038 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005039 if (I != E) {
5040 ExpectedTy = *I++;
5041 } else if (!Ty->isVarArg()) {
5042 return Error(ArgList[i].Loc, "too many arguments specified");
5043 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005044
Chris Lattnerac161bf2009-01-02 07:01:27 +00005045 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5046 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005047 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005048 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005049 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5050 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005051 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5052 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005053 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005054
Chris Lattnerac161bf2009-01-02 07:01:27 +00005055 if (I != E)
5056 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005057
David Majnemer8d22abd2015-02-23 00:01:32 +00005058 if (FnAttrs.hasAttributes()) {
5059 if (FnAttrs.hasAlignmentAttr())
5060 return Error(CallLoc, "invoke instructions may not have an alignment");
5061
Bill Wendlingf5075a42013-01-27 02:24:02 +00005062 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5063 AttributeSet::FunctionIndex,
5064 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005065 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005066
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005067 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005068 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005069
David Blaikie3e807092015-05-13 18:35:26 +00005070 InvokeInst *II = InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005071 II->setCallingConv(CC);
5072 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005073 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005074 Inst = II;
5075 return false;
5076}
5077
Bill Wendlingf891bf82011-07-31 06:30:59 +00005078/// ParseResume
5079/// ::= 'resume' TypeAndValue
5080bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5081 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005082 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5083 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005084
Bill Wendlingf891bf82011-07-31 06:30:59 +00005085 ResumeInst *RI = ResumeInst::Create(Exn);
5086 Inst = RI;
5087 return false;
5088}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005089
David Majnemer654e1302015-07-31 17:58:14 +00005090bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5091 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005092 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005093 return true;
5094
5095 while (Lex.getKind() != lltok::rsquare) {
5096 // If this isn't the first argument, we need a comma.
5097 if (!Args.empty() &&
5098 ParseToken(lltok::comma, "expected ',' in argument list"))
5099 return true;
5100
5101 // Parse the argument.
5102 LocTy ArgLoc;
5103 Type *ArgTy = nullptr;
5104 if (ParseType(ArgTy, ArgLoc))
5105 return true;
5106
5107 Value *V;
5108 if (ArgTy->isMetadataTy()) {
5109 if (ParseMetadataAsValue(V, PFS))
5110 return true;
5111 } else {
5112 if (ParseValue(ArgTy, V, PFS))
5113 return true;
5114 }
5115 Args.push_back(V);
5116 }
5117
5118 Lex.Lex(); // Lex the ']'.
5119 return false;
5120}
5121
5122/// ParseCleanupRet
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005123/// ::= 'cleanupret' Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005124bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005125 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005126
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005127 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5128 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005129
5130 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5131 return true;
5132
5133 BasicBlock *UnwindBB = nullptr;
5134 if (Lex.getKind() == lltok::kw_to) {
5135 Lex.Lex();
5136 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5137 return true;
5138 } else {
5139 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5140 return true;
5141 }
5142 }
5143
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005144 Inst = CleanupReturnInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005145 return false;
5146}
5147
5148/// ParseCatchRet
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005149/// ::= 'catchret' Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005150bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005151 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005152
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005153 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS, OC_CatchPad))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005154 return true;
5155
David Majnemer0bc0eef2015-08-15 02:46:08 +00005156 BasicBlock *BB;
5157 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5158 ParseTypeAndBasicBlock(BB, PFS))
5159 return true;
5160
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005161 Inst = CatchReturnInst::Create(cast<CatchPadInst>(CatchPad), BB);
David Majnemer654e1302015-07-31 17:58:14 +00005162 return false;
5163}
5164
5165/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005166/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005167bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer654e1302015-07-31 17:58:14 +00005168 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005169 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005170 return true;
5171
5172 BasicBlock *NormalBB, *UnwindBB;
5173 if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5174 ParseTypeAndBasicBlock(NormalBB, PFS) ||
5175 ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5176 ParseTypeAndBasicBlock(UnwindBB, PFS))
5177 return true;
5178
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005179 Inst = CatchPadInst::Create(NormalBB, UnwindBB, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005180 return false;
5181}
5182
5183/// ParseTerminatePad
5184/// ::= 'terminatepad' ParamList 'to' TypeAndValue
5185bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5186 SmallVector<Value *, 8> Args;
5187 if (ParseExceptionArgs(Args, PFS))
5188 return true;
5189
5190 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5191 return true;
5192
5193 BasicBlock *UnwindBB = nullptr;
5194 if (Lex.getKind() == lltok::kw_to) {
5195 Lex.Lex();
5196 if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5197 return true;
5198 } else {
5199 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5200 return true;
5201 }
5202 }
5203
5204 Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5205 return false;
5206}
5207
5208/// ParseCleanupPad
5209/// ::= 'cleanuppad' ParamList
5210bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer654e1302015-07-31 17:58:14 +00005211 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005212 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005213 return true;
5214
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005215 Inst = CleanupPadInst::Create(Context, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005216 return false;
5217}
5218
5219/// ParseCatchEndPad
5220/// ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5221bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5222 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5223 return true;
5224
5225 BasicBlock *UnwindBB = nullptr;
5226 if (Lex.getKind() == lltok::kw_to) {
5227 Lex.Lex();
5228 if (Lex.getKind() == lltok::kw_caller) {
5229 Lex.Lex();
5230 } else {
5231 return true;
5232 }
5233 } else {
5234 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5235 return true;
5236 }
5237 }
5238
5239 Inst = CatchEndPadInst::Create(Context, UnwindBB);
5240 return false;
5241}
5242
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005243/// ParseCatchEndPad
5244/// ::= 'cleanupendpad' Value unwind ('to' 'caller' | TypeAndValue)
5245bool LLParser::ParseCleanupEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5246 Value *CleanupPad = nullptr;
5247
5248 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5249 return true;
5250
5251 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5252 return true;
5253
5254 BasicBlock *UnwindBB = nullptr;
5255 if (Lex.getKind() == lltok::kw_to) {
5256 Lex.Lex();
5257 if (Lex.getKind() == lltok::kw_caller) {
5258 Lex.Lex();
5259 } else {
5260 return true;
5261 }
5262 } else {
5263 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5264 return true;
5265 }
5266 }
5267
5268 Inst = CleanupEndPadInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
5269 return false;
5270}
5271
Chris Lattnerac161bf2009-01-02 07:01:27 +00005272//===----------------------------------------------------------------------===//
5273// Binary Operators.
5274//===----------------------------------------------------------------------===//
5275
5276/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005277/// ::= ArithmeticOps TypeAndValue ',' Value
5278///
5279/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5280/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005281bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005282 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005283 LocTy Loc; Value *LHS, *RHS;
5284 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5285 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5286 ParseValue(LHS->getType(), RHS, PFS))
5287 return true;
5288
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005289 bool Valid;
5290 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005291 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005292 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005293 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5294 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005295 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005296 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5297 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005298 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005299
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005300 if (!Valid)
5301 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005302
Chris Lattnerac161bf2009-01-02 07:01:27 +00005303 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5304 return false;
5305}
5306
5307/// ParseLogical
5308/// ::= ArithmeticOps TypeAndValue ',' Value {
5309bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5310 unsigned Opc) {
5311 LocTy Loc; Value *LHS, *RHS;
5312 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5313 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5314 ParseValue(LHS->getType(), RHS, PFS))
5315 return true;
5316
Duncan Sands9dff9be2010-02-15 16:12:20 +00005317 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005318 return Error(Loc,"instruction requires integer or integer vector operands");
5319
5320 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5321 return false;
5322}
5323
5324
5325/// ParseCompare
5326/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5327/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005328bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5329 unsigned Opc) {
5330 // Parse the integer/fp comparison predicate.
5331 LocTy Loc;
5332 unsigned Pred;
5333 Value *LHS, *RHS;
5334 if (ParseCmpPredicate(Pred, Opc) ||
5335 ParseTypeAndValue(LHS, Loc, PFS) ||
5336 ParseToken(lltok::comma, "expected ',' after compare value") ||
5337 ParseValue(LHS->getType(), RHS, PFS))
5338 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005339
Chris Lattnerac161bf2009-01-02 07:01:27 +00005340 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005341 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005342 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005343 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005344 } else {
5345 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005346 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005347 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005348 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005349 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005350 }
5351 return false;
5352}
5353
5354//===----------------------------------------------------------------------===//
5355// Other Instructions.
5356//===----------------------------------------------------------------------===//
5357
5358
5359/// ParseCast
5360/// ::= CastOpc TypeAndValue 'to' Type
5361bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5362 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005363 LocTy Loc;
5364 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005365 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005366 if (ParseTypeAndValue(Op, Loc, PFS) ||
5367 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5368 ParseType(DestTy))
5369 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005370
Chris Lattner89d856e2009-03-01 00:53:13 +00005371 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5372 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005373 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005374 getTypeString(Op->getType()) + "' to '" +
5375 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005376 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005377 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5378 return false;
5379}
5380
5381/// ParseSelect
5382/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5383bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5384 LocTy Loc;
5385 Value *Op0, *Op1, *Op2;
5386 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5387 ParseToken(lltok::comma, "expected ',' after select condition") ||
5388 ParseTypeAndValue(Op1, PFS) ||
5389 ParseToken(lltok::comma, "expected ',' after select value") ||
5390 ParseTypeAndValue(Op2, PFS))
5391 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005392
Chris Lattnerac161bf2009-01-02 07:01:27 +00005393 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5394 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005395
Chris Lattnerac161bf2009-01-02 07:01:27 +00005396 Inst = SelectInst::Create(Op0, Op1, Op2);
5397 return false;
5398}
5399
Chris Lattnerb55ab542009-01-05 08:18:44 +00005400/// ParseVA_Arg
5401/// ::= 'va_arg' TypeAndValue ',' Type
5402bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005403 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005404 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005405 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005406 if (ParseTypeAndValue(Op, PFS) ||
5407 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005408 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005409 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005410
Chris Lattnerb55ab542009-01-05 08:18:44 +00005411 if (!EltTy->isFirstClassType())
5412 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005413
5414 Inst = new VAArgInst(Op, EltTy);
5415 return false;
5416}
5417
5418/// ParseExtractElement
5419/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5420bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5421 LocTy Loc;
5422 Value *Op0, *Op1;
5423 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5424 ParseToken(lltok::comma, "expected ',' after extract value") ||
5425 ParseTypeAndValue(Op1, PFS))
5426 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005427
Chris Lattnerac161bf2009-01-02 07:01:27 +00005428 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5429 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005430
Eric Christopherc9742252009-07-25 02:28:41 +00005431 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005432 return false;
5433}
5434
5435/// ParseInsertElement
5436/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5437bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5438 LocTy Loc;
5439 Value *Op0, *Op1, *Op2;
5440 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5441 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5442 ParseTypeAndValue(Op1, PFS) ||
5443 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5444 ParseTypeAndValue(Op2, PFS))
5445 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005446
Chris Lattnerac161bf2009-01-02 07:01:27 +00005447 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005448 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005449
Chris Lattnerac161bf2009-01-02 07:01:27 +00005450 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5451 return false;
5452}
5453
5454/// ParseShuffleVector
5455/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5456bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5457 LocTy Loc;
5458 Value *Op0, *Op1, *Op2;
5459 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5460 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5461 ParseTypeAndValue(Op1, PFS) ||
5462 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5463 ParseTypeAndValue(Op2, PFS))
5464 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005465
Chris Lattnerac161bf2009-01-02 07:01:27 +00005466 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005467 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005468
Chris Lattnerac161bf2009-01-02 07:01:27 +00005469 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5470 return false;
5471}
5472
5473/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005474/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005475int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005476 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005477 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005478
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005479 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005480 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5481 ParseValue(Ty, Op0, PFS) ||
5482 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005483 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005484 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5485 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005486
Chris Lattnerf4f03422009-12-30 05:27:33 +00005487 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005488 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5489 while (1) {
5490 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005491
Chris Lattner3822f632009-01-02 08:05:26 +00005492 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005493 break;
5494
Chris Lattnerf4f03422009-12-30 05:27:33 +00005495 if (Lex.getKind() == lltok::MetadataVar) {
5496 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005497 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005498 }
Devang Patel8f842d32009-10-16 18:45:49 +00005499
Chris Lattner3822f632009-01-02 08:05:26 +00005500 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005501 ParseValue(Ty, Op0, PFS) ||
5502 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005503 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005504 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5505 return true;
5506 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005507
Chris Lattnerac161bf2009-01-02 07:01:27 +00005508 if (!Ty->isFirstClassType())
5509 return Error(TypeLoc, "phi node must have first class type");
5510
Jay Foad52131342011-03-30 11:28:46 +00005511 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005512 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5513 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5514 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005515 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005516}
5517
Bill Wendlingfae14752011-08-12 20:24:12 +00005518/// ParseLandingPad
5519/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5520/// Clause
5521/// ::= 'catch' TypeAndValue
5522/// ::= 'filter'
5523/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5524bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005525 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005526
David Majnemer7fddecc2015-06-17 20:52:32 +00005527 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005528 return true;
5529
David Majnemer7fddecc2015-06-17 20:52:32 +00005530 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005531 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5532
5533 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5534 LandingPadInst::ClauseType CT;
5535 if (EatIfPresent(lltok::kw_catch))
5536 CT = LandingPadInst::Catch;
5537 else if (EatIfPresent(lltok::kw_filter))
5538 CT = LandingPadInst::Filter;
5539 else
5540 return TokError("expected 'catch' or 'filter' clause type");
5541
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005542 Value *V;
5543 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005544 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005545 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005546
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005547 // A 'catch' type expects a non-array constant. A filter clause expects an
5548 // array constant.
5549 if (CT == LandingPadInst::Catch) {
5550 if (isa<ArrayType>(V->getType()))
5551 Error(VLoc, "'catch' clause has an invalid type");
5552 } else {
5553 if (!isa<ArrayType>(V->getType()))
5554 Error(VLoc, "'filter' clause has an invalid type");
5555 }
5556
Owen Andersonf8f259d2015-03-09 07:13:42 +00005557 Constant *CV = dyn_cast<Constant>(V);
5558 if (!CV)
5559 return Error(VLoc, "clause argument must be a constant");
5560 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005561 }
5562
Owen Andersonf8f259d2015-03-09 07:13:42 +00005563 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005564 return false;
5565}
5566
Chris Lattnerac161bf2009-01-02 07:01:27 +00005567/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00005568/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5569/// ParameterList OptionalAttrs
5570/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5571/// ParameterList OptionalAttrs
5572/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005573/// ParameterList OptionalAttrs
5574bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005575 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005576 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005577 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005578 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005579 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005580 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005581 LocTy RetTypeLoc;
5582 ValID CalleeID;
5583 SmallVector<ParamInfo, 16> ArgList;
5584 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005585
Reid Kleckner5772b772014-04-24 20:14:34 +00005586 if ((TCK != CallInst::TCK_None &&
5587 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005588 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00005589 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005590 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005591 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005592 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5593 PFS.getFunction().isVarArg()) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005594 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00005595 BuiltinLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005596 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005597
Chris Lattnerac161bf2009-01-02 07:01:27 +00005598 // If RetType is a non-function pointer type, then this is the short syntax
5599 // for the call, which means that RetType is just the return type. Infer the
5600 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005601 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5602 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005603 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005604 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005605 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5606 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005607
Chris Lattnerac161bf2009-01-02 07:01:27 +00005608 if (!FunctionType::isValidReturnType(RetType))
5609 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005610
Owen Anderson4056ca92009-07-29 22:17:13 +00005611 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005612 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005613
David Blaikie41ba2b42015-07-27 23:32:19 +00005614 CalleeID.FTy = Ty;
5615
Chris Lattnerac161bf2009-01-02 07:01:27 +00005616 // Look up the callee.
5617 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005618 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5619 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005620
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005621 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005622 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005623 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005624 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5625 AttributeSet::ReturnIndex,
5626 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005627
Chris Lattnerac161bf2009-01-02 07:01:27 +00005628 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005629
Chris Lattnerac161bf2009-01-02 07:01:27 +00005630 // Loop through FunctionType's arguments and ensure they are specified
5631 // correctly. Also, gather any parameter attributes.
5632 FunctionType::param_iterator I = Ty->param_begin();
5633 FunctionType::param_iterator E = Ty->param_end();
5634 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005635 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005636 if (I != E) {
5637 ExpectedTy = *I++;
5638 } else if (!Ty->isVarArg()) {
5639 return Error(ArgList[i].Loc, "too many arguments specified");
5640 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005641
Chris Lattnerac161bf2009-01-02 07:01:27 +00005642 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5643 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005644 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005645 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005646 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5647 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005648 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5649 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005650 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005651
Chris Lattnerac161bf2009-01-02 07:01:27 +00005652 if (I != E)
5653 return Error(CallLoc, "not enough parameters specified for call");
5654
David Majnemer8d22abd2015-02-23 00:01:32 +00005655 if (FnAttrs.hasAttributes()) {
5656 if (FnAttrs.hasAlignmentAttr())
5657 return Error(CallLoc, "call instructions may not have an alignment");
5658
Bill Wendlingf5075a42013-01-27 02:24:02 +00005659 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5660 AttributeSet::FunctionIndex,
5661 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005662 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005663
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005664 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005665 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005666
David Blaikie348de692015-04-23 21:36:23 +00005667 CallInst *CI = CallInst::Create(Ty, Callee, Args);
Reid Kleckner5772b772014-04-24 20:14:34 +00005668 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005669 CI->setCallingConv(CC);
5670 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005671 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005672 Inst = CI;
5673 return false;
5674}
5675
5676//===----------------------------------------------------------------------===//
5677// Memory Instructions.
5678//===----------------------------------------------------------------------===//
5679
5680/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005681/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005682int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005683 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005684 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005685 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005686 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005687
5688 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5689
David Majnemera3b0eb22015-02-16 08:38:03 +00005690 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005691
David Majnemera3b0eb22015-02-16 08:38:03 +00005692 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5693 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005694
Chris Lattnerb2f39502009-12-30 05:44:30 +00005695 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005696 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005697 if (Lex.getKind() == lltok::kw_align) {
5698 if (ParseOptionalAlignment(Alignment)) return true;
5699 } else if (Lex.getKind() == lltok::MetadataVar) {
5700 AteExtraComma = true;
5701 } else {
5702 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5703 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5704 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005705 }
5706 }
5707
Dan Gohman2140a742010-05-28 01:14:11 +00005708 if (Size && !Size->getType()->isIntegerTy())
5709 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005710
Reid Kleckner436c42e2014-01-17 23:58:17 +00005711 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5712 AI->setUsedWithInAlloca(IsInAlloca);
5713 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005714 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005715}
5716
5717/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005718/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005719/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005720/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005721int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005722 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005723 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005724 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005725 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005726 AtomicOrdering Ordering = NotAtomic;
5727 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005728
5729 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005730 isAtomic = true;
5731 Lex.Lex();
5732 }
5733
Chris Lattnerbc639292011-11-27 06:56:53 +00005734 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005735 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005736 isVolatile = true;
5737 Lex.Lex();
5738 }
5739
David Blaikie15d9a4c2015-04-06 20:59:48 +00005740 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005741 LocTy ExplicitTypeLoc = Lex.getLoc();
5742 if (ParseType(Ty) ||
5743 ParseToken(lltok::comma, "expected comma after load's type") ||
5744 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005745 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005746 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5747 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005748
David Blaikie15d9a4c2015-04-06 20:59:48 +00005749 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005750 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005751 if (isAtomic && !Alignment)
5752 return Error(Loc, "atomic load must have explicit non-zero alignment");
5753 if (Ordering == Release || Ordering == AcquireRelease)
5754 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005755
David Blaikiea79ac142015-02-27 21:17:42 +00005756 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5757 return Error(ExplicitTypeLoc,
5758 "explicit pointee type doesn't match operand's pointee type");
5759
David Blaikie15d9a4c2015-04-06 20:59:48 +00005760 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005761 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005762}
5763
5764/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005765
5766/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5767/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005768/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005769int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005770 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005771 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005772 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005773 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005774 AtomicOrdering Ordering = NotAtomic;
5775 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005776
5777 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005778 isAtomic = true;
5779 Lex.Lex();
5780 }
5781
Chris Lattnerbc639292011-11-27 06:56:53 +00005782 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005783 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005784 isVolatile = true;
5785 Lex.Lex();
5786 }
5787
Chris Lattnerac161bf2009-01-02 07:01:27 +00005788 if (ParseTypeAndValue(Val, Loc, PFS) ||
5789 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005790 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005791 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005792 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005793 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005794
Duncan Sands19d0b472010-02-16 11:11:14 +00005795 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005796 return Error(PtrLoc, "store operand must be a pointer");
5797 if (!Val->getType()->isFirstClassType())
5798 return Error(Loc, "store operand must be a first class value");
5799 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5800 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005801 if (isAtomic && !Alignment)
5802 return Error(Loc, "atomic store must have explicit non-zero alignment");
5803 if (Ordering == Acquire || Ordering == AcquireRelease)
5804 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005805
Eli Friedman59b66882011-08-09 23:02:53 +00005806 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005807 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005808}
5809
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005810/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005811/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5812/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005813int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005814 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5815 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005816 AtomicOrdering SuccessOrdering = NotAtomic;
5817 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005818 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005819 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005820 bool isWeak = false;
5821
5822 if (EatIfPresent(lltok::kw_weak))
5823 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005824
5825 if (EatIfPresent(lltok::kw_volatile))
5826 isVolatile = true;
5827
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005828 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5829 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5830 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5831 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5832 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005833 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5834 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005835 return true;
5836
Tim Northovere94a5182014-03-11 10:48:52 +00005837 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005838 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005839 if (SuccessOrdering < FailureOrdering)
5840 return TokError("cmpxchg must be at least as ordered on success as failure");
5841 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5842 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005843 if (!Ptr->getType()->isPointerTy())
5844 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5845 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5846 return Error(CmpLoc, "compare value and pointer type do not match");
5847 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5848 return Error(NewLoc, "new value and pointer type do not match");
5849 if (!New->getType()->isIntegerTy())
5850 return Error(NewLoc, "cmpxchg operand must be an integer");
5851 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5852 if (Size < 8 || (Size & (Size - 1)))
5853 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5854 " integer");
5855
Tim Northover420a2162014-06-13 14:24:07 +00005856 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5857 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005858 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005859 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005860 Inst = CXI;
5861 return AteExtraComma ? InstExtraComma : InstNormal;
5862}
5863
5864/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005865/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5866/// 'singlethread'? AtomicOrdering
5867int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005868 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5869 bool AteExtraComma = false;
5870 AtomicOrdering Ordering = NotAtomic;
5871 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005872 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005873 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005874
5875 if (EatIfPresent(lltok::kw_volatile))
5876 isVolatile = true;
5877
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005878 switch (Lex.getKind()) {
5879 default: return TokError("expected binary operation in atomicrmw");
5880 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5881 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5882 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5883 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5884 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5885 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5886 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5887 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5888 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5889 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5890 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5891 }
5892 Lex.Lex(); // Eat the operation.
5893
5894 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5895 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5896 ParseTypeAndValue(Val, ValLoc, PFS) ||
5897 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5898 return true;
5899
5900 if (Ordering == Unordered)
5901 return TokError("atomicrmw cannot be unordered");
5902 if (!Ptr->getType()->isPointerTy())
5903 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5904 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5905 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5906 if (!Val->getType()->isIntegerTy())
5907 return Error(ValLoc, "atomicrmw operand must be an integer");
5908 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5909 if (Size < 8 || (Size & (Size - 1)))
5910 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5911 " integer");
5912
5913 AtomicRMWInst *RMWI =
5914 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5915 RMWI->setVolatile(isVolatile);
5916 Inst = RMWI;
5917 return AteExtraComma ? InstExtraComma : InstNormal;
5918}
5919
Eli Friedmanfee02c62011-07-25 23:16:38 +00005920/// ParseFence
5921/// ::= 'fence' 'singlethread'? AtomicOrdering
5922int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5923 AtomicOrdering Ordering = NotAtomic;
5924 SynchronizationScope Scope = CrossThread;
5925 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5926 return true;
5927
5928 if (Ordering == Unordered)
5929 return TokError("fence cannot be unordered");
5930 if (Ordering == Monotonic)
5931 return TokError("fence cannot be monotonic");
5932
5933 Inst = new FenceInst(Context, Ordering, Scope);
5934 return InstNormal;
5935}
5936
Chris Lattnerac161bf2009-01-02 07:01:27 +00005937/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00005938/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005939int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005940 Value *Ptr = nullptr;
5941 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005942 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00005943
Dan Gohman16cbbe42009-07-29 15:58:36 +00005944 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00005945
David Blaikie79e6c742015-02-27 19:29:02 +00005946 Type *Ty = nullptr;
5947 LocTy ExplicitTypeLoc = Lex.getLoc();
5948 if (ParseType(Ty) ||
5949 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5950 ParseTypeAndValue(Ptr, Loc, PFS))
5951 return true;
5952
Eli Benderskyd9806682013-04-22 17:03:42 +00005953 Type *BaseType = Ptr->getType();
5954 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5955 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005956 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005957
David Blaikie8d757942015-03-09 23:08:44 +00005958 if (Ty != BasePointerType->getElementType())
5959 return Error(ExplicitTypeLoc,
5960 "explicit pointee type doesn't match operand's pointee type");
5961
Chris Lattnerac161bf2009-01-02 07:01:27 +00005962 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005963 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005964 // GEP returns a vector of pointers if at least one of parameters is a vector.
5965 // All vector parameters should have the same vector width.
5966 unsigned GEPWidth = BaseType->isVectorTy() ?
5967 BaseType->getVectorNumElements() : 0;
5968
Chris Lattner3822f632009-01-02 08:05:26 +00005969 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00005970 if (Lex.getKind() == lltok::MetadataVar) {
5971 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00005972 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005973 }
Chris Lattner3822f632009-01-02 08:05:26 +00005974 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005975 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005976 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005977
Nadav Rotem3924cb02011-12-05 06:29:09 +00005978 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005979 unsigned ValNumEl = Val->getType()->getVectorNumElements();
5980 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00005981 return Error(EltLoc,
5982 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005983 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005984 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005985 Indices.push_back(Val);
5986 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005987
Craig Toppere3dcce92015-08-01 22:20:21 +00005988 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00005989 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00005990 return Error(Loc, "base element of getelementptr must be sized");
5991
David Blaikied33bad32015-04-17 22:32:13 +00005992 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005993 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00005994 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00005995 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00005996 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00005997 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005998}
5999
6000/// ParseExtractValue
6001/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006002int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006003 Value *Val; LocTy Loc;
6004 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006005 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006006 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006007 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006008 return true;
6009
Chris Lattner392be582010-02-12 20:49:41 +00006010 if (!Val->getType()->isAggregateType())
6011 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006012
Jay Foad57aa6362011-07-13 10:26:04 +00006013 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006014 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006015 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006016 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006017}
6018
6019/// ParseInsertValue
6020/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006021int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006022 Value *Val0, *Val1; LocTy Loc0, Loc1;
6023 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006024 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006025 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6026 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6027 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006028 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006029 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006030
Chris Lattner392be582010-02-12 20:49:41 +00006031 if (!Val0->getType()->isAggregateType())
6032 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006033
David Majnemer30074532015-02-11 07:43:58 +00006034 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6035 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006036 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006037 if (IndexedType != Val1->getType())
6038 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6039 getTypeString(Val1->getType()) + "' instead of '" +
6040 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006041 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006042 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006043}
Nick Lewycky49f89192009-04-04 07:22:01 +00006044
6045//===----------------------------------------------------------------------===//
6046// Embedded metadata.
6047//===----------------------------------------------------------------------===//
6048
6049/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006050/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006051/// Element
6052/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006053bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006054 if (ParseToken(lltok::lbrace, "expected '{' here"))
6055 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006056
Dan Gohman1e0213a2010-07-13 19:33:27 +00006057 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006058 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006059 return false;
6060
Nick Lewycky49f89192009-04-04 07:22:01 +00006061 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006062 // Null is a special case since it is typeless.
6063 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006064 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006065 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006066 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006067
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006068 Metadata *MD;
6069 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006070 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006071 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006072 } while (EatIfPresent(lltok::comma));
6073
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006074 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006075}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006076
6077//===----------------------------------------------------------------------===//
6078// Use-list order directives.
6079//===----------------------------------------------------------------------===//
6080bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6081 SMLoc Loc) {
6082 if (V->use_empty())
6083 return Error(Loc, "value has no uses");
6084
6085 unsigned NumUses = 0;
6086 SmallDenseMap<const Use *, unsigned, 16> Order;
6087 for (const Use &U : V->uses()) {
6088 if (++NumUses > Indexes.size())
6089 break;
6090 Order[&U] = Indexes[NumUses - 1];
6091 }
6092 if (NumUses < 2)
6093 return Error(Loc, "value only has one use");
6094 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6095 return Error(Loc, "wrong number of indexes, expected " +
6096 Twine(std::distance(V->use_begin(), V->use_end())));
6097
6098 V->sortUseList([&](const Use &L, const Use &R) {
6099 return Order.lookup(&L) < Order.lookup(&R);
6100 });
6101 return false;
6102}
6103
6104/// ParseUseListOrderIndexes
6105/// ::= '{' uint32 (',' uint32)+ '}'
6106bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6107 SMLoc Loc = Lex.getLoc();
6108 if (ParseToken(lltok::lbrace, "expected '{' here"))
6109 return true;
6110 if (Lex.getKind() == lltok::rbrace)
6111 return Lex.Error("expected non-empty list of uselistorder indexes");
6112
6113 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6114 // indexes should be distinct numbers in the range [0, size-1], and should
6115 // not be in order.
6116 unsigned Offset = 0;
6117 unsigned Max = 0;
6118 bool IsOrdered = true;
6119 assert(Indexes.empty() && "Expected empty order vector");
6120 do {
6121 unsigned Index;
6122 if (ParseUInt32(Index))
6123 return true;
6124
6125 // Update consistency checks.
6126 Offset += Index - Indexes.size();
6127 Max = std::max(Max, Index);
6128 IsOrdered &= Index == Indexes.size();
6129
6130 Indexes.push_back(Index);
6131 } while (EatIfPresent(lltok::comma));
6132
6133 if (ParseToken(lltok::rbrace, "expected '}' here"))
6134 return true;
6135
6136 if (Indexes.size() < 2)
6137 return Error(Loc, "expected >= 2 uselistorder indexes");
6138 if (Offset != 0 || Max >= Indexes.size())
6139 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6140 if (IsOrdered)
6141 return Error(Loc, "expected uselistorder indexes to change the order");
6142
6143 return false;
6144}
6145
6146/// ParseUseListOrder
6147/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6148bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6149 SMLoc Loc = Lex.getLoc();
6150 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6151 return true;
6152
6153 Value *V;
6154 SmallVector<unsigned, 16> Indexes;
6155 if (ParseTypeAndValue(V, PFS) ||
6156 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6157 ParseUseListOrderIndexes(Indexes))
6158 return true;
6159
6160 return sortUseListOrder(V, Indexes, Loc);
6161}
6162
6163/// ParseUseListOrderBB
6164/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6165bool LLParser::ParseUseListOrderBB() {
6166 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6167 SMLoc Loc = Lex.getLoc();
6168 Lex.Lex();
6169
6170 ValID Fn, Label;
6171 SmallVector<unsigned, 16> Indexes;
6172 if (ParseValID(Fn) ||
6173 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6174 ParseValID(Label) ||
6175 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6176 ParseUseListOrderIndexes(Indexes))
6177 return true;
6178
6179 // Check the function.
6180 GlobalValue *GV;
6181 if (Fn.Kind == ValID::t_GlobalName)
6182 GV = M->getNamedValue(Fn.StrVal);
6183 else if (Fn.Kind == ValID::t_GlobalID)
6184 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6185 else
6186 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6187 if (!GV)
6188 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6189 auto *F = dyn_cast<Function>(GV);
6190 if (!F)
6191 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6192 if (F->isDeclaration())
6193 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6194
6195 // Check the basic block.
6196 if (Label.Kind == ValID::t_LocalID)
6197 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6198 if (Label.Kind != ValID::t_LocalName)
6199 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6200 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6201 if (!V)
6202 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6203 if (!isa<BasicBlock>(V))
6204 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6205
6206 return sortUseListOrder(V, Indexes, Loc);
6207}