blob: d0bd31c42179f1fda8547083c0688390e49645c1 [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; )
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +0000188 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
David Blaikie2f408302015-09-11 03:22:04 +0000681 Type *Ty;
682 LocTy ExplicitTypeLoc = Lex.getLoc();
683 if (ParseType(Ty) ||
684 ParseToken(lltok::comma, "expected comma after alias's type"))
685 return true;
686
Rafael Espindola64c1e182014-06-03 02:41:57 +0000687 Constant *Aliasee;
688 LocTy AliaseeLoc = Lex.getLoc();
689 if (Lex.getKind() != lltok::kw_bitcast &&
690 Lex.getKind() != lltok::kw_getelementptr &&
691 Lex.getKind() != lltok::kw_addrspacecast &&
692 Lex.getKind() != lltok::kw_inttoptr) {
693 if (ParseGlobalTypeAndValue(Aliasee))
Rafael Espindola6b238632014-05-16 19:35:39 +0000694 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000695 } else {
Rafael Espindola64c1e182014-06-03 02:41:57 +0000696 // The bitcast dest type is not present, it is implied by the dest type.
697 ValID ID;
698 if (ParseValID(ID))
699 return true;
700 if (ID.Kind != ValID::t_Constant)
701 return Error(AliaseeLoc, "invalid aliasee");
702 Aliasee = ID.ConstantVal;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000703 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000704
Rafael Espindola64c1e182014-06-03 02:41:57 +0000705 Type *AliaseeType = Aliasee->getType();
706 auto *PTy = dyn_cast<PointerType>(AliaseeType);
707 if (!PTy)
708 return Error(AliaseeLoc, "An alias must have pointer type");
David Blaikie16a2f3e2015-09-14 18:01:59 +0000709 unsigned AddrSpace = PTy->getAddressSpace();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000710
David Blaikie2f408302015-09-11 03:22:04 +0000711 if (Ty != PTy->getElementType())
712 return Error(
713 ExplicitTypeLoc,
714 "explicit pointee type doesn't match operand's pointee type");
715
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000716 GlobalValue *GVal = nullptr;
717
718 // See if the alias was forward referenced, if so, prepare to replace the
719 // forward reference.
720 if (!Name.empty()) {
721 GVal = M->getNamedValue(Name);
722 if (GVal) {
723 if (!ForwardRefVals.erase(Name))
724 return Error(NameLoc, "redefinition of global '@" + Name + "'");
725 }
726 } else {
727 auto I = ForwardRefValIDs.find(NumberedVals.size());
728 if (I != ForwardRefValIDs.end()) {
729 GVal = I->second.first;
730 ForwardRefValIDs.erase(I);
731 }
732 }
733
Chris Lattnerac161bf2009-01-02 07:01:27 +0000734 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000735 std::unique_ptr<GlobalAlias> GA(
David Blaikie16a2f3e2015-09-14 18:01:59 +0000736 GlobalAlias::create(Ty, AddrSpace, (GlobalValue::LinkageTypes)Linkage,
737 Name, Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000738 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000739 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000740 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000741 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000742
Rafael Espindola54fc2982015-06-17 17:53:31 +0000743 if (Name.empty())
744 NumberedVals.push_back(GA.get());
745
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000746 if (GVal) {
747 // Verify that types agree.
748 if (GVal->getType() != GA->getType())
749 return Error(
750 ExplicitTypeLoc,
751 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000752
Chris Lattnerac161bf2009-01-02 07:01:27 +0000753 // If they agree, just RAUW the old value with the alias and remove the
754 // forward ref info.
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000755 GVal->replaceAllUsesWith(GA.get());
756 GVal->eraseFromParent();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000757 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000758
Chris Lattnerac161bf2009-01-02 07:01:27 +0000759 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000760 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000761 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000762
Rafael Espindolaaa273822014-05-09 21:49:17 +0000763 // The module owns this now
764 GA.release();
765
Chris Lattnerac161bf2009-01-02 07:01:27 +0000766 return false;
767}
768
769/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000770/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000771/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000772/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000773/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000774/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000775/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000776///
Eric Christopher536f0a92015-05-28 23:07:39 +0000777/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000778/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000779///
780bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
781 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000782 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000783 GlobalVariable::ThreadLocalMode TLM,
784 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000785 if (!isValidVisibilityForLinkage(Visibility, Linkage))
786 return Error(NameLoc,
787 "symbol with local linkage must have default visibility");
788
Chris Lattnerac161bf2009-01-02 07:01:27 +0000789 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000790 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000791 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000792 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000793
Craig Topper2617dcc2014-04-15 06:32:26 +0000794 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000795 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000796 ParseOptionalToken(lltok::kw_externally_initialized,
797 IsExternallyInitialized,
798 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000799 ParseGlobalType(IsConstant) ||
800 ParseType(Ty, TyLoc))
801 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000802
Chris Lattnerac161bf2009-01-02 07:01:27 +0000803 // If the linkage is specified and is external, then no initializer is
804 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000805 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000806 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000807 Linkage != GlobalValue::ExternalLinkage)) {
808 if (ParseGlobalValue(Ty, Init))
809 return true;
810 }
811
David Majnemer49b3d9b2015-02-16 08:41:08 +0000812 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000813 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000814
David Majnemer598bd052014-12-09 05:56:09 +0000815 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000816
817 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000818 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000819 GVal = M->getNamedValue(Name);
820 if (GVal) {
Peter Collingbourne463ff6d2015-11-25 02:54:07 +0000821 if (!ForwardRefVals.erase(Name))
Chris Lattnere38317f2009-10-25 23:22:50 +0000822 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000823 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000824 } else {
David Blaikie9ebdc692015-09-21 21:07:50 +0000825 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000826 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000827 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000828 ForwardRefValIDs.erase(I);
829 }
830 }
831
David Majnemer598bd052014-12-09 05:56:09 +0000832 GlobalVariable *GV;
833 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000834 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
835 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000836 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000837 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000838 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000839 return Error(TyLoc,
840 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000841
David Majnemer598bd052014-12-09 05:56:09 +0000842 GV = cast<GlobalVariable>(GVal);
843
Chris Lattnerac161bf2009-01-02 07:01:27 +0000844 // Move the forward-reference to the correct spot in the module.
845 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
846 }
847
848 if (Name.empty())
849 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000850
Chris Lattnerac161bf2009-01-02 07:01:27 +0000851 // Set the parsed properties on the global.
852 if (Init)
853 GV->setInitializer(Init);
854 GV->setConstant(IsConstant);
855 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
856 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000857 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000858 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000859 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000860 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000861
Chris Lattnerac161bf2009-01-02 07:01:27 +0000862 // Parse attributes on the global.
863 while (Lex.getKind() == lltok::comma) {
864 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000865
Chris Lattnerac161bf2009-01-02 07:01:27 +0000866 if (Lex.getKind() == lltok::kw_section) {
867 Lex.Lex();
868 GV->setSection(Lex.getStrVal());
869 if (ParseToken(lltok::StringConstant, "expected global section string"))
870 return true;
871 } else if (Lex.getKind() == lltok::kw_align) {
872 unsigned Alignment;
873 if (ParseOptionalAlignment(Alignment)) return true;
874 GV->setAlignment(Alignment);
875 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000876 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000877 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000878 return true;
879 if (C)
880 GV->setComdat(C);
881 else
882 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000883 }
884 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000885
Chris Lattnerac161bf2009-01-02 07:01:27 +0000886 return false;
887}
888
Bill Wendling63b88192013-02-06 06:52:58 +0000889/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000890/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000891bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000892 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000893 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000894 Lex.Lex();
895
David Majnemerb39e22b2014-12-09 18:33:57 +0000896 if (Lex.getKind() != lltok::AttrGrpID)
897 return TokError("expected attribute group id");
898
Bill Wendling63b88192013-02-06 06:52:58 +0000899 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000900 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000901 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000902 Lex.Lex();
903
904 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000905 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000906 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000907 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000908 ParseToken(lltok::rbrace, "expected end of attribute group"))
909 return true;
910
Bill Wendlingb32b0412013-02-08 06:32:06 +0000911 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000912 return Error(AttrGrpLoc, "attribute group has no attributes");
913
914 return false;
915}
916
Bill Wendling8b0321d2013-02-08 00:52:31 +0000917/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000918/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000919bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
920 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000921 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000922 bool HaveError = false;
923
924 B.clear();
925
Bill Wendling63b88192013-02-06 06:52:58 +0000926 while (true) {
927 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000928 if (Token == lltok::kw_builtin)
929 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000930 switch (Token) {
931 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000932 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000933 return Error(Lex.getLoc(), "unterminated attribute group");
934 case lltok::rbrace:
935 // Finished.
936 return false;
937
Bill Wendlingb32b0412013-02-08 06:32:06 +0000938 case lltok::AttrGrpID: {
939 // Allow a function to reference an attribute group:
940 //
941 // define void @foo() #1 { ... }
942 if (inAttrGrp)
943 HaveError |=
944 Error(Lex.getLoc(),
945 "cannot have an attribute group reference in an attribute group");
946
947 unsigned AttrGrpNum = Lex.getUIntVal();
948 if (inAttrGrp) break;
949
950 // Save the reference to the attribute group. We'll fill it in later.
951 FwdRefAttrGrps.push_back(AttrGrpNum);
952 break;
953 }
Bill Wendling63b88192013-02-06 06:52:58 +0000954 // Target-dependent attributes:
955 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +0000956 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +0000957 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000958 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000959 }
960
961 // Target-independent attributes:
962 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000963 // As a hack, we allow function alignment to be initially parsed as an
964 // attribute on a function declaration/definition or added to an attribute
965 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000966 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000967 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000968 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000969 if (ParseToken(lltok::equal, "expected '=' here") ||
970 ParseUInt32(Alignment))
971 return true;
972 } else {
973 if (ParseOptionalAlignment(Alignment))
974 return true;
975 }
Bill Wendling63b88192013-02-06 06:52:58 +0000976 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000977 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000978 }
979 case lltok::kw_alignstack: {
980 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000981 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000982 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000983 if (ParseToken(lltok::equal, "expected '=' here") ||
984 ParseUInt32(Alignment))
985 return true;
986 } else {
987 if (ParseOptionalStackAlignment(Alignment))
988 return true;
989 }
Bill Wendling63b88192013-02-06 06:52:58 +0000990 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000991 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000992 }
Igor Laevsky39d662f2015-07-11 10:30:36 +0000993 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
994 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
995 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
996 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
997 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
Vaivaswatha Nagarajfb3f4902015-12-16 16:16:19 +0000998 case lltok::kw_inaccessiblememonly:
999 B.addAttribute(Attribute::InaccessibleMemOnly); break;
1000 case lltok::kw_inaccessiblemem_or_argmemonly:
1001 B.addAttribute(Attribute::InaccessibleMemOrArgMemOnly); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001002 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
1003 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
1004 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
1005 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
1006 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
1007 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
1008 case lltok::kw_noimplicitfloat:
1009 B.addAttribute(Attribute::NoImplicitFloat); break;
1010 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
1011 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1012 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1013 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
James Molloye6f87ca2015-11-06 10:32:53 +00001014 case lltok::kw_norecurse: B.addAttribute(Attribute::NoRecurse); break;
Igor Laevsky39d662f2015-07-11 10:30:36 +00001015 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1016 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1017 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1018 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1019 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1020 case lltok::kw_returns_twice:
1021 B.addAttribute(Attribute::ReturnsTwice); break;
1022 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1023 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1024 case lltok::kw_sspstrong:
1025 B.addAttribute(Attribute::StackProtectStrong); break;
1026 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1027 case lltok::kw_sanitize_address:
1028 B.addAttribute(Attribute::SanitizeAddress); break;
1029 case lltok::kw_sanitize_thread:
1030 B.addAttribute(Attribute::SanitizeThread); break;
1031 case lltok::kw_sanitize_memory:
1032 B.addAttribute(Attribute::SanitizeMemory); break;
1033 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001034
1035 // Error handling.
1036 case lltok::kw_inreg:
1037 case lltok::kw_signext:
1038 case lltok::kw_zeroext:
1039 HaveError |=
1040 Error(Lex.getLoc(),
1041 "invalid use of attribute on a function");
1042 break;
1043 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001044 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001045 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001046 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001047 case lltok::kw_nest:
1048 case lltok::kw_noalias:
1049 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001050 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001051 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001052 case lltok::kw_sret:
1053 HaveError |=
1054 Error(Lex.getLoc(),
1055 "invalid use of parameter-only attribute on a function");
1056 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001057 }
1058
1059 Lex.Lex();
1060 }
1061}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001062
1063//===----------------------------------------------------------------------===//
1064// GlobalValue Reference/Resolution Routines.
1065//===----------------------------------------------------------------------===//
1066
Karl Schimpf77729782015-09-03 18:06:44 +00001067static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1068 const std::string &Name) {
1069 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1070 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1071 else
1072 return new GlobalVariable(*M, PTy->getElementType(), false,
1073 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1074 nullptr, GlobalVariable::NotThreadLocal,
1075 PTy->getAddressSpace());
1076}
1077
Chris Lattnerac161bf2009-01-02 07:01:27 +00001078/// GetGlobalVal - Get a value with the specified name or ID, creating a
1079/// forward reference record if needed. This can return null if the value
1080/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001081GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001082 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001083 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001084 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001085 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001086 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001087 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001088
Chris Lattnerac161bf2009-01-02 07:01:27 +00001089 // Look this name up in the normal function symbol table.
1090 GlobalValue *Val =
1091 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001092
Chris Lattnerac161bf2009-01-02 07:01:27 +00001093 // If this is a forward reference for the value, see if we already created a
1094 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001095 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001096 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001097 if (I != ForwardRefVals.end())
1098 Val = I->second.first;
1099 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001100
Chris Lattnerac161bf2009-01-02 07:01:27 +00001101 // If we have the value in the symbol table or fwd-ref table, return it.
1102 if (Val) {
1103 if (Val->getType() == Ty) return Val;
1104 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001105 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001106 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001107 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001108
Chris Lattnerac161bf2009-01-02 07:01:27 +00001109 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001110 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001111 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1112 return FwdVal;
1113}
1114
Chris Lattner229907c2011-07-18 04:54:35 +00001115GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1116 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001117 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001118 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001119 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001120 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001121
Craig Topper2617dcc2014-04-15 06:32:26 +00001122 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001123
Chris Lattnerac161bf2009-01-02 07:01:27 +00001124 // If this is a forward reference for the value, see if we already created a
1125 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001126 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00001127 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001128 if (I != ForwardRefValIDs.end())
1129 Val = I->second.first;
1130 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001131
Chris Lattnerac161bf2009-01-02 07:01:27 +00001132 // If we have the value in the symbol table or fwd-ref table, return it.
1133 if (Val) {
1134 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001135 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001136 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001137 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001138 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001139
Chris Lattnerac161bf2009-01-02 07:01:27 +00001140 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001141 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001142 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1143 return FwdVal;
1144}
1145
1146
1147//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001148// Comdat Reference/Resolution Routines.
1149//===----------------------------------------------------------------------===//
1150
1151Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1152 // Look this name up in the comdat symbol table.
1153 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1154 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1155 if (I != ComdatSymTab.end())
1156 return &I->second;
1157
1158 // Otherwise, create a new forward reference for this value and remember it.
1159 Comdat *C = M->getOrInsertComdat(Name);
1160 ForwardRefComdats[Name] = Loc;
1161 return C;
1162}
1163
1164
1165//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001166// Helper Routines.
1167//===----------------------------------------------------------------------===//
1168
1169/// ParseToken - If the current token has the specified kind, eat it and return
1170/// success. Otherwise, emit the specified error and return failure.
1171bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1172 if (Lex.getKind() != T)
1173 return TokError(ErrMsg);
1174 Lex.Lex();
1175 return false;
1176}
1177
Chris Lattner3822f632009-01-02 08:05:26 +00001178/// ParseStringConstant
1179/// ::= StringConstant
1180bool LLParser::ParseStringConstant(std::string &Result) {
1181 if (Lex.getKind() != lltok::StringConstant)
1182 return TokError("expected string constant");
1183 Result = Lex.getStrVal();
1184 Lex.Lex();
1185 return false;
1186}
1187
1188/// ParseUInt32
1189/// ::= uint32
1190bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001191 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1192 return TokError("expected integer");
1193 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1194 if (Val64 != unsigned(Val64))
1195 return TokError("expected 32-bit integer (too large)");
1196 Val = Val64;
1197 Lex.Lex();
1198 return false;
1199}
1200
Hal Finkelb0407ba2014-07-18 15:51:28 +00001201/// ParseUInt64
1202/// ::= uint64
1203bool LLParser::ParseUInt64(uint64_t &Val) {
1204 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1205 return TokError("expected integer");
1206 Val = Lex.getAPSIntVal().getLimitedValue();
1207 Lex.Lex();
1208 return false;
1209}
1210
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001211/// ParseTLSModel
1212/// := 'localdynamic'
1213/// := 'initialexec'
1214/// := 'localexec'
1215bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1216 switch (Lex.getKind()) {
1217 default:
1218 return TokError("expected localdynamic, initialexec or localexec");
1219 case lltok::kw_localdynamic:
1220 TLM = GlobalVariable::LocalDynamicTLSModel;
1221 break;
1222 case lltok::kw_initialexec:
1223 TLM = GlobalVariable::InitialExecTLSModel;
1224 break;
1225 case lltok::kw_localexec:
1226 TLM = GlobalVariable::LocalExecTLSModel;
1227 break;
1228 }
1229
1230 Lex.Lex();
1231 return false;
1232}
1233
1234/// ParseOptionalThreadLocal
1235/// := /*empty*/
1236/// := 'thread_local'
1237/// := 'thread_local' '(' tlsmodel ')'
1238bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1239 TLM = GlobalVariable::NotThreadLocal;
1240 if (!EatIfPresent(lltok::kw_thread_local))
1241 return false;
1242
1243 TLM = GlobalVariable::GeneralDynamicTLSModel;
1244 if (Lex.getKind() == lltok::lparen) {
1245 Lex.Lex();
1246 return ParseTLSModel(TLM) ||
1247 ParseToken(lltok::rparen, "expected ')' after thread local model");
1248 }
1249 return false;
1250}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001251
1252/// ParseOptionalAddrSpace
1253/// := /*empty*/
1254/// := 'addrspace' '(' uint32 ')'
1255bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1256 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001257 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001258 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001259 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001260 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001261 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001262}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001263
Artur Pilipenko17376c42015-08-03 14:31:49 +00001264/// ParseStringAttribute
1265/// := StringConstant
1266/// := StringConstant '=' StringConstant
1267bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1268 std::string Attr = Lex.getStrVal();
1269 Lex.Lex();
1270 std::string Val;
1271 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1272 return true;
1273 B.addAttribute(Attr, Val);
1274 return false;
1275}
1276
Bill Wendling34c2eb22012-12-04 23:40:58 +00001277/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1278bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1279 bool HaveError = false;
1280
1281 B.clear();
1282
1283 while (1) {
1284 lltok::Kind Token = Lex.getKind();
1285 switch (Token) {
1286 default: // End of attributes.
1287 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001288 case lltok::StringConstant: {
1289 if (ParseStringAttribute(B))
1290 return true;
1291 continue;
1292 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001293 case lltok::kw_align: {
1294 unsigned Alignment;
1295 if (ParseOptionalAlignment(Alignment))
1296 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001297 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001298 continue;
1299 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001300 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001301 case lltok::kw_dereferenceable: {
1302 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001303 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001304 return true;
1305 B.addDereferenceableAttr(Bytes);
1306 continue;
1307 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001308 case lltok::kw_dereferenceable_or_null: {
1309 uint64_t Bytes;
1310 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1311 return true;
1312 B.addDereferenceableOrNullAttr(Bytes);
1313 continue;
1314 }
Reid Klecknera534a382013-12-19 02:14:12 +00001315 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001316 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1317 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1318 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1319 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001320 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001321 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1322 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001323 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001324 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1325 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1326 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001327
Stephen Lin7577ed52013-04-20 13:16:13 +00001328 case lltok::kw_alignstack:
1329 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001330 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001331 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001332 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001333 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001334 case lltok::kw_minsize:
1335 case lltok::kw_naked:
1336 case lltok::kw_nobuiltin:
1337 case lltok::kw_noduplicate:
1338 case lltok::kw_noimplicitfloat:
1339 case lltok::kw_noinline:
1340 case lltok::kw_nonlazybind:
1341 case lltok::kw_noredzone:
1342 case lltok::kw_noreturn:
1343 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001344 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001345 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001346 case lltok::kw_returns_twice:
1347 case lltok::kw_sanitize_address:
1348 case lltok::kw_sanitize_memory:
1349 case lltok::kw_sanitize_thread:
1350 case lltok::kw_ssp:
1351 case lltok::kw_sspreq:
1352 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001353 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001354 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001355 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1356 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001357 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001358
Bill Wendling34c2eb22012-12-04 23:40:58 +00001359 Lex.Lex();
1360 }
1361}
1362
1363/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1364bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1365 bool HaveError = false;
1366
1367 B.clear();
1368
1369 while (1) {
1370 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001371 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001372 default: // End of attributes.
1373 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001374 case lltok::StringConstant: {
1375 if (ParseStringAttribute(B))
1376 return true;
1377 continue;
1378 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001379 case lltok::kw_dereferenceable: {
1380 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001381 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001382 return true;
1383 B.addDereferenceableAttr(Bytes);
1384 continue;
1385 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001386 case lltok::kw_dereferenceable_or_null: {
1387 uint64_t Bytes;
1388 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1389 return true;
1390 B.addDereferenceableOrNullAttr(Bytes);
1391 continue;
1392 }
Artur Pilipenko84bc62f2015-09-18 12:33:31 +00001393 case lltok::kw_align: {
1394 unsigned Alignment;
1395 if (ParseOptionalAlignment(Alignment))
1396 return true;
1397 B.addAlignmentAttr(Alignment);
1398 continue;
1399 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001400 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1401 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001402 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001403 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1404 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001405
Bill Wendling34c2eb22012-12-04 23:40:58 +00001406 // Error handling.
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001407 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001408 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001409 case lltok::kw_nest:
1410 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001411 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001412 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001413 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001414 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001415
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001416 case lltok::kw_alignstack:
1417 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001418 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001419 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001420 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001421 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001422 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001423 case lltok::kw_minsize:
1424 case lltok::kw_naked:
1425 case lltok::kw_nobuiltin:
1426 case lltok::kw_noduplicate:
1427 case lltok::kw_noimplicitfloat:
1428 case lltok::kw_noinline:
1429 case lltok::kw_nonlazybind:
1430 case lltok::kw_noredzone:
1431 case lltok::kw_noreturn:
1432 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001433 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001434 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001435 case lltok::kw_returns_twice:
1436 case lltok::kw_sanitize_address:
1437 case lltok::kw_sanitize_memory:
1438 case lltok::kw_sanitize_thread:
1439 case lltok::kw_ssp:
1440 case lltok::kw_sspreq:
1441 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001442 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001443 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001444 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001445 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001446
1447 case lltok::kw_readnone:
1448 case lltok::kw_readonly:
1449 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001450 }
1451
Chris Lattnerac161bf2009-01-02 07:01:27 +00001452 Lex.Lex();
1453 }
1454}
1455
1456/// ParseOptionalLinkage
1457/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001458/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001459/// ::= 'internal'
1460/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001461/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001462/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001463/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001464/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001465/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001466/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001467/// ::= 'extern_weak'
1468/// ::= 'external'
1469bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1470 HasLinkage = false;
1471 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001472 default: Res=GlobalValue::ExternalLinkage; return false;
1473 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001474 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1475 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1476 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1477 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1478 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001479 case lltok::kw_available_externally:
1480 Res = GlobalValue::AvailableExternallyLinkage;
1481 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001482 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001483 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001484 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1485 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001486 }
1487 Lex.Lex();
1488 HasLinkage = true;
1489 return false;
1490}
1491
1492/// ParseOptionalVisibility
1493/// ::= /*empty*/
1494/// ::= 'default'
1495/// ::= 'hidden'
1496/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001497///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001498bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1499 switch (Lex.getKind()) {
1500 default: Res = GlobalValue::DefaultVisibility; return false;
1501 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1502 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1503 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1504 }
1505 Lex.Lex();
1506 return false;
1507}
1508
Nico Rieck7157bb72014-01-14 15:22:47 +00001509/// ParseOptionalDLLStorageClass
1510/// ::= /*empty*/
1511/// ::= 'dllimport'
1512/// ::= 'dllexport'
1513///
1514bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1515 switch (Lex.getKind()) {
1516 default: Res = GlobalValue::DefaultStorageClass; return false;
1517 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1518 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1519 }
1520 Lex.Lex();
1521 return false;
1522}
1523
Chris Lattnerac161bf2009-01-02 07:01:27 +00001524/// ParseOptionalCallingConv
1525/// ::= /*empty*/
1526/// ::= 'ccc'
1527/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001528/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001529/// ::= 'coldcc'
1530/// ::= 'x86_stdcallcc'
1531/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001532/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001533/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001534/// ::= 'arm_apcscc'
1535/// ::= 'arm_aapcscc'
1536/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001537/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001538/// ::= 'ptx_kernel'
1539/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001540/// ::= 'spir_func'
1541/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001542/// ::= 'x86_64_sysvcc'
1543/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001544/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001545/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001546/// ::= 'preserve_mostcc'
1547/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001548/// ::= 'ghccc'
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001549/// ::= 'hhvmcc'
1550/// ::= 'hhvm_ccc'
Manman Ren19c7bbe2015-12-04 17:40:13 +00001551/// ::= 'cxx_fast_tlscc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001552/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001553///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001554bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001555 switch (Lex.getKind()) {
1556 default: CC = CallingConv::C; return false;
1557 case lltok::kw_ccc: CC = CallingConv::C; break;
1558 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1559 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1560 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1561 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001562 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001563 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001564 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1565 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1566 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001567 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001568 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1569 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001570 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1571 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001572 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001573 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1574 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001575 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001576 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001577 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1578 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001579 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Maksim Panchenkocce239c2015-09-29 22:09:16 +00001580 case lltok::kw_hhvmcc: CC = CallingConv::HHVM; break;
1581 case lltok::kw_hhvm_ccc: CC = CallingConv::HHVM_C; break;
Manman Ren19c7bbe2015-12-04 17:40:13 +00001582 case lltok::kw_cxx_fast_tlscc: CC = CallingConv::CXX_FAST_TLS; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001583 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001584 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001585 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001586 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001587 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001588
Chris Lattnerac161bf2009-01-02 07:01:27 +00001589 Lex.Lex();
1590 return false;
1591}
1592
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001593/// ParseMetadataAttachment
1594/// ::= !dbg !42
1595bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1596 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1597
1598 std::string Name = Lex.getStrVal();
1599 Kind = M->getMDKindID(Name);
1600 Lex.Lex();
1601
1602 return ParseMDNode(MD);
1603}
1604
Chris Lattner5c427632009-12-30 05:31:19 +00001605/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001606/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001607bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001608 do {
1609 if (Lex.getKind() != lltok::MetadataVar)
1610 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001611
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001612 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001613 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001614 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001615 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001616
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001617 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001618 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001619 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001620
Chris Lattner596760d2009-12-29 21:25:40 +00001621 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001622 } while (EatIfPresent(lltok::comma));
1623 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001624}
1625
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001626/// ParseOptionalFunctionMetadata
1627/// ::= (!dbg !57)*
1628bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1629 while (Lex.getKind() == lltok::MetadataVar) {
1630 unsigned MDK;
1631 MDNode *N;
1632 if (ParseMetadataAttachment(MDK, N))
1633 return true;
1634
1635 F.setMetadata(MDK, N);
1636 }
1637 return false;
1638}
1639
Chris Lattnerac161bf2009-01-02 07:01:27 +00001640/// ParseOptionalAlignment
1641/// ::= /* empty */
1642/// ::= 'align' 4
1643bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1644 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001645 if (!EatIfPresent(lltok::kw_align))
1646 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001647 LocTy AlignLoc = Lex.getLoc();
1648 if (ParseUInt32(Alignment)) return true;
1649 if (!isPowerOf2_32(Alignment))
1650 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001651 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001652 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001653 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001654}
1655
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001656/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001657/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001658/// ::= AttrKind '(' 4 ')'
1659///
1660/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1661bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1662 uint64_t &Bytes) {
1663 assert((AttrKind == lltok::kw_dereferenceable ||
1664 AttrKind == lltok::kw_dereferenceable_or_null) &&
1665 "contract!");
1666
Hal Finkelb0407ba2014-07-18 15:51:28 +00001667 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001668 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001669 return false;
1670 LocTy ParenLoc = Lex.getLoc();
1671 if (!EatIfPresent(lltok::lparen))
1672 return Error(ParenLoc, "expected '('");
1673 LocTy DerefLoc = Lex.getLoc();
1674 if (ParseUInt64(Bytes)) return true;
1675 ParenLoc = Lex.getLoc();
1676 if (!EatIfPresent(lltok::rparen))
1677 return Error(ParenLoc, "expected ')'");
1678 if (!Bytes)
1679 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1680 return false;
1681}
1682
Chris Lattnerb2f39502009-12-30 05:44:30 +00001683/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001684/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001685/// ::= ',' align 4
1686///
1687/// This returns with AteExtraComma set to true if it ate an excess comma at the
1688/// end.
1689bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1690 bool &AteExtraComma) {
1691 AteExtraComma = false;
1692 while (EatIfPresent(lltok::comma)) {
1693 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001694 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001695 AteExtraComma = true;
1696 return false;
1697 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001698
Chris Lattner95b0ff42010-04-23 00:50:50 +00001699 if (Lex.getKind() != lltok::kw_align)
1700 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001701
Chris Lattner95b0ff42010-04-23 00:50:50 +00001702 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001703 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001704
Devang Patelea8a4b92009-09-17 23:04:48 +00001705 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001706}
1707
Eli Friedmanfee02c62011-07-25 23:16:38 +00001708/// ParseScopeAndOrdering
1709/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1710/// else: ::=
1711///
1712/// This sets Scope and Ordering to the parsed values.
1713bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1714 AtomicOrdering &Ordering) {
1715 if (!isAtomic)
1716 return false;
1717
1718 Scope = CrossThread;
1719 if (EatIfPresent(lltok::kw_singlethread))
1720 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001721
1722 return ParseOrdering(Ordering);
1723}
1724
1725/// ParseOrdering
1726/// ::= AtomicOrdering
1727///
1728/// This sets Ordering to the parsed value.
1729bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001730 switch (Lex.getKind()) {
1731 default: return TokError("Expected ordering on atomic instruction");
1732 case lltok::kw_unordered: Ordering = Unordered; break;
1733 case lltok::kw_monotonic: Ordering = Monotonic; break;
1734 case lltok::kw_acquire: Ordering = Acquire; break;
1735 case lltok::kw_release: Ordering = Release; break;
1736 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1737 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1738 }
1739 Lex.Lex();
1740 return false;
1741}
1742
Charles Davisbe5557e2010-02-12 00:31:15 +00001743/// ParseOptionalStackAlignment
1744/// ::= /* empty */
1745/// ::= 'alignstack' '(' 4 ')'
1746bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1747 Alignment = 0;
1748 if (!EatIfPresent(lltok::kw_alignstack))
1749 return false;
1750 LocTy ParenLoc = Lex.getLoc();
1751 if (!EatIfPresent(lltok::lparen))
1752 return Error(ParenLoc, "expected '('");
1753 LocTy AlignLoc = Lex.getLoc();
1754 if (ParseUInt32(Alignment)) return true;
1755 ParenLoc = Lex.getLoc();
1756 if (!EatIfPresent(lltok::rparen))
1757 return Error(ParenLoc, "expected ')'");
1758 if (!isPowerOf2_32(Alignment))
1759 return Error(AlignLoc, "stack alignment is not a power of two");
1760 return false;
1761}
Devang Patelea8a4b92009-09-17 23:04:48 +00001762
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001763/// ParseIndexList - This parses the index list for an insert/extractvalue
1764/// instruction. This sets AteExtraComma in the case where we eat an extra
1765/// comma at the end of the line and find that it is followed by metadata.
1766/// Clients that don't allow metadata can call the version of this function that
1767/// only takes one argument.
1768///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001769/// ParseIndexList
1770/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001771///
1772bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1773 bool &AteExtraComma) {
1774 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001775
Chris Lattnerac161bf2009-01-02 07:01:27 +00001776 if (Lex.getKind() != lltok::comma)
1777 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001778
Chris Lattner3822f632009-01-02 08:05:26 +00001779 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001780 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001781 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001782 AteExtraComma = true;
1783 return false;
1784 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001785 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001786 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001787 Indices.push_back(Idx);
1788 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001789
Chris Lattnerac161bf2009-01-02 07:01:27 +00001790 return false;
1791}
1792
1793//===----------------------------------------------------------------------===//
1794// Type Parsing.
1795//===----------------------------------------------------------------------===//
1796
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001797/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001798bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001799 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001800 switch (Lex.getKind()) {
1801 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001802 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001803 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001804 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001805 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001806 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001807 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001808 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001809 // Type ::= StructType
1810 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001811 return true;
1812 break;
1813 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001814 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001815 Lex.Lex(); // eat the lsquare.
1816 if (ParseArrayVectorType(Result, false))
1817 return true;
1818 break;
1819 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001820 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001821 Lex.Lex();
1822 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001823 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001824 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001825 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001826 } else if (ParseArrayVectorType(Result, true))
1827 return true;
1828 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001829 case lltok::LocalVar: {
1830 // Type ::= %foo
1831 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001832
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001833 // If the type hasn't been defined yet, create a forward definition and
1834 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001835 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001836 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001837 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001838 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001839 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001840 Lex.Lex();
1841 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001842 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001843
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001844 case lltok::LocalVarID: {
1845 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001846 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001847
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001848 // If the type hasn't been defined yet, create a forward definition and
1849 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001850 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001851 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001852 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001853 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001854 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001855 Lex.Lex();
1856 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001857 }
1858 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001859
1860 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001861 while (1) {
1862 switch (Lex.getKind()) {
1863 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001864 default:
1865 if (!AllowVoid && Result->isVoidTy())
1866 return Error(TypeLoc, "void type only allowed for function results");
1867 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001868
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001869 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001870 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001871 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001872 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001873 if (Result->isVoidTy())
1874 return TokError("pointers to void are invalid - use i8* instead");
1875 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001876 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001877 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001878 Lex.Lex();
1879 break;
1880
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001881 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001882 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001883 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001884 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001885 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001886 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001887 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001888 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001889 unsigned AddrSpace;
1890 if (ParseOptionalAddrSpace(AddrSpace) ||
1891 ParseToken(lltok::star, "expected '*' in address space"))
1892 return true;
1893
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001894 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001895 break;
1896 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001897
Chris Lattnerac161bf2009-01-02 07:01:27 +00001898 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1899 case lltok::lparen:
1900 if (ParseFunctionType(Result))
1901 return true;
1902 break;
1903 }
1904 }
1905}
1906
1907/// ParseParameterList
1908/// ::= '(' ')'
1909/// ::= '(' Arg (',' Arg)* ')'
1910/// Arg
1911/// ::= Type OptionalAttributes Value OptionalAttributes
1912bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001913 PerFunctionState &PFS, bool IsMustTailCall,
1914 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001915 if (ParseToken(lltok::lparen, "expected '(' in call"))
1916 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001917
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001918 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001919 while (Lex.getKind() != lltok::rparen) {
1920 // If this isn't the first argument, we need a comma.
1921 if (!ArgList.empty() &&
1922 ParseToken(lltok::comma, "expected ',' in argument list"))
1923 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001924
Reid Kleckner83498642014-08-26 00:33:28 +00001925 // Parse an ellipsis if this is a musttail call in a variadic function.
1926 if (Lex.getKind() == lltok::dotdotdot) {
1927 const char *Msg = "unexpected ellipsis in argument list for ";
1928 if (!IsMustTailCall)
1929 return TokError(Twine(Msg) + "non-musttail call");
1930 if (!InVarArgsFunc)
1931 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1932 Lex.Lex(); // Lex the '...', it is purely for readability.
1933 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1934 }
1935
Chris Lattnerac161bf2009-01-02 07:01:27 +00001936 // Parse the argument.
1937 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001938 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001939 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001940 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001941 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001942 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001943
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001944 if (ArgTy->isMetadataTy()) {
1945 if (ParseMetadataAsValue(V, PFS))
1946 return true;
1947 } else {
1948 // Otherwise, handle normal operands.
1949 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1950 return true;
1951 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001952 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1953 AttrIndex++,
1954 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001955 }
1956
Reid Kleckner83498642014-08-26 00:33:28 +00001957 if (IsMustTailCall && InVarArgsFunc)
1958 return TokError("expected '...' at end of argument list for musttail call "
1959 "in varargs function");
1960
Chris Lattnerac161bf2009-01-02 07:01:27 +00001961 Lex.Lex(); // Lex the ')'.
1962 return false;
1963}
1964
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001965/// ParseOptionalOperandBundles
1966/// ::= /*empty*/
1967/// ::= '[' OperandBundle [, OperandBundle ]* ']'
1968///
1969/// OperandBundle
1970/// ::= bundle-tag '(' ')'
1971/// ::= bundle-tag '(' Type Value [, Type Value ]* ')'
1972///
1973/// bundle-tag ::= String Constant
1974bool LLParser::ParseOptionalOperandBundles(
1975 SmallVectorImpl<OperandBundleDef> &BundleList, PerFunctionState &PFS) {
1976 LocTy BeginLoc = Lex.getLoc();
1977 if (!EatIfPresent(lltok::lsquare))
1978 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001979
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001980 while (Lex.getKind() != lltok::rsquare) {
1981 // If this isn't the first operand bundle, we need a comma.
1982 if (!BundleList.empty() &&
1983 ParseToken(lltok::comma, "expected ',' in input list"))
1984 return true;
1985
1986 std::string Tag;
1987 if (ParseStringConstant(Tag))
1988 return true;
1989
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001990 if (ParseToken(lltok::lparen, "expected '(' in operand bundle"))
1991 return true;
1992
Sanjoy Dasf79d3442015-11-18 08:30:07 +00001993 std::vector<Value *> Inputs;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001994 while (Lex.getKind() != lltok::rparen) {
1995 // If this isn't the first input, we need a comma.
Sanjoy Dasf79d3442015-11-18 08:30:07 +00001996 if (!Inputs.empty() &&
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00001997 ParseToken(lltok::comma, "expected ',' in input list"))
1998 return true;
1999
2000 Type *Ty = nullptr;
2001 Value *Input = nullptr;
2002 if (ParseType(Ty) || ParseValue(Ty, Input, PFS))
2003 return true;
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002004 Inputs.push_back(Input);
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002005 }
2006
Sanjoy Dasf79d3442015-11-18 08:30:07 +00002007 BundleList.emplace_back(std::move(Tag), std::move(Inputs));
2008
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00002009 Lex.Lex(); // Lex the ')'.
2010 }
2011
2012 if (BundleList.empty())
2013 return Error(BeginLoc, "operand bundle set must not be empty");
2014
2015 Lex.Lex(); // Lex the ']'.
2016 return false;
2017}
Chris Lattnerac161bf2009-01-02 07:01:27 +00002018
Chris Lattner2ed06b42009-01-05 18:34:07 +00002019/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002020/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00002021/// ::= '(' ArgTypeListI ')'
2022/// ArgTypeListI
2023/// ::= /*empty*/
2024/// ::= '...'
2025/// ::= ArgTypeList ',' '...'
2026/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00002027///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002028bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
2029 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00002030 isVarArg = false;
2031 assert(Lex.getKind() == lltok::lparen);
2032 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002033
Chris Lattnerac161bf2009-01-02 07:01:27 +00002034 if (Lex.getKind() == lltok::rparen) {
2035 // empty
2036 } else if (Lex.getKind() == lltok::dotdotdot) {
2037 isVarArg = true;
2038 Lex.Lex();
2039 } else {
2040 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002041 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00002042 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002043 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002044
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002045 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00002046 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002047
Chris Lattnerfdd87902009-10-05 05:54:46 +00002048 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002049 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002050
Chris Lattnerdef19492011-06-17 06:36:20 +00002051 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002052 Name = Lex.getStrVal();
2053 Lex.Lex();
2054 }
Chris Lattner3822f632009-01-02 08:05:26 +00002055
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002056 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00002057 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002058
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002059 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002060 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
2061 AttrIndex++, Attrs),
2062 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002063
Chris Lattner3822f632009-01-02 08:05:26 +00002064 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002065 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00002066 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002067 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002068 break;
2069 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002070
Chris Lattnerac161bf2009-01-02 07:01:27 +00002071 // Otherwise must be an argument type.
2072 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00002073 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00002074
Chris Lattnerfdd87902009-10-05 05:54:46 +00002075 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002076 return Error(TypeLoc, "argument can not have void type");
2077
Chris Lattnerdef19492011-06-17 06:36:20 +00002078 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002079 Name = Lex.getStrVal();
2080 Lex.Lex();
2081 } else {
2082 Name = "";
2083 }
Chris Lattner3822f632009-01-02 08:05:26 +00002084
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002085 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002086 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002087
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002088 ArgList.emplace_back(
2089 TypeLoc, ArgTy,
2090 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2091 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002092 }
2093 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002094
Chris Lattner3822f632009-01-02 08:05:26 +00002095 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002096}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002097
Chris Lattnerac161bf2009-01-02 07:01:27 +00002098/// ParseFunctionType
2099/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002100bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002101 assert(Lex.getKind() == lltok::lparen);
2102
Chris Lattnerce473c72009-01-05 08:04:33 +00002103 if (!FunctionType::isValidReturnType(Result))
2104 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002105
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002106 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002107 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002108 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002109 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002110
Chris Lattnerac161bf2009-01-02 07:01:27 +00002111 // Reject names on the arguments lists.
2112 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2113 if (!ArgList[i].Name.empty())
2114 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002115 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002116 return Error(ArgList[i].Loc,
2117 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002118 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002119
Jay Foadb804a2b2011-07-12 14:06:48 +00002120 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002121 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002122 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002123
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002124 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002125 return false;
2126}
2127
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002128/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2129/// other structs.
2130bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2131 SmallVector<Type*, 8> Elts;
2132 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002133
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002134 Result = StructType::get(Context, Elts, Packed);
2135 return false;
2136}
2137
2138/// ParseStructDefinition - Parse a struct in a 'type' definition.
2139bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2140 std::pair<Type*, LocTy> &Entry,
2141 Type *&ResultTy) {
2142 // If the type was already defined, diagnose the redefinition.
2143 if (Entry.first && !Entry.second.isValid())
2144 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002145
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002146 // If we have opaque, just return without filling in the definition for the
2147 // struct. This counts as a definition as far as the .ll file goes.
2148 if (EatIfPresent(lltok::kw_opaque)) {
2149 // This type is being defined, so clear the location to indicate this.
2150 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002151
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002152 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002153 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002154 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002155 ResultTy = Entry.first;
2156 return false;
2157 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002158
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002159 // If the type starts with '<', then it is either a packed struct or a vector.
2160 bool isPacked = EatIfPresent(lltok::less);
2161
2162 // If we don't have a struct, then we have a random type alias, which we
2163 // accept for compatibility with old files. These types are not allowed to be
2164 // forward referenced and not allowed to be recursive.
2165 if (Lex.getKind() != lltok::lbrace) {
2166 if (Entry.first)
2167 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002168
Craig Topper2617dcc2014-04-15 06:32:26 +00002169 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002170 if (isPacked)
2171 return ParseArrayVectorType(ResultTy, true);
2172 return ParseType(ResultTy);
2173 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002174
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002175 // This type is being defined, so clear the location to indicate this.
2176 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002177
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002178 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002179 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002180 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002181
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002182 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002183
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002184 SmallVector<Type*, 8> Body;
2185 if (ParseStructBody(Body) ||
2186 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2187 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002188
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002189 STy->setBody(Body, isPacked);
2190 ResultTy = STy;
2191 return false;
2192}
2193
2194
Chris Lattnerac161bf2009-01-02 07:01:27 +00002195/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002196/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002197/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002198/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002199/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002200/// ::= '<' '{' Type (',' Type)* '}' '>'
2201bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002202 assert(Lex.getKind() == lltok::lbrace);
2203 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002204
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002205 // Handle the empty struct.
2206 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002207 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002208
Chris Lattnerf880ca22009-03-09 04:49:14 +00002209 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002210 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002211 if (ParseType(Ty)) return true;
2212 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002213
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002214 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002215 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002216
Chris Lattner3822f632009-01-02 08:05:26 +00002217 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002218 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002219 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002220
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002221 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002222 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002223
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002224 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002225 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002226
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002227 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002228}
2229
2230/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2231/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002232/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002233/// ::= '[' APSINTVAL 'x' Types ']'
2234/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002235bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002236 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2237 Lex.getAPSIntVal().getBitWidth() > 64)
2238 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002239
Chris Lattnerac161bf2009-01-02 07:01:27 +00002240 LocTy SizeLoc = Lex.getLoc();
2241 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002242 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002243
Chris Lattner3822f632009-01-02 08:05:26 +00002244 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2245 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002246
2247 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002248 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002249 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002250
Chris Lattner3822f632009-01-02 08:05:26 +00002251 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2252 "expected end of sequential type"))
2253 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002254
Chris Lattnerac161bf2009-01-02 07:01:27 +00002255 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002256 if (Size == 0)
2257 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002258 if ((unsigned)Size != Size)
2259 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002260 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002261 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002262 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002263 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002264 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002265 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002266 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002267 }
2268 return false;
2269}
2270
2271//===----------------------------------------------------------------------===//
2272// Function Semantic Analysis.
2273//===----------------------------------------------------------------------===//
2274
Chris Lattner3432c622009-10-28 03:39:23 +00002275LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2276 int functionNumber)
2277 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002278
2279 // Insert unnamed arguments into the NumberedVals list.
Duncan P. N. Exon Smithac331fb2015-10-20 01:12:49 +00002280 for (Argument &A : F.args())
2281 if (!A.hasName())
2282 NumberedVals.push_back(&A);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002283}
2284
2285LLParser::PerFunctionState::~PerFunctionState() {
2286 // If there were any forward referenced non-basicblock values, delete them.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002287
David Blaikie9ebdc692015-09-21 21:07:50 +00002288 for (const auto &P : ForwardRefVals) {
2289 if (isa<BasicBlock>(P.second.first))
2290 continue;
2291 P.second.first->replaceAllUsesWith(
2292 UndefValue::get(P.second.first->getType()));
2293 delete P.second.first;
2294 }
2295
2296 for (const auto &P : ForwardRefValIDs) {
2297 if (isa<BasicBlock>(P.second.first))
2298 continue;
2299 P.second.first->replaceAllUsesWith(
2300 UndefValue::get(P.second.first->getType()));
2301 delete P.second.first;
2302 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002303}
2304
Chris Lattner3432c622009-10-28 03:39:23 +00002305bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002306 if (!ForwardRefVals.empty())
2307 return P.Error(ForwardRefVals.begin()->second.second,
2308 "use of undefined value '%" + ForwardRefVals.begin()->first +
2309 "'");
2310 if (!ForwardRefValIDs.empty())
2311 return P.Error(ForwardRefValIDs.begin()->second.second,
2312 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002313 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002314 return false;
2315}
2316
2317
2318/// GetVal - Get a value with the specified name or ID, creating a
2319/// forward reference record if needed. This can return null if the value
2320/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002321Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
David Majnemer8a1c45d2015-12-12 05:38:55 +00002322 LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002323 // Look this name up in the normal function symbol table.
2324 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002325
Chris Lattnerac161bf2009-01-02 07:01:27 +00002326 // If this is a forward reference for the value, see if we already created a
2327 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002328 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002329 auto I = ForwardRefVals.find(Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002330 if (I != ForwardRefVals.end())
2331 Val = I->second.first;
2332 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002333
Chris Lattnerac161bf2009-01-02 07:01:27 +00002334 // If we have the value in the symbol table or fwd-ref table, return it.
2335 if (Val) {
2336 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002337 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002338 P.Error(Loc, "'%" + Name + "' is not a basic block");
2339 else
2340 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002341 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002342 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002343 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002344
Chris Lattnerac161bf2009-01-02 07:01:27 +00002345 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002346 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002347 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002348 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002349 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002350
Chris Lattnerac161bf2009-01-02 07:01:27 +00002351 // Otherwise, create a new forward reference for this value and remember it.
2352 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002353 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002354 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002355 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002356 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002357 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002358
Chris Lattnerac161bf2009-01-02 07:01:27 +00002359 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2360 return FwdVal;
2361}
2362
David Majnemer8a1c45d2015-12-12 05:38:55 +00002363Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002364 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002365 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002366
Chris Lattnerac161bf2009-01-02 07:01:27 +00002367 // If this is a forward reference for the value, see if we already created a
2368 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002369 if (!Val) {
David Blaikie9ebdc692015-09-21 21:07:50 +00002370 auto I = ForwardRefValIDs.find(ID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002371 if (I != ForwardRefValIDs.end())
2372 Val = I->second.first;
2373 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002374
Chris Lattnerac161bf2009-01-02 07:01:27 +00002375 // If we have the value in the symbol table or fwd-ref table, return it.
2376 if (Val) {
2377 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002378 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002379 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002380 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002381 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002382 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002383 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002384 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002385
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002386 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002387 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002388 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002389 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002390
Chris Lattnerac161bf2009-01-02 07:01:27 +00002391 // Otherwise, create a new forward reference for this value and remember it.
2392 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002393 if (Ty->isLabelTy()) {
Owen Anderson55f1c092009-08-13 21:58:54 +00002394 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002395 } else {
David Majnemer8a1c45d2015-12-12 05:38:55 +00002396 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002397 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002398
Chris Lattnerac161bf2009-01-02 07:01:27 +00002399 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2400 return FwdVal;
2401}
2402
2403/// SetInstName - After an instruction is parsed and inserted into its
2404/// basic block, this installs its name.
2405bool LLParser::PerFunctionState::SetInstName(int NameID,
2406 const std::string &NameStr,
2407 LocTy NameLoc, Instruction *Inst) {
2408 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002409 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002410 if (NameID != -1 || !NameStr.empty())
2411 return P.Error(NameLoc, "instructions returning void cannot have a name");
2412 return false;
2413 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002414
Chris Lattnerac161bf2009-01-02 07:01:27 +00002415 // If this was a numbered instruction, verify that the instruction is the
2416 // expected value and resolve any forward references.
2417 if (NameStr.empty()) {
2418 // If neither a name nor an ID was specified, just use the next ID.
2419 if (NameID == -1)
2420 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002421
Chris Lattnerac161bf2009-01-02 07:01:27 +00002422 if (unsigned(NameID) != NumberedVals.size())
2423 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002424 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002425
David Blaikie9ebdc692015-09-21 21:07:50 +00002426 auto FI = ForwardRefValIDs.find(NameID);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002427 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002428 Value *Sentinel = FI->second.first;
2429 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002430 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002431 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002432
2433 Sentinel->replaceAllUsesWith(Inst);
2434 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002435 ForwardRefValIDs.erase(FI);
2436 }
2437
2438 NumberedVals.push_back(Inst);
2439 return false;
2440 }
2441
2442 // Otherwise, the instruction had a name. Resolve forward refs and set it.
David Blaikie9ebdc692015-09-21 21:07:50 +00002443 auto FI = ForwardRefVals.find(NameStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002444 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002445 Value *Sentinel = FI->second.first;
2446 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002447 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002448 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002449
2450 Sentinel->replaceAllUsesWith(Inst);
2451 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002452 ForwardRefVals.erase(FI);
2453 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002454
Chris Lattnerac161bf2009-01-02 07:01:27 +00002455 // Set the name on the instruction.
2456 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002457
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002458 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002459 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002460 NameStr + "'");
2461 return false;
2462}
2463
2464/// GetBB - Get a basic block with the specified name or ID, creating a
2465/// forward reference record if needed.
2466BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2467 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002468 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2469 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002470}
2471
2472BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002473 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2474 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002475}
2476
2477/// DefineBB - Define the specified basic block, which is either named or
2478/// unnamed. If there is an error, this returns null otherwise it returns
2479/// the block being defined.
2480BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2481 LocTy Loc) {
2482 BasicBlock *BB;
2483 if (Name.empty())
2484 BB = GetBB(NumberedVals.size(), Loc);
2485 else
2486 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002487 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002488
Chris Lattnerac161bf2009-01-02 07:01:27 +00002489 // Move the block to the end of the function. Forward ref'd blocks are
2490 // inserted wherever they happen to be referenced.
2491 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002492
Chris Lattnerac161bf2009-01-02 07:01:27 +00002493 // Remove the block from forward ref sets.
2494 if (Name.empty()) {
2495 ForwardRefValIDs.erase(NumberedVals.size());
2496 NumberedVals.push_back(BB);
2497 } else {
2498 // BB forward references are already in the function symbol table.
2499 ForwardRefVals.erase(Name);
2500 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002501
Chris Lattnerac161bf2009-01-02 07:01:27 +00002502 return BB;
2503}
2504
2505//===----------------------------------------------------------------------===//
2506// Constants.
2507//===----------------------------------------------------------------------===//
2508
2509/// ParseValID - Parse an abstract value that doesn't necessarily have a
2510/// type implied. For example, if we parse "4" we don't know what integer type
2511/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002512/// sanity. PFS is used to convert function-local operands of metadata (since
2513/// metadata operands are not just parsed here but also converted to values).
2514/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002515bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002516 ID.Loc = Lex.getLoc();
2517 switch (Lex.getKind()) {
2518 default: return TokError("expected value token");
2519 case lltok::GlobalID: // @42
2520 ID.UIntVal = Lex.getUIntVal();
2521 ID.Kind = ValID::t_GlobalID;
2522 break;
2523 case lltok::GlobalVar: // @foo
2524 ID.StrVal = Lex.getStrVal();
2525 ID.Kind = ValID::t_GlobalName;
2526 break;
2527 case lltok::LocalVarID: // %42
2528 ID.UIntVal = Lex.getUIntVal();
2529 ID.Kind = ValID::t_LocalID;
2530 break;
2531 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002532 ID.StrVal = Lex.getStrVal();
2533 ID.Kind = ValID::t_LocalName;
2534 break;
2535 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002536 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002537 ID.Kind = ValID::t_APSInt;
2538 break;
2539 case lltok::APFloat:
2540 ID.APFloatVal = Lex.getAPFloatVal();
2541 ID.Kind = ValID::t_APFloat;
2542 break;
2543 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002544 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002545 ID.Kind = ValID::t_Constant;
2546 break;
2547 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002548 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002549 ID.Kind = ValID::t_Constant;
2550 break;
2551 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2552 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2553 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
David Majnemerf0f224d2015-11-11 21:57:16 +00002554 case lltok::kw_none: ID.Kind = ValID::t_None; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002555
Chris Lattnerac161bf2009-01-02 07:01:27 +00002556 case lltok::lbrace: {
2557 // ValID ::= '{' ConstVector '}'
2558 Lex.Lex();
2559 SmallVector<Constant*, 16> Elts;
2560 if (ParseGlobalValueVector(Elts) ||
2561 ParseToken(lltok::rbrace, "expected end of struct constant"))
2562 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002563
David Blaikieadbda4b2015-08-03 20:08:41 +00002564 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002565 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002566 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2567 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002568 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002569 return false;
2570 }
2571 case lltok::less: {
2572 // ValID ::= '<' ConstVector '>' --> Vector.
2573 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2574 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002575 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002576
Chris Lattnerac161bf2009-01-02 07:01:27 +00002577 SmallVector<Constant*, 16> Elts;
2578 LocTy FirstEltLoc = Lex.getLoc();
2579 if (ParseGlobalValueVector(Elts) ||
2580 (isPackedStruct &&
2581 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2582 ParseToken(lltok::greater, "expected end of constant"))
2583 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002584
Chris Lattnerac161bf2009-01-02 07:01:27 +00002585 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002586 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2587 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2588 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002589 ID.UIntVal = Elts.size();
2590 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002591 return false;
2592 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002593
Chris Lattnerac161bf2009-01-02 07:01:27 +00002594 if (Elts.empty())
2595 return Error(ID.Loc, "constant vector must not be empty");
2596
Duncan Sands9dff9be2010-02-15 16:12:20 +00002597 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002598 !Elts[0]->getType()->isFloatingPointTy() &&
2599 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002600 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002601 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002602
Chris Lattnerac161bf2009-01-02 07:01:27 +00002603 // Verify that all the vector elements have the same type.
2604 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2605 if (Elts[i]->getType() != Elts[0]->getType())
2606 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002607 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002608 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002609
Chris Lattner69229312011-02-15 00:14:00 +00002610 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002611 ID.Kind = ValID::t_Constant;
2612 return false;
2613 }
2614 case lltok::lsquare: { // Array Constant
2615 Lex.Lex();
2616 SmallVector<Constant*, 16> Elts;
2617 LocTy FirstEltLoc = Lex.getLoc();
2618 if (ParseGlobalValueVector(Elts) ||
2619 ParseToken(lltok::rsquare, "expected end of array constant"))
2620 return true;
2621
2622 // Handle empty element.
2623 if (Elts.empty()) {
2624 // Use undef instead of an array because it's inconvenient to determine
2625 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002626 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002627 return false;
2628 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002629
Chris Lattnerac161bf2009-01-02 07:01:27 +00002630 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002631 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002632 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002633
Owen Anderson4056ca92009-07-29 22:17:13 +00002634 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002635
Chris Lattnerac161bf2009-01-02 07:01:27 +00002636 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002637 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002638 if (Elts[i]->getType() != Elts[0]->getType())
2639 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002640 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002641 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002642 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002643
Jay Foad83be3612011-06-22 09:24:39 +00002644 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002645 ID.Kind = ValID::t_Constant;
2646 return false;
2647 }
2648 case lltok::kw_c: // c "foo"
2649 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002650 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2651 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002652 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2653 ID.Kind = ValID::t_Constant;
2654 return false;
2655
2656 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002657 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2658 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002659 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002660 Lex.Lex();
2661 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002662 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002663 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002664 ParseStringConstant(ID.StrVal) ||
2665 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002666 ParseToken(lltok::StringConstant, "expected constraint string"))
2667 return true;
2668 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002669 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002670 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002671 ID.Kind = ValID::t_InlineAsm;
2672 return false;
2673 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002674
Chris Lattner3432c622009-10-28 03:39:23 +00002675 case lltok::kw_blockaddress: {
2676 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2677 Lex.Lex();
2678
2679 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002680
Chris Lattner3432c622009-10-28 03:39:23 +00002681 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2682 ParseValID(Fn) ||
2683 ParseToken(lltok::comma, "expected comma in block address expression")||
2684 ParseValID(Label) ||
2685 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2686 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002687
Chris Lattner3432c622009-10-28 03:39:23 +00002688 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2689 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002690 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002691 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002692
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002693 // Try to find the function (but skip it if it's forward-referenced).
2694 GlobalValue *GV = nullptr;
2695 if (Fn.Kind == ValID::t_GlobalID) {
2696 if (Fn.UIntVal < NumberedVals.size())
2697 GV = NumberedVals[Fn.UIntVal];
2698 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2699 GV = M->getNamedValue(Fn.StrVal);
2700 }
2701 Function *F = nullptr;
2702 if (GV) {
2703 // Confirm that it's actually a function with a definition.
2704 if (!isa<Function>(GV))
2705 return Error(Fn.Loc, "expected function name in blockaddress");
2706 F = cast<Function>(GV);
2707 if (F->isDeclaration())
2708 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2709 }
2710
2711 if (!F) {
2712 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002713 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002714 ForwardRefBlockAddresses.insert(std::make_pair(
2715 std::move(Fn),
2716 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002717 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2718 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002719 if (!FwdRef)
2720 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2721 GlobalValue::InternalLinkage, nullptr, "");
2722 ID.ConstantVal = FwdRef;
2723 ID.Kind = ValID::t_Constant;
2724 return false;
2725 }
2726
2727 // We found the function; now find the basic block. Don't use PFS, since we
2728 // might be inside a constant expression.
2729 BasicBlock *BB;
2730 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2731 if (Label.Kind == ValID::t_LocalID)
2732 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2733 else
2734 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2735 if (!BB)
2736 return Error(Label.Loc, "referenced value is not a basic block");
2737 } else {
2738 if (Label.Kind == ValID::t_LocalID)
2739 return Error(Label.Loc, "cannot take address of numeric label after "
2740 "the function is defined");
2741 BB = dyn_cast_or_null<BasicBlock>(
2742 F->getValueSymbolTable().lookup(Label.StrVal));
2743 if (!BB)
2744 return Error(Label.Loc, "referenced value is not a basic block");
2745 }
2746
2747 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002748 ID.Kind = ValID::t_Constant;
2749 return false;
2750 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002751
Chris Lattnerac161bf2009-01-02 07:01:27 +00002752 case lltok::kw_trunc:
2753 case lltok::kw_zext:
2754 case lltok::kw_sext:
2755 case lltok::kw_fptrunc:
2756 case lltok::kw_fpext:
2757 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002758 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002759 case lltok::kw_uitofp:
2760 case lltok::kw_sitofp:
2761 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002762 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002763 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002764 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002765 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002766 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002767 Constant *SrcVal;
2768 Lex.Lex();
2769 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2770 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002771 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002772 ParseType(DestTy) ||
2773 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2774 return true;
2775 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2776 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002777 getTypeString(SrcVal->getType()) + "' to '" +
2778 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002779 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002780 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002781 ID.Kind = ValID::t_Constant;
2782 return false;
2783 }
2784 case lltok::kw_extractvalue: {
2785 Lex.Lex();
2786 Constant *Val;
2787 SmallVector<unsigned, 4> Indices;
2788 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2789 ParseGlobalTypeAndValue(Val) ||
2790 ParseIndexList(Indices) ||
2791 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2792 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002793
Chris Lattner392be582010-02-12 20:49:41 +00002794 if (!Val->getType()->isAggregateType())
2795 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002796 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002797 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002798 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002799 ID.Kind = ValID::t_Constant;
2800 return false;
2801 }
2802 case lltok::kw_insertvalue: {
2803 Lex.Lex();
2804 Constant *Val0, *Val1;
2805 SmallVector<unsigned, 4> Indices;
2806 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2807 ParseGlobalTypeAndValue(Val0) ||
2808 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2809 ParseGlobalTypeAndValue(Val1) ||
2810 ParseIndexList(Indices) ||
2811 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2812 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002813 if (!Val0->getType()->isAggregateType())
2814 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002815 Type *IndexedType =
2816 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2817 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002818 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002819 if (IndexedType != Val1->getType())
2820 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2821 getTypeString(Val1->getType()) +
2822 "' instead of '" + getTypeString(IndexedType) +
2823 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002824 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002825 ID.Kind = ValID::t_Constant;
2826 return false;
2827 }
2828 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002829 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002830 unsigned PredVal, Opc = Lex.getUIntVal();
2831 Constant *Val0, *Val1;
2832 Lex.Lex();
2833 if (ParseCmpPredicate(PredVal, Opc) ||
2834 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2835 ParseGlobalTypeAndValue(Val0) ||
2836 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2837 ParseGlobalTypeAndValue(Val1) ||
2838 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2839 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002840
Chris Lattnerac161bf2009-01-02 07:01:27 +00002841 if (Val0->getType() != Val1->getType())
2842 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002843
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002845
Chris Lattnerac161bf2009-01-02 07:01:27 +00002846 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002847 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002848 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002849 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002850 } else {
2851 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002852 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002853 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002854 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002855 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002856 }
2857 ID.Kind = ValID::t_Constant;
2858 return false;
2859 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002860
Chris Lattnerac161bf2009-01-02 07:01:27 +00002861 // Binary Operators.
2862 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002863 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002864 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002865 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002866 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002867 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002868 case lltok::kw_udiv:
2869 case lltok::kw_sdiv:
2870 case lltok::kw_fdiv:
2871 case lltok::kw_urem:
2872 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002873 case lltok::kw_frem:
2874 case lltok::kw_shl:
2875 case lltok::kw_lshr:
2876 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002877 bool NUW = false;
2878 bool NSW = false;
2879 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002880 unsigned Opc = Lex.getUIntVal();
2881 Constant *Val0, *Val1;
2882 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002883 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002884 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2885 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002886 if (EatIfPresent(lltok::kw_nuw))
2887 NUW = true;
2888 if (EatIfPresent(lltok::kw_nsw)) {
2889 NSW = true;
2890 if (EatIfPresent(lltok::kw_nuw))
2891 NUW = true;
2892 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002893 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2894 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002895 if (EatIfPresent(lltok::kw_exact))
2896 Exact = true;
2897 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002898 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2899 ParseGlobalTypeAndValue(Val0) ||
2900 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2901 ParseGlobalTypeAndValue(Val1) ||
2902 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2903 return true;
2904 if (Val0->getType() != Val1->getType())
2905 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002906 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002907 if (NUW)
2908 return Error(ModifierLoc, "nuw only applies to integer operations");
2909 if (NSW)
2910 return Error(ModifierLoc, "nsw only applies to integer operations");
2911 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002912 // Check that the type is valid for the operator.
2913 switch (Opc) {
2914 case Instruction::Add:
2915 case Instruction::Sub:
2916 case Instruction::Mul:
2917 case Instruction::UDiv:
2918 case Instruction::SDiv:
2919 case Instruction::URem:
2920 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002921 case Instruction::Shl:
2922 case Instruction::AShr:
2923 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002924 if (!Val0->getType()->isIntOrIntVectorTy())
2925 return Error(ID.Loc, "constexpr requires integer operands");
2926 break;
2927 case Instruction::FAdd:
2928 case Instruction::FSub:
2929 case Instruction::FMul:
2930 case Instruction::FDiv:
2931 case Instruction::FRem:
2932 if (!Val0->getType()->isFPOrFPVectorTy())
2933 return Error(ID.Loc, "constexpr requires fp operands");
2934 break;
2935 default: llvm_unreachable("Unknown binary operator!");
2936 }
Dan Gohman1b849082009-09-07 23:54:19 +00002937 unsigned Flags = 0;
2938 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2939 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002940 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002941 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002942 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002943 ID.Kind = ValID::t_Constant;
2944 return false;
2945 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002946
Chris Lattnerac161bf2009-01-02 07:01:27 +00002947 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002948 case lltok::kw_and:
2949 case lltok::kw_or:
2950 case lltok::kw_xor: {
2951 unsigned Opc = Lex.getUIntVal();
2952 Constant *Val0, *Val1;
2953 Lex.Lex();
2954 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2955 ParseGlobalTypeAndValue(Val0) ||
2956 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2957 ParseGlobalTypeAndValue(Val1) ||
2958 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2959 return true;
2960 if (Val0->getType() != Val1->getType())
2961 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002962 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002963 return Error(ID.Loc,
2964 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002965 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002966 ID.Kind = ValID::t_Constant;
2967 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002968 }
2969
Chris Lattnerac161bf2009-01-02 07:01:27 +00002970 case lltok::kw_getelementptr:
2971 case lltok::kw_shufflevector:
2972 case lltok::kw_insertelement:
2973 case lltok::kw_extractelement:
2974 case lltok::kw_select: {
2975 unsigned Opc = Lex.getUIntVal();
2976 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002977 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00002978 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002979 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00002980
Dan Gohman1639c392009-07-27 21:53:46 +00002981 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002982 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00002983
2984 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2985 return true;
2986
2987 LocTy ExplicitTypeLoc = Lex.getLoc();
2988 if (Opc == Instruction::GetElementPtr) {
2989 if (ParseType(Ty) ||
2990 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
2991 return true;
2992 }
2993
2994 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002995 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2996 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002997
Chris Lattnerac161bf2009-01-02 07:01:27 +00002998 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00002999 if (Elts.size() == 0 ||
3000 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003001 return Error(ID.Loc, "base of getelementptr must be a pointer");
3002
3003 Type *BaseType = Elts[0]->getType();
3004 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003005 if (Ty != BasePointerType->getElementType())
3006 return Error(
3007 ExplicitTypeLoc,
3008 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003009
Jay Foaded8db7d2011-07-21 14:31:17 +00003010 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003011 for (Constant *Val : Indices) {
3012 Type *ValTy = Val->getType();
3013 if (!ValTy->getScalarType()->isIntegerTy())
3014 return Error(ID.Loc, "getelementptr index must be an integer");
3015 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3016 return Error(ID.Loc, "getelementptr index type missmatch");
3017 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003018 unsigned ValNumEl = ValTy->getVectorNumElements();
3019 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003020 if (ValNumEl != PtrNumEl)
3021 return Error(
3022 ID.Loc,
3023 "getelementptr vector index has a wrong number of elements");
3024 }
3025 }
3026
Craig Toppere3dcce92015-08-01 22:20:21 +00003027 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003028 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003029 return Error(ID.Loc, "base element of getelementptr must be sized");
3030
David Blaikie4a2e73b2015-04-02 18:55:32 +00003031 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003032 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00003033 ID.ConstantVal =
3034 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003035 } else if (Opc == Instruction::Select) {
3036 if (Elts.size() != 3)
3037 return Error(ID.Loc, "expected three operands to select");
3038 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3039 Elts[2]))
3040 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003041 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003042 } else if (Opc == Instruction::ShuffleVector) {
3043 if (Elts.size() != 3)
3044 return Error(ID.Loc, "expected three operands to shufflevector");
3045 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3046 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003047 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003048 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003049 } else if (Opc == Instruction::ExtractElement) {
3050 if (Elts.size() != 2)
3051 return Error(ID.Loc, "expected two operands to extractelement");
3052 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3053 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003054 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003055 } else {
3056 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3057 if (Elts.size() != 3)
3058 return Error(ID.Loc, "expected three operands to insertelement");
3059 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3060 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003061 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003062 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003063 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003064
Chris Lattnerac161bf2009-01-02 07:01:27 +00003065 ID.Kind = ValID::t_Constant;
3066 return false;
3067 }
3068 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003069
Chris Lattnerac161bf2009-01-02 07:01:27 +00003070 Lex.Lex();
3071 return false;
3072}
3073
3074/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003075bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003076 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003077 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003078 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003079 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003080 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003081 if (V && !(C = dyn_cast<Constant>(V)))
3082 return Error(ID.Loc, "global values must be constants");
3083 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003084}
3085
Victor Hernandez9d75c962010-01-11 22:31:58 +00003086bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003087 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003088 return ParseType(Ty) ||
3089 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003090}
3091
Rafael Espindola83a362c2015-01-06 22:55:16 +00003092bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003093 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003094
3095 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003096 if (!EatIfPresent(lltok::kw_comdat))
3097 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003098
3099 if (EatIfPresent(lltok::lparen)) {
3100 if (Lex.getKind() != lltok::ComdatVar)
3101 return TokError("expected comdat variable");
3102 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3103 Lex.Lex();
3104 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3105 return true;
3106 } else {
3107 if (GlobalName.empty())
3108 return TokError("comdat cannot be unnamed");
3109 C = getComdat(GlobalName, KwLoc);
3110 }
3111
David Majnemerdad0a642014-06-27 18:19:56 +00003112 return false;
3113}
3114
Victor Hernandez9d75c962010-01-11 22:31:58 +00003115/// ParseGlobalValueVector
3116/// ::= /*empty*/
3117/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003118bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003119 // Empty list.
3120 if (Lex.getKind() == lltok::rbrace ||
3121 Lex.getKind() == lltok::rsquare ||
3122 Lex.getKind() == lltok::greater ||
3123 Lex.getKind() == lltok::rparen)
3124 return false;
3125
3126 Constant *C;
3127 if (ParseGlobalTypeAndValue(C)) return true;
3128 Elts.push_back(C);
3129
3130 while (EatIfPresent(lltok::comma)) {
3131 if (ParseGlobalTypeAndValue(C)) return true;
3132 Elts.push_back(C);
3133 }
3134
3135 return false;
3136}
3137
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003138bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003139 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003140 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003141 return true;
3142
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003143 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003144 return false;
3145}
3146
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003147/// MDNode:
3148/// ::= !{ ... }
3149/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003150/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003151bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003152 if (Lex.getKind() == lltok::MetadataVar)
3153 return ParseSpecializedMDNode(N);
3154
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003155 return ParseToken(lltok::exclaim, "expected '!' here") ||
3156 ParseMDNodeTail(N);
3157}
3158
3159bool LLParser::ParseMDNodeTail(MDNode *&N) {
3160 // !{ ... }
3161 if (Lex.getKind() == lltok::lbrace)
3162 return ParseMDTuple(N);
3163
3164 // !42
3165 return ParseMDNodeID(N);
3166}
3167
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003168namespace {
3169
3170/// Structure to represent an optional metadata field.
3171template <class FieldTy> struct MDFieldImpl {
3172 typedef MDFieldImpl ImplTy;
3173 FieldTy Val;
3174 bool Seen;
3175
3176 void assign(FieldTy Val) {
3177 Seen = true;
3178 this->Val = std::move(Val);
3179 }
3180
3181 explicit MDFieldImpl(FieldTy Default)
3182 : Val(std::move(Default)), Seen(false) {}
3183};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003184
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003185struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3186 uint64_t Max;
3187
3188 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3189 : ImplTy(Default), Max(Max) {}
3190};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003191struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003192 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003193};
3194struct ColumnField : public MDUnsignedField {
3195 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3196};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003197struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003198 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003199 DwarfTagField(dwarf::Tag DefaultTag)
3200 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003201};
Amjad Abouda9bcf162015-12-10 12:56:35 +00003202struct DwarfMacinfoTypeField : public MDUnsignedField {
3203 DwarfMacinfoTypeField() : MDUnsignedField(0, dwarf::DW_MACINFO_vendor_ext) {}
3204 DwarfMacinfoTypeField(dwarf::MacinfoRecordType DefaultType)
3205 : MDUnsignedField(DefaultType, dwarf::DW_MACINFO_vendor_ext) {}
3206};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003207struct DwarfAttEncodingField : public MDUnsignedField {
3208 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3209};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003210struct DwarfVirtualityField : public MDUnsignedField {
3211 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3212};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003213struct DwarfLangField : public MDUnsignedField {
3214 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3215};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003216
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003217struct DIFlagField : public MDUnsignedField {
3218 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3219};
3220
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003221struct MDSignedField : public MDFieldImpl<int64_t> {
3222 int64_t Min;
3223 int64_t Max;
3224
3225 MDSignedField(int64_t Default = 0)
3226 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3227 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3228 : ImplTy(Default), Min(Min), Max(Max) {}
3229};
3230
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003231struct MDBoolField : public MDFieldImpl<bool> {
3232 MDBoolField(bool Default = false) : ImplTy(Default) {}
3233};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003234struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003235 bool AllowNull;
3236
3237 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003238};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003239struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3240 MDConstant() : ImplTy(nullptr) {}
3241};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003242struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003243 bool AllowEmpty;
3244 MDStringField(bool AllowEmpty = true)
3245 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003246};
3247struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3248 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3249};
3250
3251} // end namespace
3252
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003253namespace llvm {
3254
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003255template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003256bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003257 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003258 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3259 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003260
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003261 auto &U = Lex.getAPSIntVal();
3262 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003263 return TokError("value for '" + Name + "' too large, limit is " +
3264 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003265 Result.assign(U.getZExtValue());
3266 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003267 Lex.Lex();
3268 return false;
3269}
3270
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003271template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003272bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3273 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3274}
3275template <>
3276bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3277 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3278}
3279
3280template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003281bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3282 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003283 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003284
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003285 if (Lex.getKind() != lltok::DwarfTag)
3286 return TokError("expected DWARF tag");
3287
3288 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3289 if (Tag == dwarf::DW_TAG_invalid)
3290 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003291 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003292
3293 Result.assign(Tag);
3294 Lex.Lex();
3295 return false;
3296}
3297
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003298template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003299bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003300 DwarfMacinfoTypeField &Result) {
3301 if (Lex.getKind() == lltok::APSInt)
3302 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3303
3304 if (Lex.getKind() != lltok::DwarfMacinfo)
3305 return TokError("expected DWARF macinfo type");
3306
3307 unsigned Macinfo = dwarf::getMacinfo(Lex.getStrVal());
3308 if (Macinfo == dwarf::DW_MACINFO_invalid)
3309 return TokError(
3310 "invalid DWARF macinfo type" + Twine(" '") + Lex.getStrVal() + "'");
3311 assert(Macinfo <= Result.Max && "Expected valid DWARF macinfo type");
3312
3313 Result.assign(Macinfo);
3314 Lex.Lex();
3315 return false;
3316}
3317
3318template <>
3319bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003320 DwarfVirtualityField &Result) {
3321 if (Lex.getKind() == lltok::APSInt)
3322 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3323
3324 if (Lex.getKind() != lltok::DwarfVirtuality)
3325 return TokError("expected DWARF virtuality code");
3326
3327 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3328 if (!Virtuality)
3329 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3330 Lex.getStrVal() + "'");
3331 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3332 Result.assign(Virtuality);
3333 Lex.Lex();
3334 return false;
3335}
3336
3337template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003338bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3339 if (Lex.getKind() == lltok::APSInt)
3340 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3341
3342 if (Lex.getKind() != lltok::DwarfLang)
3343 return TokError("expected DWARF language");
3344
3345 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3346 if (!Lang)
3347 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3348 "'");
3349 assert(Lang <= Result.Max && "Expected valid DWARF language");
3350 Result.assign(Lang);
3351 Lex.Lex();
3352 return false;
3353}
3354
3355template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003356bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003357 DwarfAttEncodingField &Result) {
3358 if (Lex.getKind() == lltok::APSInt)
3359 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3360
3361 if (Lex.getKind() != lltok::DwarfAttEncoding)
3362 return TokError("expected DWARF type attribute encoding");
3363
3364 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3365 if (!Encoding)
3366 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3367 Lex.getStrVal() + "'");
3368 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3369 Result.assign(Encoding);
3370 Lex.Lex();
3371 return false;
3372}
3373
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003374/// DIFlagField
3375/// ::= uint32
3376/// ::= DIFlagVector
3377/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3378template <>
3379bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3380 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3381
3382 // Parser for a single flag.
3383 auto parseFlag = [&](unsigned &Val) {
3384 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3385 return ParseUInt32(Val);
3386
3387 if (Lex.getKind() != lltok::DIFlag)
3388 return TokError("expected debug info flag");
3389
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003390 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003391 if (!Val)
3392 return TokError(Twine("invalid debug info flag flag '") +
3393 Lex.getStrVal() + "'");
3394 Lex.Lex();
3395 return false;
3396 };
3397
3398 // Parse the flags and combine them together.
3399 unsigned Combined = 0;
3400 do {
3401 unsigned Val;
3402 if (parseFlag(Val))
3403 return true;
3404 Combined |= Val;
3405 } while (EatIfPresent(lltok::bar));
3406
3407 Result.assign(Combined);
3408 return false;
3409}
3410
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003411template <>
3412bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003413 MDSignedField &Result) {
3414 if (Lex.getKind() != lltok::APSInt)
3415 return TokError("expected signed integer");
3416
3417 auto &S = Lex.getAPSIntVal();
3418 if (S < Result.Min)
3419 return TokError("value for '" + Name + "' too small, limit is " +
3420 Twine(Result.Min));
3421 if (S > Result.Max)
3422 return TokError("value for '" + Name + "' too large, limit is " +
3423 Twine(Result.Max));
3424 Result.assign(S.getExtValue());
3425 assert(Result.Val >= Result.Min && "Expected value in range");
3426 assert(Result.Val <= Result.Max && "Expected value in range");
3427 Lex.Lex();
3428 return false;
3429}
3430
3431template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003432bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3433 switch (Lex.getKind()) {
3434 default:
3435 return TokError("expected 'true' or 'false'");
3436 case lltok::kw_true:
3437 Result.assign(true);
3438 break;
3439 case lltok::kw_false:
3440 Result.assign(false);
3441 break;
3442 }
3443 Lex.Lex();
3444 return false;
3445}
3446
3447template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003448bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003449 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003450 if (!Result.AllowNull)
3451 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003452 Lex.Lex();
3453 Result.assign(nullptr);
3454 return false;
3455 }
3456
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003457 Metadata *MD;
3458 if (ParseMetadata(MD, nullptr))
3459 return true;
3460
3461 Result.assign(MD);
3462 return false;
3463}
3464
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003465template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003466bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3467 Metadata *MD;
3468 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3469 return true;
3470
3471 Result.assign(cast<ConstantAsMetadata>(MD));
3472 return false;
3473}
3474
3475template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003476bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003477 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003478 std::string S;
3479 if (ParseStringConstant(S))
3480 return true;
3481
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003482 if (!Result.AllowEmpty && S.empty())
3483 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3484
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003485 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003486 return false;
3487}
3488
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003489template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003490bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3491 SmallVector<Metadata *, 4> MDs;
3492 if (ParseMDNodeVector(MDs))
3493 return true;
3494
3495 Result.assign(std::move(MDs));
3496 return false;
3497}
3498
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003499} // end namespace llvm
3500
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003501template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003502bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003503 do {
3504 if (Lex.getKind() != lltok::LabelStr)
3505 return TokError("expected field label here");
3506
3507 if (parseField())
3508 return true;
3509 } while (EatIfPresent(lltok::comma));
3510
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003511 return false;
3512}
3513
3514template <class ParserTy>
3515bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3516 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3517 Lex.Lex();
3518
3519 if (ParseToken(lltok::lparen, "expected '(' here"))
3520 return true;
3521 if (Lex.getKind() != lltok::rparen)
3522 if (ParseMDFieldsImplBody(parseField))
3523 return true;
3524
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003525 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003526 return ParseToken(lltok::rparen, "expected ')' here");
3527}
3528
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003529template <class FieldTy>
3530bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3531 if (Result.Seen)
3532 return TokError("field '" + Name + "' cannot be specified more than once");
3533
3534 LocTy Loc = Lex.getLoc();
3535 Lex.Lex();
3536 return ParseMDField(Loc, Name, Result);
3537}
3538
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003539bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3540 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003541
3542#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003543 if (Lex.getStrVal() == #CLASS) \
3544 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003545#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003546
3547 return TokError("expected metadata type");
3548}
3549
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003550#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3551#define NOP_FIELD(NAME, TYPE, INIT)
3552#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3553 if (!NAME.Seen) \
3554 return Error(ClosingLoc, "missing required field '" #NAME "'");
3555#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003556 if (Lex.getStrVal() == #NAME) \
3557 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003558#define PARSE_MD_FIELDS() \
3559 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3560 do { \
3561 LocTy ClosingLoc; \
3562 if (ParseMDFieldsImpl([&]() -> bool { \
3563 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3564 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3565 }, ClosingLoc)) \
3566 return true; \
3567 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3568 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003569#define GET_OR_DISTINCT(CLASS, ARGS) \
3570 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003571
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003572/// ParseDILocationFields:
3573/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3574bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003575#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003576 OPTIONAL(line, LineField, ); \
3577 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003578 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003579 OPTIONAL(inlinedAt, MDField, );
3580 PARSE_MD_FIELDS();
3581#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003582
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003583 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003584 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003585 return false;
3586}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003587
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003588/// ParseGenericDINode:
3589/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3590bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003591#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003592 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003593 OPTIONAL(header, MDStringField, ); \
3594 OPTIONAL(operands, MDFieldList, );
3595 PARSE_MD_FIELDS();
3596#undef VISIT_MD_FIELDS
3597
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003598 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003599 (Context, tag.Val, header.Val, operands.Val));
3600 return false;
3601}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003602
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003603/// ParseDISubrange:
3604/// ::= !DISubrange(count: 30, lowerBound: 2)
3605bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003606#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003607 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003608 OPTIONAL(lowerBound, MDSignedField, );
3609 PARSE_MD_FIELDS();
3610#undef VISIT_MD_FIELDS
3611
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003612 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003613 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003614}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003615
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003616/// ParseDIEnumerator:
3617/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3618bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003619#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003620 REQUIRED(name, MDStringField, ); \
3621 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003622 PARSE_MD_FIELDS();
3623#undef VISIT_MD_FIELDS
3624
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003625 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003626 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003627}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003628
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003629/// ParseDIBasicType:
3630/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3631bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003632#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003633 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003634 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003635 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3636 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003637 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003638 PARSE_MD_FIELDS();
3639#undef VISIT_MD_FIELDS
3640
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003641 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003642 align.Val, encoding.Val));
3643 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003644}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003645
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003646/// ParseDIDerivedType:
3647/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003648/// line: 7, scope: !1, baseType: !2, size: 32,
3649/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003650bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003651#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3652 REQUIRED(tag, DwarfTagField, ); \
3653 OPTIONAL(name, MDStringField, ); \
3654 OPTIONAL(file, MDField, ); \
3655 OPTIONAL(line, LineField, ); \
3656 OPTIONAL(scope, MDField, ); \
3657 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003658 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3659 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3660 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003661 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003662 OPTIONAL(extraData, MDField, );
3663 PARSE_MD_FIELDS();
3664#undef VISIT_MD_FIELDS
3665
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003666 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003667 (Context, tag.Val, name.Val, file.Val, line.Val,
3668 scope.Val, baseType.Val, size.Val, align.Val,
3669 offset.Val, flags.Val, extraData.Val));
3670 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003671}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003672
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003673bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003674#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3675 REQUIRED(tag, DwarfTagField, ); \
3676 OPTIONAL(name, MDStringField, ); \
3677 OPTIONAL(file, MDField, ); \
3678 OPTIONAL(line, LineField, ); \
3679 OPTIONAL(scope, MDField, ); \
3680 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003681 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3682 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3683 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003684 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003685 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003686 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003687 OPTIONAL(vtableHolder, MDField, ); \
3688 OPTIONAL(templateParams, MDField, ); \
3689 OPTIONAL(identifier, MDStringField, );
3690 PARSE_MD_FIELDS();
3691#undef VISIT_MD_FIELDS
3692
3693 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003694 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003695 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3696 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3697 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3698 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003699}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003700
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003701bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003702#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003703 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003704 REQUIRED(types, MDField, );
3705 PARSE_MD_FIELDS();
3706#undef VISIT_MD_FIELDS
3707
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003708 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003709 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003710}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003711
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003712/// ParseDIFileType:
3713/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3714bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003715#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3716 REQUIRED(filename, MDStringField, ); \
3717 REQUIRED(directory, MDStringField, );
3718 PARSE_MD_FIELDS();
3719#undef VISIT_MD_FIELDS
3720
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003721 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003722 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003723}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003724
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003725/// ParseDICompileUnit:
3726/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003727/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3728/// splitDebugFilename: "abc.debug", emissionKind: 1,
3729/// enums: !1, retainedTypes: !2, subprograms: !3,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003730/// globals: !4, imports: !5, macros: !6, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003731bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003732 if (!IsDistinct)
3733 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3734
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003735#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3736 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003737 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003738 OPTIONAL(producer, MDStringField, ); \
3739 OPTIONAL(isOptimized, MDBoolField, ); \
3740 OPTIONAL(flags, MDStringField, ); \
3741 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3742 OPTIONAL(splitDebugFilename, MDStringField, ); \
3743 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3744 OPTIONAL(enums, MDField, ); \
3745 OPTIONAL(retainedTypes, MDField, ); \
3746 OPTIONAL(subprograms, MDField, ); \
3747 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003748 OPTIONAL(imports, MDField, ); \
Amjad Abouda9bcf162015-12-10 12:56:35 +00003749 OPTIONAL(macros, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003750 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003751 PARSE_MD_FIELDS();
3752#undef VISIT_MD_FIELDS
3753
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003754 Result = DICompileUnit::getDistinct(
3755 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3756 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
Amjad Abouda9bcf162015-12-10 12:56:35 +00003757 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, macros.Val,
3758 dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003759 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003760}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003761
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003762/// ParseDISubprogram:
3763/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003764/// file: !1, line: 7, type: !2, isLocal: false,
3765/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003766/// virtuality: DW_VIRTUALTIY_pure_virtual,
3767/// virtualIndex: 10, flags: 11,
Peter Collingbourned4bff302015-11-05 22:03:56 +00003768/// isOptimized: false, templateParams: !4, declaration: !5,
3769/// variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003770bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003771 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003772#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3773 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003774 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003775 OPTIONAL(linkageName, MDStringField, ); \
3776 OPTIONAL(file, MDField, ); \
3777 OPTIONAL(line, LineField, ); \
3778 OPTIONAL(type, MDField, ); \
3779 OPTIONAL(isLocal, MDBoolField, ); \
3780 OPTIONAL(isDefinition, MDBoolField, (true)); \
3781 OPTIONAL(scopeLine, LineField, ); \
3782 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003783 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003784 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003785 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003786 OPTIONAL(isOptimized, MDBoolField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003787 OPTIONAL(templateParams, MDField, ); \
3788 OPTIONAL(declaration, MDField, ); \
3789 OPTIONAL(variables, MDField, );
3790 PARSE_MD_FIELDS();
3791#undef VISIT_MD_FIELDS
3792
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003793 if (isDefinition.Val && !IsDistinct)
3794 return Lex.Error(
3795 Loc,
3796 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3797
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003798 Result = GET_OR_DISTINCT(
Peter Collingbourned4bff302015-11-05 22:03:56 +00003799 DISubprogram,
3800 (Context, scope.Val, name.Val, linkageName.Val, file.Val, line.Val,
3801 type.Val, isLocal.Val, isDefinition.Val, scopeLine.Val,
3802 containingType.Val, virtuality.Val, virtualIndex.Val, flags.Val,
3803 isOptimized.Val, templateParams.Val, declaration.Val, variables.Val));
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003804 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003805}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003806
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003807/// ParseDILexicalBlock:
3808/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3809bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003810#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003811 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003812 OPTIONAL(file, MDField, ); \
3813 OPTIONAL(line, LineField, ); \
3814 OPTIONAL(column, ColumnField, );
3815 PARSE_MD_FIELDS();
3816#undef VISIT_MD_FIELDS
3817
3818 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003819 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003820 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003821}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003822
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003823/// ParseDILexicalBlockFile:
3824/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3825bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003826#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003827 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003828 OPTIONAL(file, MDField, ); \
3829 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3830 PARSE_MD_FIELDS();
3831#undef VISIT_MD_FIELDS
3832
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003833 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003834 (Context, scope.Val, file.Val, discriminator.Val));
3835 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003836}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003837
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003838/// ParseDINamespace:
3839/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3840bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003841#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3842 REQUIRED(scope, MDField, ); \
3843 OPTIONAL(file, MDField, ); \
3844 OPTIONAL(name, MDStringField, ); \
3845 OPTIONAL(line, LineField, );
3846 PARSE_MD_FIELDS();
3847#undef VISIT_MD_FIELDS
3848
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003849 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003850 (Context, scope.Val, file.Val, name.Val, line.Val));
3851 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003852}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003853
Amjad Abouda9bcf162015-12-10 12:56:35 +00003854/// ParseDIMacro:
3855/// ::= !DIMacro(macinfo: type, line: 9, name: "SomeMacro", value: "SomeValue")
3856bool LLParser::ParseDIMacro(MDNode *&Result, bool IsDistinct) {
3857#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3858 REQUIRED(type, DwarfMacinfoTypeField, ); \
3859 REQUIRED(line, LineField, ); \
3860 REQUIRED(name, MDStringField, ); \
3861 OPTIONAL(value, MDStringField, );
3862 PARSE_MD_FIELDS();
3863#undef VISIT_MD_FIELDS
3864
3865 Result = GET_OR_DISTINCT(DIMacro,
3866 (Context, type.Val, line.Val, name.Val, value.Val));
3867 return false;
3868}
3869
3870/// ParseDIMacroFile:
3871/// ::= !DIMacroFile(line: 9, file: !2, nodes: !3)
3872bool LLParser::ParseDIMacroFile(MDNode *&Result, bool IsDistinct) {
3873#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3874 OPTIONAL(type, DwarfMacinfoTypeField, (dwarf::DW_MACINFO_start_file)); \
3875 REQUIRED(line, LineField, ); \
3876 REQUIRED(file, MDField, ); \
3877 OPTIONAL(nodes, MDField, );
3878 PARSE_MD_FIELDS();
3879#undef VISIT_MD_FIELDS
3880
3881 Result = GET_OR_DISTINCT(DIMacroFile,
3882 (Context, type.Val, line.Val, file.Val, nodes.Val));
3883 return false;
3884}
3885
3886
Adrian Prantlab1243f2015-06-29 23:03:47 +00003887/// ParseDIModule:
3888/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3889/// includePath: "/usr/include", isysroot: "/")
3890bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3891#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3892 REQUIRED(scope, MDField, ); \
3893 REQUIRED(name, MDStringField, ); \
3894 OPTIONAL(configMacros, MDStringField, ); \
3895 OPTIONAL(includePath, MDStringField, ); \
3896 OPTIONAL(isysroot, MDStringField, );
3897 PARSE_MD_FIELDS();
3898#undef VISIT_MD_FIELDS
3899
3900 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3901 configMacros.Val, includePath.Val, isysroot.Val));
3902 return false;
3903}
3904
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003905/// ParseDITemplateTypeParameter:
3906/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3907bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003908#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003909 OPTIONAL(name, MDStringField, ); \
3910 REQUIRED(type, MDField, );
3911 PARSE_MD_FIELDS();
3912#undef VISIT_MD_FIELDS
3913
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003914 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003915 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003916 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003917}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003918
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003919/// ParseDITemplateValueParameter:
3920/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003921/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003922bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003923#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003924 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003925 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003926 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003927 REQUIRED(value, MDField, );
3928 PARSE_MD_FIELDS();
3929#undef VISIT_MD_FIELDS
3930
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003931 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003932 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003933 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003934}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003935
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003936/// ParseDIGlobalVariable:
3937/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003938/// file: !1, line: 7, type: !2, isLocal: false,
3939/// isDefinition: true, variable: i32* @foo,
3940/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003941bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003942#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003943 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003944 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003945 OPTIONAL(linkageName, MDStringField, ); \
3946 OPTIONAL(file, MDField, ); \
3947 OPTIONAL(line, LineField, ); \
3948 OPTIONAL(type, MDField, ); \
3949 OPTIONAL(isLocal, MDBoolField, ); \
3950 OPTIONAL(isDefinition, MDBoolField, (true)); \
3951 OPTIONAL(variable, MDConstant, ); \
3952 OPTIONAL(declaration, MDField, );
3953 PARSE_MD_FIELDS();
3954#undef VISIT_MD_FIELDS
3955
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003956 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003957 (Context, scope.Val, name.Val, linkageName.Val,
3958 file.Val, line.Val, type.Val, isLocal.Val,
3959 isDefinition.Val, variable.Val, declaration.Val));
3960 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003961}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003962
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003963/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003964/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3965/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
3966/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003967/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003968bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003969#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003970 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003971 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003972 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003973 OPTIONAL(file, MDField, ); \
3974 OPTIONAL(line, LineField, ); \
3975 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003976 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003977 PARSE_MD_FIELDS();
3978#undef VISIT_MD_FIELDS
3979
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003980 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003981 (Context, scope.Val, name.Val, file.Val, line.Val,
3982 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003983 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003984}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003985
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003986/// ParseDIExpression:
3987/// ::= !DIExpression(0, 7, -1)
3988bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003989 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3990 Lex.Lex();
3991
3992 if (ParseToken(lltok::lparen, "expected '(' here"))
3993 return true;
3994
3995 SmallVector<uint64_t, 8> Elements;
3996 if (Lex.getKind() != lltok::rparen)
3997 do {
3998 if (Lex.getKind() == lltok::DwarfOp) {
3999 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
4000 Lex.Lex();
4001 Elements.push_back(Op);
4002 continue;
4003 }
4004 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
4005 }
4006
4007 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
4008 return TokError("expected unsigned integer");
4009
4010 auto &U = Lex.getAPSIntVal();
4011 if (U.ugt(UINT64_MAX))
4012 return TokError("element too large, limit is " + Twine(UINT64_MAX));
4013 Elements.push_back(U.getZExtValue());
4014 Lex.Lex();
4015 } while (EatIfPresent(lltok::comma));
4016
4017 if (ParseToken(lltok::rparen, "expected ')' here"))
4018 return true;
4019
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004020 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004021 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004022}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00004023
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004024/// ParseDIObjCProperty:
4025/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004026/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004027bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004028#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00004029 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004030 OPTIONAL(file, MDField, ); \
4031 OPTIONAL(line, LineField, ); \
4032 OPTIONAL(setter, MDStringField, ); \
4033 OPTIONAL(getter, MDStringField, ); \
4034 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
4035 OPTIONAL(type, MDField, );
4036 PARSE_MD_FIELDS();
4037#undef VISIT_MD_FIELDS
4038
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004039 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004040 (Context, name.Val, file.Val, line.Val, setter.Val,
4041 getter.Val, attributes.Val, type.Val));
4042 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004043}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00004044
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004045/// ParseDIImportedEntity:
4046/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004047/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004048bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004049#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4050 REQUIRED(tag, DwarfTagField, ); \
4051 REQUIRED(scope, MDField, ); \
4052 OPTIONAL(entity, MDField, ); \
4053 OPTIONAL(line, LineField, ); \
4054 OPTIONAL(name, MDStringField, );
4055 PARSE_MD_FIELDS();
4056#undef VISIT_MD_FIELDS
4057
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004058 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004059 entity.Val, line.Val, name.Val));
4060 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004061}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004062
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004063#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004064#undef NOP_FIELD
4065#undef REQUIRE_FIELD
4066#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004067
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004068/// ParseMetadataAsValue
4069/// ::= metadata i32 %local
4070/// ::= metadata i32 @global
4071/// ::= metadata i32 7
4072/// ::= metadata !0
4073/// ::= metadata !{...}
4074/// ::= metadata !"string"
4075bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4076 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004077 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004078 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004079 return true;
4080
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004081 V = MetadataAsValue::get(Context, MD);
4082 return false;
4083}
4084
4085/// ParseValueAsMetadata
4086/// ::= i32 %local
4087/// ::= i32 @global
4088/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004089bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4090 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004091 Type *Ty;
4092 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004093 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004094 return true;
4095 if (Ty->isMetadataTy())
4096 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4097
4098 Value *V;
4099 if (ParseValue(Ty, V, PFS))
4100 return true;
4101
4102 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004103 return false;
4104}
4105
4106/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004107/// ::= i32 %local
4108/// ::= i32 @global
4109/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004110/// ::= !42
4111/// ::= !{...}
4112/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004113/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004114bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004115 if (Lex.getKind() == lltok::MetadataVar) {
4116 MDNode *N;
4117 if (ParseSpecializedMDNode(N))
4118 return true;
4119 MD = N;
4120 return false;
4121 }
4122
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004123 // ValueAsMetadata:
4124 // <type> <value>
4125 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004126 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004127
4128 // '!'.
4129 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4130 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004131
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004132 // MDString:
4133 // ::= '!' STRINGCONSTANT
4134 if (Lex.getKind() == lltok::StringConstant) {
4135 MDString *S;
4136 if (ParseMDString(S))
4137 return true;
4138 MD = S;
4139 return false;
4140 }
4141
Dan Gohman8939ba332010-07-14 18:26:50 +00004142 // MDNode:
4143 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004144 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004145 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004146 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004147 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004148 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004149 return false;
4150}
4151
Victor Hernandez9d75c962010-01-11 22:31:58 +00004152
4153//===----------------------------------------------------------------------===//
4154// Function Parsing.
4155//===----------------------------------------------------------------------===//
4156
Chris Lattner229907c2011-07-18 04:54:35 +00004157bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
David Majnemer8a1c45d2015-12-12 05:38:55 +00004158 PerFunctionState *PFS) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004159 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004160 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004161
Chris Lattnerac161bf2009-01-02 07:01:27 +00004162 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004163 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004164 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004165 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004166 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004167 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004168 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
David Majnemer8a1c45d2015-12-12 05:38:55 +00004169 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004170 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004171 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004172 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004173 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004174 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4175 (ID.UIntVal >> 1) & 1,
4176 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004177 return false;
4178 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004179 case ValID::t_GlobalName:
4180 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004181 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004182 case ValID::t_GlobalID:
4183 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004184 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004185 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004186 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004187 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004188 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004189 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004190 return false;
4191 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004192 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004193 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4194 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004195
Dan Gohman518cda42011-12-17 00:04:22 +00004196 // The lexer has no type info, so builds all half, float, and double FP
4197 // constants as double. Fix this here. Long double does not need this.
4198 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004199 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004200 if (Ty->isHalfTy())
4201 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4202 &Ignored);
4203 else if (Ty->isFloatTy())
4204 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4205 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004206 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004207 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004208
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004209 if (V->getType() != Ty)
4210 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004211 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004212
Chris Lattnerac161bf2009-01-02 07:01:27 +00004213 return false;
4214 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004215 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004216 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004217 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004218 return false;
4219 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004220 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004221 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004222 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004223 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004224 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004225 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004226 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004227 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004228 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004229 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004230 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004231 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004232 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004233 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004234 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004235 return false;
David Majnemerf0f224d2015-11-11 21:57:16 +00004236 case ValID::t_None:
4237 if (!Ty->isTokenTy())
4238 return Error(ID.Loc, "invalid type for none constant");
4239 V = Constant::getNullValue(Ty);
4240 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004241 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004242 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004243 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004244
Chris Lattnerac161bf2009-01-02 07:01:27 +00004245 V = ID.ConstantVal;
4246 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004247 case ValID::t_ConstantStruct:
4248 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004249 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004250 if (ST->getNumElements() != ID.UIntVal)
4251 return Error(ID.Loc,
4252 "initializer with struct type has wrong # elements");
4253 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4254 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004255
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004256 // Verify that the elements are compatible with the structtype.
4257 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4258 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4259 return Error(ID.Loc, "element " + Twine(i) +
4260 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004261
David Blaikieadbda4b2015-08-03 20:08:41 +00004262 V = ConstantStruct::get(
4263 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004264 } else
4265 return Error(ID.Loc, "constant expression type mismatch");
4266 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004267 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004268 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004269}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004270
Alex Lorenzd2255952015-07-17 22:07:03 +00004271bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4272 C = nullptr;
4273 ValID ID;
4274 auto Loc = Lex.getLoc();
4275 if (ParseValID(ID, /*PFS=*/nullptr))
4276 return true;
4277 switch (ID.Kind) {
4278 case ValID::t_APSInt:
4279 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004280 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004281 case ValID::t_Constant:
4282 case ValID::t_ConstantStruct:
4283 case ValID::t_PackedConstantStruct: {
4284 Value *V;
4285 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4286 return true;
4287 assert(isa<Constant>(V) && "Expected a constant value");
4288 C = cast<Constant>(V);
4289 return false;
4290 }
4291 default:
4292 return Error(Loc, "expected a constant value");
4293 }
4294}
4295
David Majnemer8a1c45d2015-12-12 05:38:55 +00004296bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004297 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004298 ValID ID;
David Majnemer8a1c45d2015-12-12 05:38:55 +00004299 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004300}
4301
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004302bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004303 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004304 return ParseType(Ty) ||
4305 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004306}
4307
Chris Lattner3ed871f2009-10-27 19:13:16 +00004308bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4309 PerFunctionState &PFS) {
4310 Value *V;
4311 Loc = Lex.getLoc();
4312 if (ParseTypeAndValue(V, PFS)) return true;
4313 if (!isa<BasicBlock>(V))
4314 return Error(Loc, "expected a basic block");
4315 BB = cast<BasicBlock>(V);
4316 return false;
4317}
4318
4319
Chris Lattnerac161bf2009-01-02 07:01:27 +00004320/// FunctionHeader
4321/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004322/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004323/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004324bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4325 // Parse the linkage.
4326 LocTy LinkageLoc = Lex.getLoc();
4327 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004328
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004329 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004330 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004331 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004332 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004333 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004334 LocTy RetTypeLoc = Lex.getLoc();
4335 if (ParseOptionalLinkage(Linkage) ||
4336 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004337 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004338 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004339 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004340 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004341 return true;
4342
4343 // Verify that the linkage is ok.
4344 switch ((GlobalValue::LinkageTypes)Linkage) {
4345 case GlobalValue::ExternalLinkage:
4346 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004347 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004348 if (isDefine)
4349 return Error(LinkageLoc, "invalid linkage for function definition");
4350 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004351 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004352 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004353 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004354 case GlobalValue::LinkOnceAnyLinkage:
4355 case GlobalValue::LinkOnceODRLinkage:
4356 case GlobalValue::WeakAnyLinkage:
4357 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004358 if (!isDefine)
4359 return Error(LinkageLoc, "invalid linkage for function declaration");
4360 break;
4361 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004362 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004363 return Error(LinkageLoc, "invalid function linkage type");
4364 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004365
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004366 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4367 return Error(LinkageLoc,
4368 "symbol with local linkage must have default visibility");
4369
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004370 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004371 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004372
Chris Lattnerac161bf2009-01-02 07:01:27 +00004373 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004374
4375 std::string FunctionName;
4376 if (Lex.getKind() == lltok::GlobalVar) {
4377 FunctionName = Lex.getStrVal();
4378 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4379 unsigned NameID = Lex.getUIntVal();
4380
4381 if (NameID != NumberedVals.size())
4382 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004383 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004384 } else {
4385 return TokError("expected function name");
4386 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004387
Chris Lattner3822f632009-01-02 08:05:26 +00004388 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004389
Chris Lattner3822f632009-01-02 08:05:26 +00004390 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004391 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004392
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004393 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004394 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004395 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004396 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004397 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004398 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004399 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004400 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004401 bool UnnamedAddr;
4402 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004403 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004404 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004405 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004406 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004407
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004408 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004409 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4410 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004411 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004412 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004413 (EatIfPresent(lltok::kw_section) &&
4414 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004415 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004416 ParseOptionalAlignment(Alignment) ||
4417 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004418 ParseStringConstant(GC)) ||
4419 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004420 ParseGlobalTypeAndValue(Prefix)) ||
4421 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004422 ParseGlobalTypeAndValue(Prologue)) ||
4423 (EatIfPresent(lltok::kw_personality) &&
4424 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004425 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004426
Michael Gottesman41748d72013-06-27 00:25:01 +00004427 if (FuncAttrs.contains(Attribute::Builtin))
4428 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004429
Chris Lattnerac161bf2009-01-02 07:01:27 +00004430 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004431 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004432 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004433 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004434 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004435
Chris Lattnerac161bf2009-01-02 07:01:27 +00004436 // Okay, if we got here, the function is syntactically valid. Convert types
4437 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004438 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004439 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004440
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004441 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004442 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4443 AttributeSet::ReturnIndex,
4444 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004445
Chris Lattnerac161bf2009-01-02 07:01:27 +00004446 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004447 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004448 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4449 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004450 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4451 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004452 }
4453
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004454 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004455 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4456 AttributeSet::FunctionIndex,
4457 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004458
Bill Wendlinge94d8432012-12-07 23:16:57 +00004459 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004460
Bill Wendling749a43d2012-12-30 13:50:49 +00004461 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004462 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4463
Chris Lattner229907c2011-07-18 04:54:35 +00004464 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004465 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004466 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004467
Craig Topper2617dcc2014-04-15 06:32:26 +00004468 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004469 if (!FunctionName.empty()) {
4470 // If this was a definition of a forward reference, remove the definition
4471 // from the forward reference table and fill in the forward ref.
David Blaikie9ebdc692015-09-21 21:07:50 +00004472 auto FRVI = ForwardRefVals.find(FunctionName);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004473 if (FRVI != ForwardRefVals.end()) {
4474 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004475 if (!Fn)
4476 return Error(FRVI->second.second, "invalid forward reference to "
4477 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004478 if (Fn->getType() != PFT)
4479 return Error(FRVI->second.second, "invalid forward reference to "
4480 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004481
Chris Lattnerac161bf2009-01-02 07:01:27 +00004482 ForwardRefVals.erase(FRVI);
4483 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004484 // Reject redefinitions.
4485 return Error(NameLoc, "invalid redefinition of function '" +
4486 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004487 } else if (M->getNamedValue(FunctionName)) {
4488 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004489 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004490
Dan Gohman399d6ae2009-08-29 23:37:49 +00004491 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004492 // If this is a definition of a forward referenced function, make sure the
4493 // types agree.
David Blaikie9ebdc692015-09-21 21:07:50 +00004494 auto I = ForwardRefValIDs.find(NumberedVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004495 if (I != ForwardRefValIDs.end()) {
4496 Fn = cast<Function>(I->second.first);
4497 if (Fn->getType() != PFT)
4498 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004499 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004500 ForwardRefValIDs.erase(I);
4501 }
4502 }
4503
Craig Topper2617dcc2014-04-15 06:32:26 +00004504 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004505 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4506 else // Move the forward-reference to the correct spot in the module.
4507 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4508
4509 if (FunctionName.empty())
4510 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004511
Chris Lattnerac161bf2009-01-02 07:01:27 +00004512 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4513 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004514 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004515 Fn->setCallingConv(CC);
4516 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004517 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004518 Fn->setAlignment(Alignment);
4519 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004520 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004521 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004522 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004523 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004524 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004525 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004526
Chris Lattnerac161bf2009-01-02 07:01:27 +00004527 // Add all of the arguments we parsed to the function.
4528 Function::arg_iterator ArgIt = Fn->arg_begin();
4529 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4530 // If the argument has a name, insert it into the argument symbol table.
4531 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004532
Chris Lattnerac161bf2009-01-02 07:01:27 +00004533 // Set the name, if it conflicted, it will be auto-renamed.
4534 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004535
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004536 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004537 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4538 ArgList[i].Name + "'");
4539 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004540
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004541 if (isDefine)
4542 return false;
4543
Robin Morisset039781e2014-08-29 21:53:01 +00004544 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004545 ValID ID;
4546 if (FunctionName.empty()) {
4547 ID.Kind = ValID::t_GlobalID;
4548 ID.UIntVal = NumberedVals.size() - 1;
4549 } else {
4550 ID.Kind = ValID::t_GlobalName;
4551 ID.StrVal = FunctionName;
4552 }
4553 auto Blocks = ForwardRefBlockAddresses.find(ID);
4554 if (Blocks != ForwardRefBlockAddresses.end())
4555 return Error(Blocks->first.Loc,
4556 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004557 return false;
4558}
4559
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004560bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4561 ValID ID;
4562 if (FunctionNumber == -1) {
4563 ID.Kind = ValID::t_GlobalName;
4564 ID.StrVal = F.getName();
4565 } else {
4566 ID.Kind = ValID::t_GlobalID;
4567 ID.UIntVal = FunctionNumber;
4568 }
4569
4570 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4571 if (Blocks == P.ForwardRefBlockAddresses.end())
4572 return false;
4573
4574 for (const auto &I : Blocks->second) {
4575 const ValID &BBID = I.first;
4576 GlobalValue *GV = I.second;
4577
4578 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4579 "Expected local id or name");
4580 BasicBlock *BB;
4581 if (BBID.Kind == ValID::t_LocalName)
4582 BB = GetBB(BBID.StrVal, BBID.Loc);
4583 else
4584 BB = GetBB(BBID.UIntVal, BBID.Loc);
4585 if (!BB)
4586 return P.Error(BBID.Loc, "referenced value is not a basic block");
4587
4588 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4589 GV->eraseFromParent();
4590 }
4591
4592 P.ForwardRefBlockAddresses.erase(Blocks);
4593 return false;
4594}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004595
4596/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004597/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004598bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004599 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004600 return TokError("expected '{' in function body");
4601 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004602
Chris Lattner3432c622009-10-28 03:39:23 +00004603 int FunctionNumber = -1;
4604 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004605
Chris Lattner3432c622009-10-28 03:39:23 +00004606 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004607
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004608 // Resolve block addresses and allow basic blocks to be forward-declared
4609 // within this function.
4610 if (PFS.resolveForwardRefBlockAddresses())
4611 return true;
4612 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4613
Chris Lattnerbbddd962010-01-09 19:20:07 +00004614 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004615 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004616 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004617
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004618 while (Lex.getKind() != lltok::rbrace &&
4619 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004620 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004621
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004622 while (Lex.getKind() != lltok::rbrace)
4623 if (ParseUseListOrder(&PFS))
4624 return true;
4625
Chris Lattnerac161bf2009-01-02 07:01:27 +00004626 // Eat the }.
4627 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004628
Chris Lattnerac161bf2009-01-02 07:01:27 +00004629 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004630 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004631}
4632
4633/// ParseBasicBlock
4634/// ::= LabelStr? Instruction*
4635bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4636 // If this basic block starts out with a name, remember it.
4637 std::string Name;
4638 LocTy NameLoc = Lex.getLoc();
4639 if (Lex.getKind() == lltok::LabelStr) {
4640 Name = Lex.getStrVal();
4641 Lex.Lex();
4642 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004643
Chris Lattnerac161bf2009-01-02 07:01:27 +00004644 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004645 if (!BB)
4646 return Error(NameLoc,
4647 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004648
Chris Lattnerac161bf2009-01-02 07:01:27 +00004649 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004650
Chris Lattnerac161bf2009-01-02 07:01:27 +00004651 // Parse the instructions in this block until we get a terminator.
4652 Instruction *Inst;
4653 do {
4654 // This instruction may have three possibilities for a name: a) none
4655 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4656 LocTy NameLoc = Lex.getLoc();
4657 int NameID = -1;
4658 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004659
Chris Lattnerac161bf2009-01-02 07:01:27 +00004660 if (Lex.getKind() == lltok::LocalVarID) {
4661 NameID = Lex.getUIntVal();
4662 Lex.Lex();
4663 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4664 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004665 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004666 NameStr = Lex.getStrVal();
4667 Lex.Lex();
4668 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4669 return true;
4670 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004671
Chris Lattner77b89dc2009-12-30 05:23:43 +00004672 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004673 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004674 case InstError: return true;
4675 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004676 BB->getInstList().push_back(Inst);
4677
Chris Lattner77b89dc2009-12-30 05:23:43 +00004678 // With a normal result, we check to see if the instruction is followed by
4679 // a comma and metadata.
4680 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004681 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004682 return true;
4683 break;
4684 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004685 BB->getInstList().push_back(Inst);
4686
Chris Lattner77b89dc2009-12-30 05:23:43 +00004687 // If the instruction parser ate an extra comma at the end of it, it
4688 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004689 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004690 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004691 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004692 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004693
Chris Lattnerac161bf2009-01-02 07:01:27 +00004694 // Set the name on the instruction.
4695 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4696 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004697
Chris Lattnerac161bf2009-01-02 07:01:27 +00004698 return false;
4699}
4700
4701//===----------------------------------------------------------------------===//
4702// Instruction Parsing.
4703//===----------------------------------------------------------------------===//
4704
4705/// ParseInstruction - Parse one of the many different instructions.
4706///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004707int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4708 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004709 lltok::Kind Token = Lex.getKind();
4710 if (Token == lltok::Eof)
4711 return TokError("found end of file when expecting more instructions");
4712 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004713 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004714 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004715
Chris Lattnerac161bf2009-01-02 07:01:27 +00004716 switch (Token) {
4717 default: return Error(Loc, "expected instruction opcode");
4718 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004719 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004720 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4721 case lltok::kw_br: return ParseBr(Inst, PFS);
4722 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004723 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004724 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004725 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004726 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4727 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00004728 case lltok::kw_catchswitch: return ParseCatchSwitch(Inst, PFS);
4729 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
David Majnemer8a1c45d2015-12-12 05:38:55 +00004730 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004731 // Binary Operators.
4732 case lltok::kw_add:
4733 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004734 case lltok::kw_mul:
4735 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004736 bool NUW = EatIfPresent(lltok::kw_nuw);
4737 bool NSW = EatIfPresent(lltok::kw_nsw);
4738 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004739
Chris Lattnera676c0f2011-02-07 16:40:21 +00004740 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004741
Chris Lattnera676c0f2011-02-07 16:40:21 +00004742 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4743 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4744 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004745 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004746 case lltok::kw_fadd:
4747 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004748 case lltok::kw_fmul:
4749 case lltok::kw_fdiv:
4750 case lltok::kw_frem: {
4751 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4752 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4753 if (Res != 0)
4754 return Res;
4755 if (FMF.any())
4756 Inst->setFastMathFlags(FMF);
4757 return 0;
4758 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004759
Chris Lattner35315d02011-02-06 21:44:57 +00004760 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004761 case lltok::kw_udiv:
4762 case lltok::kw_lshr:
4763 case lltok::kw_ashr: {
4764 bool Exact = EatIfPresent(lltok::kw_exact);
4765
4766 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4767 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4768 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004769 }
4770
Chris Lattnerac161bf2009-01-02 07:01:27 +00004771 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004772 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004773 case lltok::kw_and:
4774 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004775 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004776 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4777 case lltok::kw_fcmp: {
4778 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4779 int Res = ParseCompare(Inst, PFS, KeywordVal);
4780 if (Res != 0)
4781 return Res;
4782 if (FMF.any())
4783 Inst->setFastMathFlags(FMF);
4784 return 0;
4785 }
4786
Chris Lattnerac161bf2009-01-02 07:01:27 +00004787 // Casts.
4788 case lltok::kw_trunc:
4789 case lltok::kw_zext:
4790 case lltok::kw_sext:
4791 case lltok::kw_fptrunc:
4792 case lltok::kw_fpext:
4793 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004794 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004795 case lltok::kw_uitofp:
4796 case lltok::kw_sitofp:
4797 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004798 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004799 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004800 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004801 // Other.
4802 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004803 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004804 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4805 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4806 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4807 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004808 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004809 // Call.
4810 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4811 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4812 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Akira Hatanaka5cfcce122015-11-06 23:55:38 +00004813 case lltok::kw_notail: return ParseCall(Inst, PFS, CallInst::TCK_NoTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004814 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004815 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004816 case lltok::kw_load: return ParseLoad(Inst, PFS);
4817 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004818 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4819 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004820 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004821 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4822 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4823 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4824 }
4825}
4826
4827/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4828bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004829 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004830 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004831 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004832 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4833 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4834 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4835 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4836 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4837 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4838 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4839 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4840 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4841 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4842 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4843 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4844 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4845 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4846 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4847 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4848 }
4849 } else {
4850 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004851 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004852 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4853 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4854 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4855 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4856 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4857 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4858 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4859 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4860 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4861 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4862 }
4863 }
4864 Lex.Lex();
4865 return false;
4866}
4867
4868//===----------------------------------------------------------------------===//
4869// Terminator Instructions.
4870//===----------------------------------------------------------------------===//
4871
4872/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004873/// ::= 'ret' void (',' !dbg, !1)*
4874/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004875bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004876 PerFunctionState &PFS) {
4877 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004878 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004879 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004880
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004881 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004882
Chris Lattnerfdd87902009-10-05 05:54:46 +00004883 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004884 if (!ResType->isVoidTy())
4885 return Error(TypeLoc, "value doesn't match function result type '" +
4886 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004887
Owen Anderson55f1c092009-08-13 21:58:54 +00004888 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004889 return false;
4890 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004891
Chris Lattnerac161bf2009-01-02 07:01:27 +00004892 Value *RV;
4893 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004894
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004895 if (ResType != RV->getType())
4896 return Error(TypeLoc, "value doesn't match function result type '" +
4897 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004898
Owen Anderson55f1c092009-08-13 21:58:54 +00004899 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004900 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004901}
4902
4903
4904/// ParseBr
4905/// ::= 'br' TypeAndValue
4906/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4907bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4908 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004909 Value *Op0;
4910 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004911 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004912
Chris Lattnerac161bf2009-01-02 07:01:27 +00004913 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4914 Inst = BranchInst::Create(BB);
4915 return false;
4916 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004917
Owen Anderson55f1c092009-08-13 21:58:54 +00004918 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004919 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004920
Chris Lattnerac161bf2009-01-02 07:01:27 +00004921 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004922 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004923 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004924 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004925 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004926
Chris Lattner3ed871f2009-10-27 19:13:16 +00004927 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004928 return false;
4929}
4930
4931/// ParseSwitch
4932/// Instruction
4933/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4934/// JumpTable
4935/// ::= (TypeAndValue ',' TypeAndValue)*
4936bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4937 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004938 Value *Cond;
4939 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004940 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4941 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004942 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004943 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4944 return true;
4945
Duncan Sands19d0b472010-02-16 11:11:14 +00004946 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004947 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004948
Chris Lattnerac161bf2009-01-02 07:01:27 +00004949 // Parse the jump table pairs.
4950 SmallPtrSet<Value*, 32> SeenCases;
4951 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4952 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004953 Value *Constant;
4954 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004955
Chris Lattnerac161bf2009-01-02 07:01:27 +00004956 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4957 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004958 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004959 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004960
David Blaikie70573dc2014-11-19 07:49:26 +00004961 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004962 return Error(CondLoc, "duplicate case value in switch");
4963 if (!isa<ConstantInt>(Constant))
4964 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004965
Chris Lattner3ed871f2009-10-27 19:13:16 +00004966 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004967 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004968
Chris Lattnerac161bf2009-01-02 07:01:27 +00004969 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004970
Chris Lattner3ed871f2009-10-27 19:13:16 +00004971 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004972 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4973 SI->addCase(Table[i].first, Table[i].second);
4974 Inst = SI;
4975 return false;
4976}
4977
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004978/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00004979/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004980/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4981bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004982 LocTy AddrLoc;
4983 Value *Address;
4984 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004985 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4986 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00004987 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004988
Duncan Sands19d0b472010-02-16 11:11:14 +00004989 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004990 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004991
Chris Lattner3ed871f2009-10-27 19:13:16 +00004992 // Parse the destination list.
4993 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004994
Chris Lattner3ed871f2009-10-27 19:13:16 +00004995 if (Lex.getKind() != lltok::rsquare) {
4996 BasicBlock *DestBB;
4997 if (ParseTypeAndBasicBlock(DestBB, PFS))
4998 return true;
4999 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005000
Chris Lattner3ed871f2009-10-27 19:13:16 +00005001 while (EatIfPresent(lltok::comma)) {
5002 if (ParseTypeAndBasicBlock(DestBB, PFS))
5003 return true;
5004 DestList.push_back(DestBB);
5005 }
5006 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005007
Chris Lattner3ed871f2009-10-27 19:13:16 +00005008 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
5009 return true;
5010
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00005011 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00005012 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
5013 IBI->addDestination(DestList[i]);
5014 Inst = IBI;
5015 return false;
5016}
5017
5018
Chris Lattnerac161bf2009-01-02 07:01:27 +00005019/// ParseInvoke
5020/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
5021/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
5022bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
5023 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00005024 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005025 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00005026 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005027 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005028 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005029 LocTy RetTypeLoc;
5030 ValID CalleeID;
5031 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005032 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005033
Chris Lattner3ed871f2009-10-27 19:13:16 +00005034 BasicBlock *NormalBB, *UnwindBB;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005035 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005036 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005037 ParseValID(CalleeID) || ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005038 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5039 NoBuiltinLoc) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005040 ParseOptionalOperandBundles(BundleList, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005041 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005042 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005043 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005044 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005045 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005046
Chris Lattnerac161bf2009-01-02 07:01:27 +00005047 // If RetType is a non-function pointer type, then this is the short syntax
5048 // for the call, which means that RetType is just the return type. Infer the
5049 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005050 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5051 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005052 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005053 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005054 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5055 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005056
Chris Lattnerac161bf2009-01-02 07:01:27 +00005057 if (!FunctionType::isValidReturnType(RetType))
5058 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005059
Owen Anderson4056ca92009-07-29 22:17:13 +00005060 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005061 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005062
David Blaikie41ba2b42015-07-27 23:32:19 +00005063 CalleeID.FTy = Ty;
5064
Chris Lattnerac161bf2009-01-02 07:01:27 +00005065 // Look up the callee.
5066 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005067 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5068 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005069
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005070 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005071 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005072 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005073 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5074 AttributeSet::ReturnIndex,
5075 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005076
Chris Lattnerac161bf2009-01-02 07:01:27 +00005077 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005078
Chris Lattnerac161bf2009-01-02 07:01:27 +00005079 // Loop through FunctionType's arguments and ensure they are specified
5080 // correctly. Also, gather any parameter attributes.
5081 FunctionType::param_iterator I = Ty->param_begin();
5082 FunctionType::param_iterator E = Ty->param_end();
5083 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005084 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005085 if (I != E) {
5086 ExpectedTy = *I++;
5087 } else if (!Ty->isVarArg()) {
5088 return Error(ArgList[i].Loc, "too many arguments specified");
5089 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005090
Chris Lattnerac161bf2009-01-02 07:01:27 +00005091 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5092 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005093 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005094 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005095 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5096 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005097 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5098 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005099 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005100
Chris Lattnerac161bf2009-01-02 07:01:27 +00005101 if (I != E)
5102 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005103
David Majnemer8d22abd2015-02-23 00:01:32 +00005104 if (FnAttrs.hasAttributes()) {
5105 if (FnAttrs.hasAlignmentAttr())
5106 return Error(CallLoc, "invoke instructions may not have an alignment");
5107
Bill Wendlingf5075a42013-01-27 02:24:02 +00005108 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5109 AttributeSet::FunctionIndex,
5110 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005111 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005112
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005113 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005114 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005115
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005116 InvokeInst *II =
5117 InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args, BundleList);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005118 II->setCallingConv(CC);
5119 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005120 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005121 Inst = II;
5122 return false;
5123}
5124
Bill Wendlingf891bf82011-07-31 06:30:59 +00005125/// ParseResume
5126/// ::= 'resume' TypeAndValue
5127bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5128 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005129 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5130 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005131
Bill Wendlingf891bf82011-07-31 06:30:59 +00005132 ResumeInst *RI = ResumeInst::Create(Exn);
5133 Inst = RI;
5134 return false;
5135}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005136
David Majnemer654e1302015-07-31 17:58:14 +00005137bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5138 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005139 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005140 return true;
5141
5142 while (Lex.getKind() != lltok::rsquare) {
5143 // If this isn't the first argument, we need a comma.
5144 if (!Args.empty() &&
5145 ParseToken(lltok::comma, "expected ',' in argument list"))
5146 return true;
5147
5148 // Parse the argument.
5149 LocTy ArgLoc;
5150 Type *ArgTy = nullptr;
5151 if (ParseType(ArgTy, ArgLoc))
5152 return true;
5153
5154 Value *V;
5155 if (ArgTy->isMetadataTy()) {
5156 if (ParseMetadataAsValue(V, PFS))
5157 return true;
5158 } else {
5159 if (ParseValue(ArgTy, V, PFS))
5160 return true;
5161 }
5162 Args.push_back(V);
5163 }
5164
5165 Lex.Lex(); // Lex the ']'.
5166 return false;
5167}
5168
5169/// ParseCleanupRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005170/// ::= 'cleanupret' from Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005171bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005172 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005173
David Majnemer8a1c45d2015-12-12 05:38:55 +00005174 if (ParseToken(lltok::kw_from, "expected 'from' after cleanupret"))
5175 return true;
5176
5177 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS))
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005178 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005179
5180 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5181 return true;
5182
5183 BasicBlock *UnwindBB = nullptr;
5184 if (Lex.getKind() == lltok::kw_to) {
5185 Lex.Lex();
5186 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5187 return true;
5188 } else {
5189 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5190 return true;
5191 }
5192 }
5193
David Majnemer8a1c45d2015-12-12 05:38:55 +00005194 Inst = CleanupReturnInst::Create(CleanupPad, UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005195 return false;
5196}
5197
5198/// ParseCatchRet
David Majnemer8a1c45d2015-12-12 05:38:55 +00005199/// ::= 'catchret' from Parent Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005200bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005201 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005202
David Majnemer8a1c45d2015-12-12 05:38:55 +00005203 if (ParseToken(lltok::kw_from, "expected 'from' after catchret"))
5204 return true;
5205
5206 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005207 return true;
5208
David Majnemer0bc0eef2015-08-15 02:46:08 +00005209 BasicBlock *BB;
5210 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5211 ParseTypeAndBasicBlock(BB, PFS))
5212 return true;
5213
David Majnemer8a1c45d2015-12-12 05:38:55 +00005214 Inst = CatchReturnInst::Create(CatchPad, BB);
5215 return false;
5216}
5217
5218/// ParseCatchSwitch
5219/// ::= 'catchswitch' within Parent
5220bool LLParser::ParseCatchSwitch(Instruction *&Inst, PerFunctionState &PFS) {
5221 Value *ParentPad;
5222 LocTy BBLoc;
5223
5224 if (ParseToken(lltok::kw_within, "expected 'within' after catchswitch"))
5225 return true;
5226
5227 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5228 Lex.getKind() != lltok::LocalVarID)
5229 return TokError("expected scope value for catchswitch");
5230
5231 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5232 return true;
5233
5234 if (ParseToken(lltok::lsquare, "expected '[' with catchswitch labels"))
5235 return true;
5236
5237 SmallVector<BasicBlock *, 32> Table;
5238 do {
5239 BasicBlock *DestBB;
5240 if (ParseTypeAndBasicBlock(DestBB, PFS))
5241 return true;
5242 Table.push_back(DestBB);
5243 } while (EatIfPresent(lltok::comma));
5244
5245 if (ParseToken(lltok::rsquare, "expected ']' after catchswitch labels"))
5246 return true;
5247
5248 if (ParseToken(lltok::kw_unwind,
5249 "expected 'unwind' after catchswitch scope"))
5250 return true;
5251
5252 BasicBlock *UnwindBB = nullptr;
5253 if (EatIfPresent(lltok::kw_to)) {
5254 if (ParseToken(lltok::kw_caller, "expected 'caller' in catchswitch"))
5255 return true;
5256 } else {
5257 if (ParseTypeAndBasicBlock(UnwindBB, PFS))
5258 return true;
5259 }
5260
5261 auto *CatchSwitch =
5262 CatchSwitchInst::Create(ParentPad, UnwindBB, Table.size());
5263 for (BasicBlock *DestBB : Table)
5264 CatchSwitch->addHandler(DestBB);
5265 Inst = CatchSwitch;
David Majnemer654e1302015-07-31 17:58:14 +00005266 return false;
5267}
5268
5269/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005270/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005271bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005272 Value *CatchSwitch = nullptr;
5273
5274 if (ParseToken(lltok::kw_within, "expected 'within' after catchpad"))
5275 return true;
5276
5277 if (Lex.getKind() != lltok::LocalVar && Lex.getKind() != lltok::LocalVarID)
5278 return TokError("expected scope value for catchpad");
5279
5280 if (ParseValue(Type::getTokenTy(Context), CatchSwitch, PFS))
5281 return true;
5282
David Majnemer654e1302015-07-31 17:58:14 +00005283 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005284 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005285 return true;
5286
David Majnemer8a1c45d2015-12-12 05:38:55 +00005287 Inst = CatchPadInst::Create(CatchSwitch, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005288 return false;
5289}
5290
David Majnemer654e1302015-07-31 17:58:14 +00005291/// ParseCleanupPad
David Majnemer8a1c45d2015-12-12 05:38:55 +00005292/// ::= 'cleanuppad' within Parent ParamList
David Majnemer654e1302015-07-31 17:58:14 +00005293bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer8a1c45d2015-12-12 05:38:55 +00005294 Value *ParentPad = nullptr;
5295
5296 if (ParseToken(lltok::kw_within, "expected 'within' after cleanuppad"))
5297 return true;
5298
5299 if (Lex.getKind() != lltok::kw_none && Lex.getKind() != lltok::LocalVar &&
5300 Lex.getKind() != lltok::LocalVarID)
5301 return TokError("expected scope value for cleanuppad");
5302
5303 if (ParseValue(Type::getTokenTy(Context), ParentPad, PFS))
5304 return true;
5305
David Majnemer654e1302015-07-31 17:58:14 +00005306 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005307 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005308 return true;
5309
David Majnemer8a1c45d2015-12-12 05:38:55 +00005310 Inst = CleanupPadInst::Create(ParentPad, Args);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005311 return false;
5312}
5313
Chris Lattnerac161bf2009-01-02 07:01:27 +00005314//===----------------------------------------------------------------------===//
5315// Binary Operators.
5316//===----------------------------------------------------------------------===//
5317
5318/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005319/// ::= ArithmeticOps TypeAndValue ',' Value
5320///
5321/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5322/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005323bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005324 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005325 LocTy Loc; Value *LHS, *RHS;
5326 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5327 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5328 ParseValue(LHS->getType(), RHS, PFS))
5329 return true;
5330
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005331 bool Valid;
5332 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005333 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005334 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005335 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5336 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005337 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005338 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5339 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005340 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005341
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005342 if (!Valid)
5343 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005344
Chris Lattnerac161bf2009-01-02 07:01:27 +00005345 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5346 return false;
5347}
5348
5349/// ParseLogical
5350/// ::= ArithmeticOps TypeAndValue ',' Value {
5351bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5352 unsigned Opc) {
5353 LocTy Loc; Value *LHS, *RHS;
5354 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5355 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5356 ParseValue(LHS->getType(), RHS, PFS))
5357 return true;
5358
Duncan Sands9dff9be2010-02-15 16:12:20 +00005359 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005360 return Error(Loc,"instruction requires integer or integer vector operands");
5361
5362 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5363 return false;
5364}
5365
5366
5367/// ParseCompare
5368/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5369/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005370bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5371 unsigned Opc) {
5372 // Parse the integer/fp comparison predicate.
5373 LocTy Loc;
5374 unsigned Pred;
5375 Value *LHS, *RHS;
5376 if (ParseCmpPredicate(Pred, Opc) ||
5377 ParseTypeAndValue(LHS, Loc, PFS) ||
5378 ParseToken(lltok::comma, "expected ',' after compare value") ||
5379 ParseValue(LHS->getType(), RHS, PFS))
5380 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005381
Chris Lattnerac161bf2009-01-02 07:01:27 +00005382 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005383 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005384 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005385 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005386 } else {
5387 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005388 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005389 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005390 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005391 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005392 }
5393 return false;
5394}
5395
5396//===----------------------------------------------------------------------===//
5397// Other Instructions.
5398//===----------------------------------------------------------------------===//
5399
5400
5401/// ParseCast
5402/// ::= CastOpc TypeAndValue 'to' Type
5403bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5404 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005405 LocTy Loc;
5406 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005407 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005408 if (ParseTypeAndValue(Op, Loc, PFS) ||
5409 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5410 ParseType(DestTy))
5411 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005412
Chris Lattner89d856e2009-03-01 00:53:13 +00005413 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5414 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005415 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005416 getTypeString(Op->getType()) + "' to '" +
5417 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005418 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005419 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5420 return false;
5421}
5422
5423/// ParseSelect
5424/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5425bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5426 LocTy Loc;
5427 Value *Op0, *Op1, *Op2;
5428 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5429 ParseToken(lltok::comma, "expected ',' after select condition") ||
5430 ParseTypeAndValue(Op1, PFS) ||
5431 ParseToken(lltok::comma, "expected ',' after select value") ||
5432 ParseTypeAndValue(Op2, PFS))
5433 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005434
Chris Lattnerac161bf2009-01-02 07:01:27 +00005435 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5436 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005437
Chris Lattnerac161bf2009-01-02 07:01:27 +00005438 Inst = SelectInst::Create(Op0, Op1, Op2);
5439 return false;
5440}
5441
Chris Lattnerb55ab542009-01-05 08:18:44 +00005442/// ParseVA_Arg
5443/// ::= 'va_arg' TypeAndValue ',' Type
5444bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005445 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005446 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005447 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005448 if (ParseTypeAndValue(Op, PFS) ||
5449 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005450 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005451 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005452
Chris Lattnerb55ab542009-01-05 08:18:44 +00005453 if (!EltTy->isFirstClassType())
5454 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005455
5456 Inst = new VAArgInst(Op, EltTy);
5457 return false;
5458}
5459
5460/// ParseExtractElement
5461/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5462bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5463 LocTy Loc;
5464 Value *Op0, *Op1;
5465 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5466 ParseToken(lltok::comma, "expected ',' after extract value") ||
5467 ParseTypeAndValue(Op1, PFS))
5468 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005469
Chris Lattnerac161bf2009-01-02 07:01:27 +00005470 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5471 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005472
Eric Christopherc9742252009-07-25 02:28:41 +00005473 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005474 return false;
5475}
5476
5477/// ParseInsertElement
5478/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5479bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5480 LocTy Loc;
5481 Value *Op0, *Op1, *Op2;
5482 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5483 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5484 ParseTypeAndValue(Op1, PFS) ||
5485 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5486 ParseTypeAndValue(Op2, PFS))
5487 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005488
Chris Lattnerac161bf2009-01-02 07:01:27 +00005489 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005490 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005491
Chris Lattnerac161bf2009-01-02 07:01:27 +00005492 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5493 return false;
5494}
5495
5496/// ParseShuffleVector
5497/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5498bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5499 LocTy Loc;
5500 Value *Op0, *Op1, *Op2;
5501 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5502 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5503 ParseTypeAndValue(Op1, PFS) ||
5504 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5505 ParseTypeAndValue(Op2, PFS))
5506 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005507
Chris Lattnerac161bf2009-01-02 07:01:27 +00005508 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005509 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005510
Chris Lattnerac161bf2009-01-02 07:01:27 +00005511 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5512 return false;
5513}
5514
5515/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005516/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005517int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005518 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005519 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005520
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005521 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005522 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5523 ParseValue(Ty, Op0, PFS) ||
5524 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005525 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005526 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5527 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005528
Chris Lattnerf4f03422009-12-30 05:27:33 +00005529 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005530 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5531 while (1) {
5532 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005533
Chris Lattner3822f632009-01-02 08:05:26 +00005534 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005535 break;
5536
Chris Lattnerf4f03422009-12-30 05:27:33 +00005537 if (Lex.getKind() == lltok::MetadataVar) {
5538 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005539 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005540 }
Devang Patel8f842d32009-10-16 18:45:49 +00005541
Chris Lattner3822f632009-01-02 08:05:26 +00005542 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005543 ParseValue(Ty, Op0, PFS) ||
5544 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005545 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005546 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5547 return true;
5548 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005549
Chris Lattnerac161bf2009-01-02 07:01:27 +00005550 if (!Ty->isFirstClassType())
5551 return Error(TypeLoc, "phi node must have first class type");
5552
Jay Foad52131342011-03-30 11:28:46 +00005553 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005554 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5555 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5556 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005557 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005558}
5559
Bill Wendlingfae14752011-08-12 20:24:12 +00005560/// ParseLandingPad
5561/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5562/// Clause
5563/// ::= 'catch' TypeAndValue
5564/// ::= 'filter'
5565/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5566bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005567 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005568
David Majnemer7fddecc2015-06-17 20:52:32 +00005569 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005570 return true;
5571
David Majnemer7fddecc2015-06-17 20:52:32 +00005572 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005573 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5574
5575 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5576 LandingPadInst::ClauseType CT;
5577 if (EatIfPresent(lltok::kw_catch))
5578 CT = LandingPadInst::Catch;
5579 else if (EatIfPresent(lltok::kw_filter))
5580 CT = LandingPadInst::Filter;
5581 else
5582 return TokError("expected 'catch' or 'filter' clause type");
5583
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005584 Value *V;
5585 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005586 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005587 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005588
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005589 // A 'catch' type expects a non-array constant. A filter clause expects an
5590 // array constant.
5591 if (CT == LandingPadInst::Catch) {
5592 if (isa<ArrayType>(V->getType()))
5593 Error(VLoc, "'catch' clause has an invalid type");
5594 } else {
5595 if (!isa<ArrayType>(V->getType()))
5596 Error(VLoc, "'filter' clause has an invalid type");
5597 }
5598
Owen Andersonf8f259d2015-03-09 07:13:42 +00005599 Constant *CV = dyn_cast<Constant>(V);
5600 if (!CV)
5601 return Error(VLoc, "clause argument must be a constant");
5602 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005603 }
5604
Owen Andersonf8f259d2015-03-09 07:13:42 +00005605 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005606 return false;
5607}
5608
Chris Lattnerac161bf2009-01-02 07:01:27 +00005609/// ParseCall
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005610/// ::= 'call' OptionalFastMathFlags OptionalCallingConv
5611/// OptionalAttrs Type Value ParameterList OptionalAttrs
5612/// ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
5613/// OptionalAttrs Type Value ParameterList OptionalAttrs
5614/// ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
5615/// OptionalAttrs Type Value ParameterList OptionalAttrs
5616/// ::= 'notail' 'call' OptionalFastMathFlags OptionalCallingConv
5617/// OptionalAttrs Type Value ParameterList OptionalAttrs
Chris Lattnerac161bf2009-01-02 07:01:27 +00005618bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005619 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005620 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005621 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005622 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005623 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005624 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005625 LocTy RetTypeLoc;
5626 ValID CalleeID;
5627 SmallVector<ParamInfo, 16> ArgList;
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005628 SmallVector<OperandBundleDef, 2> BundleList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005629 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005630
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005631 if (TCK != CallInst::TCK_None &&
5632 ParseToken(lltok::kw_call,
5633 "expected 'tail call', 'musttail call', or 'notail call'"))
5634 return true;
5635
5636 FastMathFlags FMF = EatFastMathFlagsIfPresent();
5637
5638 if (ParseOptionalCallingConv(CC) || ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005639 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005640 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005641 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5642 PFS.getFunction().isVarArg()) ||
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005643 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false, BuiltinLoc) ||
5644 ParseOptionalOperandBundles(BundleList, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005645 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005646
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005647 if (FMF.any() && !RetType->isFPOrFPVectorTy())
5648 return Error(CallLoc, "fast-math-flags specified for call without "
5649 "floating-point scalar or vector return type");
5650
Chris Lattnerac161bf2009-01-02 07:01:27 +00005651 // If RetType is a non-function pointer type, then this is the short syntax
5652 // for the call, which means that RetType is just the return type. Infer the
5653 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005654 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5655 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005656 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005657 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005658 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5659 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005660
Chris Lattnerac161bf2009-01-02 07:01:27 +00005661 if (!FunctionType::isValidReturnType(RetType))
5662 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005663
Owen Anderson4056ca92009-07-29 22:17:13 +00005664 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005665 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005666
David Blaikie41ba2b42015-07-27 23:32:19 +00005667 CalleeID.FTy = Ty;
5668
Chris Lattnerac161bf2009-01-02 07:01:27 +00005669 // Look up the callee.
5670 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005671 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5672 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005673
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005674 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005675 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005676 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005677 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5678 AttributeSet::ReturnIndex,
5679 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005680
Chris Lattnerac161bf2009-01-02 07:01:27 +00005681 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005682
Chris Lattnerac161bf2009-01-02 07:01:27 +00005683 // Loop through FunctionType's arguments and ensure they are specified
5684 // correctly. Also, gather any parameter attributes.
5685 FunctionType::param_iterator I = Ty->param_begin();
5686 FunctionType::param_iterator E = Ty->param_end();
5687 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005688 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005689 if (I != E) {
5690 ExpectedTy = *I++;
5691 } else if (!Ty->isVarArg()) {
5692 return Error(ArgList[i].Loc, "too many arguments specified");
5693 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005694
Chris Lattnerac161bf2009-01-02 07:01:27 +00005695 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5696 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005697 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005698 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005699 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5700 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005701 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5702 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005703 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005704
Chris Lattnerac161bf2009-01-02 07:01:27 +00005705 if (I != E)
5706 return Error(CallLoc, "not enough parameters specified for call");
5707
David Majnemer8d22abd2015-02-23 00:01:32 +00005708 if (FnAttrs.hasAttributes()) {
5709 if (FnAttrs.hasAlignmentAttr())
5710 return Error(CallLoc, "call instructions may not have an alignment");
5711
Bill Wendlingf5075a42013-01-27 02:24:02 +00005712 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5713 AttributeSet::FunctionIndex,
5714 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005715 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005716
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005717 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005718 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005719
Sanjoy Dasb513a9f2015-09-24 23:34:52 +00005720 CallInst *CI = CallInst::Create(Ty, Callee, Args, BundleList);
Reid Kleckner5772b772014-04-24 20:14:34 +00005721 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005722 CI->setCallingConv(CC);
Sanjay Patelfa54ace2015-12-14 21:59:03 +00005723 if (FMF.any())
5724 CI->setFastMathFlags(FMF);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005725 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005726 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005727 Inst = CI;
5728 return false;
5729}
5730
5731//===----------------------------------------------------------------------===//
5732// Memory Instructions.
5733//===----------------------------------------------------------------------===//
5734
5735/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005736/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005737int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005738 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005739 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005740 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005741 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005742
5743 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5744
David Majnemera3b0eb22015-02-16 08:38:03 +00005745 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005746
David Majnemera3b0eb22015-02-16 08:38:03 +00005747 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5748 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005749
Chris Lattnerb2f39502009-12-30 05:44:30 +00005750 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005751 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005752 if (Lex.getKind() == lltok::kw_align) {
5753 if (ParseOptionalAlignment(Alignment)) return true;
5754 } else if (Lex.getKind() == lltok::MetadataVar) {
5755 AteExtraComma = true;
5756 } else {
5757 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5758 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5759 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005760 }
5761 }
5762
Dan Gohman2140a742010-05-28 01:14:11 +00005763 if (Size && !Size->getType()->isIntegerTy())
5764 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005765
Reid Kleckner436c42e2014-01-17 23:58:17 +00005766 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5767 AI->setUsedWithInAlloca(IsInAlloca);
5768 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005769 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005770}
5771
5772/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005773/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005774/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005775/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005776int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005777 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005778 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005779 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005780 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005781 AtomicOrdering Ordering = NotAtomic;
5782 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005783
5784 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005785 isAtomic = true;
5786 Lex.Lex();
5787 }
5788
Chris Lattnerbc639292011-11-27 06:56:53 +00005789 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005790 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005791 isVolatile = true;
5792 Lex.Lex();
5793 }
5794
David Blaikie15d9a4c2015-04-06 20:59:48 +00005795 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005796 LocTy ExplicitTypeLoc = Lex.getLoc();
5797 if (ParseType(Ty) ||
5798 ParseToken(lltok::comma, "expected comma after load's type") ||
5799 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005800 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005801 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5802 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005803
David Blaikie15d9a4c2015-04-06 20:59:48 +00005804 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005805 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005806 if (isAtomic && !Alignment)
5807 return Error(Loc, "atomic load must have explicit non-zero alignment");
5808 if (Ordering == Release || Ordering == AcquireRelease)
5809 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005810
David Blaikiea79ac142015-02-27 21:17:42 +00005811 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5812 return Error(ExplicitTypeLoc,
5813 "explicit pointee type doesn't match operand's pointee type");
5814
David Blaikie15d9a4c2015-04-06 20:59:48 +00005815 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005816 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005817}
5818
5819/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005820
5821/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5822/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005823/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005824int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005825 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005826 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005827 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005828 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005829 AtomicOrdering Ordering = NotAtomic;
5830 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005831
5832 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005833 isAtomic = true;
5834 Lex.Lex();
5835 }
5836
Chris Lattnerbc639292011-11-27 06:56:53 +00005837 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005838 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005839 isVolatile = true;
5840 Lex.Lex();
5841 }
5842
Chris Lattnerac161bf2009-01-02 07:01:27 +00005843 if (ParseTypeAndValue(Val, Loc, PFS) ||
5844 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005845 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005846 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005847 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005848 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005849
Duncan Sands19d0b472010-02-16 11:11:14 +00005850 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005851 return Error(PtrLoc, "store operand must be a pointer");
5852 if (!Val->getType()->isFirstClassType())
5853 return Error(Loc, "store operand must be a first class value");
5854 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5855 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005856 if (isAtomic && !Alignment)
5857 return Error(Loc, "atomic store must have explicit non-zero alignment");
5858 if (Ordering == Acquire || Ordering == AcquireRelease)
5859 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005860
Eli Friedman59b66882011-08-09 23:02:53 +00005861 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005862 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005863}
5864
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005865/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005866/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5867/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005868int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005869 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5870 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005871 AtomicOrdering SuccessOrdering = NotAtomic;
5872 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005873 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005874 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005875 bool isWeak = false;
5876
5877 if (EatIfPresent(lltok::kw_weak))
5878 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005879
5880 if (EatIfPresent(lltok::kw_volatile))
5881 isVolatile = true;
5882
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005883 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5884 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5885 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5886 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5887 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005888 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5889 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005890 return true;
5891
Tim Northovere94a5182014-03-11 10:48:52 +00005892 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005893 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005894 if (SuccessOrdering < FailureOrdering)
5895 return TokError("cmpxchg must be at least as ordered on success as failure");
5896 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5897 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005898 if (!Ptr->getType()->isPointerTy())
5899 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5900 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5901 return Error(CmpLoc, "compare value and pointer type do not match");
5902 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5903 return Error(NewLoc, "new value and pointer type do not match");
5904 if (!New->getType()->isIntegerTy())
5905 return Error(NewLoc, "cmpxchg operand must be an integer");
5906 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5907 if (Size < 8 || (Size & (Size - 1)))
5908 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5909 " integer");
5910
Tim Northover420a2162014-06-13 14:24:07 +00005911 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5912 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005913 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005914 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005915 Inst = CXI;
5916 return AteExtraComma ? InstExtraComma : InstNormal;
5917}
5918
5919/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005920/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5921/// 'singlethread'? AtomicOrdering
5922int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005923 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5924 bool AteExtraComma = false;
5925 AtomicOrdering Ordering = NotAtomic;
5926 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005927 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005928 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005929
5930 if (EatIfPresent(lltok::kw_volatile))
5931 isVolatile = true;
5932
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005933 switch (Lex.getKind()) {
5934 default: return TokError("expected binary operation in atomicrmw");
5935 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5936 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5937 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5938 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5939 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5940 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5941 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5942 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5943 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5944 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5945 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5946 }
5947 Lex.Lex(); // Eat the operation.
5948
5949 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5950 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5951 ParseTypeAndValue(Val, ValLoc, PFS) ||
5952 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5953 return true;
5954
5955 if (Ordering == Unordered)
5956 return TokError("atomicrmw cannot be unordered");
5957 if (!Ptr->getType()->isPointerTy())
5958 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5959 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5960 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5961 if (!Val->getType()->isIntegerTy())
5962 return Error(ValLoc, "atomicrmw operand must be an integer");
5963 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5964 if (Size < 8 || (Size & (Size - 1)))
5965 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5966 " integer");
5967
5968 AtomicRMWInst *RMWI =
5969 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5970 RMWI->setVolatile(isVolatile);
5971 Inst = RMWI;
5972 return AteExtraComma ? InstExtraComma : InstNormal;
5973}
5974
Eli Friedmanfee02c62011-07-25 23:16:38 +00005975/// ParseFence
5976/// ::= 'fence' 'singlethread'? AtomicOrdering
5977int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5978 AtomicOrdering Ordering = NotAtomic;
5979 SynchronizationScope Scope = CrossThread;
5980 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5981 return true;
5982
5983 if (Ordering == Unordered)
5984 return TokError("fence cannot be unordered");
5985 if (Ordering == Monotonic)
5986 return TokError("fence cannot be monotonic");
5987
5988 Inst = new FenceInst(Context, Ordering, Scope);
5989 return InstNormal;
5990}
5991
Chris Lattnerac161bf2009-01-02 07:01:27 +00005992/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00005993/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005994int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005995 Value *Ptr = nullptr;
5996 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005997 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00005998
Dan Gohman16cbbe42009-07-29 15:58:36 +00005999 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00006000
David Blaikie79e6c742015-02-27 19:29:02 +00006001 Type *Ty = nullptr;
6002 LocTy ExplicitTypeLoc = Lex.getLoc();
6003 if (ParseType(Ty) ||
6004 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
6005 ParseTypeAndValue(Ptr, Loc, PFS))
6006 return true;
6007
Eli Benderskyd9806682013-04-22 17:03:42 +00006008 Type *BaseType = Ptr->getType();
6009 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
6010 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006011 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006012
David Blaikie8d757942015-03-09 23:08:44 +00006013 if (Ty != BasePointerType->getElementType())
6014 return Error(ExplicitTypeLoc,
6015 "explicit pointee type doesn't match operand's pointee type");
6016
Chris Lattnerac161bf2009-01-02 07:01:27 +00006017 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006018 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006019 // GEP returns a vector of pointers if at least one of parameters is a vector.
6020 // All vector parameters should have the same vector width.
6021 unsigned GEPWidth = BaseType->isVectorTy() ?
6022 BaseType->getVectorNumElements() : 0;
6023
Chris Lattner3822f632009-01-02 08:05:26 +00006024 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00006025 if (Lex.getKind() == lltok::MetadataVar) {
6026 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00006027 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006028 }
Chris Lattner3822f632009-01-02 08:05:26 +00006029 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006030 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00006031 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006032
Nadav Rotem3924cb02011-12-05 06:29:09 +00006033 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006034 unsigned ValNumEl = Val->getType()->getVectorNumElements();
6035 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00006036 return Error(EltLoc,
6037 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00006038 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00006039 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00006040 Indices.push_back(Val);
6041 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006042
Craig Toppere3dcce92015-08-01 22:20:21 +00006043 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006044 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006045 return Error(Loc, "base element of getelementptr must be sized");
6046
David Blaikied33bad32015-04-17 22:32:13 +00006047 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006048 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006049 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006050 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006051 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006052 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006053}
6054
6055/// ParseExtractValue
6056/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006057int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006058 Value *Val; LocTy Loc;
6059 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006060 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006061 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006062 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006063 return true;
6064
Chris Lattner392be582010-02-12 20:49:41 +00006065 if (!Val->getType()->isAggregateType())
6066 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006067
Jay Foad57aa6362011-07-13 10:26:04 +00006068 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006069 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006070 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006071 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006072}
6073
6074/// ParseInsertValue
6075/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006076int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006077 Value *Val0, *Val1; LocTy Loc0, Loc1;
6078 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006079 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006080 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6081 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6082 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006083 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006084 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006085
Chris Lattner392be582010-02-12 20:49:41 +00006086 if (!Val0->getType()->isAggregateType())
6087 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006088
David Majnemer30074532015-02-11 07:43:58 +00006089 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6090 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006091 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006092 if (IndexedType != Val1->getType())
6093 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6094 getTypeString(Val1->getType()) + "' instead of '" +
6095 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006096 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006097 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006098}
Nick Lewycky49f89192009-04-04 07:22:01 +00006099
6100//===----------------------------------------------------------------------===//
6101// Embedded metadata.
6102//===----------------------------------------------------------------------===//
6103
6104/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006105/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006106/// Element
6107/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006108bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006109 if (ParseToken(lltok::lbrace, "expected '{' here"))
6110 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006111
Dan Gohman1e0213a2010-07-13 19:33:27 +00006112 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006113 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006114 return false;
6115
Nick Lewycky49f89192009-04-04 07:22:01 +00006116 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006117 // Null is a special case since it is typeless.
6118 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006119 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006120 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006121 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006122
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006123 Metadata *MD;
6124 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006125 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006126 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006127 } while (EatIfPresent(lltok::comma));
6128
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006129 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006130}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006131
6132//===----------------------------------------------------------------------===//
6133// Use-list order directives.
6134//===----------------------------------------------------------------------===//
6135bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6136 SMLoc Loc) {
6137 if (V->use_empty())
6138 return Error(Loc, "value has no uses");
6139
6140 unsigned NumUses = 0;
6141 SmallDenseMap<const Use *, unsigned, 16> Order;
6142 for (const Use &U : V->uses()) {
6143 if (++NumUses > Indexes.size())
6144 break;
6145 Order[&U] = Indexes[NumUses - 1];
6146 }
6147 if (NumUses < 2)
6148 return Error(Loc, "value only has one use");
6149 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6150 return Error(Loc, "wrong number of indexes, expected " +
6151 Twine(std::distance(V->use_begin(), V->use_end())));
6152
6153 V->sortUseList([&](const Use &L, const Use &R) {
6154 return Order.lookup(&L) < Order.lookup(&R);
6155 });
6156 return false;
6157}
6158
6159/// ParseUseListOrderIndexes
6160/// ::= '{' uint32 (',' uint32)+ '}'
6161bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6162 SMLoc Loc = Lex.getLoc();
6163 if (ParseToken(lltok::lbrace, "expected '{' here"))
6164 return true;
6165 if (Lex.getKind() == lltok::rbrace)
6166 return Lex.Error("expected non-empty list of uselistorder indexes");
6167
6168 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6169 // indexes should be distinct numbers in the range [0, size-1], and should
6170 // not be in order.
6171 unsigned Offset = 0;
6172 unsigned Max = 0;
6173 bool IsOrdered = true;
6174 assert(Indexes.empty() && "Expected empty order vector");
6175 do {
6176 unsigned Index;
6177 if (ParseUInt32(Index))
6178 return true;
6179
6180 // Update consistency checks.
6181 Offset += Index - Indexes.size();
6182 Max = std::max(Max, Index);
6183 IsOrdered &= Index == Indexes.size();
6184
6185 Indexes.push_back(Index);
6186 } while (EatIfPresent(lltok::comma));
6187
6188 if (ParseToken(lltok::rbrace, "expected '}' here"))
6189 return true;
6190
6191 if (Indexes.size() < 2)
6192 return Error(Loc, "expected >= 2 uselistorder indexes");
6193 if (Offset != 0 || Max >= Indexes.size())
6194 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6195 if (IsOrdered)
6196 return Error(Loc, "expected uselistorder indexes to change the order");
6197
6198 return false;
6199}
6200
6201/// ParseUseListOrder
6202/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6203bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6204 SMLoc Loc = Lex.getLoc();
6205 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6206 return true;
6207
6208 Value *V;
6209 SmallVector<unsigned, 16> Indexes;
6210 if (ParseTypeAndValue(V, PFS) ||
6211 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6212 ParseUseListOrderIndexes(Indexes))
6213 return true;
6214
6215 return sortUseListOrder(V, Indexes, Loc);
6216}
6217
6218/// ParseUseListOrderBB
6219/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6220bool LLParser::ParseUseListOrderBB() {
6221 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6222 SMLoc Loc = Lex.getLoc();
6223 Lex.Lex();
6224
6225 ValID Fn, Label;
6226 SmallVector<unsigned, 16> Indexes;
6227 if (ParseValID(Fn) ||
6228 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6229 ParseValID(Label) ||
6230 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6231 ParseUseListOrderIndexes(Indexes))
6232 return true;
6233
6234 // Check the function.
6235 GlobalValue *GV;
6236 if (Fn.Kind == ValID::t_GlobalName)
6237 GV = M->getNamedValue(Fn.StrVal);
6238 else if (Fn.Kind == ValID::t_GlobalID)
6239 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6240 else
6241 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6242 if (!GV)
6243 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6244 auto *F = dyn_cast<Function>(GV);
6245 if (!F)
6246 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6247 if (F->isDeclaration())
6248 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6249
6250 // Check the basic block.
6251 if (Label.Kind == ValID::t_LocalID)
6252 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6253 if (Label.Kind != ValID::t_LocalName)
6254 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6255 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6256 if (!V)
6257 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6258 if (!isa<BasicBlock>(V))
6259 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6260
6261 return sortUseListOrder(V, Indexes, Loc);
6262}