blob: 3949c67f16d88d5334308eaeaa9cead9b1e8e111 [file] [log] [blame]
Chris Lattnerac161bf2009-01-02 07:01:27 +00001//===-- LLParser.cpp - Parser Class ---------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the parser class for .ll files.
11//
12//===----------------------------------------------------------------------===//
13
14#include "LLParser.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
David Blaikieadbda4b2015-08-03 20:08:41 +000016#include "llvm/ADT/STLExtras.h"
Alex Lorenz8955f7d2015-06-23 17:10:10 +000017#include "llvm/AsmParser/SlotMapping.h"
Chandler Carruth91065212014-03-05 10:34:14 +000018#include "llvm/IR/AutoUpgrade.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000019#include "llvm/IR/CallingConv.h"
20#include "llvm/IR/Constants.h"
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +000021#include "llvm/IR/DebugInfo.h"
Duncan P. N. Exon Smithd9901ff2015-02-02 18:53:21 +000022#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DerivedTypes.h"
24#include "llvm/IR/InlineAsm.h"
25#include "llvm/IR/Instructions.h"
Manman Ren209b17c2013-09-28 00:22:27 +000026#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Module.h"
28#include "llvm/IR/Operator.h"
29#include "llvm/IR/ValueSymbolTable.h"
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +000030#include "llvm/Support/Dwarf.h"
Torok Edwin56d06592009-07-11 20:10:48 +000031#include "llvm/Support/ErrorHandling.h"
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +000032#include "llvm/Support/SaveAndRestore.h"
Chris Lattnerac161bf2009-01-02 07:01:27 +000033#include "llvm/Support/raw_ostream.h"
34using namespace llvm;
35
Chris Lattner229907c2011-07-18 04:54:35 +000036static std::string getTypeString(Type *T) {
Alp Tokere69170a2014-06-26 22:52:05 +000037 std::string Result;
38 raw_string_ostream Tmp(Result);
39 Tmp << *T;
40 return Tmp.str();
Chris Lattner0f214eb2011-06-18 21:18:23 +000041}
42
Chris Lattner3822f632009-01-02 08:05:26 +000043/// Run: module ::= toplevelentity*
Chris Lattnerad6f3352009-01-04 20:44:11 +000044bool LLParser::Run() {
Chris Lattner3822f632009-01-02 08:05:26 +000045 // Prime the lexer.
46 Lex.Lex();
47
Chris Lattnerad6f3352009-01-04 20:44:11 +000048 return ParseTopLevelEntities() ||
49 ValidateEndOfModule();
Chris Lattnerac161bf2009-01-02 07:01:27 +000050}
51
Alex Lorenz1de2acd2015-08-21 21:32:39 +000052bool LLParser::parseStandaloneConstantValue(Constant *&C,
53 const SlotMapping *Slots) {
54 restoreParsingState(Slots);
Alex Lorenzd2255952015-07-17 22:07:03 +000055 Lex.Lex();
56
57 Type *Ty = nullptr;
58 if (ParseType(Ty) || parseConstantValue(Ty, C))
59 return true;
60 if (Lex.getKind() != lltok::Eof)
61 return Error(Lex.getLoc(), "expected end of string");
62 return false;
63}
64
Alex Lorenz1de2acd2015-08-21 21:32:39 +000065void LLParser::restoreParsingState(const SlotMapping *Slots) {
66 if (!Slots)
67 return;
68 NumberedVals = Slots->GlobalValues;
69 NumberedMetadata = Slots->MetadataNodes;
70 for (const auto &I : Slots->NamedTypes)
71 NamedTypes.insert(
72 std::make_pair(I.getKey(), std::make_pair(I.second, LocTy())));
73 for (const auto &I : Slots->Types)
74 NumberedTypes.insert(
75 std::make_pair(I.first, std::make_pair(I.second, LocTy())));
76}
77
Chris Lattnerac161bf2009-01-02 07:01:27 +000078/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
79/// module.
80bool LLParser::ValidateEndOfModule() {
Manman Ren209b17c2013-09-28 00:22:27 +000081 for (unsigned I = 0, E = InstsWithTBAATag.size(); I < E; I++)
82 UpgradeInstWithTBAATag(InstsWithTBAATag[I]);
83
Bill Wendlingb32b0412013-02-08 06:32:06 +000084 // Handle any function attribute group forward references.
85 for (std::map<Value*, std::vector<unsigned> >::iterator
86 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
87 I != E; ++I) {
88 Value *V = I->first;
89 std::vector<unsigned> &Vec = I->second;
90 AttrBuilder B;
91
92 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
93 VI != VE; ++VI)
94 B.merge(NumberedAttrBuilders[*VI]);
95
96 if (Function *Fn = dyn_cast<Function>(V)) {
97 AttributeSet AS = Fn->getAttributes();
98 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
99 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
100 AS.getFnAttributes());
101
102 FnAttrs.merge(B);
103
104 // If the alignment was parsed as an attribute, move to the alignment
105 // field.
106 if (FnAttrs.hasAlignmentAttr()) {
107 Fn->setAlignment(FnAttrs.getAlignment());
108 FnAttrs.removeAttribute(Attribute::Alignment);
109 }
110
111 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
112 AttributeSet::get(Context,
113 AttributeSet::FunctionIndex,
114 FnAttrs));
115 Fn->setAttributes(AS);
116 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
117 AttributeSet AS = CI->getAttributes();
118 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
119 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
120 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000121 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000122 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
123 AttributeSet::get(Context,
124 AttributeSet::FunctionIndex,
125 FnAttrs));
126 CI->setAttributes(AS);
127 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
128 AttributeSet AS = II->getAttributes();
129 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
130 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
131 AS.getFnAttributes());
Bill Wendling59dce372013-02-12 10:13:06 +0000132 FnAttrs.merge(B);
Bill Wendlingb32b0412013-02-08 06:32:06 +0000133 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
134 AttributeSet::get(Context,
135 AttributeSet::FunctionIndex,
136 FnAttrs));
137 II->setAttributes(AS);
138 } else {
139 llvm_unreachable("invalid object with forward attribute group reference");
140 }
141 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000142
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +0000143 // If there are entries in ForwardRefBlockAddresses at this point, the
144 // function was never defined.
145 if (!ForwardRefBlockAddresses.empty())
146 return Error(ForwardRefBlockAddresses.begin()->first.Loc,
147 "expected function name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000148
David Majnemer19b51052015-02-11 07:43:56 +0000149 for (const auto &NT : NumberedTypes)
150 if (NT.second.second.isValid())
151 return Error(NT.second.second,
152 "use of undefined type '%" + Twine(NT.first) + "'");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000153
154 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
155 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
156 if (I->second.second.isValid())
157 return Error(I->second.second,
158 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000159
David Majnemerdad0a642014-06-27 18:19:56 +0000160 if (!ForwardRefComdats.empty())
161 return Error(ForwardRefComdats.begin()->second,
162 "use of undefined comdat '$" +
163 ForwardRefComdats.begin()->first + "'");
164
Chris Lattnerac161bf2009-01-02 07:01:27 +0000165 if (!ForwardRefVals.empty())
166 return Error(ForwardRefVals.begin()->second.second,
167 "use of undefined value '@" + ForwardRefVals.begin()->first +
168 "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000169
Chris Lattnerac161bf2009-01-02 07:01:27 +0000170 if (!ForwardRefValIDs.empty())
171 return Error(ForwardRefValIDs.begin()->second.second,
172 "use of undefined value '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000173 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000174
Devang Pateld2541152009-07-08 19:23:54 +0000175 if (!ForwardRefMDNodes.empty())
176 return Error(ForwardRefMDNodes.begin()->second.second,
177 "use of undefined metadata '!" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000178 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000179
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000180 // Resolve metadata cycles.
David Majnemer19b51052015-02-11 07:43:56 +0000181 for (auto &N : NumberedMetadata) {
182 if (N.second && !N.second->isResolved())
183 N.second->resolveCycles();
184 }
Devang Pateld2541152009-07-08 19:23:54 +0000185
Chris Lattnerac161bf2009-01-02 07:01:27 +0000186 // Look for intrinsic functions and CallInst that need to be upgraded
187 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
188 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000189
Manman Ren8b4306c2013-12-02 21:29:56 +0000190 UpgradeDebugInfo(*M);
191
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000192 if (!Slots)
193 return false;
194 // Initialize the slot mapping.
195 // Because by this point we've parsed and validated everything, we can "steal"
196 // the mapping from LLParser as it doesn't need it anymore.
197 Slots->GlobalValues = std::move(NumberedVals);
198 Slots->MetadataNodes = std::move(NumberedMetadata);
Alex Lorenz1de2acd2015-08-21 21:32:39 +0000199 for (const auto &I : NamedTypes)
200 Slots->NamedTypes.insert(std::make_pair(I.getKey(), I.second.first));
201 for (const auto &I : NumberedTypes)
202 Slots->Types.insert(std::make_pair(I.first, I.second.first));
Alex Lorenz8955f7d2015-06-23 17:10:10 +0000203
Chris Lattnerac161bf2009-01-02 07:01:27 +0000204 return false;
205}
206
207//===----------------------------------------------------------------------===//
208// Top-Level Entities
209//===----------------------------------------------------------------------===//
210
211bool LLParser::ParseTopLevelEntities() {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000212 while (1) {
213 switch (Lex.getKind()) {
214 default: return TokError("expected top-level entity");
215 case lltok::Eof: return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000216 case lltok::kw_declare: if (ParseDeclare()) return true; break;
217 case lltok::kw_define: if (ParseDefine()) return true; break;
218 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
219 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling706d3d62012-11-28 08:41:48 +0000220 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000221 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000222 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman466876b2009-08-12 23:32:33 +0000223 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000224 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
David Majnemerdad0a642014-06-27 18:19:56 +0000225 case lltok::ComdatVar: if (parseComdat()) return true; break;
Chris Lattner1eed2d62009-12-30 04:56:59 +0000226 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling63b88192013-02-06 06:52:58 +0000227 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000228
229 // The Global variable production with no name can have many different
230 // optional leading prefixes, the production is:
Nico Rieck7157bb72014-01-14 15:22:47 +0000231 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000232 // OptionalThreadLocal OptionalAddrSpace OptionalUnnamedAddr
Rafael Espindola45e6c192011-01-08 16:42:36 +0000233 // ('constant'|'global') ...
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000234 case lltok::kw_private: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000235 case lltok::kw_internal: // OptionalLinkage
236 case lltok::kw_weak: // OptionalLinkage
237 case lltok::kw_weak_odr: // OptionalLinkage
238 case lltok::kw_linkonce: // OptionalLinkage
239 case lltok::kw_linkonce_odr: // OptionalLinkage
240 case lltok::kw_appending: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000241 case lltok::kw_common: // OptionalLinkage
Bill Wendling03bcd6e2010-07-01 21:55:59 +0000242 case lltok::kw_extern_weak: // OptionalLinkage
Rafael Espindola52b74422014-06-03 20:00:20 +0000243 case lltok::kw_external: // OptionalLinkage
244 case lltok::kw_default: // OptionalVisibility
245 case lltok::kw_hidden: // OptionalVisibility
246 case lltok::kw_protected: // OptionalVisibility
Rafael Espindola63e92fb2014-06-03 20:07:32 +0000247 case lltok::kw_dllimport: // OptionalDLLStorageClass
248 case lltok::kw_dllexport: // OptionalDLLStorageClass
Rafael Espindola52b74422014-06-03 20:00:20 +0000249 case lltok::kw_thread_local: // OptionalThreadLocal
250 case lltok::kw_addrspace: // OptionalAddrSpace
251 case lltok::kw_constant: // GlobalType
252 case lltok::kw_global: { // GlobalType
Nico Rieck7157bb72014-01-14 15:22:47 +0000253 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000254 bool UnnamedAddr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000255 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola52b74422014-06-03 20:00:20 +0000256 bool HasLinkage;
257 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000258 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000259 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000260 ParseOptionalThreadLocal(TLM) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000261 parseOptionalUnnamedAddr(UnnamedAddr) ||
Rafael Espindola52b74422014-06-03 20:00:20 +0000262 ParseGlobal("", SMLoc(), Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000263 DLLStorageClass, TLM, UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000264 return true;
265 break;
266 }
Bill Wendlinga7c38772013-02-09 15:48:49 +0000267
268 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +0000269 case lltok::kw_uselistorder: if (ParseUseListOrder()) return true; break;
270 case lltok::kw_uselistorder_bb:
271 if (ParseUseListOrderBB()) return true; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000272 }
273 }
274}
275
276
277/// toplevelentity
278/// ::= 'module' 'asm' STRINGCONSTANT
279bool LLParser::ParseModuleAsm() {
280 assert(Lex.getKind() == lltok::kw_module);
281 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000282
283 std::string AsmStr;
Chris Lattner3822f632009-01-02 08:05:26 +0000284 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
285 ParseStringConstant(AsmStr)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000286
Rafael Espindola1e49a6d2011-03-02 04:14:42 +0000287 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000288 return false;
289}
290
291/// toplevelentity
292/// ::= 'target' 'triple' '=' STRINGCONSTANT
293/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
294bool LLParser::ParseTargetDefinition() {
295 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3822f632009-01-02 08:05:26 +0000296 std::string Str;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000297 switch (Lex.Lex()) {
298 default: return TokError("unknown target property");
299 case lltok::kw_triple:
300 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000301 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
302 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000303 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000304 M->setTargetTriple(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000305 return false;
306 case lltok::kw_datalayout:
307 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +0000308 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
309 ParseStringConstant(Str))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000310 return true;
Chris Lattner3822f632009-01-02 08:05:26 +0000311 M->setDataLayout(Str);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000312 return false;
313 }
314}
315
Bill Wendling706d3d62012-11-28 08:41:48 +0000316/// toplevelentity
317/// ::= 'deplibs' '=' '[' ']'
318/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
319/// FIXME: Remove in 4.0. Currently parse, but ignore.
320bool LLParser::ParseDepLibs() {
321 assert(Lex.getKind() == lltok::kw_deplibs);
322 Lex.Lex();
323 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
324 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
325 return true;
326
327 if (EatIfPresent(lltok::rsquare))
328 return false;
329
330 do {
331 std::string Str;
332 if (ParseStringConstant(Str)) return true;
333 } while (EatIfPresent(lltok::comma));
334
335 return ParseToken(lltok::rsquare, "expected ']' at end of list");
336}
337
Dan Gohman466876b2009-08-12 23:32:33 +0000338/// ParseUnnamedType:
Dan Gohman466876b2009-08-12 23:32:33 +0000339/// ::= LocalVarID '=' 'type' type
Chris Lattnerac161bf2009-01-02 07:01:27 +0000340bool LLParser::ParseUnnamedType() {
Chris Lattner07037362011-06-18 23:51:31 +0000341 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000342 unsigned TypeID = Lex.getUIntVal();
Chris Lattner8936d2b2011-06-19 00:03:46 +0000343 Lex.Lex(); // eat LocalVarID;
344
345 if (ParseToken(lltok::equal, "expected '=' after name") ||
346 ParseToken(lltok::kw_type, "expected 'type' after '='"))
347 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000348
Craig Topper2617dcc2014-04-15 06:32:26 +0000349 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000350 if (ParseStructDefinition(TypeLoc, "",
351 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000352
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000353 if (!isa<StructType>(Result)) {
354 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
355 if (Entry.first)
356 return Error(TypeLoc, "non-struct types may not be recursive");
357 Entry.first = Result;
358 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000359 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000360
Chris Lattnerac161bf2009-01-02 07:01:27 +0000361 return false;
362}
363
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000364
Chris Lattnerac161bf2009-01-02 07:01:27 +0000365/// toplevelentity
366/// ::= LocalVar '=' 'type' type
367bool LLParser::ParseNamedType() {
368 std::string Name = Lex.getStrVal();
369 LocTy NameLoc = Lex.getLoc();
Chris Lattner3822f632009-01-02 08:05:26 +0000370 Lex.Lex(); // eat LocalVar.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000371
Chris Lattner3822f632009-01-02 08:05:26 +0000372 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000373 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3822f632009-01-02 08:05:26 +0000374 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000375
Craig Topper2617dcc2014-04-15 06:32:26 +0000376 Type *Result = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000377 if (ParseStructDefinition(NameLoc, Name,
378 NamedTypes[Name], Result)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000379
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000380 if (!isa<StructType>(Result)) {
381 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
382 if (Entry.first)
383 return Error(NameLoc, "non-struct types may not be recursive");
384 Entry.first = Result;
385 Entry.second = SMLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000386 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000387
Chris Lattnerb1ed91f2011-07-09 17:41:24 +0000388 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000389}
390
391
392/// toplevelentity
393/// ::= 'declare' FunctionHeader
394bool LLParser::ParseDeclare() {
395 assert(Lex.getKind() == lltok::kw_declare);
396 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000397
Chris Lattnerac161bf2009-01-02 07:01:27 +0000398 Function *F;
399 return ParseFunctionHeader(F, false);
400}
401
402/// toplevelentity
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000403/// ::= 'define' FunctionHeader (!dbg !56)* '{' ...
Chris Lattnerac161bf2009-01-02 07:01:27 +0000404bool LLParser::ParseDefine() {
405 assert(Lex.getKind() == lltok::kw_define);
406 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000407
Chris Lattnerac161bf2009-01-02 07:01:27 +0000408 Function *F;
Chris Lattner3822f632009-01-02 08:05:26 +0000409 return ParseFunctionHeader(F, true) ||
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +0000410 ParseOptionalFunctionMetadata(*F) ||
Chris Lattner3822f632009-01-02 08:05:26 +0000411 ParseFunctionBody(*F);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000412}
413
Chris Lattner3822f632009-01-02 08:05:26 +0000414/// ParseGlobalType
415/// ::= 'constant'
416/// ::= 'global'
Chris Lattnerac161bf2009-01-02 07:01:27 +0000417bool LLParser::ParseGlobalType(bool &IsConstant) {
418 if (Lex.getKind() == lltok::kw_constant)
419 IsConstant = true;
420 else if (Lex.getKind() == lltok::kw_global)
421 IsConstant = false;
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000422 else {
423 IsConstant = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000424 return TokError("expected 'global' or 'constant'");
Duncan Sandsd1de45a2009-02-10 16:24:55 +0000425 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000426 Lex.Lex();
427 return false;
428}
429
Dan Gohman466876b2009-08-12 23:32:33 +0000430/// ParseUnnamedGlobal:
431/// OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000432/// OptionalLinkage OptionalVisibility OptionalDLLStorageClass
433/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000434/// GlobalID '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000435/// GlobalID '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
436/// ... -> global variable
Dan Gohman466876b2009-08-12 23:32:33 +0000437bool LLParser::ParseUnnamedGlobal() {
438 unsigned VarID = NumberedVals.size();
439 std::string Name;
440 LocTy NameLoc = Lex.getLoc();
441
442 // Handle the GlobalID form.
443 if (Lex.getKind() == lltok::GlobalID) {
444 if (Lex.getUIntVal() != VarID)
445 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +0000446 Twine(VarID) + "'");
Dan Gohman466876b2009-08-12 23:32:33 +0000447 Lex.Lex(); // eat GlobalID;
448
449 if (ParseToken(lltok::equal, "expected '=' after name"))
450 return true;
451 }
452
453 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000454 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000455 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000456 bool UnnamedAddr;
Dan Gohman466876b2009-08-12 23:32:33 +0000457 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000458 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000459 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000460 ParseOptionalThreadLocal(TLM) ||
461 parseOptionalUnnamedAddr(UnnamedAddr))
Dan Gohman466876b2009-08-12 23:32:33 +0000462 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000463
Rafael Espindola464fe022014-07-30 22:51:54 +0000464 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000465 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000466 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000467 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000468 UnnamedAddr);
Dan Gohman466876b2009-08-12 23:32:33 +0000469}
470
Chris Lattnerac161bf2009-01-02 07:01:27 +0000471/// ParseNamedGlobal:
472/// GlobalVar '=' OptionalVisibility ALIAS ...
Nico Rieck7157bb72014-01-14 15:22:47 +0000473/// GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
474/// ... -> global variable
Chris Lattnerac161bf2009-01-02 07:01:27 +0000475bool LLParser::ParseNamedGlobal() {
476 assert(Lex.getKind() == lltok::GlobalVar);
477 LocTy NameLoc = Lex.getLoc();
478 std::string Name = Lex.getStrVal();
479 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000480
Chris Lattnerac161bf2009-01-02 07:01:27 +0000481 bool HasLinkage;
Nico Rieck7157bb72014-01-14 15:22:47 +0000482 unsigned Linkage, Visibility, DLLStorageClass;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000483 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000484 bool UnnamedAddr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000485 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
486 ParseOptionalLinkage(Linkage, HasLinkage) ||
Nico Rieck7157bb72014-01-14 15:22:47 +0000487 ParseOptionalVisibility(Visibility) ||
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000488 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000489 ParseOptionalThreadLocal(TLM) ||
490 parseOptionalUnnamedAddr(UnnamedAddr))
Chris Lattnerac161bf2009-01-02 07:01:27 +0000491 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000492
Rafael Espindola464fe022014-07-30 22:51:54 +0000493 if (Lex.getKind() != lltok::kw_alias)
Nico Rieck7157bb72014-01-14 15:22:47 +0000494 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000495 DLLStorageClass, TLM, UnnamedAddr);
Rafael Espindola464fe022014-07-30 22:51:54 +0000496
497 return ParseAlias(Name, NameLoc, Linkage, Visibility, DLLStorageClass, TLM,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000498 UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000499}
500
David Majnemerdad0a642014-06-27 18:19:56 +0000501bool LLParser::parseComdat() {
502 assert(Lex.getKind() == lltok::ComdatVar);
503 std::string Name = Lex.getStrVal();
504 LocTy NameLoc = Lex.getLoc();
505 Lex.Lex();
506
507 if (ParseToken(lltok::equal, "expected '=' here"))
508 return true;
509
510 if (ParseToken(lltok::kw_comdat, "expected comdat keyword"))
511 return TokError("expected comdat type");
512
513 Comdat::SelectionKind SK;
514 switch (Lex.getKind()) {
515 default:
516 return TokError("unknown selection kind");
517 case lltok::kw_any:
518 SK = Comdat::Any;
519 break;
520 case lltok::kw_exactmatch:
521 SK = Comdat::ExactMatch;
522 break;
523 case lltok::kw_largest:
524 SK = Comdat::Largest;
525 break;
526 case lltok::kw_noduplicates:
527 SK = Comdat::NoDuplicates;
528 break;
529 case lltok::kw_samesize:
530 SK = Comdat::SameSize;
531 break;
532 }
533 Lex.Lex();
534
535 // See if the comdat was forward referenced, if so, use the comdat.
536 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
537 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
538 if (I != ComdatSymTab.end() && !ForwardRefComdats.erase(Name))
539 return Error(NameLoc, "redefinition of comdat '$" + Name + "'");
540
541 Comdat *C;
542 if (I != ComdatSymTab.end())
543 C = &I->second;
544 else
545 C = M->getOrInsertComdat(Name);
546 C->setSelectionKind(SK);
547
548 return false;
549}
550
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000551// MDString:
552// ::= '!' STRINGCONSTANT
Chris Lattner1797fc72009-12-29 21:53:55 +0000553bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000554 std::string Str;
555 if (ParseStringConstant(Str)) return true;
Eli Bendersky5d5e18d2014-06-25 15:41:00 +0000556 llvm::UpgradeMDStringConstant(Str);
Chris Lattner1797fc72009-12-29 21:53:55 +0000557 Result = MDString::get(Context, Str);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000558 return false;
559}
560
561// MDNode:
562// ::= '!' MDNodeNumber
Chris Lattner6dac02a2009-12-30 04:15:23 +0000563bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000564 // !{ ..., !42, ... }
565 unsigned MID = 0;
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000566 if (ParseUInt32(MID))
567 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000568
Chris Lattner8eff0152010-04-01 05:14:45 +0000569 // If not a forward reference, just return it now.
David Majnemer19b51052015-02-11 07:43:56 +0000570 if (NumberedMetadata.count(MID)) {
Duncan P. N. Exon Smitha8d9a022015-01-12 21:14:38 +0000571 Result = NumberedMetadata[MID];
572 return false;
573 }
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000574
Chris Lattner8eff0152010-04-01 05:14:45 +0000575 // Otherwise, create MDNode forward reference.
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000576 auto &FwdRef = ForwardRefMDNodes[MID];
577 FwdRef = std::make_pair(MDTuple::getTemporary(Context, None), Lex.getLoc());
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000578
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000579 Result = FwdRef.first.get();
580 NumberedMetadata[MID].reset(Result);
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000581 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000582}
Devang Patel8ff0f8d2009-07-20 19:00:08 +0000583
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000584/// ParseNamedMetadata:
Devang Patelbe626972009-07-29 00:34:02 +0000585/// !foo = !{ !1, !2 }
586bool LLParser::ParseNamedMetadata() {
Chris Lattnereafe4de2009-12-30 05:02:06 +0000587 assert(Lex.getKind() == lltok::MetadataVar);
Devang Patelbe626972009-07-29 00:34:02 +0000588 std::string Name = Lex.getStrVal();
Chris Lattnereafe4de2009-12-30 05:02:06 +0000589 Lex.Lex();
Devang Patelbe626972009-07-29 00:34:02 +0000590
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000591 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattner1eed2d62009-12-30 04:56:59 +0000592 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattnerf2fe7ff2009-12-29 22:35:39 +0000593 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Patelbe626972009-07-29 00:34:02 +0000594 return true;
595
Dan Gohman2637cc12010-07-21 23:38:33 +0000596 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000597 if (Lex.getKind() != lltok::rbrace)
598 do {
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000599 if (ParseToken(lltok::exclaim, "Expected '!' here"))
600 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000601
Craig Topper2617dcc2014-04-15 06:32:26 +0000602 MDNode *N = nullptr;
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000603 if (ParseMDNodeID(N)) return true;
Dan Gohman2637cc12010-07-21 23:38:33 +0000604 NMD->addOperand(N);
Dan Gohmanafd69cf2010-07-13 19:42:44 +0000605 } while (EatIfPresent(lltok::comma));
Devang Patelbe626972009-07-29 00:34:02 +0000606
Rafael Espindolac7818fb2015-05-26 20:37:36 +0000607 return ParseToken(lltok::rbrace, "expected end of metadata node");
Devang Patelbe626972009-07-29 00:34:02 +0000608}
609
Devang Patel39e64d42009-07-01 19:21:12 +0000610/// ParseStandaloneMetadata:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000611/// !42 = !{...}
Devang Patel39e64d42009-07-01 19:21:12 +0000612bool LLParser::ParseStandaloneMetadata() {
Chris Lattner1eed2d62009-12-30 04:56:59 +0000613 assert(Lex.getKind() == lltok::exclaim);
Devang Patel39e64d42009-07-01 19:21:12 +0000614 Lex.Lex();
615 unsigned MetadataID = 0;
Devang Patel39e64d42009-07-01 19:21:12 +0000616
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000617 MDNode *Init;
Chris Lattner278bc952009-12-29 22:40:21 +0000618 if (ParseUInt32(MetadataID) ||
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +0000619 ParseToken(lltok::equal, "expected '=' here"))
620 return true;
621
622 // Detect common error, from old metadata syntax.
623 if (Lex.getKind() == lltok::Type)
624 return TokError("unexpected type in metadata definition");
625
Duncan P. N. Exon Smith090a19b2015-01-08 22:38:29 +0000626 bool IsDistinct = EatIfPresent(lltok::kw_distinct);
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +0000627 if (Lex.getKind() == lltok::MetadataVar) {
628 if (ParseSpecializedMDNode(Init, IsDistinct))
629 return true;
630 } else if (ParseToken(lltok::exclaim, "Expected '!' here") ||
631 ParseMDTuple(Init, IsDistinct))
Devang Patele059ba6e2009-07-23 01:07:34 +0000632 return true;
633
Chris Lattnerfc58af22009-12-30 04:51:58 +0000634 // See if this was forward referenced, if so, handle it.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000635 auto FI = ForwardRefMDNodes.find(MetadataID);
Devang Pateld2541152009-07-08 19:23:54 +0000636 if (FI != ForwardRefMDNodes.end()) {
Duncan P. N. Exon Smith7d823132015-01-19 21:30:18 +0000637 FI->second.first->replaceAllUsesWith(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000638 ForwardRefMDNodes.erase(FI);
Michael Ilseman26ee2b82012-11-15 22:34:00 +0000639
Chris Lattnerfc58af22009-12-30 04:51:58 +0000640 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
641 } else {
David Majnemer19b51052015-02-11 07:43:56 +0000642 if (NumberedMetadata.count(MetadataID))
Chris Lattnerfc58af22009-12-30 04:51:58 +0000643 return TokError("Metadata id is already used");
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +0000644 NumberedMetadata[MetadataID].reset(Init);
Devang Pateld2541152009-07-08 19:23:54 +0000645 }
646
Devang Patel39e64d42009-07-01 19:21:12 +0000647 return false;
648}
649
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000650static bool isValidVisibilityForLinkage(unsigned V, unsigned L) {
651 return !GlobalValue::isLocalLinkage((GlobalValue::LinkageTypes)L) ||
652 (GlobalValue::VisibilityTypes)V == GlobalValue::DefaultVisibility;
653}
654
Chris Lattnerac161bf2009-01-02 07:01:27 +0000655/// ParseAlias:
Rafael Espindola464fe022014-07-30 22:51:54 +0000656/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility
657/// OptionalDLLStorageClass OptionalThreadLocal
Eric Christopher536f0a92015-05-28 23:07:39 +0000658/// OptionalUnnamedAddr 'alias' Aliasee
Rafael Espindola6b238632014-05-16 19:35:39 +0000659///
Chris Lattnerac161bf2009-01-02 07:01:27 +0000660/// Aliasee
Chris Lattner4c73d7a2009-04-25 21:26:00 +0000661/// ::= TypeAndValue
Chris Lattnerac161bf2009-01-02 07:01:27 +0000662///
Eric Christopher536f0a92015-05-28 23:07:39 +0000663/// Everything through OptionalUnnamedAddr has already been parsed.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000664///
Rafael Espindola464fe022014-07-30 22:51:54 +0000665bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc, unsigned L,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000666 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000667 GlobalVariable::ThreadLocalMode TLM,
668 bool UnnamedAddr) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000669 assert(Lex.getKind() == lltok::kw_alias);
670 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +0000671
Rafael Espindola78527052013-10-06 15:10:43 +0000672 GlobalValue::LinkageTypes Linkage = (GlobalValue::LinkageTypes) L;
673
Rafael Espindolacaa43562013-10-09 16:07:32 +0000674 if(!GlobalAlias::isValidLinkage(Linkage))
Rafael Espindola464fe022014-07-30 22:51:54 +0000675 return Error(NameLoc, "invalid linkage type for alias");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000676
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000677 if (!isValidVisibilityForLinkage(Visibility, L))
Rafael Espindola464fe022014-07-30 22:51:54 +0000678 return Error(NameLoc,
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000679 "symbol with local linkage must have default visibility");
680
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");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000709
David Blaikie2f408302015-09-11 03:22:04 +0000710 if (Ty != PTy->getElementType())
711 return Error(
712 ExplicitTypeLoc,
713 "explicit pointee type doesn't match operand's pointee type");
714
Chris Lattnerac161bf2009-01-02 07:01:27 +0000715 // Okay, create the alias but do not insert it into the module yet.
Rafael Espindola4fe00942014-05-16 13:34:04 +0000716 std::unique_ptr<GlobalAlias> GA(
David Blaikief64246b2015-04-29 21:22:39 +0000717 GlobalAlias::create(PTy, (GlobalValue::LinkageTypes)Linkage, Name,
718 Aliasee, /*Parent*/ nullptr));
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000719 GA->setThreadLocalMode(TLM);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000720 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000721 GA->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000722 GA->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000723
Rafael Espindola54fc2982015-06-17 17:53:31 +0000724 if (Name.empty())
725 NumberedVals.push_back(GA.get());
726
Chris Lattnerac161bf2009-01-02 07:01:27 +0000727 // See if this value already exists in the symbol table. If so, it is either
728 // a redefinition or a definition of a forward reference.
Chris Lattnere38317f2009-10-25 23:22:50 +0000729 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +0000730 // See if this was a redefinition. If so, there is no entry in
731 // ForwardRefVals.
732 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
733 I = ForwardRefVals.find(Name);
734 if (I == ForwardRefVals.end())
735 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
736
737 // Otherwise, this was a definition of forward ref. Verify that types
738 // agree.
739 if (Val->getType() != GA->getType())
740 return Error(NameLoc,
741 "forward reference and definition of alias have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000742
Chris Lattnerac161bf2009-01-02 07:01:27 +0000743 // If they agree, just RAUW the old value with the alias and remove the
744 // forward ref info.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000745 Val->replaceAllUsesWith(GA.get());
Chris Lattnerac161bf2009-01-02 07:01:27 +0000746 Val->eraseFromParent();
747 ForwardRefVals.erase(I);
748 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000749
Chris Lattnerac161bf2009-01-02 07:01:27 +0000750 // Insert into the module, we know its name won't collide now.
Rafael Espindolaaa273822014-05-09 21:49:17 +0000751 M->getAliasList().push_back(GA.get());
Benjamin Kramer1dc34b42010-10-16 11:28:23 +0000752 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000753
Rafael Espindolaaa273822014-05-09 21:49:17 +0000754 // The module owns this now
755 GA.release();
756
Chris Lattnerac161bf2009-01-02 07:01:27 +0000757 return false;
758}
759
760/// ParseGlobal
Nico Rieck7157bb72014-01-14 15:22:47 +0000761/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000762/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000763/// OptionalExternallyInitialized GlobalType Type Const
Nico Rieck7157bb72014-01-14 15:22:47 +0000764/// ::= OptionalLinkage OptionalVisibility OptionalDLLStorageClass
Eric Christopher536f0a92015-05-28 23:07:39 +0000765/// OptionalThreadLocal OptionalUnnamedAddr OptionalAddrSpace
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000766/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerac161bf2009-01-02 07:01:27 +0000767///
Eric Christopher536f0a92015-05-28 23:07:39 +0000768/// Everything up to and including OptionalUnnamedAddr has been parsed
David Majnemerc4ab61c2014-03-09 06:41:58 +0000769/// already.
Chris Lattnerac161bf2009-01-02 07:01:27 +0000770///
771bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
772 unsigned Linkage, bool HasLinkage,
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000773 unsigned Visibility, unsigned DLLStorageClass,
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000774 GlobalVariable::ThreadLocalMode TLM,
775 bool UnnamedAddr) {
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +0000776 if (!isValidVisibilityForLinkage(Visibility, Linkage))
777 return Error(NameLoc,
778 "symbol with local linkage must have default visibility");
779
Chris Lattnerac161bf2009-01-02 07:01:27 +0000780 unsigned AddrSpace;
Rafael Espindola42a4c9f2014-06-06 01:20:28 +0000781 bool IsConstant, IsExternallyInitialized;
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000782 LocTy IsExternallyInitializedLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000783 LocTy TyLoc;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000784
Craig Topper2617dcc2014-04-15 06:32:26 +0000785 Type *Ty = nullptr;
Rafael Espindola59f7eba2014-05-28 18:15:43 +0000786 if (ParseOptionalAddrSpace(AddrSpace) ||
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000787 ParseOptionalToken(lltok::kw_externally_initialized,
788 IsExternallyInitialized,
789 &IsExternallyInitializedLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +0000790 ParseGlobalType(IsConstant) ||
791 ParseType(Ty, TyLoc))
792 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000793
Chris Lattnerac161bf2009-01-02 07:01:27 +0000794 // If the linkage is specified and is external, then no initializer is
795 // present.
Craig Topper2617dcc2014-04-15 06:32:26 +0000796 Constant *Init = nullptr;
Nico Rieck7157bb72014-01-14 15:22:47 +0000797 if (!HasLinkage || (Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerac161bf2009-01-02 07:01:27 +0000798 Linkage != GlobalValue::ExternalLinkage)) {
799 if (ParseGlobalValue(Ty, Init))
800 return true;
801 }
802
David Majnemer49b3d9b2015-02-16 08:41:08 +0000803 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
Chris Lattnerc9e1b482009-02-08 20:00:15 +0000804 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000805
David Majnemer598bd052014-12-09 05:56:09 +0000806 GlobalValue *GVal = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000807
808 // See if the global was forward referenced, if so, use the global.
Chris Lattner1f386b82009-02-02 07:24:28 +0000809 if (!Name.empty()) {
David Majnemer598bd052014-12-09 05:56:09 +0000810 GVal = M->getNamedValue(Name);
811 if (GVal) {
Chris Lattnere38317f2009-10-25 23:22:50 +0000812 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
813 return Error(NameLoc, "redefinition of global '@" + Name + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +0000814 }
Chris Lattnerac161bf2009-01-02 07:01:27 +0000815 } else {
816 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
817 I = ForwardRefValIDs.find(NumberedVals.size());
818 if (I != ForwardRefValIDs.end()) {
David Majnemer598bd052014-12-09 05:56:09 +0000819 GVal = I->second.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +0000820 ForwardRefValIDs.erase(I);
821 }
822 }
823
David Majnemer598bd052014-12-09 05:56:09 +0000824 GlobalVariable *GV;
825 if (!GVal) {
Craig Topper2617dcc2014-04-15 06:32:26 +0000826 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, nullptr,
827 Name, nullptr, GlobalVariable::NotThreadLocal,
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000828 AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +0000829 } else {
David Blaikie8f27ae42015-05-13 22:55:01 +0000830 if (GVal->getValueType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +0000831 return Error(TyLoc,
832 "forward reference and definition of global have different types");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000833
David Majnemer598bd052014-12-09 05:56:09 +0000834 GV = cast<GlobalVariable>(GVal);
835
Chris Lattnerac161bf2009-01-02 07:01:27 +0000836 // Move the forward-reference to the correct spot in the module.
837 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
838 }
839
840 if (Name.empty())
841 NumberedVals.push_back(GV);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000842
Chris Lattnerac161bf2009-01-02 07:01:27 +0000843 // Set the parsed properties on the global.
844 if (Init)
845 GV->setInitializer(Init);
846 GV->setConstant(IsConstant);
847 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
848 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +0000849 GV->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Michael Gottesman27e7ef32013-02-05 05:57:38 +0000850 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgcbe34b42012-06-23 11:37:03 +0000851 GV->setThreadLocalMode(TLM);
Rafael Espindola45e6c192011-01-08 16:42:36 +0000852 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000853
Chris Lattnerac161bf2009-01-02 07:01:27 +0000854 // Parse attributes on the global.
855 while (Lex.getKind() == lltok::comma) {
856 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000857
Chris Lattnerac161bf2009-01-02 07:01:27 +0000858 if (Lex.getKind() == lltok::kw_section) {
859 Lex.Lex();
860 GV->setSection(Lex.getStrVal());
861 if (ParseToken(lltok::StringConstant, "expected global section string"))
862 return true;
863 } else if (Lex.getKind() == lltok::kw_align) {
864 unsigned Alignment;
865 if (ParseOptionalAlignment(Alignment)) return true;
866 GV->setAlignment(Alignment);
867 } else {
David Majnemerdad0a642014-06-27 18:19:56 +0000868 Comdat *C;
Rafael Espindola83a362c2015-01-06 22:55:16 +0000869 if (parseOptionalComdat(Name, C))
David Majnemerdad0a642014-06-27 18:19:56 +0000870 return true;
871 if (C)
872 GV->setComdat(C);
873 else
874 return TokError("unknown global variable property!");
Chris Lattnerac161bf2009-01-02 07:01:27 +0000875 }
876 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +0000877
Chris Lattnerac161bf2009-01-02 07:01:27 +0000878 return false;
879}
880
Bill Wendling63b88192013-02-06 06:52:58 +0000881/// ParseUnnamedAttrGrp
Bill Wendlinga7c38772013-02-09 15:48:49 +0000882/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling63b88192013-02-06 06:52:58 +0000883bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendlinga7c38772013-02-09 15:48:49 +0000884 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling63b88192013-02-06 06:52:58 +0000885 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendlinga7c38772013-02-09 15:48:49 +0000886 Lex.Lex();
887
David Majnemerb39e22b2014-12-09 18:33:57 +0000888 if (Lex.getKind() != lltok::AttrGrpID)
889 return TokError("expected attribute group id");
890
Bill Wendling63b88192013-02-06 06:52:58 +0000891 unsigned VarID = Lex.getUIntVal();
Bill Wendlingb32b0412013-02-08 06:32:06 +0000892 std::vector<unsigned> unused;
Michael Gottesman41748d72013-06-27 00:25:01 +0000893 LocTy BuiltinLoc;
Bill Wendling63b88192013-02-06 06:52:58 +0000894 Lex.Lex();
895
896 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling63b88192013-02-06 06:52:58 +0000897 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendling09bd1f72013-02-22 00:12:35 +0000898 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true,
Michael Gottesman41748d72013-06-27 00:25:01 +0000899 BuiltinLoc) ||
Bill Wendling63b88192013-02-06 06:52:58 +0000900 ParseToken(lltok::rbrace, "expected end of attribute group"))
901 return true;
902
Bill Wendlingb32b0412013-02-08 06:32:06 +0000903 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling63b88192013-02-06 06:52:58 +0000904 return Error(AttrGrpLoc, "attribute group has no attributes");
905
906 return false;
907}
908
Bill Wendling8b0321d2013-02-08 00:52:31 +0000909/// ParseFnAttributeValuePairs
Bill Wendling63b88192013-02-06 06:52:58 +0000910/// ::= <attr> | <attr> '=' <value>
Bill Wendlingb32b0412013-02-08 06:32:06 +0000911bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
912 std::vector<unsigned> &FwdRefAttrGrps,
Michael Gottesman41748d72013-06-27 00:25:01 +0000913 bool inAttrGrp, LocTy &BuiltinLoc) {
Bill Wendling8b0321d2013-02-08 00:52:31 +0000914 bool HaveError = false;
915
916 B.clear();
917
Bill Wendling63b88192013-02-06 06:52:58 +0000918 while (true) {
919 lltok::Kind Token = Lex.getKind();
Michael Gottesman41748d72013-06-27 00:25:01 +0000920 if (Token == lltok::kw_builtin)
921 BuiltinLoc = Lex.getLoc();
Bill Wendling63b88192013-02-06 06:52:58 +0000922 switch (Token) {
923 default:
Bill Wendling8b0321d2013-02-08 00:52:31 +0000924 if (!inAttrGrp) return HaveError;
Bill Wendling63b88192013-02-06 06:52:58 +0000925 return Error(Lex.getLoc(), "unterminated attribute group");
926 case lltok::rbrace:
927 // Finished.
928 return false;
929
Bill Wendlingb32b0412013-02-08 06:32:06 +0000930 case lltok::AttrGrpID: {
931 // Allow a function to reference an attribute group:
932 //
933 // define void @foo() #1 { ... }
934 if (inAttrGrp)
935 HaveError |=
936 Error(Lex.getLoc(),
937 "cannot have an attribute group reference in an attribute group");
938
939 unsigned AttrGrpNum = Lex.getUIntVal();
940 if (inAttrGrp) break;
941
942 // Save the reference to the attribute group. We'll fill it in later.
943 FwdRefAttrGrps.push_back(AttrGrpNum);
944 break;
945 }
Bill Wendling63b88192013-02-06 06:52:58 +0000946 // Target-dependent attributes:
947 case lltok::StringConstant: {
Artur Pilipenko17376c42015-08-03 14:31:49 +0000948 if (ParseStringAttribute(B))
Bill Wendling63b88192013-02-06 06:52:58 +0000949 return true;
Bill Wendlingb1ea9802013-02-10 10:12:50 +0000950 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000951 }
952
953 // Target-independent attributes:
954 case lltok::kw_align: {
Bill Wendlingc62789f2013-04-18 18:30:16 +0000955 // As a hack, we allow function alignment to be initially parsed as an
956 // attribute on a function declaration/definition or added to an attribute
957 // group and later moved to the alignment field.
Bill Wendling63b88192013-02-06 06:52:58 +0000958 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000959 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000960 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000961 if (ParseToken(lltok::equal, "expected '=' here") ||
962 ParseUInt32(Alignment))
963 return true;
964 } else {
965 if (ParseOptionalAlignment(Alignment))
966 return true;
967 }
Bill Wendling63b88192013-02-06 06:52:58 +0000968 B.addAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000969 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000970 }
971 case lltok::kw_alignstack: {
972 unsigned Alignment;
Bill Wendling8b0321d2013-02-08 00:52:31 +0000973 if (inAttrGrp) {
Bill Wendling44b08bf2013-02-10 23:15:51 +0000974 Lex.Lex();
Bill Wendling8b0321d2013-02-08 00:52:31 +0000975 if (ParseToken(lltok::equal, "expected '=' here") ||
976 ParseUInt32(Alignment))
977 return true;
978 } else {
979 if (ParseOptionalStackAlignment(Alignment))
980 return true;
981 }
Bill Wendling63b88192013-02-06 06:52:58 +0000982 B.addStackAlignmentAttr(Alignment);
Bill Wendling8b0321d2013-02-08 00:52:31 +0000983 continue;
Bill Wendling63b88192013-02-06 06:52:58 +0000984 }
Igor Laevsky39d662f2015-07-11 10:30:36 +0000985 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
986 case lltok::kw_argmemonly: B.addAttribute(Attribute::ArgMemOnly); break;
987 case lltok::kw_builtin: B.addAttribute(Attribute::Builtin); break;
988 case lltok::kw_cold: B.addAttribute(Attribute::Cold); break;
989 case lltok::kw_convergent: B.addAttribute(Attribute::Convergent); break;
990 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
991 case lltok::kw_jumptable: B.addAttribute(Attribute::JumpTable); break;
992 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
993 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
994 case lltok::kw_nobuiltin: B.addAttribute(Attribute::NoBuiltin); break;
995 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
996 case lltok::kw_noimplicitfloat:
997 B.addAttribute(Attribute::NoImplicitFloat); break;
998 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
999 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
1000 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
1001 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
1002 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
1003 case lltok::kw_optnone: B.addAttribute(Attribute::OptimizeNone); break;
1004 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
1005 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1006 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
1007 case lltok::kw_returns_twice:
1008 B.addAttribute(Attribute::ReturnsTwice); break;
1009 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
1010 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
1011 case lltok::kw_sspstrong:
1012 B.addAttribute(Attribute::StackProtectStrong); break;
1013 case lltok::kw_safestack: B.addAttribute(Attribute::SafeStack); break;
1014 case lltok::kw_sanitize_address:
1015 B.addAttribute(Attribute::SanitizeAddress); break;
1016 case lltok::kw_sanitize_thread:
1017 B.addAttribute(Attribute::SanitizeThread); break;
1018 case lltok::kw_sanitize_memory:
1019 B.addAttribute(Attribute::SanitizeMemory); break;
1020 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendling8b0321d2013-02-08 00:52:31 +00001021
1022 // Error handling.
1023 case lltok::kw_inreg:
1024 case lltok::kw_signext:
1025 case lltok::kw_zeroext:
1026 HaveError |=
1027 Error(Lex.getLoc(),
1028 "invalid use of attribute on a function");
1029 break;
1030 case lltok::kw_byval:
Hal Finkelb0407ba2014-07-18 15:51:28 +00001031 case lltok::kw_dereferenceable:
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001032 case lltok::kw_dereferenceable_or_null:
Reid Klecknera534a382013-12-19 02:14:12 +00001033 case lltok::kw_inalloca:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001034 case lltok::kw_nest:
1035 case lltok::kw_noalias:
1036 case lltok::kw_nocapture:
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001037 case lltok::kw_nonnull:
Stephen Linb8bd2322013-04-20 05:14:40 +00001038 case lltok::kw_returned:
Bill Wendling8b0321d2013-02-08 00:52:31 +00001039 case lltok::kw_sret:
1040 HaveError |=
1041 Error(Lex.getLoc(),
1042 "invalid use of parameter-only attribute on a function");
1043 break;
Bill Wendling63b88192013-02-06 06:52:58 +00001044 }
1045
1046 Lex.Lex();
1047 }
1048}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001049
1050//===----------------------------------------------------------------------===//
1051// GlobalValue Reference/Resolution Routines.
1052//===----------------------------------------------------------------------===//
1053
Karl Schimpf77729782015-09-03 18:06:44 +00001054static inline GlobalValue *createGlobalFwdRef(Module *M, PointerType *PTy,
1055 const std::string &Name) {
1056 if (auto *FT = dyn_cast<FunctionType>(PTy->getElementType()))
1057 return Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
1058 else
1059 return new GlobalVariable(*M, PTy->getElementType(), false,
1060 GlobalValue::ExternalWeakLinkage, nullptr, Name,
1061 nullptr, GlobalVariable::NotThreadLocal,
1062 PTy->getAddressSpace());
1063}
1064
Chris Lattnerac161bf2009-01-02 07:01:27 +00001065/// GetGlobalVal - Get a value with the specified name or ID, creating a
1066/// forward reference record if needed. This can return null if the value
1067/// exists but does not have the right type.
Chris Lattner229907c2011-07-18 04:54:35 +00001068GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerac161bf2009-01-02 07:01:27 +00001069 LocTy Loc) {
Chris Lattner229907c2011-07-18 04:54:35 +00001070 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001071 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001072 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001073 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001074 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001075
Chris Lattnerac161bf2009-01-02 07:01:27 +00001076 // Look this name up in the normal function symbol table.
1077 GlobalValue *Val =
1078 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001079
Chris Lattnerac161bf2009-01-02 07:01:27 +00001080 // If this is a forward reference for the value, see if we already created a
1081 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001082 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001083 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
1084 I = ForwardRefVals.find(Name);
1085 if (I != ForwardRefVals.end())
1086 Val = I->second.first;
1087 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001088
Chris Lattnerac161bf2009-01-02 07:01:27 +00001089 // If we have the value in the symbol table or fwd-ref table, return it.
1090 if (Val) {
1091 if (Val->getType() == Ty) return Val;
1092 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001093 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001094 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001095 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001096
Chris Lattnerac161bf2009-01-02 07:01:27 +00001097 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001098 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, Name);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001099 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1100 return FwdVal;
1101}
1102
Chris Lattner229907c2011-07-18 04:54:35 +00001103GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1104 PointerType *PTy = dyn_cast<PointerType>(Ty);
Craig Topper2617dcc2014-04-15 06:32:26 +00001105 if (!PTy) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001106 Error(Loc, "global variable reference must have pointer type");
Craig Topper2617dcc2014-04-15 06:32:26 +00001107 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001108 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001109
Craig Topper2617dcc2014-04-15 06:32:26 +00001110 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001111
Chris Lattnerac161bf2009-01-02 07:01:27 +00001112 // If this is a forward reference for the value, see if we already created a
1113 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00001114 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001115 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1116 I = ForwardRefValIDs.find(ID);
1117 if (I != ForwardRefValIDs.end())
1118 Val = I->second.first;
1119 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001120
Chris Lattnerac161bf2009-01-02 07:01:27 +00001121 // If we have the value in the symbol table or fwd-ref table, return it.
1122 if (Val) {
1123 if (Val->getType() == Ty) return Val;
Benjamin Kramerc7583112010-09-27 17:42:11 +00001124 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00001125 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00001126 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001127 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001128
Chris Lattnerac161bf2009-01-02 07:01:27 +00001129 // Otherwise, create a new forward reference for this value and remember it.
Karl Schimpf77729782015-09-03 18:06:44 +00001130 GlobalValue *FwdVal = createGlobalFwdRef(M, PTy, "");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001131 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1132 return FwdVal;
1133}
1134
1135
1136//===----------------------------------------------------------------------===//
David Majnemerdad0a642014-06-27 18:19:56 +00001137// Comdat Reference/Resolution Routines.
1138//===----------------------------------------------------------------------===//
1139
1140Comdat *LLParser::getComdat(const std::string &Name, LocTy Loc) {
1141 // Look this name up in the comdat symbol table.
1142 Module::ComdatSymTabType &ComdatSymTab = M->getComdatSymbolTable();
1143 Module::ComdatSymTabType::iterator I = ComdatSymTab.find(Name);
1144 if (I != ComdatSymTab.end())
1145 return &I->second;
1146
1147 // Otherwise, create a new forward reference for this value and remember it.
1148 Comdat *C = M->getOrInsertComdat(Name);
1149 ForwardRefComdats[Name] = Loc;
1150 return C;
1151}
1152
1153
1154//===----------------------------------------------------------------------===//
Chris Lattnerac161bf2009-01-02 07:01:27 +00001155// Helper Routines.
1156//===----------------------------------------------------------------------===//
1157
1158/// ParseToken - If the current token has the specified kind, eat it and return
1159/// success. Otherwise, emit the specified error and return failure.
1160bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1161 if (Lex.getKind() != T)
1162 return TokError(ErrMsg);
1163 Lex.Lex();
1164 return false;
1165}
1166
Chris Lattner3822f632009-01-02 08:05:26 +00001167/// ParseStringConstant
1168/// ::= StringConstant
1169bool LLParser::ParseStringConstant(std::string &Result) {
1170 if (Lex.getKind() != lltok::StringConstant)
1171 return TokError("expected string constant");
1172 Result = Lex.getStrVal();
1173 Lex.Lex();
1174 return false;
1175}
1176
1177/// ParseUInt32
1178/// ::= uint32
1179bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001180 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1181 return TokError("expected integer");
1182 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1183 if (Val64 != unsigned(Val64))
1184 return TokError("expected 32-bit integer (too large)");
1185 Val = Val64;
1186 Lex.Lex();
1187 return false;
1188}
1189
Hal Finkelb0407ba2014-07-18 15:51:28 +00001190/// ParseUInt64
1191/// ::= uint64
1192bool LLParser::ParseUInt64(uint64_t &Val) {
1193 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1194 return TokError("expected integer");
1195 Val = Lex.getAPSIntVal().getLimitedValue();
1196 Lex.Lex();
1197 return false;
1198}
1199
Hans Wennborgcbe34b42012-06-23 11:37:03 +00001200/// ParseTLSModel
1201/// := 'localdynamic'
1202/// := 'initialexec'
1203/// := 'localexec'
1204bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1205 switch (Lex.getKind()) {
1206 default:
1207 return TokError("expected localdynamic, initialexec or localexec");
1208 case lltok::kw_localdynamic:
1209 TLM = GlobalVariable::LocalDynamicTLSModel;
1210 break;
1211 case lltok::kw_initialexec:
1212 TLM = GlobalVariable::InitialExecTLSModel;
1213 break;
1214 case lltok::kw_localexec:
1215 TLM = GlobalVariable::LocalExecTLSModel;
1216 break;
1217 }
1218
1219 Lex.Lex();
1220 return false;
1221}
1222
1223/// ParseOptionalThreadLocal
1224/// := /*empty*/
1225/// := 'thread_local'
1226/// := 'thread_local' '(' tlsmodel ')'
1227bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1228 TLM = GlobalVariable::NotThreadLocal;
1229 if (!EatIfPresent(lltok::kw_thread_local))
1230 return false;
1231
1232 TLM = GlobalVariable::GeneralDynamicTLSModel;
1233 if (Lex.getKind() == lltok::lparen) {
1234 Lex.Lex();
1235 return ParseTLSModel(TLM) ||
1236 ParseToken(lltok::rparen, "expected ')' after thread local model");
1237 }
1238 return false;
1239}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001240
1241/// ParseOptionalAddrSpace
1242/// := /*empty*/
1243/// := 'addrspace' '(' uint32 ')'
1244bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1245 AddrSpace = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001246 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001247 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001248 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3822f632009-01-02 08:05:26 +00001249 ParseUInt32(AddrSpace) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00001250 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001251}
Chris Lattnerac161bf2009-01-02 07:01:27 +00001252
Artur Pilipenko17376c42015-08-03 14:31:49 +00001253/// ParseStringAttribute
1254/// := StringConstant
1255/// := StringConstant '=' StringConstant
1256bool LLParser::ParseStringAttribute(AttrBuilder &B) {
1257 std::string Attr = Lex.getStrVal();
1258 Lex.Lex();
1259 std::string Val;
1260 if (EatIfPresent(lltok::equal) && ParseStringConstant(Val))
1261 return true;
1262 B.addAttribute(Attr, Val);
1263 return false;
1264}
1265
Bill Wendling34c2eb22012-12-04 23:40:58 +00001266/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1267bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1268 bool HaveError = false;
1269
1270 B.clear();
1271
1272 while (1) {
1273 lltok::Kind Token = Lex.getKind();
1274 switch (Token) {
1275 default: // End of attributes.
1276 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001277 case lltok::StringConstant: {
1278 if (ParseStringAttribute(B))
1279 return true;
1280 continue;
1281 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001282 case lltok::kw_align: {
1283 unsigned Alignment;
1284 if (ParseOptionalAlignment(Alignment))
1285 return true;
Bill Wendling68d24012012-10-08 22:20:14 +00001286 B.addAlignmentAttr(Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001287 continue;
1288 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001289 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
Hal Finkelb0407ba2014-07-18 15:51:28 +00001290 case lltok::kw_dereferenceable: {
1291 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001292 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001293 return true;
1294 B.addDereferenceableAttr(Bytes);
1295 continue;
1296 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001297 case lltok::kw_dereferenceable_or_null: {
1298 uint64_t Bytes;
1299 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1300 return true;
1301 B.addDereferenceableOrNullAttr(Bytes);
1302 continue;
1303 }
Reid Klecknera534a382013-12-19 02:14:12 +00001304 case lltok::kw_inalloca: B.addAttribute(Attribute::InAlloca); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001305 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1306 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1307 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1308 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001309 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001310 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
1311 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
Stephen Linb8bd2322013-04-20 05:14:40 +00001312 case lltok::kw_returned: B.addAttribute(Attribute::Returned); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001313 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1314 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1315 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davisbe5557e2010-02-12 00:31:15 +00001316
Stephen Lin7577ed52013-04-20 13:16:13 +00001317 case lltok::kw_alignstack:
1318 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001319 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001320 case lltok::kw_builtin:
Stephen Lin7577ed52013-04-20 13:16:13 +00001321 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001322 case lltok::kw_jumptable:
Stephen Lin7577ed52013-04-20 13:16:13 +00001323 case lltok::kw_minsize:
1324 case lltok::kw_naked:
1325 case lltok::kw_nobuiltin:
1326 case lltok::kw_noduplicate:
1327 case lltok::kw_noimplicitfloat:
1328 case lltok::kw_noinline:
1329 case lltok::kw_nonlazybind:
1330 case lltok::kw_noredzone:
1331 case lltok::kw_noreturn:
1332 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001333 case lltok::kw_optnone:
Stephen Lin7577ed52013-04-20 13:16:13 +00001334 case lltok::kw_optsize:
Stephen Lin7577ed52013-04-20 13:16:13 +00001335 case lltok::kw_returns_twice:
1336 case lltok::kw_sanitize_address:
1337 case lltok::kw_sanitize_memory:
1338 case lltok::kw_sanitize_thread:
1339 case lltok::kw_ssp:
1340 case lltok::kw_sspreq:
1341 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001342 case lltok::kw_safestack:
Stephen Lin7577ed52013-04-20 13:16:13 +00001343 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001344 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1345 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001346 }
Bill Wendling0be9c402012-09-28 22:30:18 +00001347
Bill Wendling34c2eb22012-12-04 23:40:58 +00001348 Lex.Lex();
1349 }
1350}
1351
1352/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1353bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1354 bool HaveError = false;
1355
1356 B.clear();
1357
1358 while (1) {
1359 lltok::Kind Token = Lex.getKind();
Bill Wendling0be9c402012-09-28 22:30:18 +00001360 switch (Token) {
Bill Wendling34c2eb22012-12-04 23:40:58 +00001361 default: // End of attributes.
1362 return HaveError;
Artur Pilipenko17376c42015-08-03 14:31:49 +00001363 case lltok::StringConstant: {
1364 if (ParseStringAttribute(B))
1365 return true;
1366 continue;
1367 }
Hal Finkelb0407ba2014-07-18 15:51:28 +00001368 case lltok::kw_dereferenceable: {
1369 uint64_t Bytes;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001370 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable, Bytes))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001371 return true;
1372 B.addDereferenceableAttr(Bytes);
1373 continue;
1374 }
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001375 case lltok::kw_dereferenceable_or_null: {
1376 uint64_t Bytes;
1377 if (ParseOptionalDerefAttrBytes(lltok::kw_dereferenceable_or_null, Bytes))
1378 return true;
1379 B.addDereferenceableOrNullAttr(Bytes);
1380 continue;
1381 }
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001382 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1383 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
Nick Lewyckyd52b1522014-05-20 01:23:40 +00001384 case lltok::kw_nonnull: B.addAttribute(Attribute::NonNull); break;
Bill Wendling3d7b0b82012-12-19 07:18:57 +00001385 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1386 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendling0be9c402012-09-28 22:30:18 +00001387
Bill Wendling34c2eb22012-12-04 23:40:58 +00001388 // Error handling.
Stephen Lin7577ed52013-04-20 13:16:13 +00001389 case lltok::kw_align:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001390 case lltok::kw_byval:
Reid Klecknera534a382013-12-19 02:14:12 +00001391 case lltok::kw_inalloca:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001392 case lltok::kw_nest:
1393 case lltok::kw_nocapture:
Stephen Linb8bd2322013-04-20 05:14:40 +00001394 case lltok::kw_returned:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001395 case lltok::kw_sret:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001396 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001397 break;
James Molloy4f6fb952012-12-20 16:04:27 +00001398
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001399 case lltok::kw_alignstack:
1400 case lltok::kw_alwaysinline:
Igor Laevsky39d662f2015-07-11 10:30:36 +00001401 case lltok::kw_argmemonly:
Michael Gottesman41748d72013-06-27 00:25:01 +00001402 case lltok::kw_builtin:
Diego Novilloc6399532013-05-24 12:26:52 +00001403 case lltok::kw_cold:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001404 case lltok::kw_inlinehint:
Tom Roeder44cb65f2014-06-05 19:29:43 +00001405 case lltok::kw_jumptable:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001406 case lltok::kw_minsize:
1407 case lltok::kw_naked:
1408 case lltok::kw_nobuiltin:
1409 case lltok::kw_noduplicate:
1410 case lltok::kw_noimplicitfloat:
1411 case lltok::kw_noinline:
1412 case lltok::kw_nonlazybind:
1413 case lltok::kw_noredzone:
1414 case lltok::kw_noreturn:
1415 case lltok::kw_nounwind:
Andrea Di Biagio377496b2013-08-23 11:53:55 +00001416 case lltok::kw_optnone:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001417 case lltok::kw_optsize:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001418 case lltok::kw_returns_twice:
1419 case lltok::kw_sanitize_address:
1420 case lltok::kw_sanitize_memory:
1421 case lltok::kw_sanitize_thread:
1422 case lltok::kw_ssp:
1423 case lltok::kw_sspreq:
1424 case lltok::kw_sspstrong:
Peter Collingbourne82437bf2015-06-15 21:07:11 +00001425 case lltok::kw_safestack:
Chandler Carruth9f6b59a2013-04-09 19:46:46 +00001426 case lltok::kw_uwtable:
Bill Wendling34c2eb22012-12-04 23:40:58 +00001427 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendling0be9c402012-09-28 22:30:18 +00001428 break;
Nick Lewyckyc2ec0722013-07-06 00:29:58 +00001429
1430 case lltok::kw_readnone:
1431 case lltok::kw_readonly:
1432 HaveError |= Error(Lex.getLoc(), "invalid use of attribute on return type");
Bill Wendling0be9c402012-09-28 22:30:18 +00001433 }
1434
Chris Lattnerac161bf2009-01-02 07:01:27 +00001435 Lex.Lex();
1436 }
1437}
1438
1439/// ParseOptionalLinkage
1440/// ::= /*empty*/
Rafael Espindola6de96a12009-01-15 20:18:42 +00001441/// ::= 'private'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001442/// ::= 'internal'
1443/// ::= 'weak'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001444/// ::= 'weak_odr'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001445/// ::= 'linkonce'
Duncan Sands12da8ce2009-03-07 15:45:40 +00001446/// ::= 'linkonce_odr'
Bill Wendling03bcd6e2010-07-01 21:55:59 +00001447/// ::= 'available_externally'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001448/// ::= 'appending'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001449/// ::= 'common'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001450/// ::= 'extern_weak'
1451/// ::= 'external'
1452bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1453 HasLinkage = false;
1454 switch (Lex.getKind()) {
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001455 default: Res=GlobalValue::ExternalLinkage; return false;
1456 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001457 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1458 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1459 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1460 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1461 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner184f1be2009-04-13 05:44:34 +00001462 case lltok::kw_available_externally:
1463 Res = GlobalValue::AvailableExternallyLinkage;
1464 break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001465 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001466 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
Bill Wendlinga3c6f6b2009-07-20 01:03:30 +00001467 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1468 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001469 }
1470 Lex.Lex();
1471 HasLinkage = true;
1472 return false;
1473}
1474
1475/// ParseOptionalVisibility
1476/// ::= /*empty*/
1477/// ::= 'default'
1478/// ::= 'hidden'
1479/// ::= 'protected'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001480///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001481bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1482 switch (Lex.getKind()) {
1483 default: Res = GlobalValue::DefaultVisibility; return false;
1484 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1485 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1486 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1487 }
1488 Lex.Lex();
1489 return false;
1490}
1491
Nico Rieck7157bb72014-01-14 15:22:47 +00001492/// ParseOptionalDLLStorageClass
1493/// ::= /*empty*/
1494/// ::= 'dllimport'
1495/// ::= 'dllexport'
1496///
1497bool LLParser::ParseOptionalDLLStorageClass(unsigned &Res) {
1498 switch (Lex.getKind()) {
1499 default: Res = GlobalValue::DefaultStorageClass; return false;
1500 case lltok::kw_dllimport: Res = GlobalValue::DLLImportStorageClass; break;
1501 case lltok::kw_dllexport: Res = GlobalValue::DLLExportStorageClass; break;
1502 }
1503 Lex.Lex();
1504 return false;
1505}
1506
Chris Lattnerac161bf2009-01-02 07:01:27 +00001507/// ParseOptionalCallingConv
1508/// ::= /*empty*/
1509/// ::= 'ccc'
1510/// ::= 'fastcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001511/// ::= 'intel_ocl_bicc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001512/// ::= 'coldcc'
1513/// ::= 'x86_stdcallcc'
1514/// ::= 'x86_fastcallcc'
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001515/// ::= 'x86_thiscallcc'
Reid Kleckner9ccce992014-10-28 01:29:26 +00001516/// ::= 'x86_vectorcallcc'
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001517/// ::= 'arm_apcscc'
1518/// ::= 'arm_aapcscc'
1519/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001520/// ::= 'msp430_intrcc'
Che-Liang Chiou29947902010-09-25 07:46:17 +00001521/// ::= 'ptx_kernel'
1522/// ::= 'ptx_device'
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001523/// ::= 'spir_func'
1524/// ::= 'spir_kernel'
Charles Davise8f297c2013-07-12 06:02:35 +00001525/// ::= 'x86_64_sysvcc'
1526/// ::= 'x86_64_win64cc'
Andrew Tricka3a11de2013-10-31 22:12:01 +00001527/// ::= 'webkit_jscc'
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001528/// ::= 'anyregcc'
Juergen Ributzkae6250132014-01-17 19:47:03 +00001529/// ::= 'preserve_mostcc'
1530/// ::= 'preserve_allcc'
Reid Kleckner35fc3632014-12-01 21:04:44 +00001531/// ::= 'ghccc'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001532/// ::= 'cc' UINT
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001533///
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001534bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001535 switch (Lex.getKind()) {
1536 default: CC = CallingConv::C; return false;
1537 case lltok::kw_ccc: CC = CallingConv::C; break;
1538 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1539 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1540 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1541 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov8f35fab2010-05-16 09:08:45 +00001542 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Reid Kleckner9ccce992014-10-28 01:29:26 +00001543 case lltok::kw_x86_vectorcallcc:CC = CallingConv::X86_VectorCall; break;
Anton Korobeynikova8fd40b2009-06-16 18:50:49 +00001544 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1545 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1546 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov27a0ecf2009-12-07 02:27:35 +00001547 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiou29947902010-09-25 07:46:17 +00001548 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1549 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmow48c8ddc2012-10-01 17:01:31 +00001550 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1551 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovskyd6afb032012-10-24 14:46:16 +00001552 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Charles Davise8f297c2013-07-12 06:02:35 +00001553 case lltok::kw_x86_64_sysvcc: CC = CallingConv::X86_64_SysV; break;
1554 case lltok::kw_x86_64_win64cc: CC = CallingConv::X86_64_Win64; break;
Andrew Tricka3a11de2013-10-31 22:12:01 +00001555 case lltok::kw_webkit_jscc: CC = CallingConv::WebKit_JS; break;
Juergen Ributzka9969d3e2013-11-08 23:28:16 +00001556 case lltok::kw_anyregcc: CC = CallingConv::AnyReg; break;
Juergen Ributzkae6250132014-01-17 19:47:03 +00001557 case lltok::kw_preserve_mostcc:CC = CallingConv::PreserveMost; break;
1558 case lltok::kw_preserve_allcc: CC = CallingConv::PreserveAll; break;
Reid Kleckner35fc3632014-12-01 21:04:44 +00001559 case lltok::kw_ghccc: CC = CallingConv::GHC; break;
Sandeep Patel68c5f472009-09-02 08:44:58 +00001560 case lltok::kw_cc: {
Sandeep Patel68c5f472009-09-02 08:44:58 +00001561 Lex.Lex();
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00001562 return ParseUInt32(CC);
Sandeep Patel68c5f472009-09-02 08:44:58 +00001563 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00001564 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001565
Chris Lattnerac161bf2009-01-02 07:01:27 +00001566 Lex.Lex();
1567 return false;
1568}
1569
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001570/// ParseMetadataAttachment
1571/// ::= !dbg !42
1572bool LLParser::ParseMetadataAttachment(unsigned &Kind, MDNode *&MD) {
1573 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata attachment");
1574
1575 std::string Name = Lex.getStrVal();
1576 Kind = M->getMDKindID(Name);
1577 Lex.Lex();
1578
1579 return ParseMDNode(MD);
1580}
1581
Chris Lattner5c427632009-12-30 05:31:19 +00001582/// ParseInstructionMetadata
Chris Lattner596760d2009-12-29 21:25:40 +00001583/// ::= !dbg !42 (',' !dbg !57)*
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001584bool LLParser::ParseInstructionMetadata(Instruction &Inst) {
Chris Lattner5c427632009-12-30 05:31:19 +00001585 do {
1586 if (Lex.getKind() != lltok::MetadataVar)
1587 return TokError("expected metadata after comma");
Devang Patelba4a6fd2009-09-29 00:01:14 +00001588
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001589 unsigned MDK;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00001590 MDNode *N;
Duncan P. N. Exon Smith19717ea2015-04-24 21:21:57 +00001591 if (ParseMetadataAttachment(MDK, N))
Chris Lattner1eed2d62009-12-30 04:56:59 +00001592 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001593
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001594 Inst.setMetadata(MDK, N);
Manman Ren209b17c2013-09-28 00:22:27 +00001595 if (MDK == LLVMContext::MD_tbaa)
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00001596 InstsWithTBAATag.push_back(&Inst);
Manman Ren209b17c2013-09-28 00:22:27 +00001597
Chris Lattner596760d2009-12-29 21:25:40 +00001598 // If this is the end of the list, we're done.
Chris Lattner5c427632009-12-30 05:31:19 +00001599 } while (EatIfPresent(lltok::comma));
1600 return false;
Devang Patelea8a4b92009-09-17 23:04:48 +00001601}
1602
Duncan P. N. Exon Smith3d4cd752015-04-24 22:04:41 +00001603/// ParseOptionalFunctionMetadata
1604/// ::= (!dbg !57)*
1605bool LLParser::ParseOptionalFunctionMetadata(Function &F) {
1606 while (Lex.getKind() == lltok::MetadataVar) {
1607 unsigned MDK;
1608 MDNode *N;
1609 if (ParseMetadataAttachment(MDK, N))
1610 return true;
1611
1612 F.setMetadata(MDK, N);
1613 }
1614 return false;
1615}
1616
Chris Lattnerac161bf2009-01-02 07:01:27 +00001617/// ParseOptionalAlignment
1618/// ::= /* empty */
1619/// ::= 'align' 4
1620bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1621 Alignment = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001622 if (!EatIfPresent(lltok::kw_align))
1623 return false;
Chris Lattnerd11f5142009-01-05 07:46:05 +00001624 LocTy AlignLoc = Lex.getLoc();
1625 if (ParseUInt32(Alignment)) return true;
1626 if (!isPowerOf2_32(Alignment))
1627 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmand566d2c2010-07-30 21:07:05 +00001628 if (Alignment > Value::MaximumAlignment)
Dan Gohmana7e5a242010-07-28 20:12:04 +00001629 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattnerd11f5142009-01-05 07:46:05 +00001630 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001631}
1632
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001633/// ParseOptionalDerefAttrBytes
Hal Finkelb0407ba2014-07-18 15:51:28 +00001634/// ::= /* empty */
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001635/// ::= AttrKind '(' 4 ')'
1636///
1637/// where AttrKind is either 'dereferenceable' or 'dereferenceable_or_null'.
1638bool LLParser::ParseOptionalDerefAttrBytes(lltok::Kind AttrKind,
1639 uint64_t &Bytes) {
1640 assert((AttrKind == lltok::kw_dereferenceable ||
1641 AttrKind == lltok::kw_dereferenceable_or_null) &&
1642 "contract!");
1643
Hal Finkelb0407ba2014-07-18 15:51:28 +00001644 Bytes = 0;
Sanjoy Das31ea6d12015-04-16 20:29:50 +00001645 if (!EatIfPresent(AttrKind))
Hal Finkelb0407ba2014-07-18 15:51:28 +00001646 return false;
1647 LocTy ParenLoc = Lex.getLoc();
1648 if (!EatIfPresent(lltok::lparen))
1649 return Error(ParenLoc, "expected '('");
1650 LocTy DerefLoc = Lex.getLoc();
1651 if (ParseUInt64(Bytes)) return true;
1652 ParenLoc = Lex.getLoc();
1653 if (!EatIfPresent(lltok::rparen))
1654 return Error(ParenLoc, "expected ')'");
1655 if (!Bytes)
1656 return Error(DerefLoc, "dereferenceable bytes must be non-zero");
1657 return false;
1658}
1659
Chris Lattnerb2f39502009-12-30 05:44:30 +00001660/// ParseOptionalCommaAlign
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001661/// ::=
Chris Lattnerb2f39502009-12-30 05:44:30 +00001662/// ::= ',' align 4
1663///
1664/// This returns with AteExtraComma set to true if it ate an excess comma at the
1665/// end.
1666bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1667 bool &AteExtraComma) {
1668 AteExtraComma = false;
1669 while (EatIfPresent(lltok::comma)) {
1670 // Metadata at the end is an early exit.
Chris Lattnereafe4de2009-12-30 05:02:06 +00001671 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerb2f39502009-12-30 05:44:30 +00001672 AteExtraComma = true;
1673 return false;
1674 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001675
Chris Lattner95b0ff42010-04-23 00:50:50 +00001676 if (Lex.getKind() != lltok::kw_align)
1677 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sands4c5c8582010-10-21 16:07:10 +00001678
Chris Lattner95b0ff42010-04-23 00:50:50 +00001679 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerb2f39502009-12-30 05:44:30 +00001680 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001681
Devang Patelea8a4b92009-09-17 23:04:48 +00001682 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001683}
1684
Eli Friedmanfee02c62011-07-25 23:16:38 +00001685/// ParseScopeAndOrdering
1686/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1687/// else: ::=
1688///
1689/// This sets Scope and Ordering to the parsed values.
1690bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1691 AtomicOrdering &Ordering) {
1692 if (!isAtomic)
1693 return false;
1694
1695 Scope = CrossThread;
1696 if (EatIfPresent(lltok::kw_singlethread))
1697 Scope = SingleThread;
Tim Northovere94a5182014-03-11 10:48:52 +00001698
1699 return ParseOrdering(Ordering);
1700}
1701
1702/// ParseOrdering
1703/// ::= AtomicOrdering
1704///
1705/// This sets Ordering to the parsed value.
1706bool LLParser::ParseOrdering(AtomicOrdering &Ordering) {
Eli Friedmanfee02c62011-07-25 23:16:38 +00001707 switch (Lex.getKind()) {
1708 default: return TokError("Expected ordering on atomic instruction");
1709 case lltok::kw_unordered: Ordering = Unordered; break;
1710 case lltok::kw_monotonic: Ordering = Monotonic; break;
1711 case lltok::kw_acquire: Ordering = Acquire; break;
1712 case lltok::kw_release: Ordering = Release; break;
1713 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1714 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1715 }
1716 Lex.Lex();
1717 return false;
1718}
1719
Charles Davisbe5557e2010-02-12 00:31:15 +00001720/// ParseOptionalStackAlignment
1721/// ::= /* empty */
1722/// ::= 'alignstack' '(' 4 ')'
1723bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1724 Alignment = 0;
1725 if (!EatIfPresent(lltok::kw_alignstack))
1726 return false;
1727 LocTy ParenLoc = Lex.getLoc();
1728 if (!EatIfPresent(lltok::lparen))
1729 return Error(ParenLoc, "expected '('");
1730 LocTy AlignLoc = Lex.getLoc();
1731 if (ParseUInt32(Alignment)) return true;
1732 ParenLoc = Lex.getLoc();
1733 if (!EatIfPresent(lltok::rparen))
1734 return Error(ParenLoc, "expected ')'");
1735 if (!isPowerOf2_32(Alignment))
1736 return Error(AlignLoc, "stack alignment is not a power of two");
1737 return false;
1738}
Devang Patelea8a4b92009-09-17 23:04:48 +00001739
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001740/// ParseIndexList - This parses the index list for an insert/extractvalue
1741/// instruction. This sets AteExtraComma in the case where we eat an extra
1742/// comma at the end of the line and find that it is followed by metadata.
1743/// Clients that don't allow metadata can call the version of this function that
1744/// only takes one argument.
1745///
Chris Lattnerac161bf2009-01-02 07:01:27 +00001746/// ParseIndexList
1747/// ::= (',' uint32)+
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001748///
1749bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1750 bool &AteExtraComma) {
1751 AteExtraComma = false;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001752
Chris Lattnerac161bf2009-01-02 07:01:27 +00001753 if (Lex.getKind() != lltok::comma)
1754 return TokError("expected ',' as start of index list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001755
Chris Lattner3822f632009-01-02 08:05:26 +00001756 while (EatIfPresent(lltok::comma)) {
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001757 if (Lex.getKind() == lltok::MetadataVar) {
David Majnemer7ccc34d2015-02-16 09:18:13 +00001758 if (Indices.empty()) return TokError("expected index");
Chris Lattner28f1eeb2009-12-30 05:14:00 +00001759 AteExtraComma = true;
1760 return false;
1761 }
Nick Lewycky83e47112010-09-29 23:32:20 +00001762 unsigned Idx = 0;
Chris Lattner3822f632009-01-02 08:05:26 +00001763 if (ParseUInt32(Idx)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001764 Indices.push_back(Idx);
1765 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001766
Chris Lattnerac161bf2009-01-02 07:01:27 +00001767 return false;
1768}
1769
1770//===----------------------------------------------------------------------===//
1771// Type Parsing.
1772//===----------------------------------------------------------------------===//
1773
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001774/// ParseType - Parse a type.
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001775bool LLParser::ParseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001776 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001777 switch (Lex.getKind()) {
1778 default:
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001779 return TokError(Msg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001780 case lltok::Type:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001781 // Type ::= 'float' | 'void' (etc)
Chris Lattnerac161bf2009-01-02 07:01:27 +00001782 Result = Lex.getTyVal();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001783 Lex.Lex();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001784 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001785 case lltok::lbrace:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001786 // Type ::= StructType
1787 if (ParseAnonStructType(Result, false))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001788 return true;
1789 break;
1790 case lltok::lsquare:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001791 // Type ::= '[' ... ']'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001792 Lex.Lex(); // eat the lsquare.
1793 if (ParseArrayVectorType(Result, false))
1794 return true;
1795 break;
1796 case lltok::less: // Either vector or packed struct.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001797 // Type ::= '<' ... '>'
Chris Lattner3822f632009-01-02 08:05:26 +00001798 Lex.Lex();
1799 if (Lex.getKind() == lltok::lbrace) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001800 if (ParseAnonStructType(Result, true) ||
Chris Lattner3822f632009-01-02 08:05:26 +00001801 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001802 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001803 } else if (ParseArrayVectorType(Result, true))
1804 return true;
1805 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001806 case lltok::LocalVar: {
1807 // Type ::= %foo
1808 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001809
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001810 // If the type hasn't been defined yet, create a forward definition and
1811 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001812 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001813 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001814 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001815 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001816 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001817 Lex.Lex();
1818 break;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001819 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001820
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001821 case lltok::LocalVarID: {
1822 // Type ::= %4
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001823 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman26ee2b82012-11-15 22:34:00 +00001824
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001825 // If the type hasn't been defined yet, create a forward definition and
1826 // remember where that forward def'n was seen (in case it never is defined).
Craig Topper2617dcc2014-04-15 06:32:26 +00001827 if (!Entry.first) {
Chris Lattner335d3992011-08-12 18:06:37 +00001828 Entry.first = StructType::create(Context);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001829 Entry.second = Lex.getLoc();
Chris Lattnerac161bf2009-01-02 07:01:27 +00001830 }
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001831 Result = Entry.first;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001832 Lex.Lex();
1833 break;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001834 }
1835 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001836
1837 // Parse the type suffixes.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001838 while (1) {
1839 switch (Lex.getKind()) {
1840 // End of type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001841 default:
1842 if (!AllowVoid && Result->isVoidTy())
1843 return Error(TypeLoc, "void type only allowed for function results");
1844 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001845
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001846 // Type ::= Type '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001847 case lltok::star:
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001848 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001849 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001850 if (Result->isVoidTy())
1851 return TokError("pointers to void are invalid - use i8* instead");
1852 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001853 return TokError("pointer to this type is invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001854 Result = PointerType::getUnqual(Result);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001855 Lex.Lex();
1856 break;
1857
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001858 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerac161bf2009-01-02 07:01:27 +00001859 case lltok::kw_addrspace: {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001860 if (Result->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00001861 return TokError("basic block pointers are invalid");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001862 if (Result->isVoidTy())
Dan Gohman9280a682009-02-09 17:41:21 +00001863 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001864 if (!PointerType::isValidElementType(Result))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001865 return TokError("pointer to this type is invalid");
Chris Lattnerac161bf2009-01-02 07:01:27 +00001866 unsigned AddrSpace;
1867 if (ParseOptionalAddrSpace(AddrSpace) ||
1868 ParseToken(lltok::star, "expected '*' in address space"))
1869 return true;
1870
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001871 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerac161bf2009-01-02 07:01:27 +00001872 break;
1873 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001874
Chris Lattnerac161bf2009-01-02 07:01:27 +00001875 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1876 case lltok::lparen:
1877 if (ParseFunctionType(Result))
1878 return true;
1879 break;
1880 }
1881 }
1882}
1883
1884/// ParseParameterList
1885/// ::= '(' ')'
1886/// ::= '(' Arg (',' Arg)* ')'
1887/// Arg
1888/// ::= Type OptionalAttributes Value OptionalAttributes
1889bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
Reid Kleckner83498642014-08-26 00:33:28 +00001890 PerFunctionState &PFS, bool IsMustTailCall,
1891 bool InVarArgsFunc) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001892 if (ParseToken(lltok::lparen, "expected '(' in call"))
1893 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001894
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001895 unsigned AttrIndex = 1;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001896 while (Lex.getKind() != lltok::rparen) {
1897 // If this isn't the first argument, we need a comma.
1898 if (!ArgList.empty() &&
1899 ParseToken(lltok::comma, "expected ',' in argument list"))
1900 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001901
Reid Kleckner83498642014-08-26 00:33:28 +00001902 // Parse an ellipsis if this is a musttail call in a variadic function.
1903 if (Lex.getKind() == lltok::dotdotdot) {
1904 const char *Msg = "unexpected ellipsis in argument list for ";
1905 if (!IsMustTailCall)
1906 return TokError(Twine(Msg) + "non-musttail call");
1907 if (!InVarArgsFunc)
1908 return TokError(Twine(Msg) + "musttail call in non-varargs function");
1909 Lex.Lex(); // Lex the '...', it is purely for readability.
1910 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1911 }
1912
Chris Lattnerac161bf2009-01-02 07:01:27 +00001913 // Parse the argument.
1914 LocTy ArgLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00001915 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001916 AttrBuilder ArgAttrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001917 Value *V;
Victor Hernandezfa232232009-12-03 23:40:58 +00001918 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00001919 return true;
Victor Hernandezfa232232009-12-03 23:40:58 +00001920
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00001921 if (ArgTy->isMetadataTy()) {
1922 if (ParseMetadataAsValue(V, PFS))
1923 return true;
1924 } else {
1925 // Otherwise, handle normal operands.
1926 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
1927 return true;
1928 }
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001929 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1930 AttrIndex++,
1931 ArgAttrs)));
Chris Lattnerac161bf2009-01-02 07:01:27 +00001932 }
1933
Reid Kleckner83498642014-08-26 00:33:28 +00001934 if (IsMustTailCall && InVarArgsFunc)
1935 return TokError("expected '...' at end of argument list for musttail call "
1936 "in varargs function");
1937
Chris Lattnerac161bf2009-01-02 07:01:27 +00001938 Lex.Lex(); // Lex the ')'.
1939 return false;
1940}
1941
1942
1943
Chris Lattner2ed06b42009-01-05 18:34:07 +00001944/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001945/// prototype.
Chris Lattnerac161bf2009-01-02 07:01:27 +00001946/// ::= '(' ArgTypeListI ')'
1947/// ArgTypeListI
1948/// ::= /*empty*/
1949/// ::= '...'
1950/// ::= ArgTypeList ',' '...'
1951/// ::= ArgType (',' ArgType)*
Chris Lattner2ed06b42009-01-05 18:34:07 +00001952///
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001953bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1954 bool &isVarArg){
Chris Lattnerac161bf2009-01-02 07:01:27 +00001955 isVarArg = false;
1956 assert(Lex.getKind() == lltok::lparen);
1957 Lex.Lex(); // eat the (.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001958
Chris Lattnerac161bf2009-01-02 07:01:27 +00001959 if (Lex.getKind() == lltok::rparen) {
1960 // empty
1961 } else if (Lex.getKind() == lltok::dotdotdot) {
1962 isVarArg = true;
1963 Lex.Lex();
1964 } else {
1965 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00001966 Type *ArgTy = nullptr;
Bill Wendling50d27842012-10-15 20:35:56 +00001967 AttrBuilder Attrs;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001968 std::string Name;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001969
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00001970 if (ParseType(ArgTy) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00001971 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001972
Chris Lattnerfdd87902009-10-05 05:54:46 +00001973 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00001974 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001975
Chris Lattnerdef19492011-06-17 06:36:20 +00001976 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001977 Name = Lex.getStrVal();
1978 Lex.Lex();
1979 }
Chris Lattner3822f632009-01-02 08:05:26 +00001980
Nick Lewycky0aa6a742009-06-07 07:26:46 +00001981 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3822f632009-01-02 08:05:26 +00001982 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001983
Bill Wendlingfe0021a2013-01-31 00:29:54 +00001984 unsigned AttrIndex = 1;
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00001985 ArgList.emplace_back(TypeLoc, ArgTy, AttributeSet::get(ArgTy->getContext(),
1986 AttrIndex++, Attrs),
1987 std::move(Name));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001988
Chris Lattner3822f632009-01-02 08:05:26 +00001989 while (EatIfPresent(lltok::comma)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001990 // Handle ... at end of arg list.
Chris Lattner3822f632009-01-02 08:05:26 +00001991 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00001992 isVarArg = true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00001993 break;
1994 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00001995
Chris Lattnerac161bf2009-01-02 07:01:27 +00001996 // Otherwise must be an argument type.
1997 TypeLoc = Lex.getLoc();
Bill Wendling34c2eb22012-12-04 23:40:58 +00001998 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3822f632009-01-02 08:05:26 +00001999
Chris Lattnerfdd87902009-10-05 05:54:46 +00002000 if (ArgTy->isVoidTy())
Chris Lattnerf880ca22009-03-09 04:49:14 +00002001 return Error(TypeLoc, "argument can not have void type");
2002
Chris Lattnerdef19492011-06-17 06:36:20 +00002003 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002004 Name = Lex.getStrVal();
2005 Lex.Lex();
2006 } else {
2007 Name = "";
2008 }
Chris Lattner3822f632009-01-02 08:05:26 +00002009
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002010 if (!ArgTy->isFirstClassType())
Chris Lattner3822f632009-01-02 08:05:26 +00002011 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002012
Benjamin Kramerf5e2fc42015-05-29 19:43:39 +00002013 ArgList.emplace_back(
2014 TypeLoc, ArgTy,
2015 AttributeSet::get(ArgTy->getContext(), AttrIndex++, Attrs),
2016 std::move(Name));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002017 }
2018 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002019
Chris Lattner3822f632009-01-02 08:05:26 +00002020 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002021}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002022
Chris Lattnerac161bf2009-01-02 07:01:27 +00002023/// ParseFunctionType
2024/// ::= Type ArgumentList OptionalAttrs
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002025bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002026 assert(Lex.getKind() == lltok::lparen);
2027
Chris Lattnerce473c72009-01-05 08:04:33 +00002028 if (!FunctionType::isValidReturnType(Result))
2029 return TokError("invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002030
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002031 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002032 bool isVarArg;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002033 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002034 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002035
Chris Lattnerac161bf2009-01-02 07:01:27 +00002036 // Reject names on the arguments lists.
2037 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2038 if (!ArgList[i].Name.empty())
2039 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendlingfe0021a2013-01-31 00:29:54 +00002040 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattner6bc5c892011-06-17 17:37:13 +00002041 return Error(ArgList[i].Loc,
2042 "argument attributes invalid in function type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002043 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002044
Jay Foadb804a2b2011-07-12 14:06:48 +00002045 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002046 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002047 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002048
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002049 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002050 return false;
2051}
2052
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002053/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
2054/// other structs.
2055bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
2056 SmallVector<Type*, 8> Elts;
2057 if (ParseStructBody(Elts)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002058
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002059 Result = StructType::get(Context, Elts, Packed);
2060 return false;
2061}
2062
2063/// ParseStructDefinition - Parse a struct in a 'type' definition.
2064bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
2065 std::pair<Type*, LocTy> &Entry,
2066 Type *&ResultTy) {
2067 // If the type was already defined, diagnose the redefinition.
2068 if (Entry.first && !Entry.second.isValid())
2069 return Error(TypeLoc, "redefinition of type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002070
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002071 // If we have opaque, just return without filling in the definition for the
2072 // struct. This counts as a definition as far as the .ll file goes.
2073 if (EatIfPresent(lltok::kw_opaque)) {
2074 // This type is being defined, so clear the location to indicate this.
2075 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002076
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002077 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002078 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002079 Entry.first = StructType::create(Context, Name);
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002080 ResultTy = Entry.first;
2081 return false;
2082 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002083
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002084 // If the type starts with '<', then it is either a packed struct or a vector.
2085 bool isPacked = EatIfPresent(lltok::less);
2086
2087 // If we don't have a struct, then we have a random type alias, which we
2088 // accept for compatibility with old files. These types are not allowed to be
2089 // forward referenced and not allowed to be recursive.
2090 if (Lex.getKind() != lltok::lbrace) {
2091 if (Entry.first)
2092 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002093
Craig Topper2617dcc2014-04-15 06:32:26 +00002094 ResultTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002095 if (isPacked)
2096 return ParseArrayVectorType(ResultTy, true);
2097 return ParseType(ResultTy);
2098 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002099
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002100 // This type is being defined, so clear the location to indicate this.
2101 Entry.second = SMLoc();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002102
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002103 // If this type number has never been uttered, create it.
Craig Topper2617dcc2014-04-15 06:32:26 +00002104 if (!Entry.first)
Chris Lattner335d3992011-08-12 18:06:37 +00002105 Entry.first = StructType::create(Context, Name);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002106
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002107 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002108
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002109 SmallVector<Type*, 8> Body;
2110 if (ParseStructBody(Body) ||
2111 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
2112 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002113
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002114 STy->setBody(Body, isPacked);
2115 ResultTy = STy;
2116 return false;
2117}
2118
2119
Chris Lattnerac161bf2009-01-02 07:01:27 +00002120/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002121/// StructType
Chris Lattnerac161bf2009-01-02 07:01:27 +00002122/// ::= '{' '}'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002123/// ::= '{' Type (',' Type)* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00002124/// ::= '<' '{' '}' '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002125/// ::= '<' '{' Type (',' Type)* '}' '>'
2126bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002127 assert(Lex.getKind() == lltok::lbrace);
2128 Lex.Lex(); // Consume the '{'
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002129
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002130 // Handle the empty struct.
2131 if (EatIfPresent(lltok::rbrace))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002132 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002133
Chris Lattnerf880ca22009-03-09 04:49:14 +00002134 LocTy EltTyLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002135 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002136 if (ParseType(Ty)) return true;
2137 Body.push_back(Ty);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002138
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002139 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002140 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002141
Chris Lattner3822f632009-01-02 08:05:26 +00002142 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf880ca22009-03-09 04:49:14 +00002143 EltTyLoc = Lex.getLoc();
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002144 if (ParseType(Ty)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002145
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002146 if (!StructType::isValidElementType(Ty))
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002147 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002148
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002149 Body.push_back(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002150 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002151
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002152 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002153}
2154
2155/// ParseArrayVectorType - Parse an array or vector type, assuming the first
2156/// token has already been consumed.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002157/// Type
Chris Lattnerac161bf2009-01-02 07:01:27 +00002158/// ::= '[' APSINTVAL 'x' Types ']'
2159/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002160bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002161 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
2162 Lex.getAPSIntVal().getBitWidth() > 64)
2163 return TokError("expected number in address space");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002164
Chris Lattnerac161bf2009-01-02 07:01:27 +00002165 LocTy SizeLoc = Lex.getLoc();
2166 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3822f632009-01-02 08:05:26 +00002167 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002168
Chris Lattner3822f632009-01-02 08:05:26 +00002169 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
2170 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002171
2172 LocTy TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00002173 Type *EltTy = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002174 if (ParseType(EltTy)) return true;
Chris Lattnerf880ca22009-03-09 04:49:14 +00002175
Chris Lattner3822f632009-01-02 08:05:26 +00002176 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
2177 "expected end of sequential type"))
2178 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002179
Chris Lattnerac161bf2009-01-02 07:01:27 +00002180 if (isVector) {
Chris Lattnerbb1fe8a2009-02-28 18:12:41 +00002181 if (Size == 0)
2182 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002183 if ((unsigned)Size != Size)
2184 return Error(SizeLoc, "size too large for vector");
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002185 if (!VectorType::isValidElementType(EltTy))
Duncan Sandse6beec62012-11-13 12:59:33 +00002186 return Error(TypeLoc, "invalid vector element type");
Owen Anderson4056ca92009-07-29 22:17:13 +00002187 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002188 } else {
Nick Lewycky0aa6a742009-06-07 07:26:46 +00002189 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002190 return Error(TypeLoc, "invalid array element type");
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002191 Result = ArrayType::get(EltTy, Size);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002192 }
2193 return false;
2194}
2195
2196//===----------------------------------------------------------------------===//
2197// Function Semantic Analysis.
2198//===----------------------------------------------------------------------===//
2199
Chris Lattner3432c622009-10-28 03:39:23 +00002200LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
2201 int functionNumber)
2202 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002203
2204 // Insert unnamed arguments into the NumberedVals list.
2205 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
2206 AI != E; ++AI)
2207 if (!AI->hasName())
2208 NumberedVals.push_back(AI);
2209}
2210
2211LLParser::PerFunctionState::~PerFunctionState() {
2212 // If there were any forward referenced non-basicblock values, delete them.
2213 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
2214 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
2215 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002216 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002217 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002218 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002219 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002220 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002221
Chris Lattnerac161bf2009-01-02 07:01:27 +00002222 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2223 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
2224 if (!isa<BasicBlock>(I->second.first)) {
Owen Anderson09063ce2009-07-02 17:04:01 +00002225 I->second.first->replaceAllUsesWith(
Owen Andersonb292b8c2009-07-30 23:03:37 +00002226 UndefValue::get(I->second.first->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002227 delete I->second.first;
Craig Topper2617dcc2014-04-15 06:32:26 +00002228 I->second.first = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002229 }
2230}
2231
Chris Lattner3432c622009-10-28 03:39:23 +00002232bool LLParser::PerFunctionState::FinishFunction() {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002233 if (!ForwardRefVals.empty())
2234 return P.Error(ForwardRefVals.begin()->second.second,
2235 "use of undefined value '%" + ForwardRefVals.begin()->first +
2236 "'");
2237 if (!ForwardRefValIDs.empty())
2238 return P.Error(ForwardRefValIDs.begin()->second.second,
2239 "use of undefined value '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002240 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002241 return false;
2242}
2243
2244
2245/// GetVal - Get a value with the specified name or ID, creating a
2246/// forward reference record if needed. This can return null if the value
2247/// exists but does not have the right type.
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002248Value *LLParser::PerFunctionState::GetVal(const std::string &Name, Type *Ty,
2249 LocTy Loc, OperatorConstraint OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002250 // Look this name up in the normal function symbol table.
2251 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002252
Chris Lattnerac161bf2009-01-02 07:01:27 +00002253 // If this is a forward reference for the value, see if we already created a
2254 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002255 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002256 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2257 I = ForwardRefVals.find(Name);
2258 if (I != ForwardRefVals.end())
2259 Val = I->second.first;
2260 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002261
Chris Lattnerac161bf2009-01-02 07:01:27 +00002262 // If we have the value in the symbol table or fwd-ref table, return it.
2263 if (Val) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002264 // Check operator constraints.
2265 switch (OC) {
2266 case OC_None:
2267 // no constraint
2268 break;
2269 case OC_CatchPad:
2270 if (!isa<CatchPadInst>(Val)) {
2271 P.Error(Loc, "'%" + Name + "' is not a catchpad");
2272 return nullptr;
2273 }
2274 break;
2275 case OC_CleanupPad:
2276 if (!isa<CleanupPadInst>(Val)) {
2277 P.Error(Loc, "'%" + Name + "' is not a cleanuppad");
2278 return nullptr;
2279 }
2280 break;
2281 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002282 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002283 if (Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002284 P.Error(Loc, "'%" + Name + "' is not a basic block");
2285 else
2286 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002287 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002288 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002289 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002290
Chris Lattnerac161bf2009-01-02 07:01:27 +00002291 // Don't make placeholders with invalid type.
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002292 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002293 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002294 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002295 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002296
Chris Lattnerac161bf2009-01-02 07:01:27 +00002297 // Otherwise, create a new forward reference for this value and remember it.
2298 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002299 if (Ty->isLabelTy()) {
2300 assert(!OC);
Owen Anderson55f1c092009-08-13 21:58:54 +00002301 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002302 } else if (!OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002303 FwdVal = new Argument(Ty, Name);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002304 } else {
2305 switch (OC) {
2306 case OC_CatchPad:
2307 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {},
2308 Name);
2309 break;
2310 case OC_CleanupPad:
2311 FwdVal = CleanupPadInst::Create(F.getContext(), {}, Name);
2312 break;
2313 default:
2314 llvm_unreachable("unexpected constraint");
2315 }
2316 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002317
Chris Lattnerac161bf2009-01-02 07:01:27 +00002318 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2319 return FwdVal;
2320}
2321
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002322Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty, LocTy Loc,
2323 OperatorConstraint OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002324 // Look this name up in the normal function symbol table.
Craig Topper2617dcc2014-04-15 06:32:26 +00002325 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : nullptr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002326
Chris Lattnerac161bf2009-01-02 07:01:27 +00002327 // If this is a forward reference for the value, see if we already created a
2328 // forward ref record.
Craig Topper2617dcc2014-04-15 06:32:26 +00002329 if (!Val) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002330 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2331 I = ForwardRefValIDs.find(ID);
2332 if (I != ForwardRefValIDs.end())
2333 Val = I->second.first;
2334 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002335
Chris Lattnerac161bf2009-01-02 07:01:27 +00002336 // If we have the value in the symbol table or fwd-ref table, return it.
2337 if (Val) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002338 // Check operator constraint.
2339 switch (OC) {
2340 case OC_None:
2341 // no constraint
2342 break;
2343 case OC_CatchPad:
2344 if (!isa<CatchPadInst>(Val)) {
2345 P.Error(Loc, "'%" + Twine(ID) + "' is not a catchpad");
2346 return nullptr;
2347 }
2348 break;
2349 case OC_CleanupPad:
2350 if (!isa<CleanupPadInst>(Val)) {
2351 P.Error(Loc, "'%" + Twine(ID) + "' is not a cleanuppad");
2352 return nullptr;
2353 }
2354 break;
2355 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002356 if (Val->getType() == Ty) return Val;
Chris Lattnerfdd87902009-10-05 05:54:46 +00002357 if (Ty->isLabelTy())
Benjamin Kramerc7583112010-09-27 17:42:11 +00002358 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerac161bf2009-01-02 07:01:27 +00002359 else
Benjamin Kramerc7583112010-09-27 17:42:11 +00002360 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002361 getTypeString(Val->getType()) + "'");
Craig Topper2617dcc2014-04-15 06:32:26 +00002362 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002363 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002364
Duncan P. N. Exon Smith6a6e9cb2014-08-05 18:22:58 +00002365 if (!Ty->isFirstClassType()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002366 P.Error(Loc, "invalid use of a non-first-class type");
Craig Topper2617dcc2014-04-15 06:32:26 +00002367 return nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002368 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002369
Chris Lattnerac161bf2009-01-02 07:01:27 +00002370 // Otherwise, create a new forward reference for this value and remember it.
2371 Value *FwdVal;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002372 if (Ty->isLabelTy()) {
2373 assert(!OC);
Owen Anderson55f1c092009-08-13 21:58:54 +00002374 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002375 } else if (!OC) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002376 FwdVal = new Argument(Ty);
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002377 } else {
2378 switch (OC) {
2379 case OC_CatchPad:
2380 FwdVal = CatchPadInst::Create(&F.getEntryBlock(), &F.getEntryBlock(), {});
2381 break;
2382 case OC_CleanupPad:
2383 FwdVal = CleanupPadInst::Create(F.getContext(), {});
2384 break;
2385 default:
2386 llvm_unreachable("unexpected constraint");
2387 }
2388 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002389
Chris Lattnerac161bf2009-01-02 07:01:27 +00002390 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2391 return FwdVal;
2392}
2393
2394/// SetInstName - After an instruction is parsed and inserted into its
2395/// basic block, this installs its name.
2396bool LLParser::PerFunctionState::SetInstName(int NameID,
2397 const std::string &NameStr,
2398 LocTy NameLoc, Instruction *Inst) {
2399 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnerfdd87902009-10-05 05:54:46 +00002400 if (Inst->getType()->isVoidTy()) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002401 if (NameID != -1 || !NameStr.empty())
2402 return P.Error(NameLoc, "instructions returning void cannot have a name");
2403 return false;
2404 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002405
Chris Lattnerac161bf2009-01-02 07:01:27 +00002406 // If this was a numbered instruction, verify that the instruction is the
2407 // expected value and resolve any forward references.
2408 if (NameStr.empty()) {
2409 // If neither a name nor an ID was specified, just use the next ID.
2410 if (NameID == -1)
2411 NameID = NumberedVals.size();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002412
Chris Lattnerac161bf2009-01-02 07:01:27 +00002413 if (unsigned(NameID) != NumberedVals.size())
2414 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00002415 Twine(NumberedVals.size()) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002416
Chris Lattnerac161bf2009-01-02 07:01:27 +00002417 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2418 ForwardRefValIDs.find(NameID);
2419 if (FI != ForwardRefValIDs.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002420 Value *Sentinel = FI->second.first;
2421 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002422 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002423 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002424 // Check operator constraints. We only put cleanuppads or catchpads in
2425 // the forward value map if the value is constrained to match.
2426 if (isa<CatchPadInst>(Sentinel)) {
2427 if (!isa<CatchPadInst>(Inst))
2428 return P.Error(FI->second.second,
2429 "'%" + Twine(NameID) + "' is not a catchpad");
2430 } else if (isa<CleanupPadInst>(Sentinel)) {
2431 if (!isa<CleanupPadInst>(Inst))
2432 return P.Error(FI->second.second,
2433 "'%" + Twine(NameID) + "' is not a cleanuppad");
2434 }
2435
2436 Sentinel->replaceAllUsesWith(Inst);
2437 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002438 ForwardRefValIDs.erase(FI);
2439 }
2440
2441 NumberedVals.push_back(Inst);
2442 return false;
2443 }
2444
2445 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2446 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2447 FI = ForwardRefVals.find(NameStr);
2448 if (FI != ForwardRefVals.end()) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002449 Value *Sentinel = FI->second.first;
2450 if (Sentinel->getType() != Inst->getType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002451 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002452 getTypeString(FI->second.first->getType()) + "'");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00002453 // Check operator constraints. We only put cleanuppads or catchpads in
2454 // the forward value map if the value is constrained to match.
2455 if (isa<CatchPadInst>(Sentinel)) {
2456 if (!isa<CatchPadInst>(Inst))
2457 return P.Error(FI->second.second,
2458 "'%" + NameStr + "' is not a catchpad");
2459 } else if (isa<CleanupPadInst>(Sentinel)) {
2460 if (!isa<CleanupPadInst>(Inst))
2461 return P.Error(FI->second.second,
2462 "'%" + NameStr + "' is not a cleanuppad");
2463 }
2464
2465 Sentinel->replaceAllUsesWith(Inst);
2466 delete Sentinel;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002467 ForwardRefVals.erase(FI);
2468 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002469
Chris Lattnerac161bf2009-01-02 07:01:27 +00002470 // Set the name on the instruction.
2471 Inst->setName(NameStr);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002472
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00002473 if (Inst->getName() != NameStr)
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002474 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerac161bf2009-01-02 07:01:27 +00002475 NameStr + "'");
2476 return false;
2477}
2478
2479/// GetBB - Get a basic block with the specified name or ID, creating a
2480/// forward reference record if needed.
2481BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2482 LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002483 return dyn_cast_or_null<BasicBlock>(GetVal(Name,
2484 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002485}
2486
2487BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson576a9a22015-03-02 05:25:09 +00002488 return dyn_cast_or_null<BasicBlock>(GetVal(ID,
2489 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002490}
2491
2492/// DefineBB - Define the specified basic block, which is either named or
2493/// unnamed. If there is an error, this returns null otherwise it returns
2494/// the block being defined.
2495BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2496 LocTy Loc) {
2497 BasicBlock *BB;
2498 if (Name.empty())
2499 BB = GetBB(NumberedVals.size(), Loc);
2500 else
2501 BB = GetBB(Name, Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00002502 if (!BB) return nullptr; // Already diagnosed error.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002503
Chris Lattnerac161bf2009-01-02 07:01:27 +00002504 // Move the block to the end of the function. Forward ref'd blocks are
2505 // inserted wherever they happen to be referenced.
2506 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002507
Chris Lattnerac161bf2009-01-02 07:01:27 +00002508 // Remove the block from forward ref sets.
2509 if (Name.empty()) {
2510 ForwardRefValIDs.erase(NumberedVals.size());
2511 NumberedVals.push_back(BB);
2512 } else {
2513 // BB forward references are already in the function symbol table.
2514 ForwardRefVals.erase(Name);
2515 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002516
Chris Lattnerac161bf2009-01-02 07:01:27 +00002517 return BB;
2518}
2519
2520//===----------------------------------------------------------------------===//
2521// Constants.
2522//===----------------------------------------------------------------------===//
2523
2524/// ParseValID - Parse an abstract value that doesn't necessarily have a
2525/// type implied. For example, if we parse "4" we don't know what integer type
2526/// it has. The value will later be combined with its type and checked for
Victor Hernandezb8fd1522010-01-10 07:14:18 +00002527/// sanity. PFS is used to convert function-local operands of metadata (since
2528/// metadata operands are not just parsed here but also converted to values).
2529/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezdc6e65a2010-01-05 22:22:14 +00002530bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002531 ID.Loc = Lex.getLoc();
2532 switch (Lex.getKind()) {
2533 default: return TokError("expected value token");
2534 case lltok::GlobalID: // @42
2535 ID.UIntVal = Lex.getUIntVal();
2536 ID.Kind = ValID::t_GlobalID;
2537 break;
2538 case lltok::GlobalVar: // @foo
2539 ID.StrVal = Lex.getStrVal();
2540 ID.Kind = ValID::t_GlobalName;
2541 break;
2542 case lltok::LocalVarID: // %42
2543 ID.UIntVal = Lex.getUIntVal();
2544 ID.Kind = ValID::t_LocalID;
2545 break;
2546 case lltok::LocalVar: // %foo
Chris Lattnerac161bf2009-01-02 07:01:27 +00002547 ID.StrVal = Lex.getStrVal();
2548 ID.Kind = ValID::t_LocalName;
2549 break;
2550 case lltok::APSInt:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002551 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00002552 ID.Kind = ValID::t_APSInt;
2553 break;
2554 case lltok::APFloat:
2555 ID.APFloatVal = Lex.getAPFloatVal();
2556 ID.Kind = ValID::t_APFloat;
2557 break;
2558 case lltok::kw_true:
Owen Anderson23a204d2009-07-31 17:39:07 +00002559 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002560 ID.Kind = ValID::t_Constant;
2561 break;
2562 case lltok::kw_false:
Owen Anderson23a204d2009-07-31 17:39:07 +00002563 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002564 ID.Kind = ValID::t_Constant;
2565 break;
2566 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2567 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2568 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002569
Chris Lattnerac161bf2009-01-02 07:01:27 +00002570 case lltok::lbrace: {
2571 // ValID ::= '{' ConstVector '}'
2572 Lex.Lex();
2573 SmallVector<Constant*, 16> Elts;
2574 if (ParseGlobalValueVector(Elts) ||
2575 ParseToken(lltok::rbrace, "expected end of struct constant"))
2576 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002577
David Blaikieadbda4b2015-08-03 20:08:41 +00002578 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002579 ID.UIntVal = Elts.size();
David Blaikieadbda4b2015-08-03 20:08:41 +00002580 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2581 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002582 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002583 return false;
2584 }
2585 case lltok::less: {
2586 // ValID ::= '<' ConstVector '>' --> Vector.
2587 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2588 Lex.Lex();
Chris Lattner3822f632009-01-02 08:05:26 +00002589 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002590
Chris Lattnerac161bf2009-01-02 07:01:27 +00002591 SmallVector<Constant*, 16> Elts;
2592 LocTy FirstEltLoc = Lex.getLoc();
2593 if (ParseGlobalValueVector(Elts) ||
2594 (isPackedStruct &&
2595 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2596 ParseToken(lltok::greater, "expected end of constant"))
2597 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002598
Chris Lattnerac161bf2009-01-02 07:01:27 +00002599 if (isPackedStruct) {
David Blaikieadbda4b2015-08-03 20:08:41 +00002600 ID.ConstantStructElts = make_unique<Constant *[]>(Elts.size());
2601 memcpy(ID.ConstantStructElts.get(), Elts.data(),
2602 Elts.size() * sizeof(Elts[0]));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00002603 ID.UIntVal = Elts.size();
2604 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002605 return false;
2606 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002607
Chris Lattnerac161bf2009-01-02 07:01:27 +00002608 if (Elts.empty())
2609 return Error(ID.Loc, "constant vector must not be empty");
2610
Duncan Sands9dff9be2010-02-15 16:12:20 +00002611 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002612 !Elts[0]->getType()->isFloatingPointTy() &&
2613 !Elts[0]->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002614 return Error(FirstEltLoc,
Nadav Rotem3924cb02011-12-05 06:29:09 +00002615 "vector elements must have integer, pointer or floating point type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002616
Chris Lattnerac161bf2009-01-02 07:01:27 +00002617 // Verify that all the vector elements have the same type.
2618 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2619 if (Elts[i]->getType() != Elts[0]->getType())
2620 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002621 "vector element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002622 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002623
Chris Lattner69229312011-02-15 00:14:00 +00002624 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002625 ID.Kind = ValID::t_Constant;
2626 return false;
2627 }
2628 case lltok::lsquare: { // Array Constant
2629 Lex.Lex();
2630 SmallVector<Constant*, 16> Elts;
2631 LocTy FirstEltLoc = Lex.getLoc();
2632 if (ParseGlobalValueVector(Elts) ||
2633 ParseToken(lltok::rsquare, "expected end of array constant"))
2634 return true;
2635
2636 // Handle empty element.
2637 if (Elts.empty()) {
2638 // Use undef instead of an array because it's inconvenient to determine
2639 // the element type at this point, there being no elements to examine.
Chris Lattner998fa0a2009-01-05 07:52:51 +00002640 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002641 return false;
2642 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002643
Chris Lattnerac161bf2009-01-02 07:01:27 +00002644 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002645 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002646 getTypeString(Elts[0]->getType()));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002647
Owen Anderson4056ca92009-07-29 22:17:13 +00002648 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002649
Chris Lattnerac161bf2009-01-02 07:01:27 +00002650 // Verify all elements are correct type!
Chris Lattner59d0e3b2009-01-02 08:49:06 +00002651 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002652 if (Elts[i]->getType() != Elts[0]->getType())
2653 return Error(FirstEltLoc,
Benjamin Kramerc7583112010-09-27 17:42:11 +00002654 "array element #" + Twine(i) +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002655 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerac161bf2009-01-02 07:01:27 +00002656 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002657
Jay Foad83be3612011-06-22 09:24:39 +00002658 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002659 ID.Kind = ValID::t_Constant;
2660 return false;
2661 }
2662 case lltok::kw_c: // c "foo"
2663 Lex.Lex();
Chris Lattnercf9e8f62012-02-05 02:29:43 +00002664 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2665 false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002666 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2667 ID.Kind = ValID::t_Constant;
2668 return false;
2669
2670 case lltok::kw_asm: {
Chad Rosier6f9c3852013-02-14 20:44:07 +00002671 // ValID ::= 'asm' SideEffect? AlignStack? IntelDialect? STRINGCONSTANT ','
2672 // STRINGCONSTANT
Chad Rosierd8c76102012-09-05 19:00:49 +00002673 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002674 Lex.Lex();
2675 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen1cfb9582009-10-21 23:28:00 +00002676 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosierd8c76102012-09-05 19:00:49 +00002677 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3822f632009-01-02 08:05:26 +00002678 ParseStringConstant(ID.StrVal) ||
2679 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002680 ParseToken(lltok::StringConstant, "expected constraint string"))
2681 return true;
2682 ID.StrVal2 = Lex.getStrVal();
Chad Rosierf42fad62012-09-05 00:08:17 +00002683 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosierd8c76102012-09-05 19:00:49 +00002684 (unsigned(AsmDialect)<<2);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002685 ID.Kind = ValID::t_InlineAsm;
2686 return false;
2687 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002688
Chris Lattner3432c622009-10-28 03:39:23 +00002689 case lltok::kw_blockaddress: {
2690 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2691 Lex.Lex();
2692
2693 ValID Fn, Label;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002694
Chris Lattner3432c622009-10-28 03:39:23 +00002695 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2696 ParseValID(Fn) ||
2697 ParseToken(lltok::comma, "expected comma in block address expression")||
2698 ParseValID(Label) ||
2699 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2700 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002701
Chris Lattner3432c622009-10-28 03:39:23 +00002702 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2703 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattneraa99c942009-11-01 01:27:45 +00002704 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner3432c622009-10-28 03:39:23 +00002705 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002706
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002707 // Try to find the function (but skip it if it's forward-referenced).
2708 GlobalValue *GV = nullptr;
2709 if (Fn.Kind == ValID::t_GlobalID) {
2710 if (Fn.UIntVal < NumberedVals.size())
2711 GV = NumberedVals[Fn.UIntVal];
2712 } else if (!ForwardRefVals.count(Fn.StrVal)) {
2713 GV = M->getNamedValue(Fn.StrVal);
2714 }
2715 Function *F = nullptr;
2716 if (GV) {
2717 // Confirm that it's actually a function with a definition.
2718 if (!isa<Function>(GV))
2719 return Error(Fn.Loc, "expected function name in blockaddress");
2720 F = cast<Function>(GV);
2721 if (F->isDeclaration())
2722 return Error(Fn.Loc, "cannot take blockaddress inside a declaration");
2723 }
2724
2725 if (!F) {
2726 // Make a global variable as a placeholder for this reference.
David Blaikieb9cc6592015-03-04 01:40:07 +00002727 GlobalValue *&FwdRef =
David Blaikie871b4112015-08-03 20:55:00 +00002728 ForwardRefBlockAddresses.insert(std::make_pair(
2729 std::move(Fn),
2730 std::map<ValID, GlobalValue *>()))
David Blaikieb9cc6592015-03-04 01:40:07 +00002731 .first->second.insert(std::make_pair(std::move(Label), nullptr))
2732 .first->second;
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00002733 if (!FwdRef)
2734 FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context), false,
2735 GlobalValue::InternalLinkage, nullptr, "");
2736 ID.ConstantVal = FwdRef;
2737 ID.Kind = ValID::t_Constant;
2738 return false;
2739 }
2740
2741 // We found the function; now find the basic block. Don't use PFS, since we
2742 // might be inside a constant expression.
2743 BasicBlock *BB;
2744 if (BlockAddressPFS && F == &BlockAddressPFS->getFunction()) {
2745 if (Label.Kind == ValID::t_LocalID)
2746 BB = BlockAddressPFS->GetBB(Label.UIntVal, Label.Loc);
2747 else
2748 BB = BlockAddressPFS->GetBB(Label.StrVal, Label.Loc);
2749 if (!BB)
2750 return Error(Label.Loc, "referenced value is not a basic block");
2751 } else {
2752 if (Label.Kind == ValID::t_LocalID)
2753 return Error(Label.Loc, "cannot take address of numeric label after "
2754 "the function is defined");
2755 BB = dyn_cast_or_null<BasicBlock>(
2756 F->getValueSymbolTable().lookup(Label.StrVal));
2757 if (!BB)
2758 return Error(Label.Loc, "referenced value is not a basic block");
2759 }
2760
2761 ID.ConstantVal = BlockAddress::get(F, BB);
Chris Lattner3432c622009-10-28 03:39:23 +00002762 ID.Kind = ValID::t_Constant;
2763 return false;
2764 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00002765
Chris Lattnerac161bf2009-01-02 07:01:27 +00002766 case lltok::kw_trunc:
2767 case lltok::kw_zext:
2768 case lltok::kw_sext:
2769 case lltok::kw_fptrunc:
2770 case lltok::kw_fpext:
2771 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00002772 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002773 case lltok::kw_uitofp:
2774 case lltok::kw_sitofp:
2775 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002776 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002777 case lltok::kw_inttoptr:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002778 case lltok::kw_ptrtoint: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002779 unsigned Opc = Lex.getUIntVal();
Craig Topper2617dcc2014-04-15 06:32:26 +00002780 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002781 Constant *SrcVal;
2782 Lex.Lex();
2783 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2784 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman0b5d0422009-06-15 21:52:11 +00002785 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00002786 ParseType(DestTy) ||
2787 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2788 return true;
2789 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2790 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00002791 getTypeString(SrcVal->getType()) + "' to '" +
2792 getTypeString(DestTy) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002793 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Anderson02a9da32009-07-01 23:57:11 +00002794 SrcVal, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002795 ID.Kind = ValID::t_Constant;
2796 return false;
2797 }
2798 case lltok::kw_extractvalue: {
2799 Lex.Lex();
2800 Constant *Val;
2801 SmallVector<unsigned, 4> Indices;
2802 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2803 ParseGlobalTypeAndValue(Val) ||
2804 ParseIndexList(Indices) ||
2805 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2806 return true;
Devang Patel1cb51162009-11-03 19:06:07 +00002807
Chris Lattner392be582010-02-12 20:49:41 +00002808 if (!Val->getType()->isAggregateType())
2809 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foad57aa6362011-07-13 10:26:04 +00002810 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00002811 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00002812 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002813 ID.Kind = ValID::t_Constant;
2814 return false;
2815 }
2816 case lltok::kw_insertvalue: {
2817 Lex.Lex();
2818 Constant *Val0, *Val1;
2819 SmallVector<unsigned, 4> Indices;
2820 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2821 ParseGlobalTypeAndValue(Val0) ||
2822 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2823 ParseGlobalTypeAndValue(Val1) ||
2824 ParseIndexList(Indices) ||
2825 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2826 return true;
Chris Lattner392be582010-02-12 20:49:41 +00002827 if (!Val0->getType()->isAggregateType())
2828 return Error(ID.Loc, "insertvalue operand must be aggregate type");
David Majnemereba692d2015-02-23 07:13:52 +00002829 Type *IndexedType =
2830 ExtractValueInst::getIndexedType(Val0->getType(), Indices);
2831 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00002832 return Error(ID.Loc, "invalid indices for insertvalue");
David Majnemereba692d2015-02-23 07:13:52 +00002833 if (IndexedType != Val1->getType())
2834 return Error(ID.Loc, "insertvalue operand and field disagree in type: '" +
2835 getTypeString(Val1->getType()) +
2836 "' instead of '" + getTypeString(IndexedType) +
2837 "'");
Jay Foad57aa6362011-07-13 10:26:04 +00002838 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002839 ID.Kind = ValID::t_Constant;
2840 return false;
2841 }
2842 case lltok::kw_icmp:
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002843 case lltok::kw_fcmp: {
Chris Lattnerac161bf2009-01-02 07:01:27 +00002844 unsigned PredVal, Opc = Lex.getUIntVal();
2845 Constant *Val0, *Val1;
2846 Lex.Lex();
2847 if (ParseCmpPredicate(PredVal, Opc) ||
2848 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2849 ParseGlobalTypeAndValue(Val0) ||
2850 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2851 ParseGlobalTypeAndValue(Val1) ||
2852 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2853 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002854
Chris Lattnerac161bf2009-01-02 07:01:27 +00002855 if (Val0->getType() != Val1->getType())
2856 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002857
Chris Lattnerac161bf2009-01-02 07:01:27 +00002858 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002859
Chris Lattnerac161bf2009-01-02 07:01:27 +00002860 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00002861 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002862 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002863 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00002864 } else {
2865 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002866 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00002867 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002868 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002869 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002870 }
2871 ID.Kind = ValID::t_Constant;
2872 return false;
2873 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002874
Chris Lattnerac161bf2009-01-02 07:01:27 +00002875 // Binary Operators.
2876 case lltok::kw_add:
Dan Gohmana5b96452009-06-04 22:49:04 +00002877 case lltok::kw_fadd:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002878 case lltok::kw_sub:
Dan Gohmana5b96452009-06-04 22:49:04 +00002879 case lltok::kw_fsub:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002880 case lltok::kw_mul:
Dan Gohmana5b96452009-06-04 22:49:04 +00002881 case lltok::kw_fmul:
Chris Lattnerac161bf2009-01-02 07:01:27 +00002882 case lltok::kw_udiv:
2883 case lltok::kw_sdiv:
2884 case lltok::kw_fdiv:
2885 case lltok::kw_urem:
2886 case lltok::kw_srem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002887 case lltok::kw_frem:
2888 case lltok::kw_shl:
2889 case lltok::kw_lshr:
2890 case lltok::kw_ashr: {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002891 bool NUW = false;
2892 bool NSW = false;
2893 bool Exact = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002894 unsigned Opc = Lex.getUIntVal();
2895 Constant *Val0, *Val1;
2896 Lex.Lex();
Dan Gohman9c7f8082009-07-27 16:11:46 +00002897 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnera676c0f2011-02-07 16:40:21 +00002898 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2899 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002900 if (EatIfPresent(lltok::kw_nuw))
2901 NUW = true;
2902 if (EatIfPresent(lltok::kw_nsw)) {
2903 NSW = true;
2904 if (EatIfPresent(lltok::kw_nuw))
2905 NUW = true;
2906 }
Chris Lattnera676c0f2011-02-07 16:40:21 +00002907 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2908 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002909 if (EatIfPresent(lltok::kw_exact))
2910 Exact = true;
2911 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00002912 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2913 ParseGlobalTypeAndValue(Val0) ||
2914 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2915 ParseGlobalTypeAndValue(Val1) ||
2916 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2917 return true;
2918 if (Val0->getType() != Val1->getType())
2919 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002920 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman9c7f8082009-07-27 16:11:46 +00002921 if (NUW)
2922 return Error(ModifierLoc, "nuw only applies to integer operations");
2923 if (NSW)
2924 return Error(ModifierLoc, "nsw only applies to integer operations");
2925 }
Dan Gohmana2414ea2010-05-03 22:44:19 +00002926 // Check that the type is valid for the operator.
2927 switch (Opc) {
2928 case Instruction::Add:
2929 case Instruction::Sub:
2930 case Instruction::Mul:
2931 case Instruction::UDiv:
2932 case Instruction::SDiv:
2933 case Instruction::URem:
2934 case Instruction::SRem:
Chris Lattnera676c0f2011-02-07 16:40:21 +00002935 case Instruction::Shl:
2936 case Instruction::AShr:
2937 case Instruction::LShr:
Dan Gohmana2414ea2010-05-03 22:44:19 +00002938 if (!Val0->getType()->isIntOrIntVectorTy())
2939 return Error(ID.Loc, "constexpr requires integer operands");
2940 break;
2941 case Instruction::FAdd:
2942 case Instruction::FSub:
2943 case Instruction::FMul:
2944 case Instruction::FDiv:
2945 case Instruction::FRem:
2946 if (!Val0->getType()->isFPOrFPVectorTy())
2947 return Error(ID.Loc, "constexpr requires fp operands");
2948 break;
2949 default: llvm_unreachable("Unknown binary operator!");
2950 }
Dan Gohman1b849082009-09-07 23:54:19 +00002951 unsigned Flags = 0;
2952 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2953 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35315d02011-02-06 21:44:57 +00002954 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohman1b849082009-09-07 23:54:19 +00002955 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman9c7f8082009-07-27 16:11:46 +00002956 ID.ConstantVal = C;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002957 ID.Kind = ValID::t_Constant;
2958 return false;
2959 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002960
Chris Lattnerac161bf2009-01-02 07:01:27 +00002961 // Logical Operations
Chris Lattnerac161bf2009-01-02 07:01:27 +00002962 case lltok::kw_and:
2963 case lltok::kw_or:
2964 case lltok::kw_xor: {
2965 unsigned Opc = Lex.getUIntVal();
2966 Constant *Val0, *Val1;
2967 Lex.Lex();
2968 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2969 ParseGlobalTypeAndValue(Val0) ||
2970 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2971 ParseGlobalTypeAndValue(Val1) ||
2972 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2973 return true;
2974 if (Val0->getType() != Val1->getType())
2975 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sands9dff9be2010-02-15 16:12:20 +00002976 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00002977 return Error(ID.Loc,
2978 "constexpr requires integer or integer vector operands");
Owen Anderson487375e2009-07-29 18:55:55 +00002979 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00002980 ID.Kind = ValID::t_Constant;
2981 return false;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00002982 }
2983
Chris Lattnerac161bf2009-01-02 07:01:27 +00002984 case lltok::kw_getelementptr:
2985 case lltok::kw_shufflevector:
2986 case lltok::kw_insertelement:
2987 case lltok::kw_extractelement:
2988 case lltok::kw_select: {
2989 unsigned Opc = Lex.getUIntVal();
2990 SmallVector<Constant*, 16> Elts;
Dan Gohman1639c392009-07-27 21:53:46 +00002991 bool InBounds = false;
David Blaikief72d05b2015-03-13 18:20:45 +00002992 Type *Ty;
Chris Lattnerac161bf2009-01-02 07:01:27 +00002993 Lex.Lex();
David Blaikief72d05b2015-03-13 18:20:45 +00002994
Dan Gohman1639c392009-07-27 21:53:46 +00002995 if (Opc == Instruction::GetElementPtr)
Dan Gohman16cbbe42009-07-29 15:58:36 +00002996 InBounds = EatIfPresent(lltok::kw_inbounds);
David Blaikief72d05b2015-03-13 18:20:45 +00002997
2998 if (ParseToken(lltok::lparen, "expected '(' in constantexpr"))
2999 return true;
3000
3001 LocTy ExplicitTypeLoc = Lex.getLoc();
3002 if (Opc == Instruction::GetElementPtr) {
3003 if (ParseType(Ty) ||
3004 ParseToken(lltok::comma, "expected comma after getelementptr's type"))
3005 return true;
3006 }
3007
3008 if (ParseGlobalValueVector(Elts) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00003009 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
3010 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003011
Chris Lattnerac161bf2009-01-02 07:01:27 +00003012 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem3924cb02011-12-05 06:29:09 +00003013 if (Elts.size() == 0 ||
3014 !Elts[0]->getType()->getScalarType()->isPointerTy())
David Majnemer00303b62015-02-22 23:14:52 +00003015 return Error(ID.Loc, "base of getelementptr must be a pointer");
3016
3017 Type *BaseType = Elts[0]->getType();
3018 auto *BasePointerType = cast<PointerType>(BaseType->getScalarType());
David Blaikief72d05b2015-03-13 18:20:45 +00003019 if (Ty != BasePointerType->getElementType())
3020 return Error(
3021 ExplicitTypeLoc,
3022 "explicit pointee type doesn't match operand's pointee type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003023
Jay Foaded8db7d2011-07-21 14:31:17 +00003024 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
David Majnemer00303b62015-02-22 23:14:52 +00003025 for (Constant *Val : Indices) {
3026 Type *ValTy = Val->getType();
3027 if (!ValTy->getScalarType()->isIntegerTy())
3028 return Error(ID.Loc, "getelementptr index must be an integer");
3029 if (ValTy->isVectorTy() != BaseType->isVectorTy())
3030 return Error(ID.Loc, "getelementptr index type missmatch");
3031 if (ValTy->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00003032 unsigned ValNumEl = ValTy->getVectorNumElements();
3033 unsigned PtrNumEl = BaseType->getVectorNumElements();
David Majnemer00303b62015-02-22 23:14:52 +00003034 if (ValNumEl != PtrNumEl)
3035 return Error(
3036 ID.Loc,
3037 "getelementptr vector index has a wrong number of elements");
3038 }
3039 }
3040
Craig Toppere3dcce92015-08-01 22:20:21 +00003041 SmallPtrSet<Type*, 4> Visited;
David Blaikiee169e822015-04-22 16:37:35 +00003042 if (!Indices.empty() && !Ty->isSized(&Visited))
David Majnemer00303b62015-02-22 23:14:52 +00003043 return Error(ID.Loc, "base element of getelementptr must be sized");
3044
David Blaikie4a2e73b2015-04-02 18:55:32 +00003045 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
David Majnemer00303b62015-02-22 23:14:52 +00003046 return Error(ID.Loc, "invalid getelementptr indices");
David Blaikie4a2e73b2015-04-02 18:55:32 +00003047 ID.ConstantVal =
3048 ConstantExpr::getGetElementPtr(Ty, Elts[0], Indices, InBounds);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003049 } else if (Opc == Instruction::Select) {
3050 if (Elts.size() != 3)
3051 return Error(ID.Loc, "expected three operands to select");
3052 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
3053 Elts[2]))
3054 return Error(ID.Loc, Reason);
Owen Anderson487375e2009-07-29 18:55:55 +00003055 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003056 } else if (Opc == Instruction::ShuffleVector) {
3057 if (Elts.size() != 3)
3058 return Error(ID.Loc, "expected three operands to shufflevector");
3059 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3060 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Anderson02a9da32009-07-01 23:57:11 +00003061 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003062 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003063 } else if (Opc == Instruction::ExtractElement) {
3064 if (Elts.size() != 2)
3065 return Error(ID.Loc, "expected two operands to extractelement");
3066 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
3067 return Error(ID.Loc, "invalid extractelement operands");
Owen Anderson487375e2009-07-29 18:55:55 +00003068 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003069 } else {
3070 assert(Opc == Instruction::InsertElement && "Unknown opcode");
3071 if (Elts.size() != 3)
3072 return Error(ID.Loc, "expected three operands to insertelement");
3073 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
3074 return Error(ID.Loc, "invalid insertelement operands");
Owen Anderson02a9da32009-07-01 23:57:11 +00003075 ID.ConstantVal =
Owen Anderson487375e2009-07-29 18:55:55 +00003076 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerac161bf2009-01-02 07:01:27 +00003077 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003078
Chris Lattnerac161bf2009-01-02 07:01:27 +00003079 ID.Kind = ValID::t_Constant;
3080 return false;
3081 }
3082 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00003083
Chris Lattnerac161bf2009-01-02 07:01:27 +00003084 Lex.Lex();
3085 return false;
3086}
3087
3088/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattner229907c2011-07-18 04:54:35 +00003089bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003090 C = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003091 ValID ID;
Craig Topper2617dcc2014-04-15 06:32:26 +00003092 Value *V = nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00003093 bool Parsed = ParseValID(ID) ||
Craig Topper2617dcc2014-04-15 06:32:26 +00003094 ConvertValIDToValue(Ty, ID, V, nullptr);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003095 if (V && !(C = dyn_cast<Constant>(V)))
3096 return Error(ID.Loc, "global values must be constants");
3097 return Parsed;
Chris Lattnerac161bf2009-01-02 07:01:27 +00003098}
3099
Victor Hernandez9d75c962010-01-11 22:31:58 +00003100bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Craig Topper2617dcc2014-04-15 06:32:26 +00003101 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00003102 return ParseType(Ty) ||
3103 ParseGlobalValue(Ty, V);
Victor Hernandez9d75c962010-01-11 22:31:58 +00003104}
3105
Rafael Espindola83a362c2015-01-06 22:55:16 +00003106bool LLParser::parseOptionalComdat(StringRef GlobalName, Comdat *&C) {
David Majnemerdad0a642014-06-27 18:19:56 +00003107 C = nullptr;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003108
3109 LocTy KwLoc = Lex.getLoc();
David Majnemerdad0a642014-06-27 18:19:56 +00003110 if (!EatIfPresent(lltok::kw_comdat))
3111 return false;
Rafael Espindola83a362c2015-01-06 22:55:16 +00003112
3113 if (EatIfPresent(lltok::lparen)) {
3114 if (Lex.getKind() != lltok::ComdatVar)
3115 return TokError("expected comdat variable");
3116 C = getComdat(Lex.getStrVal(), Lex.getLoc());
3117 Lex.Lex();
3118 if (ParseToken(lltok::rparen, "expected ')' after comdat var"))
3119 return true;
3120 } else {
3121 if (GlobalName.empty())
3122 return TokError("comdat cannot be unnamed");
3123 C = getComdat(GlobalName, KwLoc);
3124 }
3125
David Majnemerdad0a642014-06-27 18:19:56 +00003126 return false;
3127}
3128
Victor Hernandez9d75c962010-01-11 22:31:58 +00003129/// ParseGlobalValueVector
3130/// ::= /*empty*/
3131/// ::= TypeAndValue (',' TypeAndValue)*
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00003132bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant *> &Elts) {
Victor Hernandez9d75c962010-01-11 22:31:58 +00003133 // Empty list.
3134 if (Lex.getKind() == lltok::rbrace ||
3135 Lex.getKind() == lltok::rsquare ||
3136 Lex.getKind() == lltok::greater ||
3137 Lex.getKind() == lltok::rparen)
3138 return false;
3139
3140 Constant *C;
3141 if (ParseGlobalTypeAndValue(C)) return true;
3142 Elts.push_back(C);
3143
3144 while (EatIfPresent(lltok::comma)) {
3145 if (ParseGlobalTypeAndValue(C)) return true;
3146 Elts.push_back(C);
3147 }
3148
3149 return false;
3150}
3151
Duncan P. N. Exon Smith58ef9d12015-01-12 21:23:11 +00003152bool LLParser::ParseMDTuple(MDNode *&MD, bool IsDistinct) {
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00003153 SmallVector<Metadata *, 16> Elts;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00003154 if (ParseMDNodeVector(Elts))
Dan Gohmanc828c542010-08-24 02:24:03 +00003155 return true;
3156
Duncan P. N. Exon Smith0b31dd12015-01-12 22:27:39 +00003157 MD = (IsDistinct ? MDTuple::getDistinct : MDTuple::get)(Context, Elts);
Dan Gohmanc828c542010-08-24 02:24:03 +00003158 return false;
3159}
3160
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003161/// MDNode:
3162/// ::= !{ ... }
3163/// ::= !7
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003164/// ::= !DILocation(...)
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003165bool LLParser::ParseMDNode(MDNode *&N) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003166 if (Lex.getKind() == lltok::MetadataVar)
3167 return ParseSpecializedMDNode(N);
3168
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00003169 return ParseToken(lltok::exclaim, "expected '!' here") ||
3170 ParseMDNodeTail(N);
3171}
3172
3173bool LLParser::ParseMDNodeTail(MDNode *&N) {
3174 // !{ ... }
3175 if (Lex.getKind() == lltok::lbrace)
3176 return ParseMDTuple(N);
3177
3178 // !42
3179 return ParseMDNodeID(N);
3180}
3181
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003182namespace {
3183
3184/// Structure to represent an optional metadata field.
3185template <class FieldTy> struct MDFieldImpl {
3186 typedef MDFieldImpl ImplTy;
3187 FieldTy Val;
3188 bool Seen;
3189
3190 void assign(FieldTy Val) {
3191 Seen = true;
3192 this->Val = std::move(Val);
3193 }
3194
3195 explicit MDFieldImpl(FieldTy Default)
3196 : Val(std::move(Default)), Seen(false) {}
3197};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003198
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003199struct MDUnsignedField : public MDFieldImpl<uint64_t> {
3200 uint64_t Max;
3201
3202 MDUnsignedField(uint64_t Default = 0, uint64_t Max = UINT64_MAX)
3203 : ImplTy(Default), Max(Max) {}
3204};
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003205struct LineField : public MDUnsignedField {
Duncan P. N. Exon Smithaf677eb2015-02-06 22:50:13 +00003206 LineField() : MDUnsignedField(0, UINT32_MAX) {}
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003207};
3208struct ColumnField : public MDUnsignedField {
3209 ColumnField() : MDUnsignedField(0, UINT16_MAX) {}
3210};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003211struct DwarfTagField : public MDUnsignedField {
Duncan P. N. Exon Smitha81f7e12015-02-06 22:29:35 +00003212 DwarfTagField() : MDUnsignedField(0, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003213 DwarfTagField(dwarf::Tag DefaultTag)
3214 : MDUnsignedField(DefaultTag, dwarf::DW_TAG_hi_user) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003215};
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003216struct DwarfAttEncodingField : public MDUnsignedField {
3217 DwarfAttEncodingField() : MDUnsignedField(0, dwarf::DW_ATE_hi_user) {}
3218};
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003219struct DwarfVirtualityField : public MDUnsignedField {
3220 DwarfVirtualityField() : MDUnsignedField(0, dwarf::DW_VIRTUALITY_max) {}
3221};
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003222struct DwarfLangField : public MDUnsignedField {
3223 DwarfLangField() : MDUnsignedField(0, dwarf::DW_LANG_hi_user) {}
3224};
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003225
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003226struct DIFlagField : public MDUnsignedField {
3227 DIFlagField() : MDUnsignedField(0, UINT32_MAX) {}
3228};
3229
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003230struct MDSignedField : public MDFieldImpl<int64_t> {
3231 int64_t Min;
3232 int64_t Max;
3233
3234 MDSignedField(int64_t Default = 0)
3235 : ImplTy(Default), Min(INT64_MIN), Max(INT64_MAX) {}
3236 MDSignedField(int64_t Default, int64_t Min, int64_t Max)
3237 : ImplTy(Default), Min(Min), Max(Max) {}
3238};
3239
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003240struct MDBoolField : public MDFieldImpl<bool> {
3241 MDBoolField(bool Default = false) : ImplTy(Default) {}
3242};
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003243struct MDField : public MDFieldImpl<Metadata *> {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003244 bool AllowNull;
3245
3246 MDField(bool AllowNull = true) : ImplTy(nullptr), AllowNull(AllowNull) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003247};
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003248struct MDConstant : public MDFieldImpl<ConstantAsMetadata *> {
3249 MDConstant() : ImplTy(nullptr) {}
3250};
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003251struct MDStringField : public MDFieldImpl<MDString *> {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003252 bool AllowEmpty;
3253 MDStringField(bool AllowEmpty = true)
3254 : ImplTy(nullptr), AllowEmpty(AllowEmpty) {}
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003255};
3256struct MDFieldList : public MDFieldImpl<SmallVector<Metadata *, 4>> {
3257 MDFieldList() : ImplTy(SmallVector<Metadata *, 4>()) {}
3258};
3259
3260} // end namespace
3261
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003262namespace llvm {
3263
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003264template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003265bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003266 MDUnsignedField &Result) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003267 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3268 return TokError("expected unsigned integer");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003269
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003270 auto &U = Lex.getAPSIntVal();
3271 if (U.ugt(Result.Max))
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003272 return TokError("value for '" + Name + "' too large, limit is " +
3273 Twine(Result.Max));
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003274 Result.assign(U.getZExtValue());
3275 assert(Result.Val <= Result.Max && "Expected value in range");
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003276 Lex.Lex();
3277 return false;
3278}
3279
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003280template <>
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003281bool LLParser::ParseMDField(LocTy Loc, StringRef Name, LineField &Result) {
3282 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3283}
3284template <>
3285bool LLParser::ParseMDField(LocTy Loc, StringRef Name, ColumnField &Result) {
3286 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3287}
3288
3289template <>
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003290bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfTagField &Result) {
3291 if (Lex.getKind() == lltok::APSInt)
Duncan P. N. Exon Smith39b10c22015-02-04 21:57:52 +00003292 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003293
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003294 if (Lex.getKind() != lltok::DwarfTag)
3295 return TokError("expected DWARF tag");
3296
3297 unsigned Tag = dwarf::getTag(Lex.getStrVal());
3298 if (Tag == dwarf::DW_TAG_invalid)
3299 return TokError("invalid DWARF tag" + Twine(" '") + Lex.getStrVal() + "'");
Duncan P. N. Exon Smithfad631a2015-02-04 22:02:18 +00003300 assert(Tag <= Result.Max && "Expected valid DWARF tag");
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003301
3302 Result.assign(Tag);
3303 Lex.Lex();
3304 return false;
3305}
3306
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003307template <>
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003308bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
3309 DwarfVirtualityField &Result) {
3310 if (Lex.getKind() == lltok::APSInt)
3311 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3312
3313 if (Lex.getKind() != lltok::DwarfVirtuality)
3314 return TokError("expected DWARF virtuality code");
3315
3316 unsigned Virtuality = dwarf::getVirtuality(Lex.getStrVal());
3317 if (!Virtuality)
3318 return TokError("invalid DWARF virtuality code" + Twine(" '") +
3319 Lex.getStrVal() + "'");
3320 assert(Virtuality <= Result.Max && "Expected valid DWARF virtuality code");
3321 Result.assign(Virtuality);
3322 Lex.Lex();
3323 return false;
3324}
3325
3326template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003327bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DwarfLangField &Result) {
3328 if (Lex.getKind() == lltok::APSInt)
3329 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3330
3331 if (Lex.getKind() != lltok::DwarfLang)
3332 return TokError("expected DWARF language");
3333
3334 unsigned Lang = dwarf::getLanguage(Lex.getStrVal());
3335 if (!Lang)
3336 return TokError("invalid DWARF language" + Twine(" '") + Lex.getStrVal() +
3337 "'");
3338 assert(Lang <= Result.Max && "Expected valid DWARF language");
3339 Result.assign(Lang);
3340 Lex.Lex();
3341 return false;
3342}
3343
3344template <>
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003345bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003346 DwarfAttEncodingField &Result) {
3347 if (Lex.getKind() == lltok::APSInt)
3348 return ParseMDField(Loc, Name, static_cast<MDUnsignedField &>(Result));
3349
3350 if (Lex.getKind() != lltok::DwarfAttEncoding)
3351 return TokError("expected DWARF type attribute encoding");
3352
3353 unsigned Encoding = dwarf::getAttributeEncoding(Lex.getStrVal());
3354 if (!Encoding)
3355 return TokError("invalid DWARF type attribute encoding" + Twine(" '") +
3356 Lex.getStrVal() + "'");
3357 assert(Encoding <= Result.Max && "Expected valid DWARF language");
3358 Result.assign(Encoding);
3359 Lex.Lex();
3360 return false;
3361}
3362
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003363/// DIFlagField
3364/// ::= uint32
3365/// ::= DIFlagVector
3366/// ::= DIFlagVector '|' DIFlagFwdDecl '|' uint32 '|' DIFlagPublic
3367template <>
3368bool LLParser::ParseMDField(LocTy Loc, StringRef Name, DIFlagField &Result) {
3369 assert(Result.Max == UINT32_MAX && "Expected only 32-bits");
3370
3371 // Parser for a single flag.
3372 auto parseFlag = [&](unsigned &Val) {
3373 if (Lex.getKind() == lltok::APSInt && !Lex.getAPSIntVal().isSigned())
3374 return ParseUInt32(Val);
3375
3376 if (Lex.getKind() != lltok::DIFlag)
3377 return TokError("expected debug info flag");
3378
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003379 Val = DINode::getFlag(Lex.getStrVal());
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003380 if (!Val)
3381 return TokError(Twine("invalid debug info flag flag '") +
3382 Lex.getStrVal() + "'");
3383 Lex.Lex();
3384 return false;
3385 };
3386
3387 // Parse the flags and combine them together.
3388 unsigned Combined = 0;
3389 do {
3390 unsigned Val;
3391 if (parseFlag(Val))
3392 return true;
3393 Combined |= Val;
3394 } while (EatIfPresent(lltok::bar));
3395
3396 Result.assign(Combined);
3397 return false;
3398}
3399
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003400template <>
3401bool LLParser::ParseMDField(LocTy Loc, StringRef Name,
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003402 MDSignedField &Result) {
3403 if (Lex.getKind() != lltok::APSInt)
3404 return TokError("expected signed integer");
3405
3406 auto &S = Lex.getAPSIntVal();
3407 if (S < Result.Min)
3408 return TokError("value for '" + Name + "' too small, limit is " +
3409 Twine(Result.Min));
3410 if (S > Result.Max)
3411 return TokError("value for '" + Name + "' too large, limit is " +
3412 Twine(Result.Max));
3413 Result.assign(S.getExtValue());
3414 assert(Result.Val >= Result.Min && "Expected value in range");
3415 assert(Result.Val <= Result.Max && "Expected value in range");
3416 Lex.Lex();
3417 return false;
3418}
3419
3420template <>
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003421bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDBoolField &Result) {
3422 switch (Lex.getKind()) {
3423 default:
3424 return TokError("expected 'true' or 'false'");
3425 case lltok::kw_true:
3426 Result.assign(true);
3427 break;
3428 case lltok::kw_false:
3429 Result.assign(false);
3430 break;
3431 }
3432 Lex.Lex();
3433 return false;
3434}
3435
3436template <>
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003437bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDField &Result) {
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003438 if (Lex.getKind() == lltok::kw_null) {
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003439 if (!Result.AllowNull)
3440 return TokError("'" + Name + "' cannot be null");
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003441 Lex.Lex();
3442 Result.assign(nullptr);
3443 return false;
3444 }
3445
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003446 Metadata *MD;
3447 if (ParseMetadata(MD, nullptr))
3448 return true;
3449
3450 Result.assign(MD);
3451 return false;
3452}
3453
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003454template <>
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003455bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDConstant &Result) {
3456 Metadata *MD;
3457 if (ParseValueAsMetadata(MD, "expected constant", nullptr))
3458 return true;
3459
3460 Result.assign(cast<ConstantAsMetadata>(MD));
3461 return false;
3462}
3463
3464template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003465bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDStringField &Result) {
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003466 LocTy ValueLoc = Lex.getLoc();
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003467 std::string S;
3468 if (ParseStringConstant(S))
3469 return true;
3470
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003471 if (!Result.AllowEmpty && S.empty())
3472 return Error(ValueLoc, "'" + Name + "' cannot be empty");
3473
Duncan P. N. Exon Smith3d2afaa2015-03-27 17:29:58 +00003474 Result.assign(S.empty() ? nullptr : MDString::get(Context, S));
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003475 return false;
3476}
3477
Duncan P. N. Exon Smith077c0312015-02-04 22:05:21 +00003478template <>
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003479bool LLParser::ParseMDField(LocTy Loc, StringRef Name, MDFieldList &Result) {
3480 SmallVector<Metadata *, 4> MDs;
3481 if (ParseMDNodeVector(MDs))
3482 return true;
3483
3484 Result.assign(std::move(MDs));
3485 return false;
3486}
3487
Duncan P. N. Exon Smith2f09c462015-02-04 22:13:28 +00003488} // end namespace llvm
3489
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003490template <class ParserTy>
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003491bool LLParser::ParseMDFieldsImplBody(ParserTy parseField) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003492 do {
3493 if (Lex.getKind() != lltok::LabelStr)
3494 return TokError("expected field label here");
3495
3496 if (parseField())
3497 return true;
3498 } while (EatIfPresent(lltok::comma));
3499
Duncan P. N. Exon Smith66ca92e2015-01-19 23:39:32 +00003500 return false;
3501}
3502
3503template <class ParserTy>
3504bool LLParser::ParseMDFieldsImpl(ParserTy parseField, LocTy &ClosingLoc) {
3505 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3506 Lex.Lex();
3507
3508 if (ParseToken(lltok::lparen, "expected '(' here"))
3509 return true;
3510 if (Lex.getKind() != lltok::rparen)
3511 if (ParseMDFieldsImplBody(parseField))
3512 return true;
3513
Duncan P. N. Exon Smith13890af2015-01-19 23:32:36 +00003514 ClosingLoc = Lex.getLoc();
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003515 return ParseToken(lltok::rparen, "expected ')' here");
3516}
3517
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003518template <class FieldTy>
3519bool LLParser::ParseMDField(StringRef Name, FieldTy &Result) {
3520 if (Result.Seen)
3521 return TokError("field '" + Name + "' cannot be specified more than once");
3522
3523 LocTy Loc = Lex.getLoc();
3524 Lex.Lex();
3525 return ParseMDField(Loc, Name, Result);
3526}
3527
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003528bool LLParser::ParseSpecializedMDNode(MDNode *&N, bool IsDistinct) {
3529 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003530
3531#define HANDLE_SPECIALIZED_MDNODE_LEAF(CLASS) \
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003532 if (Lex.getStrVal() == #CLASS) \
3533 return Parse##CLASS(N, IsDistinct);
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003534#include "llvm/IR/Metadata.def"
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003535
3536 return TokError("expected metadata type");
3537}
3538
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003539#define DECLARE_FIELD(NAME, TYPE, INIT) TYPE NAME INIT
3540#define NOP_FIELD(NAME, TYPE, INIT)
3541#define REQUIRE_FIELD(NAME, TYPE, INIT) \
3542 if (!NAME.Seen) \
3543 return Error(ClosingLoc, "missing required field '" #NAME "'");
3544#define PARSE_MD_FIELD(NAME, TYPE, DEFAULT) \
Duncan P. N. Exon Smitha7477282015-01-20 02:42:29 +00003545 if (Lex.getStrVal() == #NAME) \
3546 return ParseMDField(#NAME, NAME);
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003547#define PARSE_MD_FIELDS() \
3548 VISIT_MD_FIELDS(DECLARE_FIELD, DECLARE_FIELD) \
3549 do { \
3550 LocTy ClosingLoc; \
3551 if (ParseMDFieldsImpl([&]() -> bool { \
3552 VISIT_MD_FIELDS(PARSE_MD_FIELD, PARSE_MD_FIELD) \
3553 return TokError(Twine("invalid field '") + Lex.getStrVal() + "'"); \
3554 }, ClosingLoc)) \
3555 return true; \
3556 VISIT_MD_FIELDS(NOP_FIELD, REQUIRE_FIELD) \
3557 } while (false)
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003558#define GET_OR_DISTINCT(CLASS, ARGS) \
3559 (IsDistinct ? CLASS::getDistinct ARGS : CLASS::get ARGS)
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003560
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003561/// ParseDILocationFields:
3562/// ::= !DILocation(line: 43, column: 8, scope: !5, inlinedAt: !6)
3563bool LLParser::ParseDILocation(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003564#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith9c93dc62015-02-04 22:59:18 +00003565 OPTIONAL(line, LineField, ); \
3566 OPTIONAL(column, ColumnField, ); \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003567 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00003568 OPTIONAL(inlinedAt, MDField, );
3569 PARSE_MD_FIELDS();
3570#undef VISIT_MD_FIELDS
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003571
Duncan P. N. Exon Smith26489982015-03-26 22:05:04 +00003572 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003573 DILocation, (Context, line.Val, column.Val, scope.Val, inlinedAt.Val));
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00003574 return false;
3575}
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003576
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003577/// ParseGenericDINode:
3578/// ::= !GenericDINode(tag: 15, header: "...", operands: {...})
3579bool LLParser::ParseGenericDINode(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003580#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith97486072015-02-03 21:56:01 +00003581 REQUIRED(tag, DwarfTagField, ); \
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003582 OPTIONAL(header, MDStringField, ); \
3583 OPTIONAL(operands, MDFieldList, );
3584 PARSE_MD_FIELDS();
3585#undef VISIT_MD_FIELDS
3586
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003587 Result = GET_OR_DISTINCT(GenericDINode,
Duncan P. N. Exon Smith4e4aa702015-02-03 21:54:14 +00003588 (Context, tag.Val, header.Val, operands.Val));
3589 return false;
3590}
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003591
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003592/// ParseDISubrange:
3593/// ::= !DISubrange(count: 30, lowerBound: 2)
3594bool LLParser::ParseDISubrange(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003595#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith5c9a1772015-02-18 23:17:51 +00003596 REQUIRED(count, MDSignedField, (-1, -1, INT64_MAX)); \
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003597 OPTIONAL(lowerBound, MDSignedField, );
3598 PARSE_MD_FIELDS();
3599#undef VISIT_MD_FIELDS
3600
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003601 Result = GET_OR_DISTINCT(DISubrange, (Context, count.Val, lowerBound.Val));
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003602 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003603}
Duncan P. N. Exon Smithc7363f12015-02-13 01:10:38 +00003604
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003605/// ParseDIEnumerator:
3606/// ::= !DIEnumerator(value: 30, name: "SomeKind")
3607bool LLParser::ParseDIEnumerator(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003608#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithcd8fb602015-02-18 21:16:33 +00003609 REQUIRED(name, MDStringField, ); \
3610 REQUIRED(value, MDSignedField, );
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003611 PARSE_MD_FIELDS();
3612#undef VISIT_MD_FIELDS
3613
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003614 Result = GET_OR_DISTINCT(DIEnumerator, (Context, value.Val, name.Val));
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003615 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003616}
Duncan P. N. Exon Smith87754762015-02-13 01:14:11 +00003617
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003618/// ParseDIBasicType:
3619/// ::= !DIBasicType(tag: DW_TAG_base_type, name: "int", size: 32, align: 32)
3620bool LLParser::ParseDIBasicType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003621#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003622 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_base_type)); \
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003623 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003624 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3625 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smithcd6636c2015-02-13 01:17:35 +00003626 OPTIONAL(encoding, DwarfAttEncodingField, );
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003627 PARSE_MD_FIELDS();
3628#undef VISIT_MD_FIELDS
3629
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003630 Result = GET_OR_DISTINCT(DIBasicType, (Context, tag.Val, name.Val, size.Val,
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003631 align.Val, encoding.Val));
3632 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003633}
Duncan P. N. Exon Smith09e03f32015-02-13 01:14:58 +00003634
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003635/// ParseDIDerivedType:
3636/// ::= !DIDerivedType(tag: DW_TAG_pointer_type, name: "int", file: !0,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003637/// line: 7, scope: !1, baseType: !2, size: 32,
3638/// align: 32, offset: 0, flags: 0, extraData: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003639bool LLParser::ParseDIDerivedType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003640#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3641 REQUIRED(tag, DwarfTagField, ); \
3642 OPTIONAL(name, MDStringField, ); \
3643 OPTIONAL(file, MDField, ); \
3644 OPTIONAL(line, LineField, ); \
3645 OPTIONAL(scope, MDField, ); \
3646 REQUIRED(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003647 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3648 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3649 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003650 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003651 OPTIONAL(extraData, MDField, );
3652 PARSE_MD_FIELDS();
3653#undef VISIT_MD_FIELDS
3654
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003655 Result = GET_OR_DISTINCT(DIDerivedType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003656 (Context, tag.Val, name.Val, file.Val, line.Val,
3657 scope.Val, baseType.Val, size.Val, align.Val,
3658 offset.Val, flags.Val, extraData.Val));
3659 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003660}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003661
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003662bool LLParser::ParseDICompositeType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003663#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3664 REQUIRED(tag, DwarfTagField, ); \
3665 OPTIONAL(name, MDStringField, ); \
3666 OPTIONAL(file, MDField, ); \
3667 OPTIONAL(line, LineField, ); \
3668 OPTIONAL(scope, MDField, ); \
3669 OPTIONAL(baseType, MDField, ); \
Duncan P. N. Exon Smithd34db172015-02-19 23:56:07 +00003670 OPTIONAL(size, MDUnsignedField, (0, UINT64_MAX)); \
3671 OPTIONAL(align, MDUnsignedField, (0, UINT64_MAX)); \
3672 OPTIONAL(offset, MDUnsignedField, (0, UINT64_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003673 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003674 OPTIONAL(elements, MDField, ); \
Duncan P. N. Exon Smithaece2dc2015-02-13 01:21:25 +00003675 OPTIONAL(runtimeLang, DwarfLangField, ); \
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003676 OPTIONAL(vtableHolder, MDField, ); \
3677 OPTIONAL(templateParams, MDField, ); \
3678 OPTIONAL(identifier, MDStringField, );
3679 PARSE_MD_FIELDS();
3680#undef VISIT_MD_FIELDS
3681
3682 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003683 DICompositeType,
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003684 (Context, tag.Val, name.Val, file.Val, line.Val, scope.Val, baseType.Val,
3685 size.Val, align.Val, offset.Val, flags.Val, elements.Val,
3686 runtimeLang.Val, vtableHolder.Val, templateParams.Val, identifier.Val));
3687 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003688}
Duncan P. N. Exon Smith171d0772015-02-13 01:20:38 +00003689
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003690bool LLParser::ParseDISubroutineType(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003691#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003692 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003693 REQUIRED(types, MDField, );
3694 PARSE_MD_FIELDS();
3695#undef VISIT_MD_FIELDS
3696
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003697 Result = GET_OR_DISTINCT(DISubroutineType, (Context, flags.Val, types.Val));
Duncan P. N. Exon Smith54e2bc62015-02-13 01:22:59 +00003698 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003699}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003700
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003701/// ParseDIFileType:
3702/// ::= !DIFileType(filename: "path/to/file", directory: "/path/to/dir")
3703bool LLParser::ParseDIFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003704#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3705 REQUIRED(filename, MDStringField, ); \
3706 REQUIRED(directory, MDStringField, );
3707 PARSE_MD_FIELDS();
3708#undef VISIT_MD_FIELDS
3709
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003710 Result = GET_OR_DISTINCT(DIFile, (Context, filename.Val, directory.Val));
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003711 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003712}
Duncan P. N. Exon Smithf14b9c72015-02-13 01:19:14 +00003713
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003714/// ParseDICompileUnit:
3715/// ::= !DICompileUnit(language: DW_LANG_C99, file: !0, producer: "clang",
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003716/// isOptimized: true, flags: "-O2", runtimeVersion: 1,
3717/// splitDebugFilename: "abc.debug", emissionKind: 1,
3718/// enums: !1, retainedTypes: !2, subprograms: !3,
Adrian Prantl1f599f92015-05-21 20:37:30 +00003719/// globals: !4, imports: !5, dwoId: 0x0abcd)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003720bool LLParser::ParseDICompileUnit(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003721 if (!IsDistinct)
3722 return Lex.Error("missing 'distinct', required for !DICompileUnit");
3723
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003724#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3725 REQUIRED(language, DwarfLangField, ); \
Duncan P. N. Exon Smithcd07efa12015-03-31 00:47:15 +00003726 REQUIRED(file, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003727 OPTIONAL(producer, MDStringField, ); \
3728 OPTIONAL(isOptimized, MDBoolField, ); \
3729 OPTIONAL(flags, MDStringField, ); \
3730 OPTIONAL(runtimeVersion, MDUnsignedField, (0, UINT32_MAX)); \
3731 OPTIONAL(splitDebugFilename, MDStringField, ); \
3732 OPTIONAL(emissionKind, MDUnsignedField, (0, UINT32_MAX)); \
3733 OPTIONAL(enums, MDField, ); \
3734 OPTIONAL(retainedTypes, MDField, ); \
3735 OPTIONAL(subprograms, MDField, ); \
3736 OPTIONAL(globals, MDField, ); \
Adrian Prantl1f599f92015-05-21 20:37:30 +00003737 OPTIONAL(imports, MDField, ); \
3738 OPTIONAL(dwoId, MDUnsignedField, );
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003739 PARSE_MD_FIELDS();
3740#undef VISIT_MD_FIELDS
3741
Duncan P. N. Exon Smith55ca9642015-08-03 17:26:41 +00003742 Result = DICompileUnit::getDistinct(
3743 Context, language.Val, file.Val, producer.Val, isOptimized.Val, flags.Val,
3744 runtimeVersion.Val, splitDebugFilename.Val, emissionKind.Val, enums.Val,
3745 retainedTypes.Val, subprograms.Val, globals.Val, imports.Val, dwoId.Val);
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003746 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003747}
Duncan P. N. Exon Smithc1f1acc2015-02-13 01:25:10 +00003748
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003749/// ParseDISubprogram:
3750/// ::= !DISubprogram(scope: !0, name: "foo", linkageName: "_Zfoo",
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003751/// file: !1, line: 7, type: !2, isLocal: false,
3752/// isDefinition: true, scopeLine: 8, containingType: !3,
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003753/// virtuality: DW_VIRTUALTIY_pure_virtual,
3754/// virtualIndex: 10, flags: 11,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003755/// isOptimized: false, function: void ()* @_Z3foov,
3756/// templateParams: !4, declaration: !5, variables: !6)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003757bool LLParser::ParseDISubprogram(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003758 auto Loc = Lex.getLoc();
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003759#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3760 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003761 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003762 OPTIONAL(linkageName, MDStringField, ); \
3763 OPTIONAL(file, MDField, ); \
3764 OPTIONAL(line, LineField, ); \
3765 OPTIONAL(type, MDField, ); \
3766 OPTIONAL(isLocal, MDBoolField, ); \
3767 OPTIONAL(isDefinition, MDBoolField, (true)); \
3768 OPTIONAL(scopeLine, LineField, ); \
3769 OPTIONAL(containingType, MDField, ); \
Duncan P. N. Exon Smith890533e2015-02-13 01:28:16 +00003770 OPTIONAL(virtuality, DwarfVirtualityField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003771 OPTIONAL(virtualIndex, MDUnsignedField, (0, UINT32_MAX)); \
Duncan P. N. Exon Smith70ab3d22015-02-21 01:02:18 +00003772 OPTIONAL(flags, DIFlagField, ); \
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003773 OPTIONAL(isOptimized, MDBoolField, ); \
3774 OPTIONAL(function, MDConstant, ); \
3775 OPTIONAL(templateParams, MDField, ); \
3776 OPTIONAL(declaration, MDField, ); \
3777 OPTIONAL(variables, MDField, );
3778 PARSE_MD_FIELDS();
3779#undef VISIT_MD_FIELDS
3780
Duncan P. N. Exon Smith814b8e92015-08-28 20:26:49 +00003781 if (isDefinition.Val && !IsDistinct)
3782 return Lex.Error(
3783 Loc,
3784 "missing 'distinct', required for !DISubprogram when 'isDefinition'");
3785
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003786 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003787 DISubprogram, (Context, scope.Val, name.Val, linkageName.Val, file.Val,
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003788 line.Val, type.Val, isLocal.Val, isDefinition.Val,
3789 scopeLine.Val, containingType.Val, virtuality.Val,
3790 virtualIndex.Val, flags.Val, isOptimized.Val, function.Val,
3791 templateParams.Val, declaration.Val, variables.Val));
3792 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003793}
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00003794
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003795/// ParseDILexicalBlock:
3796/// ::= !DILexicalBlock(scope: !0, file: !2, line: 7, column: 9)
3797bool LLParser::ParseDILexicalBlock(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003798#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003799 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003800 OPTIONAL(file, MDField, ); \
3801 OPTIONAL(line, LineField, ); \
3802 OPTIONAL(column, ColumnField, );
3803 PARSE_MD_FIELDS();
3804#undef VISIT_MD_FIELDS
3805
3806 Result = GET_OR_DISTINCT(
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003807 DILexicalBlock, (Context, scope.Val, file.Val, line.Val, column.Val));
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003808 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003809}
Duncan P. N. Exon Smitha96d4092015-02-13 01:29:28 +00003810
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003811/// ParseDILexicalBlockFile:
3812/// ::= !DILexicalBlockFile(scope: !0, file: !2, discriminator: 9)
3813bool LLParser::ParseDILexicalBlockFile(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003814#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith0e202b92015-03-30 16:37:48 +00003815 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003816 OPTIONAL(file, MDField, ); \
3817 REQUIRED(discriminator, MDUnsignedField, (0, UINT32_MAX));
3818 PARSE_MD_FIELDS();
3819#undef VISIT_MD_FIELDS
3820
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003821 Result = GET_OR_DISTINCT(DILexicalBlockFile,
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003822 (Context, scope.Val, file.Val, discriminator.Val));
3823 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003824}
Duncan P. N. Exon Smith06a07022015-02-13 01:30:42 +00003825
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003826/// ParseDINamespace:
3827/// ::= !DINamespace(scope: !0, file: !2, name: "SomeNamespace", line: 9)
3828bool LLParser::ParseDINamespace(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003829#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3830 REQUIRED(scope, MDField, ); \
3831 OPTIONAL(file, MDField, ); \
3832 OPTIONAL(name, MDStringField, ); \
3833 OPTIONAL(line, LineField, );
3834 PARSE_MD_FIELDS();
3835#undef VISIT_MD_FIELDS
3836
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003837 Result = GET_OR_DISTINCT(DINamespace,
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003838 (Context, scope.Val, file.Val, name.Val, line.Val));
3839 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003840}
Duncan P. N. Exon Smithe1460002015-02-13 01:32:09 +00003841
Adrian Prantlab1243f2015-06-29 23:03:47 +00003842/// ParseDIModule:
3843/// ::= !DIModule(scope: !0, name: "SomeModule", configMacros: "-DNDEBUG",
3844/// includePath: "/usr/include", isysroot: "/")
3845bool LLParser::ParseDIModule(MDNode *&Result, bool IsDistinct) {
3846#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
3847 REQUIRED(scope, MDField, ); \
3848 REQUIRED(name, MDStringField, ); \
3849 OPTIONAL(configMacros, MDStringField, ); \
3850 OPTIONAL(includePath, MDStringField, ); \
3851 OPTIONAL(isysroot, MDStringField, );
3852 PARSE_MD_FIELDS();
3853#undef VISIT_MD_FIELDS
3854
3855 Result = GET_OR_DISTINCT(DIModule, (Context, scope.Val, name.Val,
3856 configMacros.Val, includePath.Val, isysroot.Val));
3857 return false;
3858}
3859
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003860/// ParseDITemplateTypeParameter:
3861/// ::= !DITemplateTypeParameter(name: "Ty", type: !1)
3862bool LLParser::ParseDITemplateTypeParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003863#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003864 OPTIONAL(name, MDStringField, ); \
3865 REQUIRED(type, MDField, );
3866 PARSE_MD_FIELDS();
3867#undef VISIT_MD_FIELDS
3868
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003869 Result =
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003870 GET_OR_DISTINCT(DITemplateTypeParameter, (Context, name.Val, type.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003871 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003872}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003873
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003874/// ParseDITemplateValueParameter:
3875/// ::= !DITemplateValueParameter(tag: DW_TAG_template_value_parameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003876/// name: "V", type: !1, value: i32 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003877bool LLParser::ParseDITemplateValueParameter(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003878#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003879 OPTIONAL(tag, DwarfTagField, (dwarf::DW_TAG_template_value_parameter)); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003880 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smith16d182a2015-02-28 23:21:38 +00003881 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003882 REQUIRED(value, MDField, );
3883 PARSE_MD_FIELDS();
3884#undef VISIT_MD_FIELDS
3885
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003886 Result = GET_OR_DISTINCT(DITemplateValueParameter,
Duncan P. N. Exon Smith3d62bba2015-02-19 00:37:21 +00003887 (Context, tag.Val, name.Val, type.Val, value.Val));
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003888 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003889}
Duncan P. N. Exon Smith2847f382015-02-13 01:34:32 +00003890
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003891/// ParseDIGlobalVariable:
3892/// ::= !DIGlobalVariable(scope: !0, name: "foo", linkageName: "foo",
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003893/// file: !1, line: 7, type: !2, isLocal: false,
3894/// isDefinition: true, variable: i32* @foo,
3895/// declaration: !3)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003896bool LLParser::ParseDIGlobalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003897#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith94d58f82015-03-31 01:28:22 +00003898 REQUIRED(name, MDStringField, (/* AllowEmpty */ false)); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003899 OPTIONAL(scope, MDField, ); \
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003900 OPTIONAL(linkageName, MDStringField, ); \
3901 OPTIONAL(file, MDField, ); \
3902 OPTIONAL(line, LineField, ); \
3903 OPTIONAL(type, MDField, ); \
3904 OPTIONAL(isLocal, MDBoolField, ); \
3905 OPTIONAL(isDefinition, MDBoolField, (true)); \
3906 OPTIONAL(variable, MDConstant, ); \
3907 OPTIONAL(declaration, MDField, );
3908 PARSE_MD_FIELDS();
3909#undef VISIT_MD_FIELDS
3910
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003911 Result = GET_OR_DISTINCT(DIGlobalVariable,
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003912 (Context, scope.Val, name.Val, linkageName.Val,
3913 file.Val, line.Val, type.Val, isLocal.Val,
3914 isDefinition.Val, variable.Val, declaration.Val));
3915 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003916}
Duncan P. N. Exon Smithc8f810a2015-02-13 01:35:40 +00003917
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003918/// ParseDILocalVariable:
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003919/// ::= !DILocalVariable(arg: 7, scope: !0, name: "foo",
3920/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
3921/// ::= !DILocalVariable(scope: !0, name: "foo",
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003922/// file: !1, line: 7, type: !2, arg: 2, flags: 7)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003923bool LLParser::ParseDILocalVariable(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003924#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smithe2c61d92015-03-27 17:56:39 +00003925 REQUIRED(scope, MDField, (/* AllowNull */ false)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003926 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003927 OPTIONAL(arg, MDUnsignedField, (0, UINT16_MAX)); \
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003928 OPTIONAL(file, MDField, ); \
3929 OPTIONAL(line, LineField, ); \
3930 OPTIONAL(type, MDField, ); \
Duncan P. N. Exon Smith62e0f452015-04-15 22:29:27 +00003931 OPTIONAL(flags, DIFlagField, );
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003932 PARSE_MD_FIELDS();
3933#undef VISIT_MD_FIELDS
3934
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003935 Result = GET_OR_DISTINCT(DILocalVariable,
Duncan P. N. Exon Smithed013cd2015-07-31 18:58:39 +00003936 (Context, scope.Val, name.Val, file.Val, line.Val,
3937 type.Val, arg.Val, flags.Val));
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003938 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003939}
Duncan P. N. Exon Smith72fe2d02015-02-13 01:39:44 +00003940
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003941/// ParseDIExpression:
3942/// ::= !DIExpression(0, 7, -1)
3943bool LLParser::ParseDIExpression(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003944 assert(Lex.getKind() == lltok::MetadataVar && "Expected metadata type name");
3945 Lex.Lex();
3946
3947 if (ParseToken(lltok::lparen, "expected '(' here"))
3948 return true;
3949
3950 SmallVector<uint64_t, 8> Elements;
3951 if (Lex.getKind() != lltok::rparen)
3952 do {
3953 if (Lex.getKind() == lltok::DwarfOp) {
3954 if (unsigned Op = dwarf::getOperationEncoding(Lex.getStrVal())) {
3955 Lex.Lex();
3956 Elements.push_back(Op);
3957 continue;
3958 }
3959 return TokError(Twine("invalid DWARF op '") + Lex.getStrVal() + "'");
3960 }
3961
3962 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
3963 return TokError("expected unsigned integer");
3964
3965 auto &U = Lex.getAPSIntVal();
3966 if (U.ugt(UINT64_MAX))
3967 return TokError("element too large, limit is " + Twine(UINT64_MAX));
3968 Elements.push_back(U.getZExtValue());
3969 Lex.Lex();
3970 } while (EatIfPresent(lltok::comma));
3971
3972 if (ParseToken(lltok::rparen, "expected ')' here"))
3973 return true;
3974
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003975 Result = GET_OR_DISTINCT(DIExpression, (Context, Elements));
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003976 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003977}
Duncan P. N. Exon Smith0c5c0122015-02-13 01:42:09 +00003978
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003979/// ParseDIObjCProperty:
3980/// ::= !DIObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003981/// getter: "getFoo", attributes: 7, type: !2)
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003982bool LLParser::ParseDIObjCProperty(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003983#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
Duncan P. N. Exon Smith3eea1962015-03-16 19:01:54 +00003984 OPTIONAL(name, MDStringField, ); \
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003985 OPTIONAL(file, MDField, ); \
3986 OPTIONAL(line, LineField, ); \
3987 OPTIONAL(setter, MDStringField, ); \
3988 OPTIONAL(getter, MDStringField, ); \
3989 OPTIONAL(attributes, MDUnsignedField, (0, UINT32_MAX)); \
3990 OPTIONAL(type, MDField, );
3991 PARSE_MD_FIELDS();
3992#undef VISIT_MD_FIELDS
3993
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00003994 Result = GET_OR_DISTINCT(DIObjCProperty,
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003995 (Context, name.Val, file.Val, line.Val, setter.Val,
3996 getter.Val, attributes.Val, type.Val));
3997 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00003998}
Duncan P. N. Exon Smithd45ce962015-02-13 01:43:22 +00003999
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004000/// ParseDIImportedEntity:
4001/// ::= !DIImportedEntity(tag: DW_TAG_imported_module, scope: !0, entity: !1,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004002/// line: 7, name: "foo")
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004003bool LLParser::ParseDIImportedEntity(MDNode *&Result, bool IsDistinct) {
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004004#define VISIT_MD_FIELDS(OPTIONAL, REQUIRED) \
4005 REQUIRED(tag, DwarfTagField, ); \
4006 REQUIRED(scope, MDField, ); \
4007 OPTIONAL(entity, MDField, ); \
4008 OPTIONAL(line, LineField, ); \
4009 OPTIONAL(name, MDStringField, );
4010 PARSE_MD_FIELDS();
4011#undef VISIT_MD_FIELDS
4012
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004013 Result = GET_OR_DISTINCT(DIImportedEntity, (Context, tag.Val, scope.Val,
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004014 entity.Val, line.Val, name.Val));
4015 return false;
Duncan P. N. Exon Smithed458fa2015-02-10 01:08:16 +00004016}
Duncan P. N. Exon Smith1c931162015-02-13 01:46:02 +00004017
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004018#undef PARSE_MD_FIELD
Duncan P. N. Exon Smith2a6b5fc2015-01-19 23:44:41 +00004019#undef NOP_FIELD
4020#undef REQUIRE_FIELD
4021#undef DECLARE_FIELD
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004022
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004023/// ParseMetadataAsValue
4024/// ::= metadata i32 %local
4025/// ::= metadata i32 @global
4026/// ::= metadata i32 7
4027/// ::= metadata !0
4028/// ::= metadata !{...}
4029/// ::= metadata !"string"
4030bool LLParser::ParseMetadataAsValue(Value *&V, PerFunctionState &PFS) {
4031 // Note: the type 'metadata' has already been parsed.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004032 Metadata *MD;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004033 if (ParseMetadata(MD, &PFS))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004034 return true;
4035
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004036 V = MetadataAsValue::get(Context, MD);
4037 return false;
4038}
4039
4040/// ParseValueAsMetadata
4041/// ::= i32 %local
4042/// ::= i32 @global
4043/// ::= i32 7
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004044bool LLParser::ParseValueAsMetadata(Metadata *&MD, const Twine &TypeMsg,
4045 PerFunctionState *PFS) {
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004046 Type *Ty;
4047 LocTy Loc;
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004048 if (ParseType(Ty, TypeMsg, Loc))
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004049 return true;
4050 if (Ty->isMetadataTy())
4051 return Error(Loc, "invalid metadata-value-metadata roundtrip");
4052
4053 Value *V;
4054 if (ParseValue(Ty, V, PFS))
4055 return true;
4056
4057 MD = ValueAsMetadata::get(V);
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004058 return false;
4059}
4060
4061/// ParseMetadata
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004062/// ::= i32 %local
4063/// ::= i32 @global
4064/// ::= i32 7
Dan Gohman8939ba332010-07-14 18:26:50 +00004065/// ::= !42
4066/// ::= !{...}
4067/// ::= !"string"
Duncan P. N. Exon Smitha9308c42015-04-29 16:38:44 +00004068/// ::= !DILocation(...)
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004069bool LLParser::ParseMetadata(Metadata *&MD, PerFunctionState *PFS) {
Duncan P. N. Exon Smith6a484832015-01-13 21:10:44 +00004070 if (Lex.getKind() == lltok::MetadataVar) {
4071 MDNode *N;
4072 if (ParseSpecializedMDNode(N))
4073 return true;
4074 MD = N;
4075 return false;
4076 }
4077
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004078 // ValueAsMetadata:
4079 // <type> <value>
4080 if (Lex.getKind() != lltok::exclaim)
Duncan P. N. Exon Smith19fc5ed2015-02-13 01:26:47 +00004081 return ParseValueAsMetadata(MD, "expected metadata operand", PFS);
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00004082
4083 // '!'.
4084 assert(Lex.getKind() == lltok::exclaim && "Expected '!' here");
4085 Lex.Lex();
Dan Gohman8939ba332010-07-14 18:26:50 +00004086
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004087 // MDString:
4088 // ::= '!' STRINGCONSTANT
4089 if (Lex.getKind() == lltok::StringConstant) {
4090 MDString *S;
4091 if (ParseMDString(S))
4092 return true;
4093 MD = S;
4094 return false;
4095 }
4096
Dan Gohman8939ba332010-07-14 18:26:50 +00004097 // MDNode:
4098 // !{ ... }
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004099 // !7
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004100 MDNode *N;
Duncan P. N. Exon Smithf825dae2015-01-12 22:26:48 +00004101 if (ParseMDNodeTail(N))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00004102 return true;
Duncan P. N. Exon Smith62a79192015-01-12 22:24:50 +00004103 MD = N;
Dan Gohman8939ba332010-07-14 18:26:50 +00004104 return false;
4105}
4106
Victor Hernandez9d75c962010-01-11 22:31:58 +00004107
4108//===----------------------------------------------------------------------===//
4109// Function Parsing.
4110//===----------------------------------------------------------------------===//
4111
Chris Lattner229907c2011-07-18 04:54:35 +00004112bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004113 PerFunctionState *PFS,
4114 OperatorConstraint OC) {
Duncan Sands19d0b472010-02-16 11:11:14 +00004115 if (Ty->isFunctionTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004116 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004117
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004118 if (OC && ID.Kind != ValID::t_LocalID && ID.Kind != ValID::t_LocalName) {
4119 switch (OC) {
4120 case OC_CatchPad:
4121 return Error(ID.Loc, "Catchpad value required in this position");
4122 case OC_CleanupPad:
4123 return Error(ID.Loc, "Cleanuppad value required in this position");
4124 default:
4125 llvm_unreachable("Unexpected constraint kind");
4126 }
4127 }
4128
Chris Lattnerac161bf2009-01-02 07:01:27 +00004129 switch (ID.Kind) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004130 case ValID::t_LocalID:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004131 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004132 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc, OC);
Craig Topper2617dcc2014-04-15 06:32:26 +00004133 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004134 case ValID::t_LocalName:
Victor Hernandez9d75c962010-01-11 22:31:58 +00004135 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004136 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc, OC);
Craig Topper2617dcc2014-04-15 06:32:26 +00004137 return V == nullptr;
Victor Hernandez9d75c962010-01-11 22:31:58 +00004138 case ValID::t_InlineAsm: {
Karl Schimpf44876c52015-09-03 16:18:32 +00004139 if (!ID.FTy || !InlineAsm::Verify(ID.FTy, ID.StrVal2))
Victor Hernandez9d75c962010-01-11 22:31:58 +00004140 return Error(ID.Loc, "invalid type for inline asm constraint string");
David Blaikie41ba2b42015-07-27 23:32:19 +00004141 V = InlineAsm::get(ID.FTy, ID.StrVal, ID.StrVal2, ID.UIntVal & 1,
4142 (ID.UIntVal >> 1) & 1,
4143 (InlineAsm::AsmDialect(ID.UIntVal >> 2)));
Victor Hernandez9d75c962010-01-11 22:31:58 +00004144 return false;
4145 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004146 case ValID::t_GlobalName:
4147 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004148 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004149 case ValID::t_GlobalID:
4150 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
Craig Topper2617dcc2014-04-15 06:32:26 +00004151 return V == nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004152 case ValID::t_APSInt:
Duncan Sands19d0b472010-02-16 11:11:14 +00004153 if (!Ty->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004154 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad583abbc2010-12-07 08:25:19 +00004155 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersonedb4a702009-07-24 23:12:02 +00004156 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004157 return false;
4158 case ValID::t_APFloat:
Duncan Sands9dff9be2010-02-15 16:12:20 +00004159 if (!Ty->isFloatingPointTy() ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004160 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
4161 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004162
Dan Gohman518cda42011-12-17 00:04:22 +00004163 // The lexer has no type info, so builds all half, float, and double FP
4164 // constants as double. Fix this here. Long double does not need this.
4165 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004166 bool Ignored;
Dan Gohman518cda42011-12-17 00:04:22 +00004167 if (Ty->isHalfTy())
4168 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
4169 &Ignored);
4170 else if (Ty->isFloatTy())
4171 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
4172 &Ignored);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004173 }
Owen Anderson69c464d2009-07-27 20:59:43 +00004174 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004175
Chris Lattner8f57d29e2009-01-05 18:24:23 +00004176 if (V->getType() != Ty)
4177 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00004178 getTypeString(Ty) + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004179
Chris Lattnerac161bf2009-01-02 07:01:27 +00004180 return false;
4181 case ValID::t_Null:
Duncan Sands19d0b472010-02-16 11:11:14 +00004182 if (!Ty->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004183 return Error(ID.Loc, "null must be a pointer type");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004184 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004185 return false;
4186 case ValID::t_Undef:
Chris Lattnerffa07782009-01-05 08:13:38 +00004187 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004188 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerffa07782009-01-05 08:13:38 +00004189 return Error(ID.Loc, "invalid type for undef constant");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004190 V = UndefValue::get(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004191 return false;
Chris Lattner998fa0a2009-01-05 07:52:51 +00004192 case ValID::t_EmptyArray:
Duncan Sands19d0b472010-02-16 11:11:14 +00004193 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner998fa0a2009-01-05 07:52:51 +00004194 return Error(ID.Loc, "invalid empty array initializer");
Owen Andersonb292b8c2009-07-30 23:03:37 +00004195 V = UndefValue::get(Ty);
Chris Lattner998fa0a2009-01-05 07:52:51 +00004196 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004197 case ValID::t_Zero:
Chris Lattnerffa07782009-01-05 08:13:38 +00004198 // FIXME: LabelTy should not be a first-class type.
Chris Lattnerfdd87902009-10-05 05:54:46 +00004199 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004200 return Error(ID.Loc, "invalid type for null constant");
Owen Anderson5a1acd92009-07-31 20:28:14 +00004201 V = Constant::getNullValue(Ty);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004202 return false;
4203 case ValID::t_Constant:
Chris Lattner13ee7952010-08-28 04:09:24 +00004204 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004205 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattner392be582010-02-12 20:49:41 +00004206
Chris Lattnerac161bf2009-01-02 07:01:27 +00004207 V = ID.ConstantVal;
4208 return false;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004209 case ValID::t_ConstantStruct:
4210 case ValID::t_PackedConstantStruct:
Chris Lattner229907c2011-07-18 04:54:35 +00004211 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004212 if (ST->getNumElements() != ID.UIntVal)
4213 return Error(ID.Loc,
4214 "initializer with struct type has wrong # elements");
4215 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
4216 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004217
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004218 // Verify that the elements are compatible with the structtype.
4219 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
4220 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
4221 return Error(ID.Loc, "element " + Twine(i) +
4222 " of struct initializer doesn't match struct element type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004223
David Blaikieadbda4b2015-08-03 20:08:41 +00004224 V = ConstantStruct::get(
4225 ST, makeArrayRef(ID.ConstantStructElts.get(), ID.UIntVal));
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004226 } else
4227 return Error(ID.Loc, "constant expression type mismatch");
4228 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004229 }
Chandler Carruthf3e85022012-01-10 18:08:01 +00004230 llvm_unreachable("Invalid ValID");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004231}
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004232
Alex Lorenzd2255952015-07-17 22:07:03 +00004233bool LLParser::parseConstantValue(Type *Ty, Constant *&C) {
4234 C = nullptr;
4235 ValID ID;
4236 auto Loc = Lex.getLoc();
4237 if (ParseValID(ID, /*PFS=*/nullptr))
4238 return true;
4239 switch (ID.Kind) {
4240 case ValID::t_APSInt:
4241 case ValID::t_APFloat:
Alex Lorenzb9a68db2015-09-09 13:44:33 +00004242 case ValID::t_Undef:
Alex Lorenzd2255952015-07-17 22:07:03 +00004243 case ValID::t_Constant:
4244 case ValID::t_ConstantStruct:
4245 case ValID::t_PackedConstantStruct: {
4246 Value *V;
4247 if (ConvertValIDToValue(Ty, ID, V, /*PFS=*/nullptr))
4248 return true;
4249 assert(isa<Constant>(V) && "Expected a constant value");
4250 C = cast<Constant>(V);
4251 return false;
4252 }
4253 default:
4254 return Error(Loc, "expected a constant value");
4255 }
4256}
4257
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004258bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS,
4259 OperatorConstraint OC) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004260 V = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004261 ValID ID;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00004262 return ParseValID(ID, PFS) || ConvertValIDToValue(Ty, ID, V, PFS, OC);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004263}
4264
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004265bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00004266 Type *Ty = nullptr;
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004267 return ParseType(Ty) ||
4268 ParseValue(Ty, V, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004269}
4270
Chris Lattner3ed871f2009-10-27 19:13:16 +00004271bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
4272 PerFunctionState &PFS) {
4273 Value *V;
4274 Loc = Lex.getLoc();
4275 if (ParseTypeAndValue(V, PFS)) return true;
4276 if (!isa<BasicBlock>(V))
4277 return Error(Loc, "expected a basic block");
4278 BB = cast<BasicBlock>(V);
4279 return false;
4280}
4281
4282
Chris Lattnerac161bf2009-01-02 07:01:27 +00004283/// FunctionHeader
4284/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindola45e6c192011-01-08 16:42:36 +00004285/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
David Majnemer7fddecc2015-06-17 20:52:32 +00004286/// OptionalAlign OptGC OptionalPrefix OptionalPrologue OptPersonalityFn
Chris Lattnerac161bf2009-01-02 07:01:27 +00004287bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
4288 // Parse the linkage.
4289 LocTy LinkageLoc = Lex.getLoc();
4290 unsigned Linkage;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004291
Kostya Serebryanya5054ad2012-01-20 17:56:17 +00004292 unsigned Visibility;
Nico Rieck7157bb72014-01-14 15:22:47 +00004293 unsigned DLLStorageClass;
Bill Wendling50d27842012-10-15 20:35:56 +00004294 AttrBuilder RetAttrs;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004295 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004296 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004297 LocTy RetTypeLoc = Lex.getLoc();
4298 if (ParseOptionalLinkage(Linkage) ||
4299 ParseOptionalVisibility(Visibility) ||
Nico Rieck7157bb72014-01-14 15:22:47 +00004300 ParseOptionalDLLStorageClass(DLLStorageClass) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004301 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00004302 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00004303 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004304 return true;
4305
4306 // Verify that the linkage is ok.
4307 switch ((GlobalValue::LinkageTypes)Linkage) {
4308 case GlobalValue::ExternalLinkage:
4309 break; // always ok.
Duncan Sandse2881052009-03-11 08:08:06 +00004310 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004311 if (isDefine)
4312 return Error(LinkageLoc, "invalid linkage for function definition");
4313 break;
Rafael Espindola6de96a12009-01-15 20:18:42 +00004314 case GlobalValue::PrivateLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004315 case GlobalValue::InternalLinkage:
Nick Lewycky8019af62009-04-13 07:02:02 +00004316 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands12da8ce2009-03-07 15:45:40 +00004317 case GlobalValue::LinkOnceAnyLinkage:
4318 case GlobalValue::LinkOnceODRLinkage:
4319 case GlobalValue::WeakAnyLinkage:
4320 case GlobalValue::WeakODRLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004321 if (!isDefine)
4322 return Error(LinkageLoc, "invalid linkage for function declaration");
4323 break;
4324 case GlobalValue::AppendingLinkage:
Duncan Sands4581beb2009-03-11 20:14:15 +00004325 case GlobalValue::CommonLinkage:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004326 return Error(LinkageLoc, "invalid function linkage type");
4327 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004328
Duncan P. N. Exon Smithb80de102014-05-07 22:57:20 +00004329 if (!isValidVisibilityForLinkage(Visibility, Linkage))
4330 return Error(LinkageLoc,
4331 "symbol with local linkage must have default visibility");
4332
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004333 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004334 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004335
Chris Lattnerac161bf2009-01-02 07:01:27 +00004336 LocTy NameLoc = Lex.getLoc();
Chris Lattner778c62c2009-02-18 21:48:13 +00004337
4338 std::string FunctionName;
4339 if (Lex.getKind() == lltok::GlobalVar) {
4340 FunctionName = Lex.getStrVal();
4341 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
4342 unsigned NameID = Lex.getUIntVal();
4343
4344 if (NameID != NumberedVals.size())
4345 return TokError("function expected to be numbered '%" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004346 Twine(NumberedVals.size()) + "'");
Chris Lattner778c62c2009-02-18 21:48:13 +00004347 } else {
4348 return TokError("expected function name");
4349 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004350
Chris Lattner3822f632009-01-02 08:05:26 +00004351 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004352
Chris Lattner3822f632009-01-02 08:05:26 +00004353 if (Lex.getKind() != lltok::lparen)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004354 return TokError("expected '(' in function argument list");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004355
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004356 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004357 bool isVarArg;
Bill Wendling50d27842012-10-15 20:35:56 +00004358 AttrBuilder FuncAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004359 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00004360 LocTy BuiltinLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004361 std::string Section;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004362 unsigned Alignment;
Chris Lattner3822f632009-01-02 08:05:26 +00004363 std::string GC;
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004364 bool UnnamedAddr;
4365 LocTy UnnamedAddrLoc;
Craig Topper2617dcc2014-04-15 06:32:26 +00004366 Constant *Prefix = nullptr;
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004367 Constant *Prologue = nullptr;
David Majnemer7fddecc2015-06-17 20:52:32 +00004368 Constant *PersonalityFn = nullptr;
David Majnemerdad0a642014-06-27 18:19:56 +00004369 Comdat *C;
Chris Lattner3822f632009-01-02 08:05:26 +00004370
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004371 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola563eb4b2011-01-25 19:09:56 +00004372 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
4373 &UnnamedAddrLoc) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00004374 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00004375 BuiltinLoc) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004376 (EatIfPresent(lltok::kw_section) &&
4377 ParseStringConstant(Section)) ||
Rafael Espindola83a362c2015-01-06 22:55:16 +00004378 parseOptionalComdat(FunctionName, C) ||
Chris Lattner3822f632009-01-02 08:05:26 +00004379 ParseOptionalAlignment(Alignment) ||
4380 (EatIfPresent(lltok::kw_gc) &&
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004381 ParseStringConstant(GC)) ||
4382 (EatIfPresent(lltok::kw_prefix) &&
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004383 ParseGlobalTypeAndValue(Prefix)) ||
4384 (EatIfPresent(lltok::kw_prologue) &&
David Majnemer7fddecc2015-06-17 20:52:32 +00004385 ParseGlobalTypeAndValue(Prologue)) ||
4386 (EatIfPresent(lltok::kw_personality) &&
4387 ParseGlobalTypeAndValue(PersonalityFn)))
Chris Lattner3822f632009-01-02 08:05:26 +00004388 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004389
Michael Gottesman41748d72013-06-27 00:25:01 +00004390 if (FuncAttrs.contains(Attribute::Builtin))
4391 return Error(BuiltinLoc, "'builtin' attribute not valid on function");
Bill Wendling09bd1f72013-02-22 00:12:35 +00004392
Chris Lattnerac161bf2009-01-02 07:01:27 +00004393 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingc6daefa2012-10-08 23:27:46 +00004394 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendling9be77592012-09-21 15:26:31 +00004395 Alignment = FuncAttrs.getAlignment();
Bill Wendling3d7b0b82012-12-19 07:18:57 +00004396 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004397 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004398
Chris Lattnerac161bf2009-01-02 07:01:27 +00004399 // Okay, if we got here, the function is syntactically valid. Convert types
4400 // and do semantic checks.
Jay Foadb804a2b2011-07-12 14:06:48 +00004401 std::vector<Type*> ParamTypeList;
Bill Wendlingf5075a42013-01-27 02:24:02 +00004402 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004403
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004404 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004405 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4406 AttributeSet::ReturnIndex,
4407 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004408
Chris Lattnerac161bf2009-01-02 07:01:27 +00004409 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004410 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00004411 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
4412 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00004413 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
4414 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00004415 }
4416
Bill Wendling3bef2dd2012-09-19 23:54:18 +00004417 if (FuncAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00004418 Attrs.push_back(AttributeSet::get(RetType->getContext(),
4419 AttributeSet::FunctionIndex,
4420 FuncAttrs));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004421
Bill Wendlinge94d8432012-12-07 23:16:57 +00004422 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004423
Bill Wendling749a43d2012-12-30 13:50:49 +00004424 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004425 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
4426
Chris Lattner229907c2011-07-18 04:54:35 +00004427 FunctionType *FT =
Owen Anderson4056ca92009-07-29 22:17:13 +00004428 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattner229907c2011-07-18 04:54:35 +00004429 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004430
Craig Topper2617dcc2014-04-15 06:32:26 +00004431 Fn = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004432 if (!FunctionName.empty()) {
4433 // If this was a definition of a forward reference, remove the definition
4434 // from the forward reference table and fill in the forward ref.
4435 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
4436 ForwardRefVals.find(FunctionName);
4437 if (FRVI != ForwardRefVals.end()) {
4438 Fn = M->getFunction(FunctionName);
Nick Lewycky686d7cb2012-10-11 00:38:25 +00004439 if (!Fn)
4440 return Error(FRVI->second.second, "invalid forward reference to "
4441 "function as global value!");
Chris Lattnerc239eb72010-04-20 04:49:11 +00004442 if (Fn->getType() != PFT)
4443 return Error(FRVI->second.second, "invalid forward reference to "
4444 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004445
Chris Lattnerac161bf2009-01-02 07:01:27 +00004446 ForwardRefVals.erase(FRVI);
4447 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattner5756c162011-06-17 07:06:44 +00004448 // Reject redefinitions.
4449 return Error(NameLoc, "invalid redefinition of function '" +
4450 FunctionName + "'");
Chris Lattnere38317f2009-10-25 23:22:50 +00004451 } else if (M->getNamedValue(FunctionName)) {
4452 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004453 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004454
Dan Gohman399d6ae2009-08-29 23:37:49 +00004455 } else {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004456 // If this is a definition of a forward referenced function, make sure the
4457 // types agree.
4458 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
4459 = ForwardRefValIDs.find(NumberedVals.size());
4460 if (I != ForwardRefValIDs.end()) {
4461 Fn = cast<Function>(I->second.first);
4462 if (Fn->getType() != PFT)
4463 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerc7583112010-09-27 17:42:11 +00004464 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004465 ForwardRefValIDs.erase(I);
4466 }
4467 }
4468
Craig Topper2617dcc2014-04-15 06:32:26 +00004469 if (!Fn)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004470 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
4471 else // Move the forward-reference to the correct spot in the module.
4472 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
4473
4474 if (FunctionName.empty())
4475 NumberedVals.push_back(Fn);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004476
Chris Lattnerac161bf2009-01-02 07:01:27 +00004477 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
4478 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Nico Rieck7157bb72014-01-14 15:22:47 +00004479 Fn->setDLLStorageClass((GlobalValue::DLLStorageClassTypes)DLLStorageClass);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004480 Fn->setCallingConv(CC);
4481 Fn->setAttributes(PAL);
Rafael Espindola45e6c192011-01-08 16:42:36 +00004482 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004483 Fn->setAlignment(Alignment);
4484 Fn->setSection(Section);
David Majnemerdad0a642014-06-27 18:19:56 +00004485 Fn->setComdat(C);
David Majnemer7fddecc2015-06-17 20:52:32 +00004486 Fn->setPersonalityFn(PersonalityFn);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004487 if (!GC.empty()) Fn->setGC(GC.c_str());
Peter Collingbourne3fa50f92013-09-16 01:08:15 +00004488 Fn->setPrefixData(Prefix);
Peter Collingbourne51d2de72014-12-03 02:08:38 +00004489 Fn->setPrologueData(Prologue);
Bill Wendlingb32b0412013-02-08 06:32:06 +00004490 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004491
Chris Lattnerac161bf2009-01-02 07:01:27 +00004492 // Add all of the arguments we parsed to the function.
4493 Function::arg_iterator ArgIt = Fn->arg_begin();
4494 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
4495 // If the argument has a name, insert it into the argument symbol table.
4496 if (ArgList[i].Name.empty()) continue;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004497
Chris Lattnerac161bf2009-01-02 07:01:27 +00004498 // Set the name, if it conflicted, it will be auto-renamed.
4499 ArgIt->setName(ArgList[i].Name);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004500
Benjamin Kramer1dc34b42010-10-16 11:28:23 +00004501 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004502 return Error(ArgList[i].Loc, "redefinition of argument '%" +
4503 ArgList[i].Name + "'");
4504 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004505
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004506 if (isDefine)
4507 return false;
4508
Robin Morisset039781e2014-08-29 21:53:01 +00004509 // Check the declaration has no block address forward references.
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004510 ValID ID;
4511 if (FunctionName.empty()) {
4512 ID.Kind = ValID::t_GlobalID;
4513 ID.UIntVal = NumberedVals.size() - 1;
4514 } else {
4515 ID.Kind = ValID::t_GlobalName;
4516 ID.StrVal = FunctionName;
4517 }
4518 auto Blocks = ForwardRefBlockAddresses.find(ID);
4519 if (Blocks != ForwardRefBlockAddresses.end())
4520 return Error(Blocks->first.Loc,
4521 "cannot take blockaddress inside a declaration");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004522 return false;
4523}
4524
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004525bool LLParser::PerFunctionState::resolveForwardRefBlockAddresses() {
4526 ValID ID;
4527 if (FunctionNumber == -1) {
4528 ID.Kind = ValID::t_GlobalName;
4529 ID.StrVal = F.getName();
4530 } else {
4531 ID.Kind = ValID::t_GlobalID;
4532 ID.UIntVal = FunctionNumber;
4533 }
4534
4535 auto Blocks = P.ForwardRefBlockAddresses.find(ID);
4536 if (Blocks == P.ForwardRefBlockAddresses.end())
4537 return false;
4538
4539 for (const auto &I : Blocks->second) {
4540 const ValID &BBID = I.first;
4541 GlobalValue *GV = I.second;
4542
4543 assert((BBID.Kind == ValID::t_LocalID || BBID.Kind == ValID::t_LocalName) &&
4544 "Expected local id or name");
4545 BasicBlock *BB;
4546 if (BBID.Kind == ValID::t_LocalName)
4547 BB = GetBB(BBID.StrVal, BBID.Loc);
4548 else
4549 BB = GetBB(BBID.UIntVal, BBID.Loc);
4550 if (!BB)
4551 return P.Error(BBID.Loc, "referenced value is not a basic block");
4552
4553 GV->replaceAllUsesWith(BlockAddress::get(&F, BB));
4554 GV->eraseFromParent();
4555 }
4556
4557 P.ForwardRefBlockAddresses.erase(Blocks);
4558 return false;
4559}
Chris Lattnerac161bf2009-01-02 07:01:27 +00004560
4561/// ParseFunctionBody
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004562/// ::= '{' BasicBlock+ UseListOrderDirective* '}'
Chris Lattnerac161bf2009-01-02 07:01:27 +00004563bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner4649a732011-06-17 06:42:57 +00004564 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004565 return TokError("expected '{' in function body");
4566 Lex.Lex(); // eat the {.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004567
Chris Lattner3432c622009-10-28 03:39:23 +00004568 int FunctionNumber = -1;
4569 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004570
Chris Lattner3432c622009-10-28 03:39:23 +00004571 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004572
Duncan P. N. Exon Smith17169902014-08-19 00:13:19 +00004573 // Resolve block addresses and allow basic blocks to be forward-declared
4574 // within this function.
4575 if (PFS.resolveForwardRefBlockAddresses())
4576 return true;
4577 SaveAndRestore<PerFunctionState *> ScopeExit(BlockAddressPFS, &PFS);
4578
Chris Lattnerbbddd962010-01-09 19:20:07 +00004579 // We need at least one basic block.
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004580 if (Lex.getKind() == lltok::rbrace || Lex.getKind() == lltok::kw_uselistorder)
Chris Lattnerbbddd962010-01-09 19:20:07 +00004581 return TokError("function body requires at least one basic block");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004582
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004583 while (Lex.getKind() != lltok::rbrace &&
4584 Lex.getKind() != lltok::kw_uselistorder)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004585 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004586
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00004587 while (Lex.getKind() != lltok::rbrace)
4588 if (ParseUseListOrder(&PFS))
4589 return true;
4590
Chris Lattnerac161bf2009-01-02 07:01:27 +00004591 // Eat the }.
4592 Lex.Lex();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004593
Chris Lattnerac161bf2009-01-02 07:01:27 +00004594 // Verify function is ok.
Chris Lattner3432c622009-10-28 03:39:23 +00004595 return PFS.FinishFunction();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004596}
4597
4598/// ParseBasicBlock
4599/// ::= LabelStr? Instruction*
4600bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
4601 // If this basic block starts out with a name, remember it.
4602 std::string Name;
4603 LocTy NameLoc = Lex.getLoc();
4604 if (Lex.getKind() == lltok::LabelStr) {
4605 Name = Lex.getStrVal();
4606 Lex.Lex();
4607 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004608
Chris Lattnerac161bf2009-01-02 07:01:27 +00004609 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
Owen Anderson576a9a22015-03-02 05:25:09 +00004610 if (!BB)
4611 return Error(NameLoc,
4612 "unable to create block named '" + Name + "'");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004613
Chris Lattnerac161bf2009-01-02 07:01:27 +00004614 std::string NameStr;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004615
Chris Lattnerac161bf2009-01-02 07:01:27 +00004616 // Parse the instructions in this block until we get a terminator.
4617 Instruction *Inst;
4618 do {
4619 // This instruction may have three possibilities for a name: a) none
4620 // specified, b) name specified "%foo =", c) number specified: "%4 =".
4621 LocTy NameLoc = Lex.getLoc();
4622 int NameID = -1;
4623 NameStr = "";
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004624
Chris Lattnerac161bf2009-01-02 07:01:27 +00004625 if (Lex.getKind() == lltok::LocalVarID) {
4626 NameID = Lex.getUIntVal();
4627 Lex.Lex();
4628 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
4629 return true;
Chris Lattnerdef19492011-06-17 06:36:20 +00004630 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004631 NameStr = Lex.getStrVal();
4632 Lex.Lex();
4633 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
4634 return true;
4635 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004636
Chris Lattner77b89dc2009-12-30 05:23:43 +00004637 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Toppera2886c22012-02-07 05:05:23 +00004638 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattner77b89dc2009-12-30 05:23:43 +00004639 case InstError: return true;
4640 case InstNormal:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004641 BB->getInstList().push_back(Inst);
4642
Chris Lattner77b89dc2009-12-30 05:23:43 +00004643 // With a normal result, we check to see if the instruction is followed by
4644 // a comma and metadata.
4645 if (EatIfPresent(lltok::comma))
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004646 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004647 return true;
4648 break;
4649 case InstExtraComma:
Chris Lattner2e664bd2010-04-07 04:08:57 +00004650 BB->getInstList().push_back(Inst);
4651
Chris Lattner77b89dc2009-12-30 05:23:43 +00004652 // If the instruction parser ate an extra comma at the end of it, it
4653 // *must* be followed by metadata.
Duncan P. N. Exon Smith27d702c2015-04-24 21:29:36 +00004654 if (ParseInstructionMetadata(*Inst))
Chris Lattner77b89dc2009-12-30 05:23:43 +00004655 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004656 break;
Chris Lattner77b89dc2009-12-30 05:23:43 +00004657 }
Devang Patelea8a4b92009-09-17 23:04:48 +00004658
Chris Lattnerac161bf2009-01-02 07:01:27 +00004659 // Set the name on the instruction.
4660 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
4661 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004662
Chris Lattnerac161bf2009-01-02 07:01:27 +00004663 return false;
4664}
4665
4666//===----------------------------------------------------------------------===//
4667// Instruction Parsing.
4668//===----------------------------------------------------------------------===//
4669
4670/// ParseInstruction - Parse one of the many different instructions.
4671///
Chris Lattner77b89dc2009-12-30 05:23:43 +00004672int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
4673 PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004674 lltok::Kind Token = Lex.getKind();
4675 if (Token == lltok::Eof)
4676 return TokError("found end of file when expecting more instructions");
4677 LocTy Loc = Lex.getLoc();
Chris Lattner89d856e2009-03-01 00:53:13 +00004678 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerac161bf2009-01-02 07:01:27 +00004679 Lex.Lex(); // Eat the keyword.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004680
Chris Lattnerac161bf2009-01-02 07:01:27 +00004681 switch (Token) {
4682 default: return Error(Loc, "expected instruction opcode");
4683 // Terminator Instructions.
Owen Anderson55f1c092009-08-13 21:58:54 +00004684 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004685 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
4686 case lltok::kw_br: return ParseBr(Inst, PFS);
4687 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004688 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004689 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingf891bf82011-07-31 06:30:59 +00004690 case lltok::kw_resume: return ParseResume(Inst, PFS);
David Majnemer654e1302015-07-31 17:58:14 +00004691 case lltok::kw_cleanupret: return ParseCleanupRet(Inst, PFS);
4692 case lltok::kw_catchret: return ParseCatchRet(Inst, PFS);
4693 case lltok::kw_catchpad: return ParseCatchPad(Inst, PFS);
4694 case lltok::kw_terminatepad: return ParseTerminatePad(Inst, PFS);
4695 case lltok::kw_cleanuppad: return ParseCleanupPad(Inst, PFS);
4696 case lltok::kw_catchendpad: return ParseCatchEndPad(Inst, PFS);
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00004697 case lltok::kw_cleanupendpad: return ParseCleanupEndPad(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004698 // Binary Operators.
4699 case lltok::kw_add:
4700 case lltok::kw_sub:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004701 case lltok::kw_mul:
4702 case lltok::kw_shl: {
Chris Lattnera676c0f2011-02-07 16:40:21 +00004703 bool NUW = EatIfPresent(lltok::kw_nuw);
4704 bool NSW = EatIfPresent(lltok::kw_nsw);
4705 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004706
Chris Lattnera676c0f2011-02-07 16:40:21 +00004707 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004708
Chris Lattnera676c0f2011-02-07 16:40:21 +00004709 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
4710 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
4711 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004712 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004713 case lltok::kw_fadd:
4714 case lltok::kw_fsub:
Michael Ilseman92053172012-11-27 00:42:44 +00004715 case lltok::kw_fmul:
4716 case lltok::kw_fdiv:
4717 case lltok::kw_frem: {
4718 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4719 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
4720 if (Res != 0)
4721 return Res;
4722 if (FMF.any())
4723 Inst->setFastMathFlags(FMF);
4724 return 0;
4725 }
Dan Gohmana5b96452009-06-04 22:49:04 +00004726
Chris Lattner35315d02011-02-06 21:44:57 +00004727 case lltok::kw_sdiv:
Chris Lattnera676c0f2011-02-07 16:40:21 +00004728 case lltok::kw_udiv:
4729 case lltok::kw_lshr:
4730 case lltok::kw_ashr: {
4731 bool Exact = EatIfPresent(lltok::kw_exact);
4732
4733 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
4734 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
4735 return false;
Dan Gohman9c7f8082009-07-27 16:11:46 +00004736 }
4737
Chris Lattnerac161bf2009-01-02 07:01:27 +00004738 case lltok::kw_urem:
Chris Lattner89d856e2009-03-01 00:53:13 +00004739 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004740 case lltok::kw_and:
4741 case lltok::kw_or:
Chris Lattner89d856e2009-03-01 00:53:13 +00004742 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
James Molloy88eb5352015-07-10 12:52:00 +00004743 case lltok::kw_icmp: return ParseCompare(Inst, PFS, KeywordVal);
4744 case lltok::kw_fcmp: {
4745 FastMathFlags FMF = EatFastMathFlagsIfPresent();
4746 int Res = ParseCompare(Inst, PFS, KeywordVal);
4747 if (Res != 0)
4748 return Res;
4749 if (FMF.any())
4750 Inst->setFastMathFlags(FMF);
4751 return 0;
4752 }
4753
Chris Lattnerac161bf2009-01-02 07:01:27 +00004754 // Casts.
4755 case lltok::kw_trunc:
4756 case lltok::kw_zext:
4757 case lltok::kw_sext:
4758 case lltok::kw_fptrunc:
4759 case lltok::kw_fpext:
4760 case lltok::kw_bitcast:
Matt Arsenaultb03bd4d2013-11-15 01:34:59 +00004761 case lltok::kw_addrspacecast:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004762 case lltok::kw_uitofp:
4763 case lltok::kw_sitofp:
4764 case lltok::kw_fptoui:
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004765 case lltok::kw_fptosi:
Chris Lattnerac161bf2009-01-02 07:01:27 +00004766 case lltok::kw_inttoptr:
Chris Lattner89d856e2009-03-01 00:53:13 +00004767 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004768 // Other.
4769 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattnerb55ab542009-01-05 08:18:44 +00004770 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004771 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
4772 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
4773 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
4774 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlingfae14752011-08-12 20:24:12 +00004775 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Reid Kleckner5772b772014-04-24 20:14:34 +00004776 // Call.
4777 case lltok::kw_call: return ParseCall(Inst, PFS, CallInst::TCK_None);
4778 case lltok::kw_tail: return ParseCall(Inst, PFS, CallInst::TCK_Tail);
4779 case lltok::kw_musttail: return ParseCall(Inst, PFS, CallInst::TCK_MustTail);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004780 // Memory.
Victor Hernandezc7d6a832009-10-17 00:00:19 +00004781 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerbc639292011-11-27 06:56:53 +00004782 case lltok::kw_load: return ParseLoad(Inst, PFS);
4783 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedman02e737b2011-08-12 22:50:01 +00004784 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
4785 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedmanfee02c62011-07-25 23:16:38 +00004786 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004787 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
4788 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
4789 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
4790 }
4791}
4792
4793/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
4794bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewyckya21d3da2009-07-08 03:04:38 +00004795 if (Opc == Instruction::FCmp) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00004796 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004797 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004798 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
4799 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
4800 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
4801 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
4802 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
4803 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
4804 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
4805 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
4806 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
4807 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
4808 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
4809 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
4810 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
4811 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
4812 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
4813 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
4814 }
4815 } else {
4816 switch (Lex.getKind()) {
David Tweeda11edf02013-01-07 13:32:38 +00004817 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerac161bf2009-01-02 07:01:27 +00004818 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
4819 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
4820 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
4821 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
4822 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
4823 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
4824 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
4825 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
4826 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
4827 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
4828 }
4829 }
4830 Lex.Lex();
4831 return false;
4832}
4833
4834//===----------------------------------------------------------------------===//
4835// Terminator Instructions.
4836//===----------------------------------------------------------------------===//
4837
4838/// ParseRet - Parse a return instruction.
Chris Lattner596760d2009-12-29 21:25:40 +00004839/// ::= 'ret' void (',' !dbg, !1)*
4840/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner33de4272011-06-17 06:49:41 +00004841bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004842 PerFunctionState &PFS) {
4843 SMLoc TypeLoc = Lex.getLoc();
Craig Topper2617dcc2014-04-15 06:32:26 +00004844 Type *Ty = nullptr;
Chris Lattnerf880ca22009-03-09 04:49:14 +00004845 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004846
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004847 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004848
Chris Lattnerfdd87902009-10-05 05:54:46 +00004849 if (Ty->isVoidTy()) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004850 if (!ResType->isVoidTy())
4851 return Error(TypeLoc, "value doesn't match function result type '" +
4852 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004853
Owen Anderson55f1c092009-08-13 21:58:54 +00004854 Inst = ReturnInst::Create(Context);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004855 return false;
4856 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004857
Chris Lattnerac161bf2009-01-02 07:01:27 +00004858 Value *RV;
4859 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004860
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00004861 if (ResType != RV->getType())
4862 return Error(TypeLoc, "value doesn't match function result type '" +
4863 getTypeString(ResType) + "'");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004864
Owen Anderson55f1c092009-08-13 21:58:54 +00004865 Inst = ReturnInst::Create(Context, RV);
Chris Lattner33de4272011-06-17 06:49:41 +00004866 return false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004867}
4868
4869
4870/// ParseBr
4871/// ::= 'br' TypeAndValue
4872/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
4873bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
4874 LocTy Loc, Loc2;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004875 Value *Op0;
4876 BasicBlock *Op1, *Op2;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004877 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004878
Chris Lattnerac161bf2009-01-02 07:01:27 +00004879 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
4880 Inst = BranchInst::Create(BB);
4881 return false;
4882 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004883
Owen Anderson55f1c092009-08-13 21:58:54 +00004884 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004885 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004886
Chris Lattnerac161bf2009-01-02 07:01:27 +00004887 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004888 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004889 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004890 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004891 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004892
Chris Lattner3ed871f2009-10-27 19:13:16 +00004893 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerac161bf2009-01-02 07:01:27 +00004894 return false;
4895}
4896
4897/// ParseSwitch
4898/// Instruction
4899/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
4900/// JumpTable
4901/// ::= (TypeAndValue ',' TypeAndValue)*
4902bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
4903 LocTy CondLoc, BBLoc;
Chris Lattner3ed871f2009-10-27 19:13:16 +00004904 Value *Cond;
4905 BasicBlock *DefaultBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004906 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
4907 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004908 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00004909 ParseToken(lltok::lsquare, "expected '[' with switch table"))
4910 return true;
4911
Duncan Sands19d0b472010-02-16 11:11:14 +00004912 if (!Cond->getType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00004913 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004914
Chris Lattnerac161bf2009-01-02 07:01:27 +00004915 // Parse the jump table pairs.
4916 SmallPtrSet<Value*, 32> SeenCases;
4917 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
4918 while (Lex.getKind() != lltok::rsquare) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004919 Value *Constant;
4920 BasicBlock *DestBB;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004921
Chris Lattnerac161bf2009-01-02 07:01:27 +00004922 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
4923 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00004924 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00004925 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004926
David Blaikie70573dc2014-11-19 07:49:26 +00004927 if (!SeenCases.insert(Constant).second)
Chris Lattnerac161bf2009-01-02 07:01:27 +00004928 return Error(CondLoc, "duplicate case value in switch");
4929 if (!isa<ConstantInt>(Constant))
4930 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004931
Chris Lattner3ed871f2009-10-27 19:13:16 +00004932 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerac161bf2009-01-02 07:01:27 +00004933 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004934
Chris Lattnerac161bf2009-01-02 07:01:27 +00004935 Lex.Lex(); // Eat the ']'.
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00004936
Chris Lattner3ed871f2009-10-27 19:13:16 +00004937 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00004938 for (unsigned i = 0, e = Table.size(); i != e; ++i)
4939 SI->addCase(Table[i].first, Table[i].second);
4940 Inst = SI;
4941 return false;
4942}
4943
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004944/// ParseIndirectBr
Chris Lattner3ed871f2009-10-27 19:13:16 +00004945/// Instruction
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004946/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
4947bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner3ed871f2009-10-27 19:13:16 +00004948 LocTy AddrLoc;
4949 Value *Address;
4950 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004951 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
4952 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattner3ed871f2009-10-27 19:13:16 +00004953 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004954
Duncan Sands19d0b472010-02-16 11:11:14 +00004955 if (!Address->getType()->isPointerTy())
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004956 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004957
Chris Lattner3ed871f2009-10-27 19:13:16 +00004958 // Parse the destination list.
4959 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004960
Chris Lattner3ed871f2009-10-27 19:13:16 +00004961 if (Lex.getKind() != lltok::rsquare) {
4962 BasicBlock *DestBB;
4963 if (ParseTypeAndBasicBlock(DestBB, PFS))
4964 return true;
4965 DestList.push_back(DestBB);
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004966
Chris Lattner3ed871f2009-10-27 19:13:16 +00004967 while (EatIfPresent(lltok::comma)) {
4968 if (ParseTypeAndBasicBlock(DestBB, PFS))
4969 return true;
4970 DestList.push_back(DestBB);
4971 }
4972 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00004973
Chris Lattner3ed871f2009-10-27 19:13:16 +00004974 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
4975 return true;
4976
Chris Lattnerd04cb6d2009-10-28 00:19:10 +00004977 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattner3ed871f2009-10-27 19:13:16 +00004978 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
4979 IBI->addDestination(DestList[i]);
4980 Inst = IBI;
4981 return false;
4982}
4983
4984
Chris Lattnerac161bf2009-01-02 07:01:27 +00004985/// ParseInvoke
4986/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
4987/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
4988bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
4989 LocTy CallLoc = Lex.getLoc();
Bill Wendling50d27842012-10-15 20:35:56 +00004990 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00004991 std::vector<unsigned> FwdRefAttrGrps;
Bill Wendling09bd1f72013-02-22 00:12:35 +00004992 LocTy NoBuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00004993 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00004994 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00004995 LocTy RetTypeLoc;
4996 ValID CalleeID;
4997 SmallVector<ParamInfo, 16> ArgList;
4998
Chris Lattner3ed871f2009-10-27 19:13:16 +00004999 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005000 if (ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00005001 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005002 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005003 ParseValID(CalleeID) ||
5004 ParseParameterList(ArgList, PFS) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005005 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
5006 NoBuiltinLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005007 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005008 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005009 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattner3ed871f2009-10-27 19:13:16 +00005010 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005011 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005012
Chris Lattnerac161bf2009-01-02 07:01:27 +00005013 // If RetType is a non-function pointer type, then this is the short syntax
5014 // for the call, which means that RetType is just the return type. Infer the
5015 // rest of the function argument types from the arguments that are present.
David Blaikie445e3fb2015-04-24 19:32:54 +00005016 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5017 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005018 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005019 std::vector<Type*> ParamTypes;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005020 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5021 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005022
Chris Lattnerac161bf2009-01-02 07:01:27 +00005023 if (!FunctionType::isValidReturnType(RetType))
5024 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005025
Owen Anderson4056ca92009-07-29 22:17:13 +00005026 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005027 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005028
David Blaikie41ba2b42015-07-27 23:32:19 +00005029 CalleeID.FTy = Ty;
5030
Chris Lattnerac161bf2009-01-02 07:01:27 +00005031 // Look up the callee.
5032 Value *Callee;
David Blaikie445e3fb2015-04-24 19:32:54 +00005033 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5034 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005035
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005036 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005037 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005038 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005039 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5040 AttributeSet::ReturnIndex,
5041 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005042
Chris Lattnerac161bf2009-01-02 07:01:27 +00005043 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005044
Chris Lattnerac161bf2009-01-02 07:01:27 +00005045 // Loop through FunctionType's arguments and ensure they are specified
5046 // correctly. Also, gather any parameter attributes.
5047 FunctionType::param_iterator I = Ty->param_begin();
5048 FunctionType::param_iterator E = Ty->param_end();
5049 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005050 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005051 if (I != E) {
5052 ExpectedTy = *I++;
5053 } else if (!Ty->isVarArg()) {
5054 return Error(ArgList[i].Loc, "too many arguments specified");
5055 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005056
Chris Lattnerac161bf2009-01-02 07:01:27 +00005057 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5058 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005059 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005060 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005061 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5062 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005063 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5064 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005065 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005066
Chris Lattnerac161bf2009-01-02 07:01:27 +00005067 if (I != E)
5068 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005069
David Majnemer8d22abd2015-02-23 00:01:32 +00005070 if (FnAttrs.hasAttributes()) {
5071 if (FnAttrs.hasAlignmentAttr())
5072 return Error(CallLoc, "invoke instructions may not have an alignment");
5073
Bill Wendlingf5075a42013-01-27 02:24:02 +00005074 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5075 AttributeSet::FunctionIndex,
5076 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005077 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005078
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005079 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005080 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005081
David Blaikie3e807092015-05-13 18:35:26 +00005082 InvokeInst *II = InvokeInst::Create(Ty, Callee, NormalBB, UnwindBB, Args);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005083 II->setCallingConv(CC);
5084 II->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005085 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005086 Inst = II;
5087 return false;
5088}
5089
Bill Wendlingf891bf82011-07-31 06:30:59 +00005090/// ParseResume
5091/// ::= 'resume' TypeAndValue
5092bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
5093 Value *Exn; LocTy ExnLoc;
Bill Wendlingf891bf82011-07-31 06:30:59 +00005094 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
5095 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005096
Bill Wendlingf891bf82011-07-31 06:30:59 +00005097 ResumeInst *RI = ResumeInst::Create(Exn);
5098 Inst = RI;
5099 return false;
5100}
Chris Lattnerac161bf2009-01-02 07:01:27 +00005101
David Majnemer654e1302015-07-31 17:58:14 +00005102bool LLParser::ParseExceptionArgs(SmallVectorImpl<Value *> &Args,
5103 PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005104 if (ParseToken(lltok::lsquare, "expected '[' in catchpad/cleanuppad"))
David Majnemer654e1302015-07-31 17:58:14 +00005105 return true;
5106
5107 while (Lex.getKind() != lltok::rsquare) {
5108 // If this isn't the first argument, we need a comma.
5109 if (!Args.empty() &&
5110 ParseToken(lltok::comma, "expected ',' in argument list"))
5111 return true;
5112
5113 // Parse the argument.
5114 LocTy ArgLoc;
5115 Type *ArgTy = nullptr;
5116 if (ParseType(ArgTy, ArgLoc))
5117 return true;
5118
5119 Value *V;
5120 if (ArgTy->isMetadataTy()) {
5121 if (ParseMetadataAsValue(V, PFS))
5122 return true;
5123 } else {
5124 if (ParseValue(ArgTy, V, PFS))
5125 return true;
5126 }
5127 Args.push_back(V);
5128 }
5129
5130 Lex.Lex(); // Lex the ']'.
5131 return false;
5132}
5133
5134/// ParseCleanupRet
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005135/// ::= 'cleanupret' Value unwind ('to' 'caller' | TypeAndValue)
David Majnemer654e1302015-07-31 17:58:14 +00005136bool LLParser::ParseCleanupRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005137 Value *CleanupPad = nullptr;
David Majnemer654e1302015-07-31 17:58:14 +00005138
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005139 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5140 return true;
David Majnemer654e1302015-07-31 17:58:14 +00005141
5142 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in cleanupret"))
5143 return true;
5144
5145 BasicBlock *UnwindBB = nullptr;
5146 if (Lex.getKind() == lltok::kw_to) {
5147 Lex.Lex();
5148 if (ParseToken(lltok::kw_caller, "expected 'caller' in cleanupret"))
5149 return true;
5150 } else {
5151 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5152 return true;
5153 }
5154 }
5155
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005156 Inst = CleanupReturnInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
David Majnemer654e1302015-07-31 17:58:14 +00005157 return false;
5158}
5159
5160/// ParseCatchRet
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005161/// ::= 'catchret' Value 'to' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005162bool LLParser::ParseCatchRet(Instruction *&Inst, PerFunctionState &PFS) {
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005163 Value *CatchPad = nullptr;
David Majnemer0bc0eef2015-08-15 02:46:08 +00005164
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005165 if (ParseValue(Type::getTokenTy(Context), CatchPad, PFS, OC_CatchPad))
David Majnemer0bc0eef2015-08-15 02:46:08 +00005166 return true;
5167
David Majnemer0bc0eef2015-08-15 02:46:08 +00005168 BasicBlock *BB;
5169 if (ParseToken(lltok::kw_to, "expected 'to' in catchret") ||
5170 ParseTypeAndBasicBlock(BB, PFS))
5171 return true;
5172
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005173 Inst = CatchReturnInst::Create(cast<CatchPadInst>(CatchPad), BB);
David Majnemer654e1302015-07-31 17:58:14 +00005174 return false;
5175}
5176
5177/// ParseCatchPad
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005178/// ::= 'catchpad' ParamList 'to' TypeAndValue 'unwind' TypeAndValue
David Majnemer654e1302015-07-31 17:58:14 +00005179bool LLParser::ParseCatchPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer654e1302015-07-31 17:58:14 +00005180 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005181 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005182 return true;
5183
5184 BasicBlock *NormalBB, *UnwindBB;
5185 if (ParseToken(lltok::kw_to, "expected 'to' in catchpad") ||
5186 ParseTypeAndBasicBlock(NormalBB, PFS) ||
5187 ParseToken(lltok::kw_unwind, "expected 'unwind' in catchpad") ||
5188 ParseTypeAndBasicBlock(UnwindBB, PFS))
5189 return true;
5190
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005191 Inst = CatchPadInst::Create(NormalBB, UnwindBB, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005192 return false;
5193}
5194
5195/// ParseTerminatePad
5196/// ::= 'terminatepad' ParamList 'to' TypeAndValue
5197bool LLParser::ParseTerminatePad(Instruction *&Inst, PerFunctionState &PFS) {
5198 SmallVector<Value *, 8> Args;
5199 if (ParseExceptionArgs(Args, PFS))
5200 return true;
5201
5202 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in terminatepad"))
5203 return true;
5204
5205 BasicBlock *UnwindBB = nullptr;
5206 if (Lex.getKind() == lltok::kw_to) {
5207 Lex.Lex();
5208 if (ParseToken(lltok::kw_caller, "expected 'caller' in terminatepad"))
5209 return true;
5210 } else {
5211 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5212 return true;
5213 }
5214 }
5215
5216 Inst = TerminatePadInst::Create(Context, UnwindBB, Args);
5217 return false;
5218}
5219
5220/// ParseCleanupPad
5221/// ::= 'cleanuppad' ParamList
5222bool LLParser::ParseCleanupPad(Instruction *&Inst, PerFunctionState &PFS) {
David Majnemer654e1302015-07-31 17:58:14 +00005223 SmallVector<Value *, 8> Args;
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005224 if (ParseExceptionArgs(Args, PFS))
David Majnemer654e1302015-07-31 17:58:14 +00005225 return true;
5226
Joseph Tremoulet8220bcc2015-08-23 00:26:33 +00005227 Inst = CleanupPadInst::Create(Context, Args);
David Majnemer654e1302015-07-31 17:58:14 +00005228 return false;
5229}
5230
5231/// ParseCatchEndPad
5232/// ::= 'catchendpad' unwind ('to' 'caller' | TypeAndValue)
5233bool LLParser::ParseCatchEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5234 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5235 return true;
5236
5237 BasicBlock *UnwindBB = nullptr;
5238 if (Lex.getKind() == lltok::kw_to) {
5239 Lex.Lex();
5240 if (Lex.getKind() == lltok::kw_caller) {
5241 Lex.Lex();
5242 } else {
5243 return true;
5244 }
5245 } else {
5246 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5247 return true;
5248 }
5249 }
5250
5251 Inst = CatchEndPadInst::Create(Context, UnwindBB);
5252 return false;
5253}
5254
Joseph Tremoulet9ce71f72015-09-03 09:09:43 +00005255/// ParseCatchEndPad
5256/// ::= 'cleanupendpad' Value unwind ('to' 'caller' | TypeAndValue)
5257bool LLParser::ParseCleanupEndPad(Instruction *&Inst, PerFunctionState &PFS) {
5258 Value *CleanupPad = nullptr;
5259
5260 if (ParseValue(Type::getTokenTy(Context), CleanupPad, PFS, OC_CleanupPad))
5261 return true;
5262
5263 if (ParseToken(lltok::kw_unwind, "expected 'unwind' in catchendpad"))
5264 return true;
5265
5266 BasicBlock *UnwindBB = nullptr;
5267 if (Lex.getKind() == lltok::kw_to) {
5268 Lex.Lex();
5269 if (Lex.getKind() == lltok::kw_caller) {
5270 Lex.Lex();
5271 } else {
5272 return true;
5273 }
5274 } else {
5275 if (ParseTypeAndBasicBlock(UnwindBB, PFS)) {
5276 return true;
5277 }
5278 }
5279
5280 Inst = CleanupEndPadInst::Create(cast<CleanupPadInst>(CleanupPad), UnwindBB);
5281 return false;
5282}
5283
Chris Lattnerac161bf2009-01-02 07:01:27 +00005284//===----------------------------------------------------------------------===//
5285// Binary Operators.
5286//===----------------------------------------------------------------------===//
5287
5288/// ParseArithmetic
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005289/// ::= ArithmeticOps TypeAndValue ',' Value
5290///
5291/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
5292/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerac161bf2009-01-02 07:01:27 +00005293bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005294 unsigned Opc, unsigned OperandType) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005295 LocTy Loc; Value *LHS, *RHS;
5296 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5297 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
5298 ParseValue(LHS->getType(), RHS, PFS))
5299 return true;
5300
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005301 bool Valid;
5302 switch (OperandType) {
Torok Edwinfbcc6632009-07-14 16:55:14 +00005303 default: llvm_unreachable("Unknown operand type!");
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005304 case 0: // int or FP.
Duncan Sands9dff9be2010-02-15 16:12:20 +00005305 Valid = LHS->getType()->isIntOrIntVectorTy() ||
5306 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005307 break;
Duncan Sands9dff9be2010-02-15 16:12:20 +00005308 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
5309 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005310 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005311
Chris Lattnereeefa9a2009-01-05 08:24:46 +00005312 if (!Valid)
5313 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005314
Chris Lattnerac161bf2009-01-02 07:01:27 +00005315 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5316 return false;
5317}
5318
5319/// ParseLogical
5320/// ::= ArithmeticOps TypeAndValue ',' Value {
5321bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
5322 unsigned Opc) {
5323 LocTy Loc; Value *LHS, *RHS;
5324 if (ParseTypeAndValue(LHS, Loc, PFS) ||
5325 ParseToken(lltok::comma, "expected ',' in logical operation") ||
5326 ParseValue(LHS->getType(), RHS, PFS))
5327 return true;
5328
Duncan Sands9dff9be2010-02-15 16:12:20 +00005329 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005330 return Error(Loc,"instruction requires integer or integer vector operands");
5331
5332 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
5333 return false;
5334}
5335
5336
5337/// ParseCompare
5338/// ::= 'icmp' IPredicates TypeAndValue ',' Value
5339/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005340bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
5341 unsigned Opc) {
5342 // Parse the integer/fp comparison predicate.
5343 LocTy Loc;
5344 unsigned Pred;
5345 Value *LHS, *RHS;
5346 if (ParseCmpPredicate(Pred, Opc) ||
5347 ParseTypeAndValue(LHS, Loc, PFS) ||
5348 ParseToken(lltok::comma, "expected ',' after compare value") ||
5349 ParseValue(LHS->getType(), RHS, PFS))
5350 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005351
Chris Lattnerac161bf2009-01-02 07:01:27 +00005352 if (Opc == Instruction::FCmp) {
Duncan Sands9dff9be2010-02-15 16:12:20 +00005353 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005354 return Error(Loc, "fcmp requires floating point operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005355 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewyckya21d3da2009-07-08 03:04:38 +00005356 } else {
5357 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sands9dff9be2010-02-15 16:12:20 +00005358 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem3924cb02011-12-05 06:29:09 +00005359 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005360 return Error(Loc, "icmp requires integer operands");
Dan Gohmanad1f0a12009-08-25 23:17:54 +00005361 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005362 }
5363 return false;
5364}
5365
5366//===----------------------------------------------------------------------===//
5367// Other Instructions.
5368//===----------------------------------------------------------------------===//
5369
5370
5371/// ParseCast
5372/// ::= CastOpc TypeAndValue 'to' Type
5373bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
5374 unsigned Opc) {
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005375 LocTy Loc;
5376 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005377 Type *DestTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005378 if (ParseTypeAndValue(Op, Loc, PFS) ||
5379 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
5380 ParseType(DestTy))
5381 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005382
Chris Lattner89d856e2009-03-01 00:53:13 +00005383 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
5384 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005385 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005386 getTypeString(Op->getType()) + "' to '" +
5387 getTypeString(DestTy) + "'");
Chris Lattner89d856e2009-03-01 00:53:13 +00005388 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005389 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
5390 return false;
5391}
5392
5393/// ParseSelect
5394/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5395bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
5396 LocTy Loc;
5397 Value *Op0, *Op1, *Op2;
5398 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5399 ParseToken(lltok::comma, "expected ',' after select condition") ||
5400 ParseTypeAndValue(Op1, PFS) ||
5401 ParseToken(lltok::comma, "expected ',' after select value") ||
5402 ParseTypeAndValue(Op2, PFS))
5403 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005404
Chris Lattnerac161bf2009-01-02 07:01:27 +00005405 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
5406 return Error(Loc, Reason);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005407
Chris Lattnerac161bf2009-01-02 07:01:27 +00005408 Inst = SelectInst::Create(Op0, Op1, Op2);
5409 return false;
5410}
5411
Chris Lattnerb55ab542009-01-05 08:18:44 +00005412/// ParseVA_Arg
5413/// ::= 'va_arg' TypeAndValue ',' Type
5414bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005415 Value *Op;
Craig Topper2617dcc2014-04-15 06:32:26 +00005416 Type *EltTy = nullptr;
Chris Lattnerb55ab542009-01-05 08:18:44 +00005417 LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005418 if (ParseTypeAndValue(Op, PFS) ||
5419 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattnerb55ab542009-01-05 08:18:44 +00005420 ParseType(EltTy, TypeLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005421 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005422
Chris Lattnerb55ab542009-01-05 08:18:44 +00005423 if (!EltTy->isFirstClassType())
5424 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005425
5426 Inst = new VAArgInst(Op, EltTy);
5427 return false;
5428}
5429
5430/// ParseExtractElement
5431/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
5432bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
5433 LocTy Loc;
5434 Value *Op0, *Op1;
5435 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5436 ParseToken(lltok::comma, "expected ',' after extract value") ||
5437 ParseTypeAndValue(Op1, PFS))
5438 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005439
Chris Lattnerac161bf2009-01-02 07:01:27 +00005440 if (!ExtractElementInst::isValidOperands(Op0, Op1))
5441 return Error(Loc, "invalid extractelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005442
Eric Christopherc9742252009-07-25 02:28:41 +00005443 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005444 return false;
5445}
5446
5447/// ParseInsertElement
5448/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5449bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
5450 LocTy Loc;
5451 Value *Op0, *Op1, *Op2;
5452 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5453 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5454 ParseTypeAndValue(Op1, PFS) ||
5455 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
5456 ParseTypeAndValue(Op2, PFS))
5457 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005458
Chris Lattnerac161bf2009-01-02 07:01:27 +00005459 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopherfef8db62009-07-23 01:01:32 +00005460 return Error(Loc, "invalid insertelement operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005461
Chris Lattnerac161bf2009-01-02 07:01:27 +00005462 Inst = InsertElementInst::Create(Op0, Op1, Op2);
5463 return false;
5464}
5465
5466/// ParseShuffleVector
5467/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
5468bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
5469 LocTy Loc;
5470 Value *Op0, *Op1, *Op2;
5471 if (ParseTypeAndValue(Op0, Loc, PFS) ||
5472 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
5473 ParseTypeAndValue(Op1, PFS) ||
5474 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
5475 ParseTypeAndValue(Op2, PFS))
5476 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005477
Chris Lattnerac161bf2009-01-02 07:01:27 +00005478 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperc1a6f982012-02-01 23:43:12 +00005479 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005480
Chris Lattnerac161bf2009-01-02 07:01:27 +00005481 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
5482 return false;
5483}
5484
5485/// ParsePHI
Chris Lattnerc05471e2009-10-18 05:27:44 +00005486/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005487int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005488 Type *Ty = nullptr; LocTy TypeLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005489 Value *Op0, *Op1;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005490
Chris Lattnerb1ed91f2011-07-09 17:41:24 +00005491 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005492 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
5493 ParseValue(Ty, Op0, PFS) ||
5494 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005495 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005496 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5497 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005498
Chris Lattnerf4f03422009-12-30 05:27:33 +00005499 bool AteExtraComma = false;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005500 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
5501 while (1) {
5502 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005503
Chris Lattner3822f632009-01-02 08:05:26 +00005504 if (!EatIfPresent(lltok::comma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005505 break;
5506
Chris Lattnerf4f03422009-12-30 05:27:33 +00005507 if (Lex.getKind() == lltok::MetadataVar) {
5508 AteExtraComma = true;
Devang Patel8f842d32009-10-16 18:45:49 +00005509 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005510 }
Devang Patel8f842d32009-10-16 18:45:49 +00005511
Chris Lattner3822f632009-01-02 08:05:26 +00005512 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005513 ParseValue(Ty, Op0, PFS) ||
5514 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson55f1c092009-08-13 21:58:54 +00005515 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005516 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
5517 return true;
5518 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005519
Chris Lattnerac161bf2009-01-02 07:01:27 +00005520 if (!Ty->isFirstClassType())
5521 return Error(TypeLoc, "phi node must have first class type");
5522
Jay Foad52131342011-03-30 11:28:46 +00005523 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerac161bf2009-01-02 07:01:27 +00005524 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
5525 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
5526 Inst = PN;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005527 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005528}
5529
Bill Wendlingfae14752011-08-12 20:24:12 +00005530/// ParseLandingPad
5531/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
5532/// Clause
5533/// ::= 'catch' TypeAndValue
5534/// ::= 'filter'
5535/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
5536bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005537 Type *Ty = nullptr; LocTy TyLoc;
Bill Wendlingfae14752011-08-12 20:24:12 +00005538
David Majnemer7fddecc2015-06-17 20:52:32 +00005539 if (ParseType(Ty, TyLoc))
Bill Wendlingfae14752011-08-12 20:24:12 +00005540 return true;
5541
David Majnemer7fddecc2015-06-17 20:52:32 +00005542 std::unique_ptr<LandingPadInst> LP(LandingPadInst::Create(Ty, 0));
Bill Wendlingfae14752011-08-12 20:24:12 +00005543 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
5544
5545 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
5546 LandingPadInst::ClauseType CT;
5547 if (EatIfPresent(lltok::kw_catch))
5548 CT = LandingPadInst::Catch;
5549 else if (EatIfPresent(lltok::kw_filter))
5550 CT = LandingPadInst::Filter;
5551 else
5552 return TokError("expected 'catch' or 'filter' clause type");
5553
Rafael Espindola4dc5dfc2014-06-04 18:51:31 +00005554 Value *V;
5555 LocTy VLoc;
Owen Andersonf8f259d2015-03-09 07:13:42 +00005556 if (ParseTypeAndValue(V, VLoc, PFS))
Bill Wendlingfae14752011-08-12 20:24:12 +00005557 return true;
Bill Wendlingfae14752011-08-12 20:24:12 +00005558
Bill Wendlinga52aa3c2011-08-12 20:52:25 +00005559 // A 'catch' type expects a non-array constant. A filter clause expects an
5560 // array constant.
5561 if (CT == LandingPadInst::Catch) {
5562 if (isa<ArrayType>(V->getType()))
5563 Error(VLoc, "'catch' clause has an invalid type");
5564 } else {
5565 if (!isa<ArrayType>(V->getType()))
5566 Error(VLoc, "'filter' clause has an invalid type");
5567 }
5568
Owen Andersonf8f259d2015-03-09 07:13:42 +00005569 Constant *CV = dyn_cast<Constant>(V);
5570 if (!CV)
5571 return Error(VLoc, "clause argument must be a constant");
5572 LP->addClause(CV);
Bill Wendlingfae14752011-08-12 20:24:12 +00005573 }
5574
Owen Andersonf8f259d2015-03-09 07:13:42 +00005575 Inst = LP.release();
Bill Wendlingfae14752011-08-12 20:24:12 +00005576 return false;
5577}
5578
Chris Lattnerac161bf2009-01-02 07:01:27 +00005579/// ParseCall
Reid Kleckner5772b772014-04-24 20:14:34 +00005580/// ::= 'call' OptionalCallingConv OptionalAttrs Type Value
5581/// ParameterList OptionalAttrs
5582/// ::= 'tail' 'call' OptionalCallingConv OptionalAttrs Type Value
5583/// ParameterList OptionalAttrs
5584/// ::= 'musttail' 'call' OptionalCallingConv OptionalAttrs Type Value
Chris Lattnerac161bf2009-01-02 07:01:27 +00005585/// ParameterList OptionalAttrs
5586bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
Reid Kleckner5772b772014-04-24 20:14:34 +00005587 CallInst::TailCallKind TCK) {
Bill Wendling50d27842012-10-15 20:35:56 +00005588 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingb32b0412013-02-08 06:32:06 +00005589 std::vector<unsigned> FwdRefAttrGrps;
Michael Gottesman41748d72013-06-27 00:25:01 +00005590 LocTy BuiltinLoc;
Alexey Samsonov17a9cff2014-09-10 18:00:17 +00005591 unsigned CC;
Craig Topper2617dcc2014-04-15 06:32:26 +00005592 Type *RetType = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005593 LocTy RetTypeLoc;
5594 ValID CalleeID;
5595 SmallVector<ParamInfo, 16> ArgList;
5596 LocTy CallLoc = Lex.getLoc();
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005597
Reid Kleckner5772b772014-04-24 20:14:34 +00005598 if ((TCK != CallInst::TCK_None &&
5599 ParseToken(lltok::kw_call, "expected 'tail call'")) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005600 ParseOptionalCallingConv(CC) ||
Bill Wendling34c2eb22012-12-04 23:40:58 +00005601 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnerf880ca22009-03-09 04:49:14 +00005602 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerac161bf2009-01-02 07:01:27 +00005603 ParseValID(CalleeID) ||
Reid Kleckner83498642014-08-26 00:33:28 +00005604 ParseParameterList(ArgList, PFS, TCK == CallInst::TCK_MustTail,
5605 PFS.getFunction().isVarArg()) ||
Bill Wendling09bd1f72013-02-22 00:12:35 +00005606 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false,
Michael Gottesman41748d72013-06-27 00:25:01 +00005607 BuiltinLoc))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005608 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005609
Chris Lattnerac161bf2009-01-02 07:01:27 +00005610 // If RetType is a non-function pointer type, then this is the short syntax
5611 // for the call, which means that RetType is just the return type. Infer the
5612 // rest of the function argument types from the arguments that are present.
David Blaikie23af6482015-04-16 23:24:18 +00005613 FunctionType *Ty = dyn_cast<FunctionType>(RetType);
5614 if (!Ty) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005615 // Pull out the types of all of the arguments...
Jay Foadb804a2b2011-07-12 14:06:48 +00005616 std::vector<Type*> ParamTypes;
Eli Friedman6cf51412010-07-24 23:06:59 +00005617 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
5618 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005619
Chris Lattnerac161bf2009-01-02 07:01:27 +00005620 if (!FunctionType::isValidReturnType(RetType))
5621 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005622
Owen Anderson4056ca92009-07-29 22:17:13 +00005623 Ty = FunctionType::get(RetType, ParamTypes, false);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005624 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005625
David Blaikie41ba2b42015-07-27 23:32:19 +00005626 CalleeID.FTy = Ty;
5627
Chris Lattnerac161bf2009-01-02 07:01:27 +00005628 // Look up the callee.
5629 Value *Callee;
David Blaikie23af6482015-04-16 23:24:18 +00005630 if (ConvertValIDToValue(PointerType::getUnqual(Ty), CalleeID, Callee, &PFS))
5631 return true;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005632
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005633 // Set up the Attribute for the function.
Bill Wendlingf5075a42013-01-27 02:24:02 +00005634 SmallVector<AttributeSet, 8> Attrs;
Bill Wendling3bef2dd2012-09-19 23:54:18 +00005635 if (RetAttrs.hasAttributes())
Bill Wendlingf5075a42013-01-27 02:24:02 +00005636 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5637 AttributeSet::ReturnIndex,
5638 RetAttrs));
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005639
Chris Lattnerac161bf2009-01-02 07:01:27 +00005640 SmallVector<Value*, 8> Args;
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005641
Chris Lattnerac161bf2009-01-02 07:01:27 +00005642 // Loop through FunctionType's arguments and ensure they are specified
5643 // correctly. Also, gather any parameter attributes.
5644 FunctionType::param_iterator I = Ty->param_begin();
5645 FunctionType::param_iterator E = Ty->param_end();
5646 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005647 Type *ExpectedTy = nullptr;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005648 if (I != E) {
5649 ExpectedTy = *I++;
5650 } else if (!Ty->isVarArg()) {
5651 return Error(ArgList[i].Loc, "too many arguments specified");
5652 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005653
Chris Lattnerac161bf2009-01-02 07:01:27 +00005654 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
5655 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0f214eb2011-06-18 21:18:23 +00005656 getTypeString(ExpectedTy) + "'");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005657 Args.push_back(ArgList[i].V);
Bill Wendlingfe0021a2013-01-31 00:29:54 +00005658 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
5659 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlingf5075a42013-01-27 02:24:02 +00005660 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
5661 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005662 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005663
Chris Lattnerac161bf2009-01-02 07:01:27 +00005664 if (I != E)
5665 return Error(CallLoc, "not enough parameters specified for call");
5666
David Majnemer8d22abd2015-02-23 00:01:32 +00005667 if (FnAttrs.hasAttributes()) {
5668 if (FnAttrs.hasAlignmentAttr())
5669 return Error(CallLoc, "call instructions may not have an alignment");
5670
Bill Wendlingf5075a42013-01-27 02:24:02 +00005671 Attrs.push_back(AttributeSet::get(RetType->getContext(),
5672 AttributeSet::FunctionIndex,
5673 FnAttrs));
David Majnemer8d22abd2015-02-23 00:01:32 +00005674 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005675
Bill Wendling3d7b0b82012-12-19 07:18:57 +00005676 // Finish off the Attribute and check them
Bill Wendlinge94d8432012-12-07 23:16:57 +00005677 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005678
David Blaikie348de692015-04-23 21:36:23 +00005679 CallInst *CI = CallInst::Create(Ty, Callee, Args);
Reid Kleckner5772b772014-04-24 20:14:34 +00005680 CI->setTailCallKind(TCK);
Chris Lattnerac161bf2009-01-02 07:01:27 +00005681 CI->setCallingConv(CC);
5682 CI->setAttributes(PAL);
Bill Wendlingb32b0412013-02-08 06:32:06 +00005683 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005684 Inst = CI;
5685 return false;
5686}
5687
5688//===----------------------------------------------------------------------===//
5689// Memory Instructions.
5690//===----------------------------------------------------------------------===//
5691
5692/// ParseAlloc
David Majnemerc4ab61c2014-03-09 06:41:58 +00005693/// ::= 'alloca' 'inalloca'? Type (',' TypeAndValue)? (',' 'align' i32)?
Chris Lattner78103722011-06-17 03:16:47 +00005694int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005695 Value *Size = nullptr;
David Majnemera3b0eb22015-02-16 08:38:03 +00005696 LocTy SizeLoc, TyLoc;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005697 unsigned Alignment = 0;
Craig Topper2617dcc2014-04-15 06:32:26 +00005698 Type *Ty = nullptr;
David Majnemerc4ab61c2014-03-09 06:41:58 +00005699
5700 bool IsInAlloca = EatIfPresent(lltok::kw_inalloca);
5701
David Majnemera3b0eb22015-02-16 08:38:03 +00005702 if (ParseType(Ty, TyLoc)) return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005703
David Majnemera3b0eb22015-02-16 08:38:03 +00005704 if (Ty->isFunctionTy() || !PointerType::isValidElementType(Ty))
5705 return Error(TyLoc, "invalid type for alloca");
David Majnemerfad5a312015-02-11 09:13:11 +00005706
Chris Lattnerb2f39502009-12-30 05:44:30 +00005707 bool AteExtraComma = false;
Chris Lattner3822f632009-01-02 08:05:26 +00005708 if (EatIfPresent(lltok::comma)) {
David Majnemerc4ab61c2014-03-09 06:41:58 +00005709 if (Lex.getKind() == lltok::kw_align) {
5710 if (ParseOptionalAlignment(Alignment)) return true;
5711 } else if (Lex.getKind() == lltok::MetadataVar) {
5712 AteExtraComma = true;
5713 } else {
5714 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
5715 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5716 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005717 }
5718 }
5719
Dan Gohman2140a742010-05-28 01:14:11 +00005720 if (Size && !Size->getType()->isIntegerTy())
5721 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00005722
Reid Kleckner436c42e2014-01-17 23:58:17 +00005723 AllocaInst *AI = new AllocaInst(Ty, Size, Alignment);
5724 AI->setUsedWithInAlloca(IsInAlloca);
5725 Inst = AI;
Chris Lattner78103722011-06-17 03:16:47 +00005726 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005727}
5728
5729/// ParseLoad
Eli Friedman02e737b2011-08-12 22:50:01 +00005730/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman26ee2b82012-11-15 22:34:00 +00005731/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedman02e737b2011-08-12 22:50:01 +00005732/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005733int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005734 Value *Val; LocTy Loc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005735 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005736 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005737 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005738 AtomicOrdering Ordering = NotAtomic;
5739 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005740
5741 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005742 isAtomic = true;
5743 Lex.Lex();
5744 }
5745
Chris Lattnerbc639292011-11-27 06:56:53 +00005746 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005747 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005748 isVolatile = true;
5749 Lex.Lex();
5750 }
5751
David Blaikie15d9a4c2015-04-06 20:59:48 +00005752 Type *Ty;
David Blaikiea79ac142015-02-27 21:17:42 +00005753 LocTy ExplicitTypeLoc = Lex.getLoc();
5754 if (ParseType(Ty) ||
5755 ParseToken(lltok::comma, "expected comma after load's type") ||
5756 ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005757 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005758 ParseOptionalCommaAlign(Alignment, AteExtraComma))
5759 return true;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005760
David Blaikie15d9a4c2015-04-06 20:59:48 +00005761 if (!Val->getType()->isPointerTy() || !Ty->isFirstClassType())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005762 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman59b66882011-08-09 23:02:53 +00005763 if (isAtomic && !Alignment)
5764 return Error(Loc, "atomic load must have explicit non-zero alignment");
5765 if (Ordering == Release || Ordering == AcquireRelease)
5766 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005767
David Blaikiea79ac142015-02-27 21:17:42 +00005768 if (Ty != cast<PointerType>(Val->getType())->getElementType())
5769 return Error(ExplicitTypeLoc,
5770 "explicit pointee type doesn't match operand's pointee type");
5771
David Blaikie15d9a4c2015-04-06 20:59:48 +00005772 Inst = new LoadInst(Ty, Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005773 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005774}
5775
5776/// ParseStore
Eli Friedman02e737b2011-08-12 22:50:01 +00005777
5778/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
5779/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman59b66882011-08-09 23:02:53 +00005780/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerbc639292011-11-27 06:56:53 +00005781int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00005782 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelea8a4b92009-09-17 23:04:48 +00005783 unsigned Alignment = 0;
Chris Lattnerb2f39502009-12-30 05:44:30 +00005784 bool AteExtraComma = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005785 bool isAtomic = false;
Eli Friedman59b66882011-08-09 23:02:53 +00005786 AtomicOrdering Ordering = NotAtomic;
5787 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005788
5789 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005790 isAtomic = true;
5791 Lex.Lex();
5792 }
5793
Chris Lattnerbc639292011-11-27 06:56:53 +00005794 bool isVolatile = false;
Eli Friedman02e737b2011-08-12 22:50:01 +00005795 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedman02e737b2011-08-12 22:50:01 +00005796 isVolatile = true;
5797 Lex.Lex();
5798 }
5799
Chris Lattnerac161bf2009-01-02 07:01:27 +00005800 if (ParseTypeAndValue(Val, Loc, PFS) ||
5801 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005802 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman59b66882011-08-09 23:02:53 +00005803 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerb2f39502009-12-30 05:44:30 +00005804 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00005805 return true;
Devang Patelea8a4b92009-09-17 23:04:48 +00005806
Duncan Sands19d0b472010-02-16 11:11:14 +00005807 if (!Ptr->getType()->isPointerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005808 return Error(PtrLoc, "store operand must be a pointer");
5809 if (!Val->getType()->isFirstClassType())
5810 return Error(Loc, "store operand must be a first class value");
5811 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5812 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman59b66882011-08-09 23:02:53 +00005813 if (isAtomic && !Alignment)
5814 return Error(Loc, "atomic store must have explicit non-zero alignment");
5815 if (Ordering == Acquire || Ordering == AcquireRelease)
5816 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005817
Eli Friedman59b66882011-08-09 23:02:53 +00005818 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerb2f39502009-12-30 05:44:30 +00005819 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00005820}
5821
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005822/// ParseCmpXchg
Tim Northover420a2162014-06-13 14:24:07 +00005823/// ::= 'cmpxchg' 'weak'? 'volatile'? TypeAndValue ',' TypeAndValue ','
5824/// TypeAndValue 'singlethread'? AtomicOrdering AtomicOrdering
Eli Friedman02e737b2011-08-12 22:50:01 +00005825int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005826 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
5827 bool AteExtraComma = false;
Tim Northovere94a5182014-03-11 10:48:52 +00005828 AtomicOrdering SuccessOrdering = NotAtomic;
5829 AtomicOrdering FailureOrdering = NotAtomic;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005830 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005831 bool isVolatile = false;
Tim Northover420a2162014-06-13 14:24:07 +00005832 bool isWeak = false;
5833
5834 if (EatIfPresent(lltok::kw_weak))
5835 isWeak = true;
Eli Friedman02e737b2011-08-12 22:50:01 +00005836
5837 if (EatIfPresent(lltok::kw_volatile))
5838 isVolatile = true;
5839
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005840 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5841 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
5842 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
5843 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
5844 ParseTypeAndValue(New, NewLoc, PFS) ||
Tim Northovere94a5182014-03-11 10:48:52 +00005845 ParseScopeAndOrdering(true /*Always atomic*/, Scope, SuccessOrdering) ||
5846 ParseOrdering(FailureOrdering))
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005847 return true;
5848
Tim Northovere94a5182014-03-11 10:48:52 +00005849 if (SuccessOrdering == Unordered || FailureOrdering == Unordered)
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005850 return TokError("cmpxchg cannot be unordered");
Tim Northovere94a5182014-03-11 10:48:52 +00005851 if (SuccessOrdering < FailureOrdering)
5852 return TokError("cmpxchg must be at least as ordered on success as failure");
5853 if (FailureOrdering == Release || FailureOrdering == AcquireRelease)
5854 return TokError("cmpxchg failure ordering cannot include release semantics");
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005855 if (!Ptr->getType()->isPointerTy())
5856 return Error(PtrLoc, "cmpxchg operand must be a pointer");
5857 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
5858 return Error(CmpLoc, "compare value and pointer type do not match");
5859 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
5860 return Error(NewLoc, "new value and pointer type do not match");
5861 if (!New->getType()->isIntegerTy())
5862 return Error(NewLoc, "cmpxchg operand must be an integer");
5863 unsigned Size = New->getType()->getPrimitiveSizeInBits();
5864 if (Size < 8 || (Size & (Size - 1)))
5865 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
5866 " integer");
5867
Tim Northover420a2162014-06-13 14:24:07 +00005868 AtomicCmpXchgInst *CXI = new AtomicCmpXchgInst(
5869 Ptr, Cmp, New, SuccessOrdering, FailureOrdering, Scope);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005870 CXI->setVolatile(isVolatile);
Tim Northover420a2162014-06-13 14:24:07 +00005871 CXI->setWeak(isWeak);
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005872 Inst = CXI;
5873 return AteExtraComma ? InstExtraComma : InstNormal;
5874}
5875
5876/// ParseAtomicRMW
Eli Friedman02e737b2011-08-12 22:50:01 +00005877/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
5878/// 'singlethread'? AtomicOrdering
5879int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005880 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
5881 bool AteExtraComma = false;
5882 AtomicOrdering Ordering = NotAtomic;
5883 SynchronizationScope Scope = CrossThread;
Eli Friedman02e737b2011-08-12 22:50:01 +00005884 bool isVolatile = false;
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005885 AtomicRMWInst::BinOp Operation;
Eli Friedman02e737b2011-08-12 22:50:01 +00005886
5887 if (EatIfPresent(lltok::kw_volatile))
5888 isVolatile = true;
5889
Eli Friedmanc9a551e2011-07-28 21:48:00 +00005890 switch (Lex.getKind()) {
5891 default: return TokError("expected binary operation in atomicrmw");
5892 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
5893 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
5894 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
5895 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
5896 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
5897 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
5898 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
5899 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
5900 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
5901 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
5902 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
5903 }
5904 Lex.Lex(); // Eat the operation.
5905
5906 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
5907 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
5908 ParseTypeAndValue(Val, ValLoc, PFS) ||
5909 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5910 return true;
5911
5912 if (Ordering == Unordered)
5913 return TokError("atomicrmw cannot be unordered");
5914 if (!Ptr->getType()->isPointerTy())
5915 return Error(PtrLoc, "atomicrmw operand must be a pointer");
5916 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
5917 return Error(ValLoc, "atomicrmw value and pointer type do not match");
5918 if (!Val->getType()->isIntegerTy())
5919 return Error(ValLoc, "atomicrmw operand must be an integer");
5920 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
5921 if (Size < 8 || (Size & (Size - 1)))
5922 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
5923 " integer");
5924
5925 AtomicRMWInst *RMWI =
5926 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
5927 RMWI->setVolatile(isVolatile);
5928 Inst = RMWI;
5929 return AteExtraComma ? InstExtraComma : InstNormal;
5930}
5931
Eli Friedmanfee02c62011-07-25 23:16:38 +00005932/// ParseFence
5933/// ::= 'fence' 'singlethread'? AtomicOrdering
5934int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
5935 AtomicOrdering Ordering = NotAtomic;
5936 SynchronizationScope Scope = CrossThread;
5937 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
5938 return true;
5939
5940 if (Ordering == Unordered)
5941 return TokError("fence cannot be unordered");
5942 if (Ordering == Monotonic)
5943 return TokError("fence cannot be monotonic");
5944
5945 Inst = new FenceInst(Context, Ordering, Scope);
5946 return InstNormal;
5947}
5948
Chris Lattnerac161bf2009-01-02 07:01:27 +00005949/// ParseGetElementPtr
Dan Gohman1639c392009-07-27 21:53:46 +00005950/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerf4f03422009-12-30 05:27:33 +00005951int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Craig Topper2617dcc2014-04-15 06:32:26 +00005952 Value *Ptr = nullptr;
5953 Value *Val = nullptr;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005954 LocTy Loc, EltLoc;
Dan Gohman1639c392009-07-27 21:53:46 +00005955
Dan Gohman16cbbe42009-07-29 15:58:36 +00005956 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohman1639c392009-07-27 21:53:46 +00005957
David Blaikie79e6c742015-02-27 19:29:02 +00005958 Type *Ty = nullptr;
5959 LocTy ExplicitTypeLoc = Lex.getLoc();
5960 if (ParseType(Ty) ||
5961 ParseToken(lltok::comma, "expected comma after getelementptr's type") ||
5962 ParseTypeAndValue(Ptr, Loc, PFS))
5963 return true;
5964
Eli Benderskyd9806682013-04-22 17:03:42 +00005965 Type *BaseType = Ptr->getType();
5966 PointerType *BasePointerType = dyn_cast<PointerType>(BaseType->getScalarType());
5967 if (!BasePointerType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00005968 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005969
David Blaikie8d757942015-03-09 23:08:44 +00005970 if (Ty != BasePointerType->getElementType())
5971 return Error(ExplicitTypeLoc,
5972 "explicit pointee type doesn't match operand's pointee type");
5973
Chris Lattnerac161bf2009-01-02 07:01:27 +00005974 SmallVector<Value*, 16> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005975 bool AteExtraComma = false;
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005976 // GEP returns a vector of pointers if at least one of parameters is a vector.
5977 // All vector parameters should have the same vector width.
5978 unsigned GEPWidth = BaseType->isVectorTy() ?
5979 BaseType->getVectorNumElements() : 0;
5980
Chris Lattner3822f632009-01-02 08:05:26 +00005981 while (EatIfPresent(lltok::comma)) {
Chris Lattnerf4f03422009-12-30 05:27:33 +00005982 if (Lex.getKind() == lltok::MetadataVar) {
5983 AteExtraComma = true;
Devang Patel52b17452009-10-13 18:49:55 +00005984 break;
Chris Lattnerf4f03422009-12-30 05:27:33 +00005985 }
Chris Lattner3822f632009-01-02 08:05:26 +00005986 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005987 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerac161bf2009-01-02 07:01:27 +00005988 return Error(EltLoc, "getelementptr index must be an integer");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005989
Nadav Rotem3924cb02011-12-05 06:29:09 +00005990 if (Val->getType()->isVectorTy()) {
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005991 unsigned ValNumEl = Val->getType()->getVectorNumElements();
5992 if (GEPWidth && GEPWidth != ValNumEl)
Nadav Rotem3924cb02011-12-05 06:29:09 +00005993 return Error(EltLoc,
5994 "getelementptr vector index has a wrong number of elements");
Elena Demikhovsky37a4da82015-07-09 07:42:48 +00005995 GEPWidth = ValNumEl;
Nadav Rotem3924cb02011-12-05 06:29:09 +00005996 }
Chris Lattnerac161bf2009-01-02 07:01:27 +00005997 Indices.push_back(Val);
5998 }
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00005999
Craig Toppere3dcce92015-08-01 22:20:21 +00006000 SmallPtrSet<Type*, 4> Visited;
David Blaikied33bad32015-04-17 22:32:13 +00006001 if (!Indices.empty() && !Ty->isSized(&Visited))
Eli Benderskyd9806682013-04-22 17:03:42 +00006002 return Error(Loc, "base element of getelementptr must be sized");
6003
David Blaikied33bad32015-04-17 22:32:13 +00006004 if (!GetElementPtrInst::getIndexedType(Ty, Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006005 return Error(Loc, "invalid getelementptr indices");
David Blaikiecd7b97e2015-03-14 21:11:24 +00006006 Inst = GetElementPtrInst::Create(Ty, Ptr, Indices);
Dan Gohman1639c392009-07-27 21:53:46 +00006007 if (InBounds)
Dan Gohman1b849082009-09-07 23:54:19 +00006008 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006009 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006010}
6011
6012/// ParseExtractValue
6013/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006014int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006015 Value *Val; LocTy Loc;
6016 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006017 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006018 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006019 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006020 return true;
6021
Chris Lattner392be582010-02-12 20:49:41 +00006022 if (!Val->getType()->isAggregateType())
6023 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerac161bf2009-01-02 07:01:27 +00006024
Jay Foad57aa6362011-07-13 10:26:04 +00006025 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006026 return Error(Loc, "invalid indices for extractvalue");
Jay Foad57aa6362011-07-13 10:26:04 +00006027 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006028 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006029}
6030
6031/// ParseInsertValue
6032/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnerf4f03422009-12-30 05:27:33 +00006033int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerac161bf2009-01-02 07:01:27 +00006034 Value *Val0, *Val1; LocTy Loc0, Loc1;
6035 SmallVector<unsigned, 4> Indices;
Chris Lattnerf4f03422009-12-30 05:27:33 +00006036 bool AteExtraComma;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006037 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
6038 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
6039 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnerf4f03422009-12-30 05:27:33 +00006040 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerac161bf2009-01-02 07:01:27 +00006041 return true;
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006042
Chris Lattner392be582010-02-12 20:49:41 +00006043 if (!Val0->getType()->isAggregateType())
6044 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbar7d6781b2009-09-20 02:20:51 +00006045
David Majnemer30074532015-02-11 07:43:58 +00006046 Type *IndexedType = ExtractValueInst::getIndexedType(Val0->getType(), Indices);
6047 if (!IndexedType)
Chris Lattnerac161bf2009-01-02 07:01:27 +00006048 return Error(Loc0, "invalid indices for insertvalue");
David Majnemer30074532015-02-11 07:43:58 +00006049 if (IndexedType != Val1->getType())
6050 return Error(Loc1, "insertvalue operand and field disagree in type: '" +
6051 getTypeString(Val1->getType()) + "' instead of '" +
6052 getTypeString(IndexedType) + "'");
Jay Foad57aa6362011-07-13 10:26:04 +00006053 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnerf4f03422009-12-30 05:27:33 +00006054 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerac161bf2009-01-02 07:01:27 +00006055}
Nick Lewycky49f89192009-04-04 07:22:01 +00006056
6057//===----------------------------------------------------------------------===//
6058// Embedded metadata.
6059//===----------------------------------------------------------------------===//
6060
6061/// ParseMDNodeVector
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006062/// ::= { Element (',' Element)* }
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006063/// Element
6064/// ::= 'null' | TypeAndValue
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006065bool LLParser::ParseMDNodeVector(SmallVectorImpl<Metadata *> &Elts) {
David Majnemer06f960d2014-12-11 20:44:09 +00006066 if (ParseToken(lltok::lbrace, "expected '{' here"))
6067 return true;
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006068
Dan Gohman1e0213a2010-07-13 19:33:27 +00006069 // Check for an empty list.
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006070 if (EatIfPresent(lltok::rbrace))
Dan Gohman1e0213a2010-07-13 19:33:27 +00006071 return false;
6072
Nick Lewycky49f89192009-04-04 07:22:01 +00006073 do {
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006074 // Null is a special case since it is typeless.
6075 if (EatIfPresent(lltok::kw_null)) {
Craig Topper2617dcc2014-04-15 06:32:26 +00006076 Elts.push_back(nullptr);
Chris Lattnera01ddfc2009-12-30 04:42:57 +00006077 continue;
Nick Lewyckyb8f9b7a2009-05-10 20:57:05 +00006078 }
Michael Ilseman26ee2b82012-11-15 22:34:00 +00006079
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006080 Metadata *MD;
6081 if (ParseMetadata(MD, nullptr))
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006082 return true;
Duncan P. N. Exon Smithbe7ea192014-12-15 19:07:53 +00006083 Elts.push_back(MD);
Nick Lewycky49f89192009-04-04 07:22:01 +00006084 } while (EatIfPresent(lltok::comma));
6085
Duncan P. N. Exon Smith5bf8fef2014-12-09 18:38:53 +00006086 return ParseToken(lltok::rbrace, "expected end of metadata node");
Nick Lewycky49f89192009-04-04 07:22:01 +00006087}
Duncan P. N. Exon Smith0a448fb2014-08-19 21:30:15 +00006088
6089//===----------------------------------------------------------------------===//
6090// Use-list order directives.
6091//===----------------------------------------------------------------------===//
6092bool LLParser::sortUseListOrder(Value *V, ArrayRef<unsigned> Indexes,
6093 SMLoc Loc) {
6094 if (V->use_empty())
6095 return Error(Loc, "value has no uses");
6096
6097 unsigned NumUses = 0;
6098 SmallDenseMap<const Use *, unsigned, 16> Order;
6099 for (const Use &U : V->uses()) {
6100 if (++NumUses > Indexes.size())
6101 break;
6102 Order[&U] = Indexes[NumUses - 1];
6103 }
6104 if (NumUses < 2)
6105 return Error(Loc, "value only has one use");
6106 if (Order.size() != Indexes.size() || NumUses > Indexes.size())
6107 return Error(Loc, "wrong number of indexes, expected " +
6108 Twine(std::distance(V->use_begin(), V->use_end())));
6109
6110 V->sortUseList([&](const Use &L, const Use &R) {
6111 return Order.lookup(&L) < Order.lookup(&R);
6112 });
6113 return false;
6114}
6115
6116/// ParseUseListOrderIndexes
6117/// ::= '{' uint32 (',' uint32)+ '}'
6118bool LLParser::ParseUseListOrderIndexes(SmallVectorImpl<unsigned> &Indexes) {
6119 SMLoc Loc = Lex.getLoc();
6120 if (ParseToken(lltok::lbrace, "expected '{' here"))
6121 return true;
6122 if (Lex.getKind() == lltok::rbrace)
6123 return Lex.Error("expected non-empty list of uselistorder indexes");
6124
6125 // Use Offset, Max, and IsOrdered to check consistency of indexes. The
6126 // indexes should be distinct numbers in the range [0, size-1], and should
6127 // not be in order.
6128 unsigned Offset = 0;
6129 unsigned Max = 0;
6130 bool IsOrdered = true;
6131 assert(Indexes.empty() && "Expected empty order vector");
6132 do {
6133 unsigned Index;
6134 if (ParseUInt32(Index))
6135 return true;
6136
6137 // Update consistency checks.
6138 Offset += Index - Indexes.size();
6139 Max = std::max(Max, Index);
6140 IsOrdered &= Index == Indexes.size();
6141
6142 Indexes.push_back(Index);
6143 } while (EatIfPresent(lltok::comma));
6144
6145 if (ParseToken(lltok::rbrace, "expected '}' here"))
6146 return true;
6147
6148 if (Indexes.size() < 2)
6149 return Error(Loc, "expected >= 2 uselistorder indexes");
6150 if (Offset != 0 || Max >= Indexes.size())
6151 return Error(Loc, "expected distinct uselistorder indexes in range [0, size)");
6152 if (IsOrdered)
6153 return Error(Loc, "expected uselistorder indexes to change the order");
6154
6155 return false;
6156}
6157
6158/// ParseUseListOrder
6159/// ::= 'uselistorder' Type Value ',' UseListOrderIndexes
6160bool LLParser::ParseUseListOrder(PerFunctionState *PFS) {
6161 SMLoc Loc = Lex.getLoc();
6162 if (ParseToken(lltok::kw_uselistorder, "expected uselistorder directive"))
6163 return true;
6164
6165 Value *V;
6166 SmallVector<unsigned, 16> Indexes;
6167 if (ParseTypeAndValue(V, PFS) ||
6168 ParseToken(lltok::comma, "expected comma in uselistorder directive") ||
6169 ParseUseListOrderIndexes(Indexes))
6170 return true;
6171
6172 return sortUseListOrder(V, Indexes, Loc);
6173}
6174
6175/// ParseUseListOrderBB
6176/// ::= 'uselistorder_bb' @foo ',' %bar ',' UseListOrderIndexes
6177bool LLParser::ParseUseListOrderBB() {
6178 assert(Lex.getKind() == lltok::kw_uselistorder_bb);
6179 SMLoc Loc = Lex.getLoc();
6180 Lex.Lex();
6181
6182 ValID Fn, Label;
6183 SmallVector<unsigned, 16> Indexes;
6184 if (ParseValID(Fn) ||
6185 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6186 ParseValID(Label) ||
6187 ParseToken(lltok::comma, "expected comma in uselistorder_bb directive") ||
6188 ParseUseListOrderIndexes(Indexes))
6189 return true;
6190
6191 // Check the function.
6192 GlobalValue *GV;
6193 if (Fn.Kind == ValID::t_GlobalName)
6194 GV = M->getNamedValue(Fn.StrVal);
6195 else if (Fn.Kind == ValID::t_GlobalID)
6196 GV = Fn.UIntVal < NumberedVals.size() ? NumberedVals[Fn.UIntVal] : nullptr;
6197 else
6198 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6199 if (!GV)
6200 return Error(Fn.Loc, "invalid function forward reference in uselistorder_bb");
6201 auto *F = dyn_cast<Function>(GV);
6202 if (!F)
6203 return Error(Fn.Loc, "expected function name in uselistorder_bb");
6204 if (F->isDeclaration())
6205 return Error(Fn.Loc, "invalid declaration in uselistorder_bb");
6206
6207 // Check the basic block.
6208 if (Label.Kind == ValID::t_LocalID)
6209 return Error(Label.Loc, "invalid numeric label in uselistorder_bb");
6210 if (Label.Kind != ValID::t_LocalName)
6211 return Error(Label.Loc, "expected basic block name in uselistorder_bb");
6212 Value *V = F->getValueSymbolTable().lookup(Label.StrVal);
6213 if (!V)
6214 return Error(Label.Loc, "invalid basic block in uselistorder_bb");
6215 if (!isa<BasicBlock>(V))
6216 return Error(Label.Loc, "expected basic block in uselistorder_bb");
6217
6218 return sortUseListOrder(V, Indexes, Loc);
6219}