blob: c4b2c0f9bcdd2ecdd9df51d11a351403d1878620 [file] [log] [blame]
Chris Lattnerdf986172009-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 Carruthd04a8d42012-12-03 16:50:05 +000015#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000016#include "llvm/AutoUpgrade.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000017#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/DerivedTypes.h"
20#include "llvm/IR/InlineAsm.h"
21#include "llvm/IR/Instructions.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Operator.h"
24#include "llvm/IR/ValueSymbolTable.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000025#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000026#include "llvm/Support/raw_ostream.h"
27using namespace llvm;
28
Chris Lattnerdb125cf2011-07-18 04:54:35 +000029static std::string getTypeString(Type *T) {
Chris Lattner0cd0d882011-06-18 21:18:23 +000030 std::string Result;
31 raw_string_ostream Tmp(Result);
32 Tmp << *T;
33 return Tmp.str();
34}
35
Chris Lattner3ed88ef2009-01-02 08:05:26 +000036/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000037bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000038 // Prime the lexer.
39 Lex.Lex();
40
Chris Lattnerad7d1e22009-01-04 20:44:11 +000041 return ParseTopLevelEntities() ||
42 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000043}
44
45/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
46/// module.
47bool LLParser::ValidateEndOfModule() {
Chris Lattner449c3102010-04-01 05:14:45 +000048 // Handle any instruction metadata forward references.
49 if (!ForwardRefInstMetadata.empty()) {
50 for (DenseMap<Instruction*, std::vector<MDRef> >::iterator
51 I = ForwardRefInstMetadata.begin(), E = ForwardRefInstMetadata.end();
52 I != E; ++I) {
53 Instruction *Inst = I->first;
54 const std::vector<MDRef> &MDList = I->second;
Michael Ilseman407a6162012-11-15 22:34:00 +000055
Chris Lattner449c3102010-04-01 05:14:45 +000056 for (unsigned i = 0, e = MDList.size(); i != e; ++i) {
57 unsigned SlotNo = MDList[i].MDSlot;
Michael Ilseman407a6162012-11-15 22:34:00 +000058
Chris Lattner449c3102010-04-01 05:14:45 +000059 if (SlotNo >= NumberedMetadata.size() || NumberedMetadata[SlotNo] == 0)
60 return Error(MDList[i].Loc, "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +000061 Twine(SlotNo) + "'");
Chris Lattner449c3102010-04-01 05:14:45 +000062 Inst->setMetadata(MDList[i].MDKind, NumberedMetadata[SlotNo]);
63 }
64 }
65 ForwardRefInstMetadata.clear();
66 }
Michael Ilseman407a6162012-11-15 22:34:00 +000067
Bill Wendlingbaad55c2013-02-08 06:32:06 +000068 // Handle any function attribute group forward references.
69 for (std::map<Value*, std::vector<unsigned> >::iterator
70 I = ForwardRefAttrGroups.begin(), E = ForwardRefAttrGroups.end();
71 I != E; ++I) {
72 Value *V = I->first;
73 std::vector<unsigned> &Vec = I->second;
74 AttrBuilder B;
75
76 for (std::vector<unsigned>::iterator VI = Vec.begin(), VE = Vec.end();
77 VI != VE; ++VI)
78 B.merge(NumberedAttrBuilders[*VI]);
79
80 if (Function *Fn = dyn_cast<Function>(V)) {
81 AttributeSet AS = Fn->getAttributes();
82 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
83 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
84 AS.getFnAttributes());
85
86 FnAttrs.merge(B);
87
88 // If the alignment was parsed as an attribute, move to the alignment
89 // field.
90 if (FnAttrs.hasAlignmentAttr()) {
91 Fn->setAlignment(FnAttrs.getAlignment());
92 FnAttrs.removeAttribute(Attribute::Alignment);
93 }
94
95 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
96 AttributeSet::get(Context,
97 AttributeSet::FunctionIndex,
98 FnAttrs));
99 Fn->setAttributes(AS);
100 } else if (CallInst *CI = dyn_cast<CallInst>(V)) {
101 AttributeSet AS = CI->getAttributes();
102 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
103 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
104 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000105 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000106 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
107 AttributeSet::get(Context,
108 AttributeSet::FunctionIndex,
109 FnAttrs));
110 CI->setAttributes(AS);
111 } else if (InvokeInst *II = dyn_cast<InvokeInst>(V)) {
112 AttributeSet AS = II->getAttributes();
113 AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
114 AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
115 AS.getFnAttributes());
Bill Wendlingf5467622013-02-12 10:13:06 +0000116 FnAttrs.merge(B);
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000117 AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
118 AttributeSet::get(Context,
119 AttributeSet::FunctionIndex,
120 FnAttrs));
121 II->setAttributes(AS);
122 } else {
123 llvm_unreachable("invalid object with forward attribute group reference");
124 }
125 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000126
Chris Lattner09d9ef42009-10-28 03:39:23 +0000127 // If there are entries in ForwardRefBlockAddresses at this point, they are
128 // references after the function was defined. Resolve those now.
129 while (!ForwardRefBlockAddresses.empty()) {
130 // Okay, we are referencing an already-parsed function, resolve them now.
131 Function *TheFn = 0;
132 const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
133 if (Fn.Kind == ValID::t_GlobalName)
134 TheFn = M->getFunction(Fn.StrVal);
135 else if (Fn.UIntVal < NumberedVals.size())
136 TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
Michael Ilseman407a6162012-11-15 22:34:00 +0000137
Chris Lattner09d9ef42009-10-28 03:39:23 +0000138 if (TheFn == 0)
139 return Error(Fn.Loc, "unknown function referenced by blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +0000140
Chris Lattner09d9ef42009-10-28 03:39:23 +0000141 // Resolve all these references.
Michael Ilseman407a6162012-11-15 22:34:00 +0000142 if (ResolveForwardRefBlockAddresses(TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000143 ForwardRefBlockAddresses.begin()->second,
144 0))
145 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000146
Chris Lattner09d9ef42009-10-28 03:39:23 +0000147 ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
148 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000149
Chris Lattner1afcace2011-07-09 17:41:24 +0000150 for (unsigned i = 0, e = NumberedTypes.size(); i != e; ++i)
151 if (NumberedTypes[i].second.isValid())
152 return Error(NumberedTypes[i].second,
153 "use of undefined type '%" + Twine(i) + "'");
154
155 for (StringMap<std::pair<Type*, LocTy> >::iterator I =
156 NamedTypes.begin(), E = NamedTypes.end(); I != E; ++I)
157 if (I->second.second.isValid())
158 return Error(I->second.second,
159 "use of undefined type named '" + I->getKey() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000160
Chris Lattnerdf986172009-01-02 07:01:27 +0000161 if (!ForwardRefVals.empty())
162 return Error(ForwardRefVals.begin()->second.second,
163 "use of undefined value '@" + ForwardRefVals.begin()->first +
164 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000165
Chris Lattnerdf986172009-01-02 07:01:27 +0000166 if (!ForwardRefValIDs.empty())
167 return Error(ForwardRefValIDs.begin()->second.second,
168 "use of undefined value '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000169 Twine(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000170
Devang Patel1c7eea62009-07-08 19:23:54 +0000171 if (!ForwardRefMDNodes.empty())
172 return Error(ForwardRefMDNodes.begin()->second.second,
173 "use of undefined metadata '!" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000174 Twine(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000175
Devang Patel1c7eea62009-07-08 19:23:54 +0000176
Chris Lattnerdf986172009-01-02 07:01:27 +0000177 // Look for intrinsic functions and CallInst that need to be upgraded
178 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
179 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000180
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 return false;
182}
183
Michael Ilseman407a6162012-11-15 22:34:00 +0000184bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn,
Chris Lattner09d9ef42009-10-28 03:39:23 +0000185 std::vector<std::pair<ValID, GlobalValue*> > &Refs,
186 PerFunctionState *PFS) {
187 // Loop over all the references, resolving them.
188 for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
189 BasicBlock *Res;
Chris Lattnercdfc9402009-11-01 01:27:45 +0000190 if (PFS) {
Chris Lattner09d9ef42009-10-28 03:39:23 +0000191 if (Refs[i].first.Kind == ValID::t_LocalName)
192 Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
Chris Lattnercdfc9402009-11-01 01:27:45 +0000193 else
Chris Lattner09d9ef42009-10-28 03:39:23 +0000194 Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
195 } else if (Refs[i].first.Kind == ValID::t_LocalID) {
196 return Error(Refs[i].first.Loc,
Chris Lattneree7644d2009-11-02 18:28:45 +0000197 "cannot take address of numeric label after the function is defined");
Chris Lattner09d9ef42009-10-28 03:39:23 +0000198 } else {
199 Res = dyn_cast_or_null<BasicBlock>(
200 TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
201 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000202
Chris Lattnercdfc9402009-11-01 01:27:45 +0000203 if (Res == 0)
Chris Lattner09d9ef42009-10-28 03:39:23 +0000204 return Error(Refs[i].first.Loc,
205 "referenced value is not a basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +0000206
Chris Lattner09d9ef42009-10-28 03:39:23 +0000207 // Get the BlockAddress for this and update references to use it.
208 BlockAddress *BA = BlockAddress::get(TheFn, Res);
209 Refs[i].second->replaceAllUsesWith(BA);
210 Refs[i].second->eraseFromParent();
211 }
212 return false;
213}
214
215
Chris Lattnerdf986172009-01-02 07:01:27 +0000216//===----------------------------------------------------------------------===//
217// Top-Level Entities
218//===----------------------------------------------------------------------===//
219
220bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000221 while (1) {
222 switch (Lex.getKind()) {
223 default: return TokError("expected top-level entity");
224 case lltok::Eof: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000225 case lltok::kw_declare: if (ParseDeclare()) return true; break;
226 case lltok::kw_define: if (ParseDefine()) return true; break;
227 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
228 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
Bill Wendling3defc0b2012-11-28 08:41:48 +0000229 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000230 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000231 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000232 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000233 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Chris Lattnere434d272009-12-30 04:56:59 +0000234 case lltok::exclaim: if (ParseStandaloneMetadata()) return true; break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000235 case lltok::MetadataVar:if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000236
237 // The Global variable production with no name can have many different
238 // optional leading prefixes, the production is:
239 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Rafael Espindolabea46262011-01-08 16:42:36 +0000240 // OptionalAddrSpace OptionalUnNammedAddr
241 // ('constant'|'global') ...
Bill Wendling5e721d72010-07-01 21:55:59 +0000242 case lltok::kw_private: // OptionalLinkage
243 case lltok::kw_linker_private: // OptionalLinkage
244 case lltok::kw_linker_private_weak: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000245 case lltok::kw_linker_private_weak_def_auto: // FIXME: backwards compat.
Bill Wendling5e721d72010-07-01 21:55:59 +0000246 case lltok::kw_internal: // OptionalLinkage
247 case lltok::kw_weak: // OptionalLinkage
248 case lltok::kw_weak_odr: // OptionalLinkage
249 case lltok::kw_linkonce: // OptionalLinkage
250 case lltok::kw_linkonce_odr: // OptionalLinkage
Bill Wendling32811be2012-08-17 18:33:14 +0000251 case lltok::kw_linkonce_odr_auto_hide: // OptionalLinkage
Bill Wendling5e721d72010-07-01 21:55:59 +0000252 case lltok::kw_appending: // OptionalLinkage
253 case lltok::kw_dllexport: // OptionalLinkage
254 case lltok::kw_common: // OptionalLinkage
255 case lltok::kw_dllimport: // OptionalLinkage
256 case lltok::kw_extern_weak: // OptionalLinkage
257 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000258 unsigned Linkage, Visibility;
259 if (ParseOptionalLinkage(Linkage) ||
260 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000261 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000262 return true;
263 break;
264 }
265 case lltok::kw_default: // OptionalVisibility
266 case lltok::kw_hidden: // OptionalVisibility
267 case lltok::kw_protected: { // OptionalVisibility
268 unsigned Visibility;
269 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000270 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000271 return true;
272 break;
273 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000274
Chris Lattnerdf986172009-01-02 07:01:27 +0000275 case lltok::kw_thread_local: // OptionalThreadLocal
276 case lltok::kw_addrspace: // OptionalAddrSpace
277 case lltok::kw_constant: // GlobalType
278 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000279 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000280 break;
Bill Wendling0b778662013-02-09 15:48:49 +0000281
282 case lltok::kw_attributes: if (ParseUnnamedAttrGrp()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000283 }
284 }
285}
286
287
288/// toplevelentity
289/// ::= 'module' 'asm' STRINGCONSTANT
290bool LLParser::ParseModuleAsm() {
291 assert(Lex.getKind() == lltok::kw_module);
292 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000293
294 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000295 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
296 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000297
Rafael Espindola38c4e532011-03-02 04:14:42 +0000298 M->appendModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000299 return false;
300}
301
302/// toplevelentity
303/// ::= 'target' 'triple' '=' STRINGCONSTANT
304/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
305bool LLParser::ParseTargetDefinition() {
306 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000307 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000308 switch (Lex.Lex()) {
309 default: return TokError("unknown target property");
310 case lltok::kw_triple:
311 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000312 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
313 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000314 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000315 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000316 return false;
317 case lltok::kw_datalayout:
318 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
320 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000321 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000322 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000323 return false;
324 }
325}
326
Bill Wendling3defc0b2012-11-28 08:41:48 +0000327/// toplevelentity
328/// ::= 'deplibs' '=' '[' ']'
329/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
330/// FIXME: Remove in 4.0. Currently parse, but ignore.
331bool LLParser::ParseDepLibs() {
332 assert(Lex.getKind() == lltok::kw_deplibs);
333 Lex.Lex();
334 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
335 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
336 return true;
337
338 if (EatIfPresent(lltok::rsquare))
339 return false;
340
341 do {
342 std::string Str;
343 if (ParseStringConstant(Str)) return true;
344 } while (EatIfPresent(lltok::comma));
345
346 return ParseToken(lltok::rsquare, "expected ']' at end of list");
347}
348
Dan Gohman3845e502009-08-12 23:32:33 +0000349/// ParseUnnamedType:
Dan Gohman3845e502009-08-12 23:32:33 +0000350/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000351bool LLParser::ParseUnnamedType() {
Chris Lattneredcaca82011-06-18 23:51:31 +0000352 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +0000353 unsigned TypeID = Lex.getUIntVal();
Chris Lattnera53616d2011-06-19 00:03:46 +0000354 Lex.Lex(); // eat LocalVarID;
355
356 if (ParseToken(lltok::equal, "expected '=' after name") ||
357 ParseToken(lltok::kw_type, "expected 'type' after '='"))
358 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000359
Chris Lattner1afcace2011-07-09 17:41:24 +0000360 if (TypeID >= NumberedTypes.size())
361 NumberedTypes.resize(TypeID+1);
Michael Ilseman407a6162012-11-15 22:34:00 +0000362
Chris Lattner1afcace2011-07-09 17:41:24 +0000363 Type *Result = 0;
364 if (ParseStructDefinition(TypeLoc, "",
365 NumberedTypes[TypeID], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000366
Chris Lattner1afcace2011-07-09 17:41:24 +0000367 if (!isa<StructType>(Result)) {
368 std::pair<Type*, LocTy> &Entry = NumberedTypes[TypeID];
369 if (Entry.first)
370 return Error(TypeLoc, "non-struct types may not be recursive");
371 Entry.first = Result;
372 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000373 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000374
Chris Lattnerdf986172009-01-02 07:01:27 +0000375 return false;
376}
377
Chris Lattner1afcace2011-07-09 17:41:24 +0000378
Chris Lattnerdf986172009-01-02 07:01:27 +0000379/// toplevelentity
380/// ::= LocalVar '=' 'type' type
381bool LLParser::ParseNamedType() {
382 std::string Name = Lex.getStrVal();
383 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000384 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000385
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000386 if (ParseToken(lltok::equal, "expected '=' after name") ||
Chris Lattner1afcace2011-07-09 17:41:24 +0000387 ParseToken(lltok::kw_type, "expected 'type' after name"))
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000388 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000389
Chris Lattner1afcace2011-07-09 17:41:24 +0000390 Type *Result = 0;
391 if (ParseStructDefinition(NameLoc, Name,
392 NamedTypes[Name], Result)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000393
Chris Lattner1afcace2011-07-09 17:41:24 +0000394 if (!isa<StructType>(Result)) {
395 std::pair<Type*, LocTy> &Entry = NamedTypes[Name];
396 if (Entry.first)
397 return Error(NameLoc, "non-struct types may not be recursive");
398 Entry.first = Result;
399 Entry.second = SMLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +0000400 }
Michael Ilseman407a6162012-11-15 22:34:00 +0000401
Chris Lattner1afcace2011-07-09 17:41:24 +0000402 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000403}
404
405
406/// toplevelentity
407/// ::= 'declare' FunctionHeader
408bool LLParser::ParseDeclare() {
409 assert(Lex.getKind() == lltok::kw_declare);
410 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000411
Chris Lattnerdf986172009-01-02 07:01:27 +0000412 Function *F;
413 return ParseFunctionHeader(F, false);
414}
415
416/// toplevelentity
417/// ::= 'define' FunctionHeader '{' ...
418bool LLParser::ParseDefine() {
419 assert(Lex.getKind() == lltok::kw_define);
420 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000421
Chris Lattnerdf986172009-01-02 07:01:27 +0000422 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000423 return ParseFunctionHeader(F, true) ||
424 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000425}
426
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000427/// ParseGlobalType
428/// ::= 'constant'
429/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000430bool LLParser::ParseGlobalType(bool &IsConstant) {
431 if (Lex.getKind() == lltok::kw_constant)
432 IsConstant = true;
433 else if (Lex.getKind() == lltok::kw_global)
434 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000435 else {
436 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000437 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000438 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000439 Lex.Lex();
440 return false;
441}
442
Dan Gohman3845e502009-08-12 23:32:33 +0000443/// ParseUnnamedGlobal:
444/// OptionalVisibility ALIAS ...
445/// OptionalLinkage OptionalVisibility ... -> global variable
446/// GlobalID '=' OptionalVisibility ALIAS ...
447/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
448bool LLParser::ParseUnnamedGlobal() {
449 unsigned VarID = NumberedVals.size();
450 std::string Name;
451 LocTy NameLoc = Lex.getLoc();
452
453 // Handle the GlobalID form.
454 if (Lex.getKind() == lltok::GlobalID) {
455 if (Lex.getUIntVal() != VarID)
456 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +0000457 Twine(VarID) + "'");
Dan Gohman3845e502009-08-12 23:32:33 +0000458 Lex.Lex(); // eat GlobalID;
459
460 if (ParseToken(lltok::equal, "expected '=' after name"))
461 return true;
462 }
463
464 bool HasLinkage;
465 unsigned Linkage, Visibility;
466 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
467 ParseOptionalVisibility(Visibility))
468 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000469
Dan Gohman3845e502009-08-12 23:32:33 +0000470 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
471 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
472 return ParseAlias(Name, NameLoc, Visibility);
473}
474
Chris Lattnerdf986172009-01-02 07:01:27 +0000475/// ParseNamedGlobal:
476/// GlobalVar '=' OptionalVisibility ALIAS ...
477/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
478bool LLParser::ParseNamedGlobal() {
479 assert(Lex.getKind() == lltok::GlobalVar);
480 LocTy NameLoc = Lex.getLoc();
481 std::string Name = Lex.getStrVal();
482 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000483
Chris Lattnerdf986172009-01-02 07:01:27 +0000484 bool HasLinkage;
485 unsigned Linkage, Visibility;
486 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
487 ParseOptionalLinkage(Linkage, HasLinkage) ||
488 ParseOptionalVisibility(Visibility))
489 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000490
Chris Lattnerdf986172009-01-02 07:01:27 +0000491 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
492 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
493 return ParseAlias(Name, NameLoc, Visibility);
494}
495
Devang Patel256be962009-07-20 19:00:08 +0000496// MDString:
497// ::= '!' STRINGCONSTANT
Chris Lattner442ffa12009-12-29 21:53:55 +0000498bool LLParser::ParseMDString(MDString *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000499 std::string Str;
500 if (ParseStringConstant(Str)) return true;
Chris Lattner442ffa12009-12-29 21:53:55 +0000501 Result = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000502 return false;
503}
504
505// MDNode:
506// ::= '!' MDNodeNumber
Chris Lattner449c3102010-04-01 05:14:45 +0000507//
508/// This version of ParseMDNodeID returns the slot number and null in the case
509/// of a forward reference.
510bool LLParser::ParseMDNodeID(MDNode *&Result, unsigned &SlotNo) {
511 // !{ ..., !42, ... }
512 if (ParseUInt32(SlotNo)) return true;
513
514 // Check existing MDNode.
515 if (SlotNo < NumberedMetadata.size() && NumberedMetadata[SlotNo] != 0)
516 Result = NumberedMetadata[SlotNo];
517 else
518 Result = 0;
519 return false;
520}
521
Chris Lattner4a72efc2009-12-30 04:15:23 +0000522bool LLParser::ParseMDNodeID(MDNode *&Result) {
Devang Patel256be962009-07-20 19:00:08 +0000523 // !{ ..., !42, ... }
524 unsigned MID = 0;
Chris Lattner449c3102010-04-01 05:14:45 +0000525 if (ParseMDNodeID(Result, MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000526
Chris Lattner449c3102010-04-01 05:14:45 +0000527 // If not a forward reference, just return it now.
528 if (Result) return false;
Devang Patel256be962009-07-20 19:00:08 +0000529
Chris Lattner449c3102010-04-01 05:14:45 +0000530 // Otherwise, create MDNode forward reference.
Jay Foadec9186b2011-04-21 19:59:31 +0000531 MDNode *FwdNode = MDNode::getTemporary(Context, ArrayRef<Value*>());
Devang Patel256be962009-07-20 19:00:08 +0000532 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
Michael Ilseman407a6162012-11-15 22:34:00 +0000533
Chris Lattner0834e6a2009-12-30 04:51:58 +0000534 if (NumberedMetadata.size() <= MID)
535 NumberedMetadata.resize(MID+1);
536 NumberedMetadata[MID] = FwdNode;
Chris Lattner442ffa12009-12-29 21:53:55 +0000537 Result = FwdNode;
Devang Patel256be962009-07-20 19:00:08 +0000538 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000539}
Devang Patel256be962009-07-20 19:00:08 +0000540
Chris Lattner84d03b12009-12-29 22:35:39 +0000541/// ParseNamedMetadata:
Devang Pateleff2ab62009-07-29 00:34:02 +0000542/// !foo = !{ !1, !2 }
543bool LLParser::ParseNamedMetadata() {
Chris Lattner1d928312009-12-30 05:02:06 +0000544 assert(Lex.getKind() == lltok::MetadataVar);
Devang Pateleff2ab62009-07-29 00:34:02 +0000545 std::string Name = Lex.getStrVal();
Chris Lattner1d928312009-12-30 05:02:06 +0000546 Lex.Lex();
Devang Pateleff2ab62009-07-29 00:34:02 +0000547
Chris Lattner84d03b12009-12-29 22:35:39 +0000548 if (ParseToken(lltok::equal, "expected '=' here") ||
Chris Lattnere434d272009-12-30 04:56:59 +0000549 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner84d03b12009-12-29 22:35:39 +0000550 ParseToken(lltok::lbrace, "Expected '{' here"))
Devang Pateleff2ab62009-07-29 00:34:02 +0000551 return true;
552
Dan Gohman17aa92c2010-07-21 23:38:33 +0000553 NamedMDNode *NMD = M->getOrInsertNamedMetadata(Name);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000554 if (Lex.getKind() != lltok::rbrace)
555 do {
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000556 if (ParseToken(lltok::exclaim, "Expected '!' here"))
557 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +0000558
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000559 MDNode *N = 0;
560 if (ParseMDNodeID(N)) return true;
Dan Gohman17aa92c2010-07-21 23:38:33 +0000561 NMD->addOperand(N);
Dan Gohman9dc8ae12010-07-13 19:42:44 +0000562 } while (EatIfPresent(lltok::comma));
Devang Pateleff2ab62009-07-29 00:34:02 +0000563
564 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
565 return true;
566
Devang Pateleff2ab62009-07-29 00:34:02 +0000567 return false;
568}
569
Devang Patel923078c2009-07-01 19:21:12 +0000570/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000571/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000572bool LLParser::ParseStandaloneMetadata() {
Chris Lattnere434d272009-12-30 04:56:59 +0000573 assert(Lex.getKind() == lltok::exclaim);
Devang Patel923078c2009-07-01 19:21:12 +0000574 Lex.Lex();
575 unsigned MetadataID = 0;
Devang Patel923078c2009-07-01 19:21:12 +0000576
577 LocTy TyLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +0000578 Type *Ty = 0;
Devang Patel104cf9e2009-07-23 01:07:34 +0000579 SmallVector<Value *, 16> Elts;
Chris Lattner3f5132a2009-12-29 22:40:21 +0000580 if (ParseUInt32(MetadataID) ||
581 ParseToken(lltok::equal, "expected '=' here") ||
582 ParseType(Ty, TyLoc) ||
Chris Lattnere434d272009-12-30 04:56:59 +0000583 ParseToken(lltok::exclaim, "Expected '!' here") ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000584 ParseToken(lltok::lbrace, "Expected '{' here") ||
Victor Hernandez24e64df2010-01-10 07:14:18 +0000585 ParseMDNodeVector(Elts, NULL) ||
Chris Lattner3f5132a2009-12-29 22:40:21 +0000586 ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000587 return true;
588
Jay Foadec9186b2011-04-21 19:59:31 +0000589 MDNode *Init = MDNode::get(Context, Elts);
Michael Ilseman407a6162012-11-15 22:34:00 +0000590
Chris Lattner0834e6a2009-12-30 04:51:58 +0000591 // See if this was forward referenced, if so, handle it.
Chris Lattnere80250e2009-12-29 21:43:58 +0000592 std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000593 FI = ForwardRefMDNodes.find(MetadataID);
594 if (FI != ForwardRefMDNodes.end()) {
Dan Gohman489b29b2010-08-20 22:02:26 +0000595 MDNode *Temp = FI->second.first;
596 Temp->replaceAllUsesWith(Init);
597 MDNode::deleteTemporary(Temp);
Devang Patel1c7eea62009-07-08 19:23:54 +0000598 ForwardRefMDNodes.erase(FI);
Michael Ilseman407a6162012-11-15 22:34:00 +0000599
Chris Lattner0834e6a2009-12-30 04:51:58 +0000600 assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
601 } else {
602 if (MetadataID >= NumberedMetadata.size())
603 NumberedMetadata.resize(MetadataID+1);
604
605 if (NumberedMetadata[MetadataID] != 0)
606 return TokError("Metadata id is already used");
607 NumberedMetadata[MetadataID] = Init;
Devang Patel1c7eea62009-07-08 19:23:54 +0000608 }
609
Devang Patel923078c2009-07-01 19:21:12 +0000610 return false;
611}
612
Chris Lattnerdf986172009-01-02 07:01:27 +0000613/// ParseAlias:
614/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
615/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000616/// ::= TypeAndValue
617/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000618/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000619///
620/// Everything through visibility has already been parsed.
621///
622bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
623 unsigned Visibility) {
624 assert(Lex.getKind() == lltok::kw_alias);
625 Lex.Lex();
626 unsigned Linkage;
627 LocTy LinkageLoc = Lex.getLoc();
628 if (ParseOptionalLinkage(Linkage))
629 return true;
630
631 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000632 Linkage != GlobalValue::WeakAnyLinkage &&
633 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000634 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000635 Linkage != GlobalValue::PrivateLinkage &&
Bill Wendling5e721d72010-07-01 21:55:59 +0000636 Linkage != GlobalValue::LinkerPrivateLinkage &&
Bill Wendling32811be2012-08-17 18:33:14 +0000637 Linkage != GlobalValue::LinkerPrivateWeakLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000638 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000639
Chris Lattnerdf986172009-01-02 07:01:27 +0000640 Constant *Aliasee;
641 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000642 if (Lex.getKind() != lltok::kw_bitcast &&
643 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000644 if (ParseGlobalTypeAndValue(Aliasee)) return true;
645 } else {
646 // The bitcast dest type is not present, it is implied by the dest type.
647 ValID ID;
648 if (ParseValID(ID)) return true;
649 if (ID.Kind != ValID::t_Constant)
650 return Error(AliaseeLoc, "invalid aliasee");
651 Aliasee = ID.ConstantVal;
652 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Duncan Sands1df98592010-02-16 11:11:14 +0000654 if (!Aliasee->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 return Error(AliaseeLoc, "alias must have pointer type");
656
657 // Okay, create the alias but do not insert it into the module yet.
658 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
659 (GlobalValue::LinkageTypes)Linkage, Name,
660 Aliasee);
661 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000662
Chris Lattnerdf986172009-01-02 07:01:27 +0000663 // See if this value already exists in the symbol table. If so, it is either
664 // a redefinition or a definition of a forward reference.
Chris Lattner1d871c52009-10-25 23:22:50 +0000665 if (GlobalValue *Val = M->getNamedValue(Name)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 // See if this was a redefinition. If so, there is no entry in
667 // ForwardRefVals.
668 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
669 I = ForwardRefVals.find(Name);
670 if (I == ForwardRefVals.end())
671 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
672
673 // Otherwise, this was a definition of forward ref. Verify that types
674 // agree.
675 if (Val->getType() != GA->getType())
676 return Error(NameLoc,
677 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000678
Chris Lattnerdf986172009-01-02 07:01:27 +0000679 // If they agree, just RAUW the old value with the alias and remove the
680 // forward ref info.
681 Val->replaceAllUsesWith(GA);
682 Val->eraseFromParent();
683 ForwardRefVals.erase(I);
684 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000685
Chris Lattnerdf986172009-01-02 07:01:27 +0000686 // Insert into the module, we know its name won't collide now.
687 M->getAliasList().push_back(GA);
Benjamin Krameraf812352010-10-16 11:28:23 +0000688 assert(GA->getName() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000689
Chris Lattnerdf986172009-01-02 07:01:27 +0000690 return false;
691}
692
693/// ParseGlobal
694/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000695/// OptionalAddrSpace OptionalUnNammedAddr
696/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000697/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000698/// OptionalAddrSpace OptionalUnNammedAddr
699/// OptionalExternallyInitialized GlobalType Type Const
Chris Lattnerdf986172009-01-02 07:01:27 +0000700///
701/// Everything through visibility has been parsed already.
702///
703bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
704 unsigned Linkage, bool HasLinkage,
705 unsigned Visibility) {
706 unsigned AddrSpace;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000707 bool IsConstant, UnnamedAddr, IsExternallyInitialized;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000708 GlobalVariable::ThreadLocalMode TLM;
Rafael Espindolad72479c2011-01-13 01:30:30 +0000709 LocTy UnnamedAddrLoc;
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000710 LocTy IsExternallyInitializedLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +0000711 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattner1afcace2011-07-09 17:41:24 +0000713 Type *Ty = 0;
Hans Wennborgce718ff2012-06-23 11:37:03 +0000714 if (ParseOptionalThreadLocal(TLM) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000715 ParseOptionalAddrSpace(AddrSpace) ||
Rafael Espindolad72479c2011-01-13 01:30:30 +0000716 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
717 &UnnamedAddrLoc) ||
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000718 ParseOptionalToken(lltok::kw_externally_initialized,
719 IsExternallyInitialized,
720 &IsExternallyInitializedLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000721 ParseGlobalType(IsConstant) ||
722 ParseType(Ty, TyLoc))
723 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000724
Chris Lattnerdf986172009-01-02 07:01:27 +0000725 // If the linkage is specified and is external, then no initializer is
726 // present.
727 Constant *Init = 0;
728 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000729 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000730 Linkage != GlobalValue::ExternalLinkage)) {
731 if (ParseGlobalValue(Ty, Init))
732 return true;
733 }
734
Duncan Sands1df98592010-02-16 11:11:14 +0000735 if (Ty->isFunctionTy() || Ty->isLabelTy())
Chris Lattner4a2f1122009-02-08 20:00:15 +0000736 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000737
Chris Lattnerdf986172009-01-02 07:01:27 +0000738 GlobalVariable *GV = 0;
739
740 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000741 if (!Name.empty()) {
Chris Lattner1d871c52009-10-25 23:22:50 +0000742 if (GlobalValue *GVal = M->getNamedValue(Name)) {
743 if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
744 return Error(NameLoc, "redefinition of global '@" + Name + "'");
745 GV = cast<GlobalVariable>(GVal);
746 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000747 } else {
748 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
749 I = ForwardRefValIDs.find(NumberedVals.size());
750 if (I != ForwardRefValIDs.end()) {
751 GV = cast<GlobalVariable>(I->second.first);
752 ForwardRefValIDs.erase(I);
753 }
754 }
755
756 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000757 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Hans Wennborgce718ff2012-06-23 11:37:03 +0000758 Name, 0, GlobalVariable::NotThreadLocal,
759 AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000760 } else {
761 if (GV->getType()->getElementType() != Ty)
762 return Error(TyLoc,
763 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000764
Chris Lattnerdf986172009-01-02 07:01:27 +0000765 // Move the forward-reference to the correct spot in the module.
766 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
767 }
768
769 if (Name.empty())
770 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000771
Chris Lattnerdf986172009-01-02 07:01:27 +0000772 // Set the parsed properties on the global.
773 if (Init)
774 GV->setInitializer(Init);
775 GV->setConstant(IsConstant);
776 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
777 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Michael Gottesmana2de37c2013-02-05 05:57:38 +0000778 GV->setExternallyInitialized(IsExternallyInitialized);
Hans Wennborgce718ff2012-06-23 11:37:03 +0000779 GV->setThreadLocalMode(TLM);
Rafael Espindolabea46262011-01-08 16:42:36 +0000780 GV->setUnnamedAddr(UnnamedAddr);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000781
Chris Lattnerdf986172009-01-02 07:01:27 +0000782 // Parse attributes on the global.
783 while (Lex.getKind() == lltok::comma) {
784 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 if (Lex.getKind() == lltok::kw_section) {
787 Lex.Lex();
788 GV->setSection(Lex.getStrVal());
789 if (ParseToken(lltok::StringConstant, "expected global section string"))
790 return true;
791 } else if (Lex.getKind() == lltok::kw_align) {
792 unsigned Alignment;
793 if (ParseOptionalAlignment(Alignment)) return true;
794 GV->setAlignment(Alignment);
795 } else {
796 TokError("unknown global variable property!");
797 }
798 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000799
Chris Lattnerdf986172009-01-02 07:01:27 +0000800 return false;
801}
802
Bill Wendling95ce4c22013-02-06 06:52:58 +0000803/// ParseUnnamedAttrGrp
Bill Wendling0b778662013-02-09 15:48:49 +0000804/// ::= 'attributes' AttrGrpID '=' '{' AttrValPair+ '}'
Bill Wendling95ce4c22013-02-06 06:52:58 +0000805bool LLParser::ParseUnnamedAttrGrp() {
Bill Wendling0b778662013-02-09 15:48:49 +0000806 assert(Lex.getKind() == lltok::kw_attributes);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000807 LocTy AttrGrpLoc = Lex.getLoc();
Bill Wendling0b778662013-02-09 15:48:49 +0000808 Lex.Lex();
809
810 assert(Lex.getKind() == lltok::AttrGrpID);
Bill Wendling95ce4c22013-02-06 06:52:58 +0000811 unsigned VarID = Lex.getUIntVal();
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000812 std::vector<unsigned> unused;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000813 Lex.Lex();
814
815 if (ParseToken(lltok::equal, "expected '=' here") ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000816 ParseToken(lltok::lbrace, "expected '{' here") ||
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000817 ParseFnAttributeValuePairs(NumberedAttrBuilders[VarID], unused, true) ||
Bill Wendling95ce4c22013-02-06 06:52:58 +0000818 ParseToken(lltok::rbrace, "expected end of attribute group"))
819 return true;
820
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000821 if (!NumberedAttrBuilders[VarID].hasAttributes())
Bill Wendling95ce4c22013-02-06 06:52:58 +0000822 return Error(AttrGrpLoc, "attribute group has no attributes");
823
824 return false;
825}
826
Bill Wendlingea007fa2013-02-08 00:52:31 +0000827/// ParseFnAttributeValuePairs
Bill Wendling95ce4c22013-02-06 06:52:58 +0000828/// ::= <attr> | <attr> '=' <value>
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000829bool LLParser::ParseFnAttributeValuePairs(AttrBuilder &B,
830 std::vector<unsigned> &FwdRefAttrGrps,
831 bool inAttrGrp) {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000832 bool HaveError = false;
833
834 B.clear();
835
Bill Wendling95ce4c22013-02-06 06:52:58 +0000836 while (true) {
837 lltok::Kind Token = Lex.getKind();
838 switch (Token) {
839 default:
Bill Wendlingea007fa2013-02-08 00:52:31 +0000840 if (!inAttrGrp) return HaveError;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000841 return Error(Lex.getLoc(), "unterminated attribute group");
842 case lltok::rbrace:
843 // Finished.
844 return false;
845
Bill Wendlingbaad55c2013-02-08 06:32:06 +0000846 case lltok::AttrGrpID: {
847 // Allow a function to reference an attribute group:
848 //
849 // define void @foo() #1 { ... }
850 if (inAttrGrp)
851 HaveError |=
852 Error(Lex.getLoc(),
853 "cannot have an attribute group reference in an attribute group");
854
855 unsigned AttrGrpNum = Lex.getUIntVal();
856 if (inAttrGrp) break;
857
858 // Save the reference to the attribute group. We'll fill it in later.
859 FwdRefAttrGrps.push_back(AttrGrpNum);
860 break;
861 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000862 // Target-dependent attributes:
863 case lltok::StringConstant: {
864 std::string Attr = Lex.getStrVal();
865 Lex.Lex();
866 std::string Val;
867 if (EatIfPresent(lltok::equal) &&
868 ParseStringConstant(Val))
869 return true;
870
871 B.addAttribute(Attr, Val);
Bill Wendling0f742202013-02-10 10:12:50 +0000872 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000873 }
874
875 // Target-independent attributes:
876 case lltok::kw_align: {
Bill Wendlingea007fa2013-02-08 00:52:31 +0000877 // As a hack, we allow "align 2" on functions as a synonym for "alignstack
878 // 2".
Bill Wendling95ce4c22013-02-06 06:52:58 +0000879 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000880 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000881 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000882 if (ParseToken(lltok::equal, "expected '=' here") ||
883 ParseUInt32(Alignment))
884 return true;
885 } else {
886 if (ParseOptionalAlignment(Alignment))
887 return true;
888 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000889 B.addAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000890 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000891 }
892 case lltok::kw_alignstack: {
893 unsigned Alignment;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000894 if (inAttrGrp) {
Bill Wendling3f87d232013-02-10 23:15:51 +0000895 Lex.Lex();
Bill Wendlingea007fa2013-02-08 00:52:31 +0000896 if (ParseToken(lltok::equal, "expected '=' here") ||
897 ParseUInt32(Alignment))
898 return true;
899 } else {
900 if (ParseOptionalStackAlignment(Alignment))
901 return true;
902 }
Bill Wendling95ce4c22013-02-06 06:52:58 +0000903 B.addStackAlignmentAttr(Alignment);
Bill Wendlingea007fa2013-02-08 00:52:31 +0000904 continue;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000905 }
906 case lltok::kw_address_safety: B.addAttribute(Attribute::AddressSafety); break;
907 case lltok::kw_alwaysinline: B.addAttribute(Attribute::AlwaysInline); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000908 case lltok::kw_inlinehint: B.addAttribute(Attribute::InlineHint); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000909 case lltok::kw_minsize: B.addAttribute(Attribute::MinSize); break;
910 case lltok::kw_naked: B.addAttribute(Attribute::Naked); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000911 case lltok::kw_noduplicate: B.addAttribute(Attribute::NoDuplicate); break;
912 case lltok::kw_noimplicitfloat: B.addAttribute(Attribute::NoImplicitFloat); break;
913 case lltok::kw_noinline: B.addAttribute(Attribute::NoInline); break;
914 case lltok::kw_nonlazybind: B.addAttribute(Attribute::NonLazyBind); break;
915 case lltok::kw_noredzone: B.addAttribute(Attribute::NoRedZone); break;
916 case lltok::kw_noreturn: B.addAttribute(Attribute::NoReturn); break;
917 case lltok::kw_nounwind: B.addAttribute(Attribute::NoUnwind); break;
918 case lltok::kw_optsize: B.addAttribute(Attribute::OptimizeForSize); break;
919 case lltok::kw_readnone: B.addAttribute(Attribute::ReadNone); break;
920 case lltok::kw_readonly: B.addAttribute(Attribute::ReadOnly); break;
921 case lltok::kw_returns_twice: B.addAttribute(Attribute::ReturnsTwice); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000922 case lltok::kw_ssp: B.addAttribute(Attribute::StackProtect); break;
923 case lltok::kw_sspreq: B.addAttribute(Attribute::StackProtectReq); break;
924 case lltok::kw_sspstrong: B.addAttribute(Attribute::StackProtectStrong); break;
Kostya Serebryanyab39afa2013-02-11 08:13:54 +0000925 case lltok::kw_thread_safety: B.addAttribute(Attribute::ThreadSafety); break;
926 case lltok::kw_uninitialized_checks: B.addAttribute(Attribute::UninitializedChecks); break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000927 case lltok::kw_uwtable: B.addAttribute(Attribute::UWTable); break;
Bill Wendlingea007fa2013-02-08 00:52:31 +0000928
929 // Error handling.
930 case lltok::kw_inreg:
931 case lltok::kw_signext:
932 case lltok::kw_zeroext:
933 HaveError |=
934 Error(Lex.getLoc(),
935 "invalid use of attribute on a function");
936 break;
937 case lltok::kw_byval:
938 case lltok::kw_nest:
939 case lltok::kw_noalias:
940 case lltok::kw_nocapture:
941 case lltok::kw_sret:
942 HaveError |=
943 Error(Lex.getLoc(),
944 "invalid use of parameter-only attribute on a function");
945 break;
Bill Wendling95ce4c22013-02-06 06:52:58 +0000946 }
947
948 Lex.Lex();
949 }
950}
Chris Lattnerdf986172009-01-02 07:01:27 +0000951
952//===----------------------------------------------------------------------===//
953// GlobalValue Reference/Resolution Routines.
954//===----------------------------------------------------------------------===//
955
956/// GetGlobalVal - Get a value with the specified name or ID, creating a
957/// forward reference record if needed. This can return null if the value
958/// exists but does not have the right type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000959GlobalValue *LLParser::GetGlobalVal(const std::string &Name, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +0000960 LocTy Loc) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000961 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +0000962 if (PTy == 0) {
963 Error(Loc, "global variable reference must have pointer type");
964 return 0;
965 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000966
Chris Lattnerdf986172009-01-02 07:01:27 +0000967 // Look this name up in the normal function symbol table.
968 GlobalValue *Val =
969 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000970
Chris Lattnerdf986172009-01-02 07:01:27 +0000971 // If this is a forward reference for the value, see if we already created a
972 // forward ref record.
973 if (Val == 0) {
974 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
975 I = ForwardRefVals.find(Name);
976 if (I != ForwardRefVals.end())
977 Val = I->second.first;
978 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000979
Chris Lattnerdf986172009-01-02 07:01:27 +0000980 // If we have the value in the symbol table or fwd-ref table, return it.
981 if (Val) {
982 if (Val->getType() == Ty) return Val;
983 Error(Loc, "'@" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +0000984 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +0000985 return 0;
986 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000987
Chris Lattnerdf986172009-01-02 07:01:27 +0000988 // Otherwise, create a new forward reference for this value and remember it.
989 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000990 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000991 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1afcace2011-07-09 17:41:24 +0000992 else
Owen Andersone9b11b42009-07-08 19:03:57 +0000993 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
Justin Holewinskieaff2d52012-11-16 21:03:47 +0000994 GlobalValue::ExternalWeakLinkage, 0, Name,
995 0, GlobalVariable::NotThreadLocal,
996 PTy->getAddressSpace());
Daniel Dunbara279bc32009-09-20 02:20:51 +0000997
Chris Lattnerdf986172009-01-02 07:01:27 +0000998 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
999 return FwdVal;
1000}
1001
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001002GlobalValue *LLParser::GetGlobalVal(unsigned ID, Type *Ty, LocTy Loc) {
1003 PointerType *PTy = dyn_cast<PointerType>(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001004 if (PTy == 0) {
1005 Error(Loc, "global variable reference must have pointer type");
1006 return 0;
1007 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001008
Chris Lattnerdf986172009-01-02 07:01:27 +00001009 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001010
Chris Lattnerdf986172009-01-02 07:01:27 +00001011 // If this is a forward reference for the value, see if we already created a
1012 // forward ref record.
1013 if (Val == 0) {
1014 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
1015 I = ForwardRefValIDs.find(ID);
1016 if (I != ForwardRefValIDs.end())
1017 Val = I->second.first;
1018 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001019
Chris Lattnerdf986172009-01-02 07:01:27 +00001020 // If we have the value in the symbol table or fwd-ref table, return it.
1021 if (Val) {
1022 if (Val->getType() == Ty) return Val;
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001023 Error(Loc, "'@" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00001024 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001025 return 0;
1026 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001027
Chris Lattnerdf986172009-01-02 07:01:27 +00001028 // Otherwise, create a new forward reference for this value and remember it.
1029 GlobalValue *FwdVal;
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001030 if (FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00001031 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner1afcace2011-07-09 17:41:24 +00001032 else
Owen Andersone9b11b42009-07-08 19:03:57 +00001033 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
1034 GlobalValue::ExternalWeakLinkage, 0, "");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001035
Chris Lattnerdf986172009-01-02 07:01:27 +00001036 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1037 return FwdVal;
1038}
1039
1040
1041//===----------------------------------------------------------------------===//
1042// Helper Routines.
1043//===----------------------------------------------------------------------===//
1044
1045/// ParseToken - If the current token has the specified kind, eat it and return
1046/// success. Otherwise, emit the specified error and return failure.
1047bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
1048 if (Lex.getKind() != T)
1049 return TokError(ErrMsg);
1050 Lex.Lex();
1051 return false;
1052}
1053
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001054/// ParseStringConstant
1055/// ::= StringConstant
1056bool LLParser::ParseStringConstant(std::string &Result) {
1057 if (Lex.getKind() != lltok::StringConstant)
1058 return TokError("expected string constant");
1059 Result = Lex.getStrVal();
1060 Lex.Lex();
1061 return false;
1062}
1063
1064/// ParseUInt32
1065/// ::= uint32
1066bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001067 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
1068 return TokError("expected integer");
1069 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
1070 if (Val64 != unsigned(Val64))
1071 return TokError("expected 32-bit integer (too large)");
1072 Val = Val64;
1073 Lex.Lex();
1074 return false;
1075}
1076
Hans Wennborgce718ff2012-06-23 11:37:03 +00001077/// ParseTLSModel
1078/// := 'localdynamic'
1079/// := 'initialexec'
1080/// := 'localexec'
1081bool LLParser::ParseTLSModel(GlobalVariable::ThreadLocalMode &TLM) {
1082 switch (Lex.getKind()) {
1083 default:
1084 return TokError("expected localdynamic, initialexec or localexec");
1085 case lltok::kw_localdynamic:
1086 TLM = GlobalVariable::LocalDynamicTLSModel;
1087 break;
1088 case lltok::kw_initialexec:
1089 TLM = GlobalVariable::InitialExecTLSModel;
1090 break;
1091 case lltok::kw_localexec:
1092 TLM = GlobalVariable::LocalExecTLSModel;
1093 break;
1094 }
1095
1096 Lex.Lex();
1097 return false;
1098}
1099
1100/// ParseOptionalThreadLocal
1101/// := /*empty*/
1102/// := 'thread_local'
1103/// := 'thread_local' '(' tlsmodel ')'
1104bool LLParser::ParseOptionalThreadLocal(GlobalVariable::ThreadLocalMode &TLM) {
1105 TLM = GlobalVariable::NotThreadLocal;
1106 if (!EatIfPresent(lltok::kw_thread_local))
1107 return false;
1108
1109 TLM = GlobalVariable::GeneralDynamicTLSModel;
1110 if (Lex.getKind() == lltok::lparen) {
1111 Lex.Lex();
1112 return ParseTLSModel(TLM) ||
1113 ParseToken(lltok::rparen, "expected ')' after thread local model");
1114 }
1115 return false;
1116}
Chris Lattnerdf986172009-01-02 07:01:27 +00001117
1118/// ParseOptionalAddrSpace
1119/// := /*empty*/
1120/// := 'addrspace' '(' uint32 ')'
1121bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
1122 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001123 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001124 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001125 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001126 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001127 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001128}
Chris Lattnerdf986172009-01-02 07:01:27 +00001129
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001130/// ParseOptionalParamAttrs - Parse a potentially empty list of parameter attributes.
1131bool LLParser::ParseOptionalParamAttrs(AttrBuilder &B) {
1132 bool HaveError = false;
1133
1134 B.clear();
1135
1136 while (1) {
1137 lltok::Kind Token = Lex.getKind();
1138 switch (Token) {
1139 default: // End of attributes.
1140 return HaveError;
Chris Lattnerdf986172009-01-02 07:01:27 +00001141 case lltok::kw_align: {
1142 unsigned Alignment;
1143 if (ParseOptionalAlignment(Alignment))
1144 return true;
Bill Wendling03272442012-10-08 22:20:14 +00001145 B.addAlignmentAttr(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00001146 continue;
1147 }
Bill Wendling034b94b2012-12-19 07:18:57 +00001148 case lltok::kw_byval: B.addAttribute(Attribute::ByVal); break;
1149 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1150 case lltok::kw_nest: B.addAttribute(Attribute::Nest); break;
1151 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1152 case lltok::kw_nocapture: B.addAttribute(Attribute::NoCapture); break;
1153 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1154 case lltok::kw_sret: B.addAttribute(Attribute::StructRet); break;
1155 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Charles Davis1e063d12010-02-12 00:31:15 +00001156
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001157 case lltok::kw_noreturn: case lltok::kw_nounwind:
1158 case lltok::kw_uwtable: case lltok::kw_returns_twice:
1159 case lltok::kw_noinline: case lltok::kw_readnone:
1160 case lltok::kw_readonly: case lltok::kw_inlinehint:
1161 case lltok::kw_alwaysinline: case lltok::kw_optsize:
1162 case lltok::kw_ssp: case lltok::kw_sspreq:
1163 case lltok::kw_noredzone: case lltok::kw_noimplicitfloat:
1164 case lltok::kw_naked: case lltok::kw_nonlazybind:
1165 case lltok::kw_address_safety: case lltok::kw_minsize:
Kostya Serebryanyab39afa2013-02-11 08:13:54 +00001166 case lltok::kw_alignstack: case lltok::kw_thread_safety:
1167 case lltok::kw_uninitialized_checks:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001168 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
1169 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001170 }
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001171
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001172 Lex.Lex();
1173 }
1174}
1175
1176/// ParseOptionalReturnAttrs - Parse a potentially empty list of return attributes.
1177bool LLParser::ParseOptionalReturnAttrs(AttrBuilder &B) {
1178 bool HaveError = false;
1179
1180 B.clear();
1181
1182 while (1) {
1183 lltok::Kind Token = Lex.getKind();
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001184 switch (Token) {
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001185 default: // End of attributes.
1186 return HaveError;
Bill Wendling034b94b2012-12-19 07:18:57 +00001187 case lltok::kw_inreg: B.addAttribute(Attribute::InReg); break;
1188 case lltok::kw_noalias: B.addAttribute(Attribute::NoAlias); break;
1189 case lltok::kw_signext: B.addAttribute(Attribute::SExt); break;
1190 case lltok::kw_zeroext: B.addAttribute(Attribute::ZExt); break;
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001191
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001192 // Error handling.
1193 case lltok::kw_sret: case lltok::kw_nocapture:
1194 case lltok::kw_byval: case lltok::kw_nest:
1195 HaveError |= Error(Lex.getLoc(), "invalid use of parameter-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001196 break;
James Molloy67ae1352012-12-20 16:04:27 +00001197
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001198 case lltok::kw_noreturn: case lltok::kw_nounwind:
1199 case lltok::kw_uwtable: case lltok::kw_returns_twice:
1200 case lltok::kw_noinline: case lltok::kw_readnone:
1201 case lltok::kw_readonly: case lltok::kw_inlinehint:
1202 case lltok::kw_alwaysinline: case lltok::kw_optsize:
1203 case lltok::kw_ssp: case lltok::kw_sspreq:
Bill Wendling114baee2013-01-23 06:41:41 +00001204 case lltok::kw_sspstrong: case lltok::kw_noimplicitfloat:
1205 case lltok::kw_noredzone: case lltok::kw_naked:
1206 case lltok::kw_nonlazybind: case lltok::kw_address_safety:
1207 case lltok::kw_minsize: case lltok::kw_alignstack:
1208 case lltok::kw_align: case lltok::kw_noduplicate:
Kostya Serebryanyab39afa2013-02-11 08:13:54 +00001209 case lltok::kw_thread_safety: case lltok::kw_uninitialized_checks:
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001210 HaveError |= Error(Lex.getLoc(), "invalid use of function-only attribute");
Bill Wendlingdc998cc2012-09-28 22:30:18 +00001211 break;
1212 }
1213
Chris Lattnerdf986172009-01-02 07:01:27 +00001214 Lex.Lex();
1215 }
1216}
1217
1218/// ParseOptionalLinkage
1219/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +00001220/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001221/// ::= 'linker_private'
Bill Wendling5e721d72010-07-01 21:55:59 +00001222/// ::= 'linker_private_weak'
Chris Lattnerdf986172009-01-02 07:01:27 +00001223/// ::= 'internal'
1224/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +00001225/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +00001226/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +00001227/// ::= 'linkonce_odr'
Bill Wendling32811be2012-08-17 18:33:14 +00001228/// ::= 'linkonce_odr_auto_hide'
Bill Wendling5e721d72010-07-01 21:55:59 +00001229/// ::= 'available_externally'
Chris Lattnerdf986172009-01-02 07:01:27 +00001230/// ::= 'appending'
1231/// ::= 'dllexport'
1232/// ::= 'common'
1233/// ::= 'dllimport'
1234/// ::= 'extern_weak'
1235/// ::= 'external'
1236bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
1237 HasLinkage = false;
1238 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001239 default: Res=GlobalValue::ExternalLinkage; return false;
1240 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
1241 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
Bill Wendling5e721d72010-07-01 21:55:59 +00001242 case lltok::kw_linker_private_weak:
1243 Res = GlobalValue::LinkerPrivateWeakLinkage;
1244 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001245 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
1246 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
1247 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
1248 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
1249 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Bill Wendling32811be2012-08-17 18:33:14 +00001250 case lltok::kw_linkonce_odr_auto_hide:
1251 case lltok::kw_linker_private_weak_def_auto: // FIXME: For backwards compat.
1252 Res = GlobalValue::LinkOnceODRAutoHideLinkage;
1253 break;
Chris Lattner266c7bb2009-04-13 05:44:34 +00001254 case lltok::kw_available_externally:
1255 Res = GlobalValue::AvailableExternallyLinkage;
1256 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +00001257 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
1258 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
1259 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
1260 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
1261 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
1262 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001263 }
1264 Lex.Lex();
1265 HasLinkage = true;
1266 return false;
1267}
1268
1269/// ParseOptionalVisibility
1270/// ::= /*empty*/
1271/// ::= 'default'
1272/// ::= 'hidden'
1273/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001274///
Chris Lattnerdf986172009-01-02 07:01:27 +00001275bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1276 switch (Lex.getKind()) {
1277 default: Res = GlobalValue::DefaultVisibility; return false;
1278 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1279 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1280 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1281 }
1282 Lex.Lex();
1283 return false;
1284}
1285
1286/// ParseOptionalCallingConv
1287/// ::= /*empty*/
1288/// ::= 'ccc'
1289/// ::= 'fastcc'
Elena Demikhovsky35752222012-10-24 14:46:16 +00001290/// ::= 'kw_intel_ocl_bicc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001291/// ::= 'coldcc'
1292/// ::= 'x86_stdcallcc'
1293/// ::= 'x86_fastcallcc'
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001294/// ::= 'x86_thiscallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001295/// ::= 'arm_apcscc'
1296/// ::= 'arm_aapcscc'
1297/// ::= 'arm_aapcs_vfpcc'
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001298/// ::= 'msp430_intrcc'
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001299/// ::= 'ptx_kernel'
1300/// ::= 'ptx_device'
Micah Villmowe53d6052012-10-01 17:01:31 +00001301/// ::= 'spir_func'
1302/// ::= 'spir_kernel'
Chris Lattnerdf986172009-01-02 07:01:27 +00001303/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001304///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001305bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001306 switch (Lex.getKind()) {
1307 default: CC = CallingConv::C; return false;
1308 case lltok::kw_ccc: CC = CallingConv::C; break;
1309 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1310 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1311 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1312 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikovded05e32010-05-16 09:08:45 +00001313 case lltok::kw_x86_thiscallcc: CC = CallingConv::X86_ThisCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001314 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1315 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1316 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Anton Korobeynikov211a14e2009-12-07 02:27:35 +00001317 case lltok::kw_msp430_intrcc: CC = CallingConv::MSP430_INTR; break;
Che-Liang Chiouf9930da2010-09-25 07:46:17 +00001318 case lltok::kw_ptx_kernel: CC = CallingConv::PTX_Kernel; break;
1319 case lltok::kw_ptx_device: CC = CallingConv::PTX_Device; break;
Micah Villmowe53d6052012-10-01 17:01:31 +00001320 case lltok::kw_spir_kernel: CC = CallingConv::SPIR_KERNEL; break;
1321 case lltok::kw_spir_func: CC = CallingConv::SPIR_FUNC; break;
Elena Demikhovsky35752222012-10-24 14:46:16 +00001322 case lltok::kw_intel_ocl_bicc: CC = CallingConv::Intel_OCL_BI; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001323 case lltok::kw_cc: {
1324 unsigned ArbitraryCC;
1325 Lex.Lex();
David Blaikie4d6ccb52012-01-20 21:51:11 +00001326 if (ParseUInt32(ArbitraryCC))
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001327 return true;
David Blaikie4d6ccb52012-01-20 21:51:11 +00001328 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1329 return false;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001330 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001331 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001332
Chris Lattnerdf986172009-01-02 07:01:27 +00001333 Lex.Lex();
1334 return false;
1335}
1336
Chris Lattnerb8c46862009-12-30 05:31:19 +00001337/// ParseInstructionMetadata
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001338/// ::= !dbg !42 (',' !dbg !57)*
Dan Gohman9d072f52010-08-24 02:05:17 +00001339bool LLParser::ParseInstructionMetadata(Instruction *Inst,
1340 PerFunctionState *PFS) {
Chris Lattnerb8c46862009-12-30 05:31:19 +00001341 do {
1342 if (Lex.getKind() != lltok::MetadataVar)
1343 return TokError("expected metadata after comma");
Devang Patel0475c912009-09-29 00:01:14 +00001344
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001345 std::string Name = Lex.getStrVal();
Benjamin Kramer85dadec2011-12-06 11:50:26 +00001346 unsigned MDK = M->getMDKindID(Name);
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001347 Lex.Lex();
Chris Lattner52e20312009-10-19 05:31:10 +00001348
Chris Lattner442ffa12009-12-29 21:53:55 +00001349 MDNode *Node;
Chris Lattner449c3102010-04-01 05:14:45 +00001350 SMLoc Loc = Lex.getLoc();
Dan Gohman309b3af2010-08-24 02:24:03 +00001351
1352 if (ParseToken(lltok::exclaim, "expected '!' here"))
Chris Lattnere434d272009-12-30 04:56:59 +00001353 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001354
Dan Gohman68261142010-08-24 14:35:45 +00001355 // This code is similar to that of ParseMetadataValue, however it needs to
1356 // have special-case code for a forward reference; see the comments on
1357 // ForwardRefInstMetadata for details. Also, MDStrings are not supported
1358 // at the top level here.
Dan Gohman309b3af2010-08-24 02:24:03 +00001359 if (Lex.getKind() == lltok::lbrace) {
1360 ValID ID;
1361 if (ParseMetadataListValue(ID, PFS))
1362 return true;
1363 assert(ID.Kind == ValID::t_MDNode);
1364 Inst->setMetadata(MDK, ID.MDNodeVal);
Chris Lattner449c3102010-04-01 05:14:45 +00001365 } else {
Nick Lewyckyc6877b42010-09-30 21:04:13 +00001366 unsigned NodeID = 0;
Dan Gohman309b3af2010-08-24 02:24:03 +00001367 if (ParseMDNodeID(Node, NodeID))
1368 return true;
1369 if (Node) {
1370 // If we got the node, add it to the instruction.
1371 Inst->setMetadata(MDK, Node);
1372 } else {
1373 MDRef R = { Loc, MDK, NodeID };
1374 // Otherwise, remember that this should be resolved later.
1375 ForwardRefInstMetadata[Inst].push_back(R);
1376 }
Chris Lattner449c3102010-04-01 05:14:45 +00001377 }
Chris Lattner3f3a0f62009-12-29 21:25:40 +00001378
1379 // If this is the end of the list, we're done.
Chris Lattnerb8c46862009-12-30 05:31:19 +00001380 } while (EatIfPresent(lltok::comma));
1381 return false;
Devang Patelf633a062009-09-17 23:04:48 +00001382}
1383
Chris Lattnerdf986172009-01-02 07:01:27 +00001384/// ParseOptionalAlignment
1385/// ::= /* empty */
1386/// ::= 'align' 4
1387bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1388 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001389 if (!EatIfPresent(lltok::kw_align))
1390 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001391 LocTy AlignLoc = Lex.getLoc();
1392 if (ParseUInt32(Alignment)) return true;
1393 if (!isPowerOf2_32(Alignment))
1394 return Error(AlignLoc, "alignment is not a power of two");
Dan Gohmane16829b2010-07-30 21:07:05 +00001395 if (Alignment > Value::MaximumAlignment)
Dan Gohman138aa2a2010-07-28 20:12:04 +00001396 return Error(AlignLoc, "huge alignments are not supported yet");
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001397 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001398}
1399
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001400/// ParseOptionalCommaAlign
Michael Ilseman407a6162012-11-15 22:34:00 +00001401/// ::=
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001402/// ::= ',' align 4
1403///
1404/// This returns with AteExtraComma set to true if it ate an excess comma at the
1405/// end.
1406bool LLParser::ParseOptionalCommaAlign(unsigned &Alignment,
1407 bool &AteExtraComma) {
1408 AteExtraComma = false;
1409 while (EatIfPresent(lltok::comma)) {
1410 // Metadata at the end is an early exit.
Chris Lattner1d928312009-12-30 05:02:06 +00001411 if (Lex.getKind() == lltok::MetadataVar) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001412 AteExtraComma = true;
1413 return false;
1414 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001415
Chris Lattner093eed12010-04-23 00:50:50 +00001416 if (Lex.getKind() != lltok::kw_align)
1417 return Error(Lex.getLoc(), "expected metadata or 'align'");
Duncan Sandsbf9fc532010-10-21 16:07:10 +00001418
Chris Lattner093eed12010-04-23 00:50:50 +00001419 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00001420 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001421
Devang Patelf633a062009-09-17 23:04:48 +00001422 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001423}
1424
Eli Friedman47f35132011-07-25 23:16:38 +00001425/// ParseScopeAndOrdering
1426/// if isAtomic: ::= 'singlethread'? AtomicOrdering
1427/// else: ::=
1428///
1429/// This sets Scope and Ordering to the parsed values.
1430bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1431 AtomicOrdering &Ordering) {
1432 if (!isAtomic)
1433 return false;
1434
1435 Scope = CrossThread;
1436 if (EatIfPresent(lltok::kw_singlethread))
1437 Scope = SingleThread;
1438 switch (Lex.getKind()) {
1439 default: return TokError("Expected ordering on atomic instruction");
1440 case lltok::kw_unordered: Ordering = Unordered; break;
1441 case lltok::kw_monotonic: Ordering = Monotonic; break;
1442 case lltok::kw_acquire: Ordering = Acquire; break;
1443 case lltok::kw_release: Ordering = Release; break;
1444 case lltok::kw_acq_rel: Ordering = AcquireRelease; break;
1445 case lltok::kw_seq_cst: Ordering = SequentiallyConsistent; break;
1446 }
1447 Lex.Lex();
1448 return false;
1449}
1450
Charles Davis1e063d12010-02-12 00:31:15 +00001451/// ParseOptionalStackAlignment
1452/// ::= /* empty */
1453/// ::= 'alignstack' '(' 4 ')'
1454bool LLParser::ParseOptionalStackAlignment(unsigned &Alignment) {
1455 Alignment = 0;
1456 if (!EatIfPresent(lltok::kw_alignstack))
1457 return false;
1458 LocTy ParenLoc = Lex.getLoc();
1459 if (!EatIfPresent(lltok::lparen))
1460 return Error(ParenLoc, "expected '('");
1461 LocTy AlignLoc = Lex.getLoc();
1462 if (ParseUInt32(Alignment)) return true;
1463 ParenLoc = Lex.getLoc();
1464 if (!EatIfPresent(lltok::rparen))
1465 return Error(ParenLoc, "expected ')'");
1466 if (!isPowerOf2_32(Alignment))
1467 return Error(AlignLoc, "stack alignment is not a power of two");
1468 return false;
1469}
Devang Patelf633a062009-09-17 23:04:48 +00001470
Chris Lattner628c13a2009-12-30 05:14:00 +00001471/// ParseIndexList - This parses the index list for an insert/extractvalue
1472/// instruction. This sets AteExtraComma in the case where we eat an extra
1473/// comma at the end of the line and find that it is followed by metadata.
1474/// Clients that don't allow metadata can call the version of this function that
1475/// only takes one argument.
1476///
Chris Lattnerdf986172009-01-02 07:01:27 +00001477/// ParseIndexList
1478/// ::= (',' uint32)+
Chris Lattner628c13a2009-12-30 05:14:00 +00001479///
1480bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices,
1481 bool &AteExtraComma) {
1482 AteExtraComma = false;
Michael Ilseman407a6162012-11-15 22:34:00 +00001483
Chris Lattnerdf986172009-01-02 07:01:27 +00001484 if (Lex.getKind() != lltok::comma)
1485 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001486
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001487 while (EatIfPresent(lltok::comma)) {
Chris Lattner628c13a2009-12-30 05:14:00 +00001488 if (Lex.getKind() == lltok::MetadataVar) {
1489 AteExtraComma = true;
1490 return false;
1491 }
Nick Lewycky28815c42010-09-29 23:32:20 +00001492 unsigned Idx = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001493 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001494 Indices.push_back(Idx);
1495 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001496
Chris Lattnerdf986172009-01-02 07:01:27 +00001497 return false;
1498}
1499
1500//===----------------------------------------------------------------------===//
1501// Type Parsing.
1502//===----------------------------------------------------------------------===//
1503
Chris Lattner1afcace2011-07-09 17:41:24 +00001504/// ParseType - Parse a type.
1505bool LLParser::ParseType(Type *&Result, bool AllowVoid) {
1506 SMLoc TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001507 switch (Lex.getKind()) {
1508 default:
1509 return TokError("expected type");
1510 case lltok::Type:
Chris Lattner1afcace2011-07-09 17:41:24 +00001511 // Type ::= 'float' | 'void' (etc)
Chris Lattnerdf986172009-01-02 07:01:27 +00001512 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001513 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001514 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001515 case lltok::lbrace:
Chris Lattner1afcace2011-07-09 17:41:24 +00001516 // Type ::= StructType
1517 if (ParseAnonStructType(Result, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00001518 return true;
1519 break;
1520 case lltok::lsquare:
Chris Lattner1afcace2011-07-09 17:41:24 +00001521 // Type ::= '[' ... ']'
Chris Lattnerdf986172009-01-02 07:01:27 +00001522 Lex.Lex(); // eat the lsquare.
1523 if (ParseArrayVectorType(Result, false))
1524 return true;
1525 break;
1526 case lltok::less: // Either vector or packed struct.
Chris Lattner1afcace2011-07-09 17:41:24 +00001527 // Type ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001528 Lex.Lex();
1529 if (Lex.getKind() == lltok::lbrace) {
Chris Lattner1afcace2011-07-09 17:41:24 +00001530 if (ParseAnonStructType(Result, true) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001531 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001532 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001533 } else if (ParseArrayVectorType(Result, true))
1534 return true;
1535 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001536 case lltok::LocalVar: {
1537 // Type ::= %foo
1538 std::pair<Type*, LocTy> &Entry = NamedTypes[Lex.getStrVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001539
Chris Lattner1afcace2011-07-09 17:41:24 +00001540 // If the type hasn't been defined yet, create a forward definition and
1541 // remember where that forward def'n was seen (in case it never is defined).
1542 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001543 Entry.first = StructType::create(Context, Lex.getStrVal());
Chris Lattner1afcace2011-07-09 17:41:24 +00001544 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001545 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001546 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001547 Lex.Lex();
1548 break;
Chris Lattner1afcace2011-07-09 17:41:24 +00001549 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001550
Chris Lattner1afcace2011-07-09 17:41:24 +00001551 case lltok::LocalVarID: {
1552 // Type ::= %4
1553 if (Lex.getUIntVal() >= NumberedTypes.size())
1554 NumberedTypes.resize(Lex.getUIntVal()+1);
1555 std::pair<Type*, LocTy> &Entry = NumberedTypes[Lex.getUIntVal()];
Michael Ilseman407a6162012-11-15 22:34:00 +00001556
Chris Lattner1afcace2011-07-09 17:41:24 +00001557 // If the type hasn't been defined yet, create a forward definition and
1558 // remember where that forward def'n was seen (in case it never is defined).
1559 if (Entry.first == 0) {
Chris Lattner3ebb6492011-08-12 18:06:37 +00001560 Entry.first = StructType::create(Context);
Chris Lattner1afcace2011-07-09 17:41:24 +00001561 Entry.second = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001562 }
Chris Lattner1afcace2011-07-09 17:41:24 +00001563 Result = Entry.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001564 Lex.Lex();
1565 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001566 }
1567 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001568
1569 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001570 while (1) {
1571 switch (Lex.getKind()) {
1572 // End of type.
Chris Lattner1afcace2011-07-09 17:41:24 +00001573 default:
1574 if (!AllowVoid && Result->isVoidTy())
1575 return Error(TypeLoc, "void type only allowed for function results");
1576 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001577
Chris Lattner1afcace2011-07-09 17:41:24 +00001578 // Type ::= Type '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001579 case lltok::star:
Chris Lattner1afcace2011-07-09 17:41:24 +00001580 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001581 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001582 if (Result->isVoidTy())
1583 return TokError("pointers to void are invalid - use i8* instead");
1584 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001585 return TokError("pointer to this type is invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001586 Result = PointerType::getUnqual(Result);
Chris Lattnerdf986172009-01-02 07:01:27 +00001587 Lex.Lex();
1588 break;
1589
Chris Lattner1afcace2011-07-09 17:41:24 +00001590 // Type ::= Type 'addrspace' '(' uint32 ')' '*'
Chris Lattnerdf986172009-01-02 07:01:27 +00001591 case lltok::kw_addrspace: {
Chris Lattner1afcace2011-07-09 17:41:24 +00001592 if (Result->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001593 return TokError("basic block pointers are invalid");
Chris Lattner1afcace2011-07-09 17:41:24 +00001594 if (Result->isVoidTy())
Dan Gohmanb9070d32009-02-09 17:41:21 +00001595 return TokError("pointers to void are invalid; use i8* instead");
Chris Lattner1afcace2011-07-09 17:41:24 +00001596 if (!PointerType::isValidElementType(Result))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001597 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001598 unsigned AddrSpace;
1599 if (ParseOptionalAddrSpace(AddrSpace) ||
1600 ParseToken(lltok::star, "expected '*' in address space"))
1601 return true;
1602
Chris Lattner1afcace2011-07-09 17:41:24 +00001603 Result = PointerType::get(Result, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001604 break;
1605 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001606
Chris Lattnerdf986172009-01-02 07:01:27 +00001607 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1608 case lltok::lparen:
1609 if (ParseFunctionType(Result))
1610 return true;
1611 break;
1612 }
1613 }
1614}
1615
1616/// ParseParameterList
1617/// ::= '(' ')'
1618/// ::= '(' Arg (',' Arg)* ')'
1619/// Arg
1620/// ::= Type OptionalAttributes Value OptionalAttributes
1621bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1622 PerFunctionState &PFS) {
1623 if (ParseToken(lltok::lparen, "expected '(' in call"))
1624 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001625
Bill Wendling73dee182013-01-31 00:29:54 +00001626 unsigned AttrIndex = 1;
Chris Lattnerdf986172009-01-02 07:01:27 +00001627 while (Lex.getKind() != lltok::rparen) {
1628 // If this isn't the first argument, we need a comma.
1629 if (!ArgList.empty() &&
1630 ParseToken(lltok::comma, "expected ',' in argument list"))
1631 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001632
Chris Lattnerdf986172009-01-02 07:01:27 +00001633 // Parse the argument.
1634 LocTy ArgLoc;
Chris Lattner1afcace2011-07-09 17:41:24 +00001635 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001636 AttrBuilder ArgAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001637 Value *V;
Victor Hernandez19715562009-12-03 23:40:58 +00001638 if (ParseType(ArgTy, ArgLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00001639 return true;
Victor Hernandez19715562009-12-03 23:40:58 +00001640
Chris Lattner287881d2009-12-30 02:11:14 +00001641 // Otherwise, handle normal operands.
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001642 if (ParseOptionalParamAttrs(ArgAttrs) || ParseValue(ArgTy, V, PFS))
Chris Lattner287881d2009-12-30 02:11:14 +00001643 return true;
Bill Wendling73dee182013-01-31 00:29:54 +00001644 ArgList.push_back(ParamInfo(ArgLoc, V, AttributeSet::get(V->getContext(),
1645 AttrIndex++,
1646 ArgAttrs)));
Chris Lattnerdf986172009-01-02 07:01:27 +00001647 }
1648
1649 Lex.Lex(); // Lex the ')'.
1650 return false;
1651}
1652
1653
1654
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001655/// ParseArgumentList - Parse the argument list for a function type or function
Chris Lattner1afcace2011-07-09 17:41:24 +00001656/// prototype.
Chris Lattnerdf986172009-01-02 07:01:27 +00001657/// ::= '(' ArgTypeListI ')'
1658/// ArgTypeListI
1659/// ::= /*empty*/
1660/// ::= '...'
1661/// ::= ArgTypeList ',' '...'
1662/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001663///
Chris Lattner1afcace2011-07-09 17:41:24 +00001664bool LLParser::ParseArgumentList(SmallVectorImpl<ArgInfo> &ArgList,
1665 bool &isVarArg){
Chris Lattnerdf986172009-01-02 07:01:27 +00001666 isVarArg = false;
1667 assert(Lex.getKind() == lltok::lparen);
1668 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001669
Chris Lattnerdf986172009-01-02 07:01:27 +00001670 if (Lex.getKind() == lltok::rparen) {
1671 // empty
1672 } else if (Lex.getKind() == lltok::dotdotdot) {
1673 isVarArg = true;
1674 Lex.Lex();
1675 } else {
1676 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001677 Type *ArgTy = 0;
Bill Wendling702cc912012-10-15 20:35:56 +00001678 AttrBuilder Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001679 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001680
Chris Lattner1afcace2011-07-09 17:41:24 +00001681 if (ParseType(ArgTy) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001682 ParseOptionalParamAttrs(Attrs)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001683
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001684 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001685 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001686
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001687 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001688 Name = Lex.getStrVal();
1689 Lex.Lex();
1690 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001691
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001692 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001693 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001694
Bill Wendling73dee182013-01-31 00:29:54 +00001695 unsigned AttrIndex = 1;
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001696 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001697 AttributeSet::get(ArgTy->getContext(),
1698 AttrIndex++, Attrs), Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001699
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001700 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001701 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001702 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001703 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001704 break;
1705 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001706
Chris Lattnerdf986172009-01-02 07:01:27 +00001707 // Otherwise must be an argument type.
1708 TypeLoc = Lex.getLoc();
Bill Wendlinge01b81b2012-12-04 23:40:58 +00001709 if (ParseType(ArgTy) || ParseOptionalParamAttrs(Attrs)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001710
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001711 if (ArgTy->isVoidTy())
Chris Lattnera9a9e072009-03-09 04:49:14 +00001712 return Error(TypeLoc, "argument can not have void type");
1713
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00001714 if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001715 Name = Lex.getStrVal();
1716 Lex.Lex();
1717 } else {
1718 Name = "";
1719 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001720
Chris Lattner1afcace2011-07-09 17:41:24 +00001721 if (!ArgTy->isFirstClassType())
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001722 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001723
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001724 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
Bill Wendling73dee182013-01-31 00:29:54 +00001725 AttributeSet::get(ArgTy->getContext(),
1726 AttrIndex++, Attrs),
Bill Wendlingcb3de0b2012-10-15 04:46:55 +00001727 Name));
Chris Lattnerdf986172009-01-02 07:01:27 +00001728 }
1729 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001730
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001731 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001732}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001733
Chris Lattnerdf986172009-01-02 07:01:27 +00001734/// ParseFunctionType
1735/// ::= Type ArgumentList OptionalAttrs
Chris Lattner1afcace2011-07-09 17:41:24 +00001736bool LLParser::ParseFunctionType(Type *&Result) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001737 assert(Lex.getKind() == lltok::lparen);
1738
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001739 if (!FunctionType::isValidReturnType(Result))
1740 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001741
Chris Lattner1afcace2011-07-09 17:41:24 +00001742 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00001743 bool isVarArg;
Chris Lattner1afcace2011-07-09 17:41:24 +00001744 if (ParseArgumentList(ArgList, isVarArg))
Chris Lattnerdf986172009-01-02 07:01:27 +00001745 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001746
Chris Lattnerdf986172009-01-02 07:01:27 +00001747 // Reject names on the arguments lists.
1748 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1749 if (!ArgList[i].Name.empty())
1750 return Error(ArgList[i].Loc, "argument name invalid in function type");
Bill Wendling73dee182013-01-31 00:29:54 +00001751 if (ArgList[i].Attrs.hasAttributes(i + 1))
Chris Lattnera16546a2011-06-17 17:37:13 +00001752 return Error(ArgList[i].Loc,
1753 "argument attributes invalid in function type");
Chris Lattnerdf986172009-01-02 07:01:27 +00001754 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001755
Jay Foad5fdd6c82011-07-12 14:06:48 +00001756 SmallVector<Type*, 16> ArgListTy;
Chris Lattnerdf986172009-01-02 07:01:27 +00001757 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
Chris Lattner1afcace2011-07-09 17:41:24 +00001758 ArgListTy.push_back(ArgList[i].Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001759
Chris Lattner1afcace2011-07-09 17:41:24 +00001760 Result = FunctionType::get(Result, ArgListTy, isVarArg);
Chris Lattnerdf986172009-01-02 07:01:27 +00001761 return false;
1762}
1763
Chris Lattner1afcace2011-07-09 17:41:24 +00001764/// ParseAnonStructType - Parse an anonymous struct type, which is inlined into
1765/// other structs.
1766bool LLParser::ParseAnonStructType(Type *&Result, bool Packed) {
1767 SmallVector<Type*, 8> Elts;
1768 if (ParseStructBody(Elts)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001769
Chris Lattner1afcace2011-07-09 17:41:24 +00001770 Result = StructType::get(Context, Elts, Packed);
1771 return false;
1772}
1773
1774/// ParseStructDefinition - Parse a struct in a 'type' definition.
1775bool LLParser::ParseStructDefinition(SMLoc TypeLoc, StringRef Name,
1776 std::pair<Type*, LocTy> &Entry,
1777 Type *&ResultTy) {
1778 // If the type was already defined, diagnose the redefinition.
1779 if (Entry.first && !Entry.second.isValid())
1780 return Error(TypeLoc, "redefinition of type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001781
Chris Lattner1afcace2011-07-09 17:41:24 +00001782 // If we have opaque, just return without filling in the definition for the
1783 // struct. This counts as a definition as far as the .ll file goes.
1784 if (EatIfPresent(lltok::kw_opaque)) {
1785 // This type is being defined, so clear the location to indicate this.
1786 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001787
Chris Lattner1afcace2011-07-09 17:41:24 +00001788 // If this type number has never been uttered, create it.
1789 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001790 Entry.first = StructType::create(Context, Name);
Chris Lattner1afcace2011-07-09 17:41:24 +00001791 ResultTy = Entry.first;
1792 return false;
1793 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001794
Chris Lattner1afcace2011-07-09 17:41:24 +00001795 // If the type starts with '<', then it is either a packed struct or a vector.
1796 bool isPacked = EatIfPresent(lltok::less);
1797
1798 // If we don't have a struct, then we have a random type alias, which we
1799 // accept for compatibility with old files. These types are not allowed to be
1800 // forward referenced and not allowed to be recursive.
1801 if (Lex.getKind() != lltok::lbrace) {
1802 if (Entry.first)
1803 return Error(TypeLoc, "forward references to non-struct type");
Michael Ilseman407a6162012-11-15 22:34:00 +00001804
Chris Lattner1afcace2011-07-09 17:41:24 +00001805 ResultTy = 0;
1806 if (isPacked)
1807 return ParseArrayVectorType(ResultTy, true);
1808 return ParseType(ResultTy);
1809 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001810
Chris Lattner1afcace2011-07-09 17:41:24 +00001811 // This type is being defined, so clear the location to indicate this.
1812 Entry.second = SMLoc();
Michael Ilseman407a6162012-11-15 22:34:00 +00001813
Chris Lattner1afcace2011-07-09 17:41:24 +00001814 // If this type number has never been uttered, create it.
1815 if (Entry.first == 0)
Chris Lattner3ebb6492011-08-12 18:06:37 +00001816 Entry.first = StructType::create(Context, Name);
Michael Ilseman407a6162012-11-15 22:34:00 +00001817
Chris Lattner1afcace2011-07-09 17:41:24 +00001818 StructType *STy = cast<StructType>(Entry.first);
Michael Ilseman407a6162012-11-15 22:34:00 +00001819
Chris Lattner1afcace2011-07-09 17:41:24 +00001820 SmallVector<Type*, 8> Body;
1821 if (ParseStructBody(Body) ||
1822 (isPacked && ParseToken(lltok::greater, "expected '>' in packed struct")))
1823 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001824
Chris Lattner1afcace2011-07-09 17:41:24 +00001825 STy->setBody(Body, isPacked);
1826 ResultTy = STy;
1827 return false;
1828}
1829
1830
Chris Lattnerdf986172009-01-02 07:01:27 +00001831/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
Chris Lattner1afcace2011-07-09 17:41:24 +00001832/// StructType
Chris Lattnerdf986172009-01-02 07:01:27 +00001833/// ::= '{' '}'
Chris Lattner1afcace2011-07-09 17:41:24 +00001834/// ::= '{' Type (',' Type)* '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00001835/// ::= '<' '{' '}' '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001836/// ::= '<' '{' Type (',' Type)* '}' '>'
1837bool LLParser::ParseStructBody(SmallVectorImpl<Type*> &Body) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001838 assert(Lex.getKind() == lltok::lbrace);
1839 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001840
Chris Lattner1afcace2011-07-09 17:41:24 +00001841 // Handle the empty struct.
1842 if (EatIfPresent(lltok::rbrace))
Chris Lattnerdf986172009-01-02 07:01:27 +00001843 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001844
Chris Lattnera9a9e072009-03-09 04:49:14 +00001845 LocTy EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001846 Type *Ty = 0;
1847 if (ParseType(Ty)) return true;
1848 Body.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001849
Chris Lattner1afcace2011-07-09 17:41:24 +00001850 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001851 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001852
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001853 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001854 EltTyLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001855 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001856
Chris Lattner1afcace2011-07-09 17:41:24 +00001857 if (!StructType::isValidElementType(Ty))
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001858 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001859
Chris Lattner1afcace2011-07-09 17:41:24 +00001860 Body.push_back(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00001861 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001862
Chris Lattner1afcace2011-07-09 17:41:24 +00001863 return ParseToken(lltok::rbrace, "expected '}' at end of struct");
Chris Lattnerdf986172009-01-02 07:01:27 +00001864}
1865
1866/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1867/// token has already been consumed.
Chris Lattner1afcace2011-07-09 17:41:24 +00001868/// Type
Chris Lattnerdf986172009-01-02 07:01:27 +00001869/// ::= '[' APSINTVAL 'x' Types ']'
1870/// ::= '<' APSINTVAL 'x' Types '>'
Chris Lattner1afcace2011-07-09 17:41:24 +00001871bool LLParser::ParseArrayVectorType(Type *&Result, bool isVector) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001872 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1873 Lex.getAPSIntVal().getBitWidth() > 64)
1874 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001875
Chris Lattnerdf986172009-01-02 07:01:27 +00001876 LocTy SizeLoc = Lex.getLoc();
1877 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001878 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001879
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001880 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1881 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001882
1883 LocTy TypeLoc = Lex.getLoc();
Chris Lattner1afcace2011-07-09 17:41:24 +00001884 Type *EltTy = 0;
1885 if (ParseType(EltTy)) return true;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001886
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001887 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1888 "expected end of sequential type"))
1889 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001890
Chris Lattnerdf986172009-01-02 07:01:27 +00001891 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001892 if (Size == 0)
1893 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001894 if ((unsigned)Size != Size)
1895 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001896 if (!VectorType::isValidElementType(EltTy))
Duncan Sands2333e292012-11-13 12:59:33 +00001897 return Error(TypeLoc, "invalid vector element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001898 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001899 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001900 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001901 return Error(TypeLoc, "invalid array element type");
Chris Lattner1afcace2011-07-09 17:41:24 +00001902 Result = ArrayType::get(EltTy, Size);
Chris Lattnerdf986172009-01-02 07:01:27 +00001903 }
1904 return false;
1905}
1906
1907//===----------------------------------------------------------------------===//
1908// Function Semantic Analysis.
1909//===----------------------------------------------------------------------===//
1910
Chris Lattner09d9ef42009-10-28 03:39:23 +00001911LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1912 int functionNumber)
1913 : P(p), F(f), FunctionNumber(functionNumber) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001914
1915 // Insert unnamed arguments into the NumberedVals list.
1916 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1917 AI != E; ++AI)
1918 if (!AI->hasName())
1919 NumberedVals.push_back(AI);
1920}
1921
1922LLParser::PerFunctionState::~PerFunctionState() {
1923 // If there were any forward referenced non-basicblock values, delete them.
1924 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1925 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1926 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001927 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001928 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001929 delete I->second.first;
1930 I->second.first = 0;
1931 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001932
Chris Lattnerdf986172009-01-02 07:01:27 +00001933 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1934 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1935 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001936 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001937 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001938 delete I->second.first;
1939 I->second.first = 0;
1940 }
1941}
1942
Chris Lattner09d9ef42009-10-28 03:39:23 +00001943bool LLParser::PerFunctionState::FinishFunction() {
1944 // Check to see if someone took the address of labels in this block.
1945 if (!P.ForwardRefBlockAddresses.empty()) {
1946 ValID FunctionID;
1947 if (!F.getName().empty()) {
1948 FunctionID.Kind = ValID::t_GlobalName;
1949 FunctionID.StrVal = F.getName();
1950 } else {
1951 FunctionID.Kind = ValID::t_GlobalID;
1952 FunctionID.UIntVal = FunctionNumber;
1953 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001954
Chris Lattner09d9ef42009-10-28 03:39:23 +00001955 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1956 FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1957 if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1958 // Resolve all these references.
1959 if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1960 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00001961
Chris Lattner09d9ef42009-10-28 03:39:23 +00001962 P.ForwardRefBlockAddresses.erase(FRBAI);
1963 }
1964 }
Michael Ilseman407a6162012-11-15 22:34:00 +00001965
Chris Lattnerdf986172009-01-02 07:01:27 +00001966 if (!ForwardRefVals.empty())
1967 return P.Error(ForwardRefVals.begin()->second.second,
1968 "use of undefined value '%" + ForwardRefVals.begin()->first +
1969 "'");
1970 if (!ForwardRefValIDs.empty())
1971 return P.Error(ForwardRefValIDs.begin()->second.second,
1972 "use of undefined value '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00001973 Twine(ForwardRefValIDs.begin()->first) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00001974 return false;
1975}
1976
1977
1978/// GetVal - Get a value with the specified name or ID, creating a
1979/// forward reference record if needed. This can return null if the value
1980/// exists but does not have the right type.
1981Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
Chris Lattnerdb125cf2011-07-18 04:54:35 +00001982 Type *Ty, LocTy Loc) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001983 // Look this name up in the normal function symbol table.
1984 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001985
Chris Lattnerdf986172009-01-02 07:01:27 +00001986 // If this is a forward reference for the value, see if we already created a
1987 // forward ref record.
1988 if (Val == 0) {
1989 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1990 I = ForwardRefVals.find(Name);
1991 if (I != ForwardRefVals.end())
1992 Val = I->second.first;
1993 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001994
Chris Lattnerdf986172009-01-02 07:01:27 +00001995 // If we have the value in the symbol table or fwd-ref table, return it.
1996 if (Val) {
1997 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00001998 if (Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00001999 P.Error(Loc, "'%" + Name + "' is not a basic block");
2000 else
2001 P.Error(Loc, "'%" + Name + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002002 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002003 return 0;
2004 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002005
Chris Lattnerdf986172009-01-02 07:01:27 +00002006 // Don't make placeholders with invalid type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002007 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002008 P.Error(Loc, "invalid use of a non-first-class type");
2009 return 0;
2010 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002011
Chris Lattnerdf986172009-01-02 07:01:27 +00002012 // Otherwise, create a new forward reference for this value and remember it.
2013 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002014 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002015 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002016 else
2017 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002018
Chris Lattnerdf986172009-01-02 07:01:27 +00002019 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
2020 return FwdVal;
2021}
2022
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002023Value *LLParser::PerFunctionState::GetVal(unsigned ID, Type *Ty,
Chris Lattnerdf986172009-01-02 07:01:27 +00002024 LocTy Loc) {
2025 // Look this name up in the normal function symbol table.
2026 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002027
Chris Lattnerdf986172009-01-02 07:01:27 +00002028 // If this is a forward reference for the value, see if we already created a
2029 // forward ref record.
2030 if (Val == 0) {
2031 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
2032 I = ForwardRefValIDs.find(ID);
2033 if (I != ForwardRefValIDs.end())
2034 Val = I->second.first;
2035 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002036
Chris Lattnerdf986172009-01-02 07:01:27 +00002037 // If we have the value in the symbol table or fwd-ref table, return it.
2038 if (Val) {
2039 if (Val->getType() == Ty) return Val;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002040 if (Ty->isLabelTy())
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002041 P.Error(Loc, "'%" + Twine(ID) + "' is not a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002042 else
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002043 P.Error(Loc, "'%" + Twine(ID) + "' defined with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002044 getTypeString(Val->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002045 return 0;
2046 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002047
Chris Lattner1afcace2011-07-09 17:41:24 +00002048 if (!Ty->isFirstClassType() && !Ty->isLabelTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002049 P.Error(Loc, "invalid use of a non-first-class type");
2050 return 0;
2051 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002052
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 // Otherwise, create a new forward reference for this value and remember it.
2054 Value *FwdVal;
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002055 if (Ty->isLabelTy())
Owen Anderson1d0be152009-08-13 21:58:54 +00002056 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00002057 else
2058 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002059
Chris Lattnerdf986172009-01-02 07:01:27 +00002060 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
2061 return FwdVal;
2062}
2063
2064/// SetInstName - After an instruction is parsed and inserted into its
2065/// basic block, this installs its name.
2066bool LLParser::PerFunctionState::SetInstName(int NameID,
2067 const std::string &NameStr,
2068 LocTy NameLoc, Instruction *Inst) {
2069 // If this instruction has void type, it cannot have a name or ID specified.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002070 if (Inst->getType()->isVoidTy()) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002071 if (NameID != -1 || !NameStr.empty())
2072 return P.Error(NameLoc, "instructions returning void cannot have a name");
2073 return false;
2074 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002075
Chris Lattnerdf986172009-01-02 07:01:27 +00002076 // If this was a numbered instruction, verify that the instruction is the
2077 // expected value and resolve any forward references.
2078 if (NameStr.empty()) {
2079 // If neither a name nor an ID was specified, just use the next ID.
2080 if (NameID == -1)
2081 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002082
Chris Lattnerdf986172009-01-02 07:01:27 +00002083 if (unsigned(NameID) != NumberedVals.size())
2084 return P.Error(NameLoc, "instruction expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002085 Twine(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002086
Chris Lattnerdf986172009-01-02 07:01:27 +00002087 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
2088 ForwardRefValIDs.find(NameID);
2089 if (FI != ForwardRefValIDs.end()) {
2090 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002091 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002092 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002093 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00002094 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002095 ForwardRefValIDs.erase(FI);
2096 }
2097
2098 NumberedVals.push_back(Inst);
2099 return false;
2100 }
2101
2102 // Otherwise, the instruction had a name. Resolve forward refs and set it.
2103 std::map<std::string, std::pair<Value*, LocTy> >::iterator
2104 FI = ForwardRefVals.find(NameStr);
2105 if (FI != ForwardRefVals.end()) {
2106 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002107 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002108 getTypeString(FI->second.first->getType()) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002109 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00002110 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00002111 ForwardRefVals.erase(FI);
2112 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002113
Chris Lattnerdf986172009-01-02 07:01:27 +00002114 // Set the name on the instruction.
2115 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002116
Benjamin Krameraf812352010-10-16 11:28:23 +00002117 if (Inst->getName() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002118 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00002119 NameStr + "'");
2120 return false;
2121}
2122
2123/// GetBB - Get a basic block with the specified name or ID, creating a
2124/// forward reference record if needed.
2125BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
2126 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002127 return cast_or_null<BasicBlock>(GetVal(Name,
2128 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002129}
2130
2131BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002132 return cast_or_null<BasicBlock>(GetVal(ID,
2133 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00002134}
2135
2136/// DefineBB - Define the specified basic block, which is either named or
2137/// unnamed. If there is an error, this returns null otherwise it returns
2138/// the block being defined.
2139BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
2140 LocTy Loc) {
2141 BasicBlock *BB;
2142 if (Name.empty())
2143 BB = GetBB(NumberedVals.size(), Loc);
2144 else
2145 BB = GetBB(Name, Loc);
2146 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002147
Chris Lattnerdf986172009-01-02 07:01:27 +00002148 // Move the block to the end of the function. Forward ref'd blocks are
2149 // inserted wherever they happen to be referenced.
2150 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002151
Chris Lattnerdf986172009-01-02 07:01:27 +00002152 // Remove the block from forward ref sets.
2153 if (Name.empty()) {
2154 ForwardRefValIDs.erase(NumberedVals.size());
2155 NumberedVals.push_back(BB);
2156 } else {
2157 // BB forward references are already in the function symbol table.
2158 ForwardRefVals.erase(Name);
2159 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002160
Chris Lattnerdf986172009-01-02 07:01:27 +00002161 return BB;
2162}
2163
2164//===----------------------------------------------------------------------===//
2165// Constants.
2166//===----------------------------------------------------------------------===//
2167
2168/// ParseValID - Parse an abstract value that doesn't necessarily have a
2169/// type implied. For example, if we parse "4" we don't know what integer type
2170/// it has. The value will later be combined with its type and checked for
Victor Hernandez24e64df2010-01-10 07:14:18 +00002171/// sanity. PFS is used to convert function-local operands of metadata (since
2172/// metadata operands are not just parsed here but also converted to values).
2173/// PFS can be null when we are not parsing metadata values inside a function.
Victor Hernandezbf170d42010-01-05 22:22:14 +00002174bool LLParser::ParseValID(ValID &ID, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002175 ID.Loc = Lex.getLoc();
2176 switch (Lex.getKind()) {
2177 default: return TokError("expected value token");
2178 case lltok::GlobalID: // @42
2179 ID.UIntVal = Lex.getUIntVal();
2180 ID.Kind = ValID::t_GlobalID;
2181 break;
2182 case lltok::GlobalVar: // @foo
2183 ID.StrVal = Lex.getStrVal();
2184 ID.Kind = ValID::t_GlobalName;
2185 break;
2186 case lltok::LocalVarID: // %42
2187 ID.UIntVal = Lex.getUIntVal();
2188 ID.Kind = ValID::t_LocalID;
2189 break;
2190 case lltok::LocalVar: // %foo
Chris Lattnerdf986172009-01-02 07:01:27 +00002191 ID.StrVal = Lex.getStrVal();
2192 ID.Kind = ValID::t_LocalName;
2193 break;
Dan Gohman83448032010-07-14 18:26:50 +00002194 case lltok::exclaim: // !42, !{...}, or !"foo"
2195 return ParseMetadataValue(ID, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002196 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002197 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002198 ID.Kind = ValID::t_APSInt;
2199 break;
2200 case lltok::APFloat:
2201 ID.APFloatVal = Lex.getAPFloatVal();
2202 ID.Kind = ValID::t_APFloat;
2203 break;
2204 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00002205 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002206 ID.Kind = ValID::t_Constant;
2207 break;
2208 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00002209 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002210 ID.Kind = ValID::t_Constant;
2211 break;
2212 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
2213 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
2214 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002215
Chris Lattnerdf986172009-01-02 07:01:27 +00002216 case lltok::lbrace: {
2217 // ValID ::= '{' ConstVector '}'
2218 Lex.Lex();
2219 SmallVector<Constant*, 16> Elts;
2220 if (ParseGlobalValueVector(Elts) ||
2221 ParseToken(lltok::rbrace, "expected end of struct constant"))
2222 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002223
Chris Lattner1afcace2011-07-09 17:41:24 +00002224 ID.ConstantStructElts = new Constant*[Elts.size()];
2225 ID.UIntVal = Elts.size();
2226 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2227 ID.Kind = ValID::t_ConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002228 return false;
2229 }
2230 case lltok::less: {
2231 // ValID ::= '<' ConstVector '>' --> Vector.
2232 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
2233 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002234 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002235
Chris Lattnerdf986172009-01-02 07:01:27 +00002236 SmallVector<Constant*, 16> Elts;
2237 LocTy FirstEltLoc = Lex.getLoc();
2238 if (ParseGlobalValueVector(Elts) ||
2239 (isPackedStruct &&
2240 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
2241 ParseToken(lltok::greater, "expected end of constant"))
2242 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002243
Chris Lattnerdf986172009-01-02 07:01:27 +00002244 if (isPackedStruct) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002245 ID.ConstantStructElts = new Constant*[Elts.size()];
2246 memcpy(ID.ConstantStructElts, Elts.data(), Elts.size()*sizeof(Elts[0]));
2247 ID.UIntVal = Elts.size();
2248 ID.Kind = ValID::t_PackedConstantStruct;
Chris Lattnerdf986172009-01-02 07:01:27 +00002249 return false;
2250 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002251
Chris Lattnerdf986172009-01-02 07:01:27 +00002252 if (Elts.empty())
2253 return Error(ID.Loc, "constant vector must not be empty");
2254
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002255 if (!Elts[0]->getType()->isIntegerTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002256 !Elts[0]->getType()->isFloatingPointTy() &&
2257 !Elts[0]->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002258 return Error(FirstEltLoc,
Nadav Rotem16087692011-12-05 06:29:09 +00002259 "vector elements must have integer, pointer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002260
Chris Lattnerdf986172009-01-02 07:01:27 +00002261 // Verify that all the vector elements have the same type.
2262 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
2263 if (Elts[i]->getType() != Elts[0]->getType())
2264 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002265 "vector element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002266 " is not of type '" + getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002267
Chris Lattner2ca5c862011-02-15 00:14:00 +00002268 ID.ConstantVal = ConstantVector::get(Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002269 ID.Kind = ValID::t_Constant;
2270 return false;
2271 }
2272 case lltok::lsquare: { // Array Constant
2273 Lex.Lex();
2274 SmallVector<Constant*, 16> Elts;
2275 LocTy FirstEltLoc = Lex.getLoc();
2276 if (ParseGlobalValueVector(Elts) ||
2277 ParseToken(lltok::rsquare, "expected end of array constant"))
2278 return true;
2279
2280 // Handle empty element.
2281 if (Elts.empty()) {
2282 // Use undef instead of an array because it's inconvenient to determine
2283 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00002284 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00002285 return false;
2286 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002287
Chris Lattnerdf986172009-01-02 07:01:27 +00002288 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002289 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002290 getTypeString(Elts[0]->getType()));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002291
Owen Andersondebcb012009-07-29 22:17:13 +00002292 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002293
Chris Lattnerdf986172009-01-02 07:01:27 +00002294 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00002295 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002296 if (Elts[i]->getType() != Elts[0]->getType())
2297 return Error(FirstEltLoc,
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002298 "array element #" + Twine(i) +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002299 " is not of type '" + getTypeString(Elts[0]->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00002300 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002301
Jay Foad26701082011-06-22 09:24:39 +00002302 ID.ConstantVal = ConstantArray::get(ATy, Elts);
Chris Lattnerdf986172009-01-02 07:01:27 +00002303 ID.Kind = ValID::t_Constant;
2304 return false;
2305 }
2306 case lltok::kw_c: // c "foo"
2307 Lex.Lex();
Chris Lattner18c7f802012-02-05 02:29:43 +00002308 ID.ConstantVal = ConstantDataArray::getString(Context, Lex.getStrVal(),
2309 false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002310 if (ParseToken(lltok::StringConstant, "expected string")) return true;
2311 ID.Kind = ValID::t_Constant;
2312 return false;
2313
2314 case lltok::kw_asm: {
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002315 // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
Chad Rosier581600b2012-09-05 19:00:49 +00002316 bool HasSideEffect, AlignStack, AsmDialect;
Chris Lattnerdf986172009-01-02 07:01:27 +00002317 Lex.Lex();
2318 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Dale Johannesen8ba2d5b2009-10-21 23:28:00 +00002319 ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
Chad Rosier581600b2012-09-05 19:00:49 +00002320 ParseOptionalToken(lltok::kw_inteldialect, AsmDialect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002321 ParseStringConstant(ID.StrVal) ||
2322 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002323 ParseToken(lltok::StringConstant, "expected constraint string"))
2324 return true;
2325 ID.StrVal2 = Lex.getStrVal();
Chad Rosier36547342012-09-05 00:08:17 +00002326 ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1) |
Chad Rosier581600b2012-09-05 19:00:49 +00002327 (unsigned(AsmDialect)<<2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002328 ID.Kind = ValID::t_InlineAsm;
2329 return false;
2330 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002331
Chris Lattner09d9ef42009-10-28 03:39:23 +00002332 case lltok::kw_blockaddress: {
2333 // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2334 Lex.Lex();
2335
2336 ValID Fn, Label;
2337 LocTy FnLoc, LabelLoc;
Michael Ilseman407a6162012-11-15 22:34:00 +00002338
Chris Lattner09d9ef42009-10-28 03:39:23 +00002339 if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2340 ParseValID(Fn) ||
2341 ParseToken(lltok::comma, "expected comma in block address expression")||
2342 ParseValID(Label) ||
2343 ParseToken(lltok::rparen, "expected ')' in block address expression"))
2344 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00002345
Chris Lattner09d9ef42009-10-28 03:39:23 +00002346 if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2347 return Error(Fn.Loc, "expected function name in blockaddress");
Chris Lattnercdfc9402009-11-01 01:27:45 +00002348 if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
Chris Lattner09d9ef42009-10-28 03:39:23 +00002349 return Error(Label.Loc, "expected basic block name in blockaddress");
Michael Ilseman407a6162012-11-15 22:34:00 +00002350
Chris Lattner09d9ef42009-10-28 03:39:23 +00002351 // Make a global variable as a placeholder for this reference.
2352 GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2353 false, GlobalValue::InternalLinkage,
2354 0, "");
2355 ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2356 ID.ConstantVal = FwdRef;
2357 ID.Kind = ValID::t_Constant;
2358 return false;
2359 }
Michael Ilseman407a6162012-11-15 22:34:00 +00002360
Chris Lattnerdf986172009-01-02 07:01:27 +00002361 case lltok::kw_trunc:
2362 case lltok::kw_zext:
2363 case lltok::kw_sext:
2364 case lltok::kw_fptrunc:
2365 case lltok::kw_fpext:
2366 case lltok::kw_bitcast:
2367 case lltok::kw_uitofp:
2368 case lltok::kw_sitofp:
2369 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002370 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002371 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002372 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002373 unsigned Opc = Lex.getUIntVal();
Chris Lattner1afcace2011-07-09 17:41:24 +00002374 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002375 Constant *SrcVal;
2376 Lex.Lex();
2377 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2378 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002379 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002380 ParseType(DestTy) ||
2381 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2382 return true;
2383 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2384 return Error(ID.Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002385 getTypeString(SrcVal->getType()) + "' to '" +
2386 getTypeString(DestTy) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002387 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002388 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002389 ID.Kind = ValID::t_Constant;
2390 return false;
2391 }
2392 case lltok::kw_extractvalue: {
2393 Lex.Lex();
2394 Constant *Val;
2395 SmallVector<unsigned, 4> Indices;
2396 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2397 ParseGlobalTypeAndValue(Val) ||
2398 ParseIndexList(Indices) ||
2399 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2400 return true;
Devang Patele8bc45a2009-11-03 19:06:07 +00002401
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002402 if (!Val->getType()->isAggregateType())
2403 return Error(ID.Loc, "extractvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002404 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002405 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002406 ID.ConstantVal = ConstantExpr::getExtractValue(Val, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002407 ID.Kind = ValID::t_Constant;
2408 return false;
2409 }
2410 case lltok::kw_insertvalue: {
2411 Lex.Lex();
2412 Constant *Val0, *Val1;
2413 SmallVector<unsigned, 4> Indices;
2414 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2415 ParseGlobalTypeAndValue(Val0) ||
2416 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2417 ParseGlobalTypeAndValue(Val1) ||
2418 ParseIndexList(Indices) ||
2419 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2420 return true;
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002421 if (!Val0->getType()->isAggregateType())
2422 return Error(ID.Loc, "insertvalue operand must be aggregate type");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002423 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002424 return Error(ID.Loc, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00002425 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1, Indices);
Chris Lattnerdf986172009-01-02 07:01:27 +00002426 ID.Kind = ValID::t_Constant;
2427 return false;
2428 }
2429 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002430 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002431 unsigned PredVal, Opc = Lex.getUIntVal();
2432 Constant *Val0, *Val1;
2433 Lex.Lex();
2434 if (ParseCmpPredicate(PredVal, Opc) ||
2435 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2436 ParseGlobalTypeAndValue(Val0) ||
2437 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2438 ParseGlobalTypeAndValue(Val1) ||
2439 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2440 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002441
Chris Lattnerdf986172009-01-02 07:01:27 +00002442 if (Val0->getType() != Val1->getType())
2443 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002444
Chris Lattnerdf986172009-01-02 07:01:27 +00002445 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002446
Chris Lattnerdf986172009-01-02 07:01:27 +00002447 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002448 if (!Val0->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002449 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002450 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002451 } else {
2452 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002453 if (!Val0->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00002454 !Val0->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002455 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002456 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002457 }
2458 ID.Kind = ValID::t_Constant;
2459 return false;
2460 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002461
Chris Lattnerdf986172009-01-02 07:01:27 +00002462 // Binary Operators.
2463 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002464 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002465 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002466 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002467 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002468 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002469 case lltok::kw_udiv:
2470 case lltok::kw_sdiv:
2471 case lltok::kw_fdiv:
2472 case lltok::kw_urem:
2473 case lltok::kw_srem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002474 case lltok::kw_frem:
2475 case lltok::kw_shl:
2476 case lltok::kw_lshr:
2477 case lltok::kw_ashr: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002478 bool NUW = false;
2479 bool NSW = false;
2480 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002481 unsigned Opc = Lex.getUIntVal();
2482 Constant *Val0, *Val1;
2483 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002484 LocTy ModifierLoc = Lex.getLoc();
Chris Lattnerf067d582011-02-07 16:40:21 +00002485 if (Opc == Instruction::Add || Opc == Instruction::Sub ||
2486 Opc == Instruction::Mul || Opc == Instruction::Shl) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002487 if (EatIfPresent(lltok::kw_nuw))
2488 NUW = true;
2489 if (EatIfPresent(lltok::kw_nsw)) {
2490 NSW = true;
2491 if (EatIfPresent(lltok::kw_nuw))
2492 NUW = true;
2493 }
Chris Lattnerf067d582011-02-07 16:40:21 +00002494 } else if (Opc == Instruction::SDiv || Opc == Instruction::UDiv ||
2495 Opc == Instruction::LShr || Opc == Instruction::AShr) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002496 if (EatIfPresent(lltok::kw_exact))
2497 Exact = true;
2498 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002499 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2500 ParseGlobalTypeAndValue(Val0) ||
2501 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2502 ParseGlobalTypeAndValue(Val1) ||
2503 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2504 return true;
2505 if (Val0->getType() != Val1->getType())
2506 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002507 if (!Val0->getType()->isIntOrIntVectorTy()) {
Dan Gohman59858cf2009-07-27 16:11:46 +00002508 if (NUW)
2509 return Error(ModifierLoc, "nuw only applies to integer operations");
2510 if (NSW)
2511 return Error(ModifierLoc, "nsw only applies to integer operations");
2512 }
Dan Gohman1eaac532010-05-03 22:44:19 +00002513 // Check that the type is valid for the operator.
2514 switch (Opc) {
2515 case Instruction::Add:
2516 case Instruction::Sub:
2517 case Instruction::Mul:
2518 case Instruction::UDiv:
2519 case Instruction::SDiv:
2520 case Instruction::URem:
2521 case Instruction::SRem:
Chris Lattnerf067d582011-02-07 16:40:21 +00002522 case Instruction::Shl:
2523 case Instruction::AShr:
2524 case Instruction::LShr:
Dan Gohman1eaac532010-05-03 22:44:19 +00002525 if (!Val0->getType()->isIntOrIntVectorTy())
2526 return Error(ID.Loc, "constexpr requires integer operands");
2527 break;
2528 case Instruction::FAdd:
2529 case Instruction::FSub:
2530 case Instruction::FMul:
2531 case Instruction::FDiv:
2532 case Instruction::FRem:
2533 if (!Val0->getType()->isFPOrFPVectorTy())
2534 return Error(ID.Loc, "constexpr requires fp operands");
2535 break;
2536 default: llvm_unreachable("Unknown binary operator!");
2537 }
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002538 unsigned Flags = 0;
2539 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2540 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
Chris Lattner35bda892011-02-06 21:44:57 +00002541 if (Exact) Flags |= PossiblyExactOperator::IsExact;
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002542 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002543 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002544 ID.Kind = ValID::t_Constant;
2545 return false;
2546 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002547
Chris Lattnerdf986172009-01-02 07:01:27 +00002548 // Logical Operations
Chris Lattnerdf986172009-01-02 07:01:27 +00002549 case lltok::kw_and:
2550 case lltok::kw_or:
2551 case lltok::kw_xor: {
2552 unsigned Opc = Lex.getUIntVal();
2553 Constant *Val0, *Val1;
2554 Lex.Lex();
2555 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2556 ParseGlobalTypeAndValue(Val0) ||
2557 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2558 ParseGlobalTypeAndValue(Val1) ||
2559 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2560 return true;
2561 if (Val0->getType() != Val1->getType())
2562 return Error(ID.Loc, "operands of constexpr must have same type");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002563 if (!Val0->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002564 return Error(ID.Loc,
2565 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002566 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002567 ID.Kind = ValID::t_Constant;
2568 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002569 }
2570
Chris Lattnerdf986172009-01-02 07:01:27 +00002571 case lltok::kw_getelementptr:
2572 case lltok::kw_shufflevector:
2573 case lltok::kw_insertelement:
2574 case lltok::kw_extractelement:
2575 case lltok::kw_select: {
2576 unsigned Opc = Lex.getUIntVal();
2577 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002578 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002579 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002580 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002581 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002582 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2583 ParseGlobalValueVector(Elts) ||
2584 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2585 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002586
Chris Lattnerdf986172009-01-02 07:01:27 +00002587 if (Opc == Instruction::GetElementPtr) {
Nadav Rotem16087692011-12-05 06:29:09 +00002588 if (Elts.size() == 0 ||
2589 !Elts[0]->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002590 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002591
Jay Foaddab3d292011-07-21 14:31:17 +00002592 ArrayRef<Constant *> Indices(Elts.begin() + 1, Elts.end());
Jay Foada9203102011-07-25 09:48:08 +00002593 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00002594 return Error(ID.Loc, "invalid indices for getelementptr");
Jay Foad4b5e2072011-07-21 15:15:37 +00002595 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0], Indices,
2596 InBounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002597 } else if (Opc == Instruction::Select) {
2598 if (Elts.size() != 3)
2599 return Error(ID.Loc, "expected three operands to select");
2600 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2601 Elts[2]))
2602 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002603 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002604 } else if (Opc == Instruction::ShuffleVector) {
2605 if (Elts.size() != 3)
2606 return Error(ID.Loc, "expected three operands to shufflevector");
2607 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2608 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002609 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002610 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002611 } else if (Opc == Instruction::ExtractElement) {
2612 if (Elts.size() != 2)
2613 return Error(ID.Loc, "expected two operands to extractelement");
2614 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2615 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002616 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002617 } else {
2618 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2619 if (Elts.size() != 3)
2620 return Error(ID.Loc, "expected three operands to insertelement");
2621 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2622 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002623 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002624 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002625 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002626
Chris Lattnerdf986172009-01-02 07:01:27 +00002627 ID.Kind = ValID::t_Constant;
2628 return false;
2629 }
2630 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002631
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 Lex.Lex();
2633 return false;
2634}
2635
2636/// ParseGlobalValue - Parse a global value with the specified type.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002637bool LLParser::ParseGlobalValue(Type *Ty, Constant *&C) {
Victor Hernandez92f238d2010-01-11 22:31:58 +00002638 C = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002639 ValID ID;
Victor Hernandez92f238d2010-01-11 22:31:58 +00002640 Value *V = NULL;
2641 bool Parsed = ParseValID(ID) ||
2642 ConvertValIDToValue(Ty, ID, V, NULL);
2643 if (V && !(C = dyn_cast<Constant>(V)))
2644 return Error(ID.Loc, "global values must be constants");
2645 return Parsed;
Chris Lattnerdf986172009-01-02 07:01:27 +00002646}
2647
Victor Hernandez92f238d2010-01-11 22:31:58 +00002648bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002649 Type *Ty = 0;
2650 return ParseType(Ty) ||
2651 ParseGlobalValue(Ty, V);
Victor Hernandez92f238d2010-01-11 22:31:58 +00002652}
2653
2654/// ParseGlobalValueVector
2655/// ::= /*empty*/
2656/// ::= TypeAndValue (',' TypeAndValue)*
2657bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2658 // Empty list.
2659 if (Lex.getKind() == lltok::rbrace ||
2660 Lex.getKind() == lltok::rsquare ||
2661 Lex.getKind() == lltok::greater ||
2662 Lex.getKind() == lltok::rparen)
2663 return false;
2664
2665 Constant *C;
2666 if (ParseGlobalTypeAndValue(C)) return true;
2667 Elts.push_back(C);
2668
2669 while (EatIfPresent(lltok::comma)) {
2670 if (ParseGlobalTypeAndValue(C)) return true;
2671 Elts.push_back(C);
2672 }
2673
2674 return false;
2675}
2676
Dan Gohman309b3af2010-08-24 02:24:03 +00002677bool LLParser::ParseMetadataListValue(ValID &ID, PerFunctionState *PFS) {
2678 assert(Lex.getKind() == lltok::lbrace);
2679 Lex.Lex();
2680
2681 SmallVector<Value*, 16> Elts;
2682 if (ParseMDNodeVector(Elts, PFS) ||
2683 ParseToken(lltok::rbrace, "expected end of metadata node"))
2684 return true;
2685
Jay Foadec9186b2011-04-21 19:59:31 +00002686 ID.MDNodeVal = MDNode::get(Context, Elts);
Dan Gohman309b3af2010-08-24 02:24:03 +00002687 ID.Kind = ValID::t_MDNode;
2688 return false;
2689}
2690
Dan Gohman83448032010-07-14 18:26:50 +00002691/// ParseMetadataValue
2692/// ::= !42
2693/// ::= !{...}
2694/// ::= !"string"
2695bool LLParser::ParseMetadataValue(ValID &ID, PerFunctionState *PFS) {
2696 assert(Lex.getKind() == lltok::exclaim);
2697 Lex.Lex();
2698
2699 // MDNode:
2700 // !{ ... }
Dan Gohman309b3af2010-08-24 02:24:03 +00002701 if (Lex.getKind() == lltok::lbrace)
2702 return ParseMetadataListValue(ID, PFS);
Dan Gohman83448032010-07-14 18:26:50 +00002703
2704 // Standalone metadata reference
2705 // !42
2706 if (Lex.getKind() == lltok::APSInt) {
2707 if (ParseMDNodeID(ID.MDNodeVal)) return true;
2708 ID.Kind = ValID::t_MDNode;
2709 return false;
2710 }
2711
2712 // MDString:
2713 // ::= '!' STRINGCONSTANT
2714 if (ParseMDString(ID.MDStringVal)) return true;
2715 ID.Kind = ValID::t_MDString;
2716 return false;
2717}
2718
Victor Hernandez92f238d2010-01-11 22:31:58 +00002719
2720//===----------------------------------------------------------------------===//
2721// Function Parsing.
2722//===----------------------------------------------------------------------===//
2723
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002724bool LLParser::ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
Victor Hernandez92f238d2010-01-11 22:31:58 +00002725 PerFunctionState *PFS) {
Duncan Sands1df98592010-02-16 11:11:14 +00002726 if (Ty->isFunctionTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002727 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002728
Chris Lattnerdf986172009-01-02 07:01:27 +00002729 switch (ID.Kind) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002730 case ValID::t_LocalID:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002731 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2732 V = PFS->GetVal(ID.UIntVal, Ty, ID.Loc);
2733 return (V == 0);
Chris Lattnerdf986172009-01-02 07:01:27 +00002734 case ValID::t_LocalName:
Victor Hernandez92f238d2010-01-11 22:31:58 +00002735 if (!PFS) return Error(ID.Loc, "invalid use of function-local name");
2736 V = PFS->GetVal(ID.StrVal, Ty, ID.Loc);
2737 return (V == 0);
2738 case ValID::t_InlineAsm: {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002739 PointerType *PTy = dyn_cast<PointerType>(Ty);
Michael Ilseman407a6162012-11-15 22:34:00 +00002740 FunctionType *FTy =
Victor Hernandez92f238d2010-01-11 22:31:58 +00002741 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2742 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2743 return Error(ID.Loc, "invalid type for inline asm constraint string");
Chad Rosier36547342012-09-05 00:08:17 +00002744 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1,
Chad Rosier581600b2012-09-05 19:00:49 +00002745 (ID.UIntVal>>1)&1, (InlineAsm::AsmDialect(ID.UIntVal>>2)));
Victor Hernandez92f238d2010-01-11 22:31:58 +00002746 return false;
2747 }
2748 case ValID::t_MDNode:
2749 if (!Ty->isMetadataTy())
2750 return Error(ID.Loc, "metadata value must have metadata type");
2751 V = ID.MDNodeVal;
2752 return false;
2753 case ValID::t_MDString:
2754 if (!Ty->isMetadataTy())
2755 return Error(ID.Loc, "metadata value must have metadata type");
2756 V = ID.MDStringVal;
2757 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002758 case ValID::t_GlobalName:
2759 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2760 return V == 0;
2761 case ValID::t_GlobalID:
2762 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2763 return V == 0;
2764 case ValID::t_APSInt:
Duncan Sands1df98592010-02-16 11:11:14 +00002765 if (!Ty->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002766 return Error(ID.Loc, "integer constant must have integer type");
Jay Foad40f8f622010-12-07 08:25:19 +00002767 ID.APSIntVal = ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002768 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002769 return false;
2770 case ValID::t_APFloat:
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00002771 if (!Ty->isFloatingPointTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002772 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2773 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002774
Dan Gohmance163392011-12-17 00:04:22 +00002775 // The lexer has no type info, so builds all half, float, and double FP
2776 // constants as double. Fix this here. Long double does not need this.
2777 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002778 bool Ignored;
Dan Gohmance163392011-12-17 00:04:22 +00002779 if (Ty->isHalfTy())
2780 ID.APFloatVal.convert(APFloat::IEEEhalf, APFloat::rmNearestTiesToEven,
2781 &Ignored);
2782 else if (Ty->isFloatTy())
2783 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2784 &Ignored);
Chris Lattnerdf986172009-01-02 07:01:27 +00002785 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002786 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002787
Chris Lattner959873d2009-01-05 18:24:23 +00002788 if (V->getType() != Ty)
2789 return Error(ID.Loc, "floating point constant does not have type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00002790 getTypeString(Ty) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002791
Chris Lattnerdf986172009-01-02 07:01:27 +00002792 return false;
2793 case ValID::t_Null:
Duncan Sands1df98592010-02-16 11:11:14 +00002794 if (!Ty->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002795 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002796 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002797 return false;
2798 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002799 // FIXME: LabelTy should not be a first-class type.
Chris Lattner1afcace2011-07-09 17:41:24 +00002800 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002801 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002802 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002803 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002804 case ValID::t_EmptyArray:
Duncan Sands1df98592010-02-16 11:11:14 +00002805 if (!Ty->isArrayTy() || cast<ArrayType>(Ty)->getNumElements() != 0)
Chris Lattner081b5052009-01-05 07:52:51 +00002806 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002807 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002808 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002809 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002810 // FIXME: LabelTy should not be a first-class type.
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00002811 if (!Ty->isFirstClassType() || Ty->isLabelTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00002812 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002813 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002814 return false;
2815 case ValID::t_Constant:
Chris Lattner61c70e92010-08-28 04:09:24 +00002816 if (ID.ConstantVal->getType() != Ty)
Chris Lattnerdf986172009-01-02 07:01:27 +00002817 return Error(ID.Loc, "constant expression type mismatch");
Chris Lattnerfdfeb692010-02-12 20:49:41 +00002818
Chris Lattnerdf986172009-01-02 07:01:27 +00002819 V = ID.ConstantVal;
2820 return false;
Chris Lattner1afcace2011-07-09 17:41:24 +00002821 case ValID::t_ConstantStruct:
2822 case ValID::t_PackedConstantStruct:
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002823 if (StructType *ST = dyn_cast<StructType>(Ty)) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002824 if (ST->getNumElements() != ID.UIntVal)
2825 return Error(ID.Loc,
2826 "initializer with struct type has wrong # elements");
2827 if (ST->isPacked() != (ID.Kind == ValID::t_PackedConstantStruct))
2828 return Error(ID.Loc, "packed'ness of initializer and type don't match");
Michael Ilseman407a6162012-11-15 22:34:00 +00002829
Chris Lattner1afcace2011-07-09 17:41:24 +00002830 // Verify that the elements are compatible with the structtype.
2831 for (unsigned i = 0, e = ID.UIntVal; i != e; ++i)
2832 if (ID.ConstantStructElts[i]->getType() != ST->getElementType(i))
2833 return Error(ID.Loc, "element " + Twine(i) +
2834 " of struct initializer doesn't match struct element type");
Michael Ilseman407a6162012-11-15 22:34:00 +00002835
Frits van Bommel39b5abf2011-07-18 12:00:32 +00002836 V = ConstantStruct::get(ST, makeArrayRef(ID.ConstantStructElts,
2837 ID.UIntVal));
Chris Lattner1afcace2011-07-09 17:41:24 +00002838 } else
2839 return Error(ID.Loc, "constant expression type mismatch");
2840 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002841 }
Chandler Carruth732f05c2012-01-10 18:08:01 +00002842 llvm_unreachable("Invalid ValID");
Chris Lattnerdf986172009-01-02 07:01:27 +00002843}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002844
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002845bool LLParser::ParseValue(Type *Ty, Value *&V, PerFunctionState *PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002846 V = 0;
2847 ValID ID;
Chris Lattner1afcace2011-07-09 17:41:24 +00002848 return ParseValID(ID, PFS) ||
2849 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002850}
2851
Chris Lattner1afcace2011-07-09 17:41:24 +00002852bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2853 Type *Ty = 0;
2854 return ParseType(Ty) ||
2855 ParseValue(Ty, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002856}
2857
Chris Lattnerf9be95f2009-10-27 19:13:16 +00002858bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2859 PerFunctionState &PFS) {
2860 Value *V;
2861 Loc = Lex.getLoc();
2862 if (ParseTypeAndValue(V, PFS)) return true;
2863 if (!isa<BasicBlock>(V))
2864 return Error(Loc, "expected a basic block");
2865 BB = cast<BasicBlock>(V);
2866 return false;
2867}
2868
2869
Chris Lattnerdf986172009-01-02 07:01:27 +00002870/// FunctionHeader
2871/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
Rafael Espindolabea46262011-01-08 16:42:36 +00002872/// OptUnnamedAddr Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
Chris Lattnerdf986172009-01-02 07:01:27 +00002873/// OptionalAlign OptGC
2874bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2875 // Parse the linkage.
2876 LocTy LinkageLoc = Lex.getLoc();
2877 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002878
Kostya Serebryany164b86b2012-01-20 17:56:17 +00002879 unsigned Visibility;
Bill Wendling702cc912012-10-15 20:35:56 +00002880 AttrBuilder RetAttrs;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002881 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00002882 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00002883 LocTy RetTypeLoc = Lex.getLoc();
2884 if (ParseOptionalLinkage(Linkage) ||
2885 ParseOptionalVisibility(Visibility) ||
2886 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00002887 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002888 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002889 return true;
2890
2891 // Verify that the linkage is ok.
2892 switch ((GlobalValue::LinkageTypes)Linkage) {
2893 case GlobalValue::ExternalLinkage:
2894 break; // always ok.
2895 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002896 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002897 if (isDefine)
2898 return Error(LinkageLoc, "invalid linkage for function definition");
2899 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002900 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002901 case GlobalValue::LinkerPrivateLinkage:
Bill Wendling5e721d72010-07-01 21:55:59 +00002902 case GlobalValue::LinkerPrivateWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002903 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002904 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002905 case GlobalValue::LinkOnceAnyLinkage:
2906 case GlobalValue::LinkOnceODRLinkage:
Bill Wendling32811be2012-08-17 18:33:14 +00002907 case GlobalValue::LinkOnceODRAutoHideLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002908 case GlobalValue::WeakAnyLinkage:
2909 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002910 case GlobalValue::DLLExportLinkage:
2911 if (!isDefine)
2912 return Error(LinkageLoc, "invalid linkage for function declaration");
2913 break;
2914 case GlobalValue::AppendingLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002915 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002916 return Error(LinkageLoc, "invalid function linkage type");
2917 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002918
Chris Lattner1afcace2011-07-09 17:41:24 +00002919 if (!FunctionType::isValidReturnType(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002920 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002921
Chris Lattnerdf986172009-01-02 07:01:27 +00002922 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002923
2924 std::string FunctionName;
2925 if (Lex.getKind() == lltok::GlobalVar) {
2926 FunctionName = Lex.getStrVal();
2927 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2928 unsigned NameID = Lex.getUIntVal();
2929
2930 if (NameID != NumberedVals.size())
2931 return TokError("function expected to be numbered '%" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00002932 Twine(NumberedVals.size()) + "'");
Chris Lattnerf570e622009-02-18 21:48:13 +00002933 } else {
2934 return TokError("expected function name");
2935 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002936
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002937 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002938
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002939 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002940 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002941
Chris Lattner1afcace2011-07-09 17:41:24 +00002942 SmallVector<ArgInfo, 8> ArgList;
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 bool isVarArg;
Bill Wendling702cc912012-10-15 20:35:56 +00002944 AttrBuilder FuncAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002945 std::vector<unsigned> FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00002946 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002947 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002948 std::string GC;
Rafael Espindola3971df52011-01-25 19:09:56 +00002949 bool UnnamedAddr;
2950 LocTy UnnamedAddrLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002951
Chris Lattner1afcace2011-07-09 17:41:24 +00002952 if (ParseArgumentList(ArgList, isVarArg) ||
Rafael Espindola3971df52011-01-25 19:09:56 +00002953 ParseOptionalToken(lltok::kw_unnamed_addr, UnnamedAddr,
2954 &UnnamedAddrLoc) ||
Bill Wendlingbaad55c2013-02-08 06:32:06 +00002955 ParseFnAttributeValuePairs(FuncAttrs, FwdRefAttrGrps, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002956 (EatIfPresent(lltok::kw_section) &&
2957 ParseStringConstant(Section)) ||
2958 ParseOptionalAlignment(Alignment) ||
2959 (EatIfPresent(lltok::kw_gc) &&
2960 ParseStringConstant(GC)))
2961 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002962
2963 // If the alignment was parsed as an attribute, move to the alignment field.
Bill Wendlingf385f4c2012-10-08 23:27:46 +00002964 if (FuncAttrs.hasAlignmentAttr()) {
Bill Wendlingef99fe82012-09-21 15:26:31 +00002965 Alignment = FuncAttrs.getAlignment();
Bill Wendling034b94b2012-12-19 07:18:57 +00002966 FuncAttrs.removeAttribute(Attribute::Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +00002967 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002968
Chris Lattnerdf986172009-01-02 07:01:27 +00002969 // Okay, if we got here, the function is syntactically valid. Convert types
2970 // and do semantic checks.
Jay Foad5fdd6c82011-07-12 14:06:48 +00002971 std::vector<Type*> ParamTypeList;
Bill Wendlinga1683d62013-01-27 02:24:02 +00002972 SmallVector<AttributeSet, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002973
Bill Wendlinge603fe42012-09-19 23:54:18 +00002974 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00002975 Attrs.push_back(AttributeSet::get(RetType->getContext(),
2976 AttributeSet::ReturnIndex,
2977 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002978
Chris Lattnerdf986172009-01-02 07:01:27 +00002979 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattner1afcace2011-07-09 17:41:24 +00002980 ParamTypeList.push_back(ArgList[i].Ty);
Bill Wendling73dee182013-01-31 00:29:54 +00002981 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
2982 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00002983 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
2984 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002985 }
2986
Bill Wendlinge603fe42012-09-19 23:54:18 +00002987 if (FuncAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00002988 Attrs.push_back(AttributeSet::get(RetType->getContext(),
2989 AttributeSet::FunctionIndex,
2990 FuncAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00002991
Bill Wendling99faa3b2012-12-07 23:16:57 +00002992 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002993
Bill Wendling94e94b32012-12-30 13:50:49 +00002994 if (PAL.hasAttribute(1, Attribute::StructRet) && !RetType->isVoidTy())
Daniel Dunbara279bc32009-09-20 02:20:51 +00002995 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2996
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002997 FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002998 FunctionType::get(RetType, ParamTypeList, isVarArg);
Chris Lattnerdb125cf2011-07-18 04:54:35 +00002999 PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00003000
3001 Fn = 0;
3002 if (!FunctionName.empty()) {
3003 // If this was a definition of a forward reference, remove the definition
3004 // from the forward reference table and fill in the forward ref.
3005 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
3006 ForwardRefVals.find(FunctionName);
3007 if (FRVI != ForwardRefVals.end()) {
3008 Fn = M->getFunction(FunctionName);
Nick Lewycky64ea2752012-10-11 00:38:25 +00003009 if (!Fn)
3010 return Error(FRVI->second.second, "invalid forward reference to "
3011 "function as global value!");
Chris Lattnerf1cfb952010-04-20 04:49:11 +00003012 if (Fn->getType() != PFT)
3013 return Error(FRVI->second.second, "invalid forward reference to "
3014 "function '" + FunctionName + "' with wrong type!");
Michael Ilseman407a6162012-11-15 22:34:00 +00003015
Chris Lattnerdf986172009-01-02 07:01:27 +00003016 ForwardRefVals.erase(FRVI);
3017 } else if ((Fn = M->getFunction(FunctionName))) {
Chris Lattnerd5890992011-06-17 07:06:44 +00003018 // Reject redefinitions.
3019 return Error(NameLoc, "invalid redefinition of function '" +
3020 FunctionName + "'");
Chris Lattner1d871c52009-10-25 23:22:50 +00003021 } else if (M->getNamedValue(FunctionName)) {
3022 return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003023 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003024
Dan Gohman41905542009-08-29 23:37:49 +00003025 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00003026 // If this is a definition of a forward referenced function, make sure the
3027 // types agree.
3028 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
3029 = ForwardRefValIDs.find(NumberedVals.size());
3030 if (I != ForwardRefValIDs.end()) {
3031 Fn = cast<Function>(I->second.first);
3032 if (Fn->getType() != PFT)
3033 return Error(NameLoc, "type of definition and forward reference of '@" +
Benjamin Kramerd1e17032010-09-27 17:42:11 +00003034 Twine(NumberedVals.size()) + "' disagree");
Chris Lattnerdf986172009-01-02 07:01:27 +00003035 ForwardRefValIDs.erase(I);
3036 }
3037 }
3038
3039 if (Fn == 0)
3040 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
3041 else // Move the forward-reference to the correct spot in the module.
3042 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
3043
3044 if (FunctionName.empty())
3045 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003046
Chris Lattnerdf986172009-01-02 07:01:27 +00003047 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
3048 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
3049 Fn->setCallingConv(CC);
3050 Fn->setAttributes(PAL);
Rafael Espindolabea46262011-01-08 16:42:36 +00003051 Fn->setUnnamedAddr(UnnamedAddr);
Chris Lattnerdf986172009-01-02 07:01:27 +00003052 Fn->setAlignment(Alignment);
3053 Fn->setSection(Section);
3054 if (!GC.empty()) Fn->setGC(GC.c_str());
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003055 ForwardRefAttrGroups[Fn] = FwdRefAttrGrps;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003056
Chris Lattnerdf986172009-01-02 07:01:27 +00003057 // Add all of the arguments we parsed to the function.
3058 Function::arg_iterator ArgIt = Fn->arg_begin();
3059 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
3060 // If the argument has a name, insert it into the argument symbol table.
3061 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003062
Chris Lattnerdf986172009-01-02 07:01:27 +00003063 // Set the name, if it conflicted, it will be auto-renamed.
3064 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003065
Benjamin Krameraf812352010-10-16 11:28:23 +00003066 if (ArgIt->getName() != ArgList[i].Name)
Chris Lattnerdf986172009-01-02 07:01:27 +00003067 return Error(ArgList[i].Loc, "redefinition of argument '%" +
3068 ArgList[i].Name + "'");
3069 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003070
Chris Lattnerdf986172009-01-02 07:01:27 +00003071 return false;
3072}
3073
3074
3075/// ParseFunctionBody
3076/// ::= '{' BasicBlock+ '}'
Chris Lattnerdf986172009-01-02 07:01:27 +00003077///
3078bool LLParser::ParseFunctionBody(Function &Fn) {
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003079 if (Lex.getKind() != lltok::lbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003080 return TokError("expected '{' in function body");
3081 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003082
Chris Lattner09d9ef42009-10-28 03:39:23 +00003083 int FunctionNumber = -1;
3084 if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
Michael Ilseman407a6162012-11-15 22:34:00 +00003085
Chris Lattner09d9ef42009-10-28 03:39:23 +00003086 PerFunctionState PFS(*this, Fn, FunctionNumber);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003087
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003088 // We need at least one basic block.
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003089 if (Lex.getKind() == lltok::rbrace)
Chris Lattner2fdf8db2010-01-09 19:20:07 +00003090 return TokError("function body requires at least one basic block");
Michael Ilseman407a6162012-11-15 22:34:00 +00003091
Chris Lattner6b7c89e2011-06-17 06:42:57 +00003092 while (Lex.getKind() != lltok::rbrace)
Chris Lattnerdf986172009-01-02 07:01:27 +00003093 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003094
Chris Lattnerdf986172009-01-02 07:01:27 +00003095 // Eat the }.
3096 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003097
Chris Lattnerdf986172009-01-02 07:01:27 +00003098 // Verify function is ok.
Chris Lattner09d9ef42009-10-28 03:39:23 +00003099 return PFS.FinishFunction();
Chris Lattnerdf986172009-01-02 07:01:27 +00003100}
3101
3102/// ParseBasicBlock
3103/// ::= LabelStr? Instruction*
3104bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
3105 // If this basic block starts out with a name, remember it.
3106 std::string Name;
3107 LocTy NameLoc = Lex.getLoc();
3108 if (Lex.getKind() == lltok::LabelStr) {
3109 Name = Lex.getStrVal();
3110 Lex.Lex();
3111 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003112
Chris Lattnerdf986172009-01-02 07:01:27 +00003113 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
3114 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003115
Chris Lattnerdf986172009-01-02 07:01:27 +00003116 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003117
Chris Lattnerdf986172009-01-02 07:01:27 +00003118 // Parse the instructions in this block until we get a terminator.
3119 Instruction *Inst;
Chris Lattner1340dd32009-12-30 05:48:36 +00003120 SmallVector<std::pair<unsigned, MDNode *>, 4> MetadataOnInst;
Chris Lattnerdf986172009-01-02 07:01:27 +00003121 do {
3122 // This instruction may have three possibilities for a name: a) none
3123 // specified, b) name specified "%foo =", c) number specified: "%4 =".
3124 LocTy NameLoc = Lex.getLoc();
3125 int NameID = -1;
3126 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00003127
Chris Lattnerdf986172009-01-02 07:01:27 +00003128 if (Lex.getKind() == lltok::LocalVarID) {
3129 NameID = Lex.getUIntVal();
3130 Lex.Lex();
3131 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
3132 return true;
Chris Lattner7a1b9bd2011-06-17 06:36:20 +00003133 } else if (Lex.getKind() == lltok::LocalVar) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003134 NameStr = Lex.getStrVal();
3135 Lex.Lex();
3136 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
3137 return true;
3138 }
Devang Patelf633a062009-09-17 23:04:48 +00003139
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003140 switch (ParseInstruction(Inst, BB, PFS)) {
Craig Topper85814382012-02-07 05:05:23 +00003141 default: llvm_unreachable("Unknown ParseInstruction result!");
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003142 case InstError: return true;
3143 case InstNormal:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003144 BB->getInstList().push_back(Inst);
3145
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003146 // With a normal result, we check to see if the instruction is followed by
3147 // a comma and metadata.
3148 if (EatIfPresent(lltok::comma))
Dan Gohman9d072f52010-08-24 02:05:17 +00003149 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003150 return true;
3151 break;
3152 case InstExtraComma:
Chris Lattner4ba9d9b2010-04-07 04:08:57 +00003153 BB->getInstList().push_back(Inst);
3154
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003155 // If the instruction parser ate an extra comma at the end of it, it
3156 // *must* be followed by metadata.
Dan Gohman9d072f52010-08-24 02:05:17 +00003157 if (ParseInstructionMetadata(Inst, &PFS))
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003158 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003159 break;
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003160 }
Devang Patelf633a062009-09-17 23:04:48 +00003161
Chris Lattnerdf986172009-01-02 07:01:27 +00003162 // Set the name on the instruction.
3163 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
3164 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003165
Chris Lattnerdf986172009-01-02 07:01:27 +00003166 return false;
3167}
3168
3169//===----------------------------------------------------------------------===//
3170// Instruction Parsing.
3171//===----------------------------------------------------------------------===//
3172
3173/// ParseInstruction - Parse one of the many different instructions.
3174///
Chris Lattnerf1bc7ce2009-12-30 05:23:43 +00003175int LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
3176 PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003177 lltok::Kind Token = Lex.getKind();
3178 if (Token == lltok::Eof)
3179 return TokError("found end of file when expecting more instructions");
3180 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003181 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00003182 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003183
Chris Lattnerdf986172009-01-02 07:01:27 +00003184 switch (Token) {
3185 default: return Error(Loc, "expected instruction opcode");
3186 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00003187 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003188 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
3189 case lltok::kw_br: return ParseBr(Inst, PFS);
3190 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
Chris Lattnerab21db72009-10-28 00:19:10 +00003191 case lltok::kw_indirectbr: return ParseIndirectBr(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003192 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003193 case lltok::kw_resume: return ParseResume(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003194 // Binary Operators.
3195 case lltok::kw_add:
3196 case lltok::kw_sub:
Chris Lattnerf067d582011-02-07 16:40:21 +00003197 case lltok::kw_mul:
3198 case lltok::kw_shl: {
Chris Lattnerf067d582011-02-07 16:40:21 +00003199 bool NUW = EatIfPresent(lltok::kw_nuw);
3200 bool NSW = EatIfPresent(lltok::kw_nsw);
3201 if (!NUW) NUW = EatIfPresent(lltok::kw_nuw);
Michael Ilseman407a6162012-11-15 22:34:00 +00003202
Chris Lattnerf067d582011-02-07 16:40:21 +00003203 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003204
Chris Lattnerf067d582011-02-07 16:40:21 +00003205 if (NUW) cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
3206 if (NSW) cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
3207 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003208 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003209 case lltok::kw_fadd:
3210 case lltok::kw_fsub:
Michael Ilseman15c13d32012-11-27 00:42:44 +00003211 case lltok::kw_fmul:
3212 case lltok::kw_fdiv:
3213 case lltok::kw_frem: {
3214 FastMathFlags FMF = EatFastMathFlagsIfPresent();
3215 int Res = ParseArithmetic(Inst, PFS, KeywordVal, 2);
3216 if (Res != 0)
3217 return Res;
3218 if (FMF.any())
3219 Inst->setFastMathFlags(FMF);
3220 return 0;
3221 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00003222
Chris Lattner35bda892011-02-06 21:44:57 +00003223 case lltok::kw_sdiv:
Chris Lattnerf067d582011-02-07 16:40:21 +00003224 case lltok::kw_udiv:
3225 case lltok::kw_lshr:
3226 case lltok::kw_ashr: {
3227 bool Exact = EatIfPresent(lltok::kw_exact);
3228
3229 if (ParseArithmetic(Inst, PFS, KeywordVal, 1)) return true;
3230 if (Exact) cast<BinaryOperator>(Inst)->setIsExact(true);
3231 return false;
Dan Gohman59858cf2009-07-27 16:11:46 +00003232 }
3233
Chris Lattnerdf986172009-01-02 07:01:27 +00003234 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003235 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003236 case lltok::kw_and:
3237 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003238 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003239 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003240 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003241 // Casts.
3242 case lltok::kw_trunc:
3243 case lltok::kw_zext:
3244 case lltok::kw_sext:
3245 case lltok::kw_fptrunc:
3246 case lltok::kw_fpext:
3247 case lltok::kw_bitcast:
3248 case lltok::kw_uitofp:
3249 case lltok::kw_sitofp:
3250 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00003251 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00003252 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003253 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00003254 // Other.
3255 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00003256 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003257 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
3258 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
3259 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
3260 case lltok::kw_phi: return ParsePHI(Inst, PFS);
Bill Wendlinge6e88262011-08-12 20:24:12 +00003261 case lltok::kw_landingpad: return ParseLandingPad(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003262 case lltok::kw_call: return ParseCall(Inst, PFS, false);
3263 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
3264 // Memory.
Victor Hernandez13ad5aa2009-10-17 00:00:19 +00003265 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
Chris Lattnerfbe910e2011-11-27 06:56:53 +00003266 case lltok::kw_load: return ParseLoad(Inst, PFS);
3267 case lltok::kw_store: return ParseStore(Inst, PFS);
Eli Friedmanf03bb262011-08-12 22:50:01 +00003268 case lltok::kw_cmpxchg: return ParseCmpXchg(Inst, PFS);
3269 case lltok::kw_atomicrmw: return ParseAtomicRMW(Inst, PFS);
Eli Friedman47f35132011-07-25 23:16:38 +00003270 case lltok::kw_fence: return ParseFence(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003271 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
3272 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
3273 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
3274 }
3275}
3276
3277/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
3278bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003279 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003280 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003281 default: return TokError("expected fcmp predicate (e.g. 'oeq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003282 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
3283 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
3284 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
3285 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
3286 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
3287 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
3288 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
3289 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
3290 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
3291 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
3292 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
3293 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
3294 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
3295 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
3296 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
3297 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
3298 }
3299 } else {
3300 switch (Lex.getKind()) {
David Tweedd80d6082013-01-07 13:32:38 +00003301 default: return TokError("expected icmp predicate (e.g. 'eq')");
Chris Lattnerdf986172009-01-02 07:01:27 +00003302 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
3303 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
3304 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
3305 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
3306 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
3307 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
3308 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
3309 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
3310 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
3311 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
3312 }
3313 }
3314 Lex.Lex();
3315 return false;
3316}
3317
3318//===----------------------------------------------------------------------===//
3319// Terminator Instructions.
3320//===----------------------------------------------------------------------===//
3321
3322/// ParseRet - Parse a return instruction.
Chris Lattner3f3a0f62009-12-29 21:25:40 +00003323/// ::= 'ret' void (',' !dbg, !1)*
3324/// ::= 'ret' TypeAndValue (',' !dbg, !1)*
Chris Lattner437544f2011-06-17 06:49:41 +00003325bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
Chris Lattner1afcace2011-07-09 17:41:24 +00003326 PerFunctionState &PFS) {
3327 SMLoc TypeLoc = Lex.getLoc();
3328 Type *Ty = 0;
Chris Lattnera9a9e072009-03-09 04:49:14 +00003329 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003330
Chris Lattner1afcace2011-07-09 17:41:24 +00003331 Type *ResType = PFS.getFunction().getReturnType();
Michael Ilseman407a6162012-11-15 22:34:00 +00003332
Chris Lattnercf0fe8d2009-10-05 05:54:46 +00003333 if (Ty->isVoidTy()) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003334 if (!ResType->isVoidTy())
3335 return Error(TypeLoc, "value doesn't match function result type '" +
3336 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003337
Owen Anderson1d0be152009-08-13 21:58:54 +00003338 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00003339 return false;
3340 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003341
Chris Lattnerdf986172009-01-02 07:01:27 +00003342 Value *RV;
3343 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003344
Chris Lattner1afcace2011-07-09 17:41:24 +00003345 if (ResType != RV->getType())
3346 return Error(TypeLoc, "value doesn't match function result type '" +
3347 getTypeString(ResType) + "'");
Michael Ilseman407a6162012-11-15 22:34:00 +00003348
Owen Anderson1d0be152009-08-13 21:58:54 +00003349 Inst = ReturnInst::Create(Context, RV);
Chris Lattner437544f2011-06-17 06:49:41 +00003350 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003351}
3352
3353
3354/// ParseBr
3355/// ::= 'br' TypeAndValue
3356/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3357bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3358 LocTy Loc, Loc2;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003359 Value *Op0;
3360 BasicBlock *Op1, *Op2;
Chris Lattnerdf986172009-01-02 07:01:27 +00003361 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003362
Chris Lattnerdf986172009-01-02 07:01:27 +00003363 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3364 Inst = BranchInst::Create(BB);
3365 return false;
3366 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003367
Owen Anderson1d0be152009-08-13 21:58:54 +00003368 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003369 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003370
Chris Lattnerdf986172009-01-02 07:01:27 +00003371 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003372 ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003373 ParseToken(lltok::comma, "expected ',' after true destination") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003374 ParseTypeAndBasicBlock(Op2, Loc2, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003375 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003376
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003377 Inst = BranchInst::Create(Op1, Op2, Op0);
Chris Lattnerdf986172009-01-02 07:01:27 +00003378 return false;
3379}
3380
3381/// ParseSwitch
3382/// Instruction
3383/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3384/// JumpTable
3385/// ::= (TypeAndValue ',' TypeAndValue)*
3386bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3387 LocTy CondLoc, BBLoc;
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003388 Value *Cond;
3389 BasicBlock *DefaultBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003390 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3391 ParseToken(lltok::comma, "expected ',' after switch condition") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003392 ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003393 ParseToken(lltok::lsquare, "expected '[' with switch table"))
3394 return true;
3395
Duncan Sands1df98592010-02-16 11:11:14 +00003396 if (!Cond->getType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003397 return Error(CondLoc, "switch condition must have integer type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003398
Chris Lattnerdf986172009-01-02 07:01:27 +00003399 // Parse the jump table pairs.
3400 SmallPtrSet<Value*, 32> SeenCases;
3401 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3402 while (Lex.getKind() != lltok::rsquare) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003403 Value *Constant;
3404 BasicBlock *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003405
Chris Lattnerdf986172009-01-02 07:01:27 +00003406 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3407 ParseToken(lltok::comma, "expected ',' after case value") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003408 ParseTypeAndBasicBlock(DestBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003409 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003410
Chris Lattnerdf986172009-01-02 07:01:27 +00003411 if (!SeenCases.insert(Constant))
3412 return Error(CondLoc, "duplicate case value in switch");
3413 if (!isa<ConstantInt>(Constant))
3414 return Error(CondLoc, "case value is not a constant integer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003415
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003416 Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
Chris Lattnerdf986172009-01-02 07:01:27 +00003417 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003418
Chris Lattnerdf986172009-01-02 07:01:27 +00003419 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00003420
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003421 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003422 for (unsigned i = 0, e = Table.size(); i != e; ++i)
3423 SI->addCase(Table[i].first, Table[i].second);
3424 Inst = SI;
3425 return false;
3426}
3427
Chris Lattnerab21db72009-10-28 00:19:10 +00003428/// ParseIndirectBr
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003429/// Instruction
Chris Lattnerab21db72009-10-28 00:19:10 +00003430/// ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3431bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003432 LocTy AddrLoc;
3433 Value *Address;
3434 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
Chris Lattnerab21db72009-10-28 00:19:10 +00003435 ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3436 ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003437 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00003438
Duncan Sands1df98592010-02-16 11:11:14 +00003439 if (!Address->getType()->isPointerTy())
Chris Lattnerab21db72009-10-28 00:19:10 +00003440 return Error(AddrLoc, "indirectbr address must have pointer type");
Michael Ilseman407a6162012-11-15 22:34:00 +00003441
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003442 // Parse the destination list.
3443 SmallVector<BasicBlock*, 16> DestList;
Michael Ilseman407a6162012-11-15 22:34:00 +00003444
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003445 if (Lex.getKind() != lltok::rsquare) {
3446 BasicBlock *DestBB;
3447 if (ParseTypeAndBasicBlock(DestBB, PFS))
3448 return true;
3449 DestList.push_back(DestBB);
Michael Ilseman407a6162012-11-15 22:34:00 +00003450
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003451 while (EatIfPresent(lltok::comma)) {
3452 if (ParseTypeAndBasicBlock(DestBB, PFS))
3453 return true;
3454 DestList.push_back(DestBB);
3455 }
3456 }
Michael Ilseman407a6162012-11-15 22:34:00 +00003457
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003458 if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3459 return true;
3460
Chris Lattnerab21db72009-10-28 00:19:10 +00003461 IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003462 for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3463 IBI->addDestination(DestList[i]);
3464 Inst = IBI;
3465 return false;
3466}
3467
3468
Chris Lattnerdf986172009-01-02 07:01:27 +00003469/// ParseInvoke
3470/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3471/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3472bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3473 LocTy CallLoc = Lex.getLoc();
Bill Wendling702cc912012-10-15 20:35:56 +00003474 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003475 std::vector<unsigned> FwdRefAttrGrps;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003476 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003477 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003478 LocTy RetTypeLoc;
3479 ValID CalleeID;
3480 SmallVector<ParamInfo, 16> ArgList;
3481
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003482 BasicBlock *NormalBB, *UnwindBB;
Chris Lattnerdf986172009-01-02 07:01:27 +00003483 if (ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003484 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003485 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003486 ParseValID(CalleeID) ||
3487 ParseParameterList(ArgList, PFS) ||
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003488 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003489 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003490 ParseTypeAndBasicBlock(NormalBB, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003491 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
Chris Lattnerf9be95f2009-10-27 19:13:16 +00003492 ParseTypeAndBasicBlock(UnwindBB, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003493 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003494
Chris Lattnerdf986172009-01-02 07:01:27 +00003495 // If RetType is a non-function pointer type, then this is the short syntax
3496 // for the call, which means that RetType is just the return type. Infer the
3497 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003498 PointerType *PFTy = 0;
3499 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003500 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3501 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3502 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003503 std::vector<Type*> ParamTypes;
Chris Lattnerdf986172009-01-02 07:01:27 +00003504 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3505 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003506
Chris Lattnerdf986172009-01-02 07:01:27 +00003507 if (!FunctionType::isValidReturnType(RetType))
3508 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003509
Owen Andersondebcb012009-07-29 22:17:13 +00003510 Ty = FunctionType::get(RetType, ParamTypes, false);
3511 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003512 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003513
Chris Lattnerdf986172009-01-02 07:01:27 +00003514 // Look up the callee.
3515 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003516 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003517
Bill Wendling034b94b2012-12-19 07:18:57 +00003518 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003519 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003520 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003521 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3522 AttributeSet::ReturnIndex,
3523 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003524
Chris Lattnerdf986172009-01-02 07:01:27 +00003525 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003526
Chris Lattnerdf986172009-01-02 07:01:27 +00003527 // Loop through FunctionType's arguments and ensure they are specified
3528 // correctly. Also, gather any parameter attributes.
3529 FunctionType::param_iterator I = Ty->param_begin();
3530 FunctionType::param_iterator E = Ty->param_end();
3531 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003532 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003533 if (I != E) {
3534 ExpectedTy = *I++;
3535 } else if (!Ty->isVarArg()) {
3536 return Error(ArgList[i].Loc, "too many arguments specified");
3537 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003538
Chris Lattnerdf986172009-01-02 07:01:27 +00003539 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3540 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003541 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003542 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003543 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3544 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003545 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3546 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003547 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003548
Chris Lattnerdf986172009-01-02 07:01:27 +00003549 if (I != E)
3550 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003551
Bill Wendlinge603fe42012-09-19 23:54:18 +00003552 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003553 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3554 AttributeSet::FunctionIndex,
3555 FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003556
Bill Wendling034b94b2012-12-19 07:18:57 +00003557 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003558 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003559
Jay Foada3efbb12011-07-15 08:37:34 +00003560 InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003561 II->setCallingConv(CC);
3562 II->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003563 ForwardRefAttrGroups[II] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003564 Inst = II;
3565 return false;
3566}
3567
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003568/// ParseResume
3569/// ::= 'resume' TypeAndValue
3570bool LLParser::ParseResume(Instruction *&Inst, PerFunctionState &PFS) {
3571 Value *Exn; LocTy ExnLoc;
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003572 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3573 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003574
Bill Wendlingdccc03b2011-07-31 06:30:59 +00003575 ResumeInst *RI = ResumeInst::Create(Exn);
3576 Inst = RI;
3577 return false;
3578}
Chris Lattnerdf986172009-01-02 07:01:27 +00003579
3580//===----------------------------------------------------------------------===//
3581// Binary Operators.
3582//===----------------------------------------------------------------------===//
3583
3584/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003585/// ::= ArithmeticOps TypeAndValue ',' Value
3586///
3587/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3588/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003589bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003590 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003591 LocTy Loc; Value *LHS, *RHS;
3592 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3593 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3594 ParseValue(LHS->getType(), RHS, PFS))
3595 return true;
3596
Chris Lattnere914b592009-01-05 08:24:46 +00003597 bool Valid;
3598 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003599 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003600 case 0: // int or FP.
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003601 Valid = LHS->getType()->isIntOrIntVectorTy() ||
3602 LHS->getType()->isFPOrFPVectorTy();
Chris Lattnere914b592009-01-05 08:24:46 +00003603 break;
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003604 case 1: Valid = LHS->getType()->isIntOrIntVectorTy(); break;
3605 case 2: Valid = LHS->getType()->isFPOrFPVectorTy(); break;
Chris Lattnere914b592009-01-05 08:24:46 +00003606 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003607
Chris Lattnere914b592009-01-05 08:24:46 +00003608 if (!Valid)
3609 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003610
Chris Lattnerdf986172009-01-02 07:01:27 +00003611 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3612 return false;
3613}
3614
3615/// ParseLogical
3616/// ::= ArithmeticOps TypeAndValue ',' Value {
3617bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3618 unsigned Opc) {
3619 LocTy Loc; Value *LHS, *RHS;
3620 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3621 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3622 ParseValue(LHS->getType(), RHS, PFS))
3623 return true;
3624
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003625 if (!LHS->getType()->isIntOrIntVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003626 return Error(Loc,"instruction requires integer or integer vector operands");
3627
3628 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3629 return false;
3630}
3631
3632
3633/// ParseCompare
3634/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3635/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003636bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3637 unsigned Opc) {
3638 // Parse the integer/fp comparison predicate.
3639 LocTy Loc;
3640 unsigned Pred;
3641 Value *LHS, *RHS;
3642 if (ParseCmpPredicate(Pred, Opc) ||
3643 ParseTypeAndValue(LHS, Loc, PFS) ||
3644 ParseToken(lltok::comma, "expected ',' after compare value") ||
3645 ParseValue(LHS->getType(), RHS, PFS))
3646 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003647
Chris Lattnerdf986172009-01-02 07:01:27 +00003648 if (Opc == Instruction::FCmp) {
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003649 if (!LHS->getType()->isFPOrFPVectorTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003650 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003651 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003652 } else {
3653 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Duncan Sandsb0bc6c32010-02-15 16:12:20 +00003654 if (!LHS->getType()->isIntOrIntVectorTy() &&
Nadav Rotem16087692011-12-05 06:29:09 +00003655 !LHS->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00003656 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003657 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003658 }
3659 return false;
3660}
3661
3662//===----------------------------------------------------------------------===//
3663// Other Instructions.
3664//===----------------------------------------------------------------------===//
3665
3666
3667/// ParseCast
3668/// ::= CastOpc TypeAndValue 'to' Type
3669bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3670 unsigned Opc) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003671 LocTy Loc;
3672 Value *Op;
3673 Type *DestTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003674 if (ParseTypeAndValue(Op, Loc, PFS) ||
3675 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3676 ParseType(DestTy))
3677 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003678
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003679 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3680 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003681 return Error(Loc, "invalid cast opcode for cast from '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003682 getTypeString(Op->getType()) + "' to '" +
3683 getTypeString(DestTy) + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003684 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003685 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3686 return false;
3687}
3688
3689/// ParseSelect
3690/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3691bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3692 LocTy Loc;
3693 Value *Op0, *Op1, *Op2;
3694 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3695 ParseToken(lltok::comma, "expected ',' after select condition") ||
3696 ParseTypeAndValue(Op1, PFS) ||
3697 ParseToken(lltok::comma, "expected ',' after select value") ||
3698 ParseTypeAndValue(Op2, PFS))
3699 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003700
Chris Lattnerdf986172009-01-02 07:01:27 +00003701 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3702 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003703
Chris Lattnerdf986172009-01-02 07:01:27 +00003704 Inst = SelectInst::Create(Op0, Op1, Op2);
3705 return false;
3706}
3707
Chris Lattner0088a5c2009-01-05 08:18:44 +00003708/// ParseVA_Arg
3709/// ::= 'va_arg' TypeAndValue ',' Type
3710bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003711 Value *Op;
Chris Lattner1afcace2011-07-09 17:41:24 +00003712 Type *EltTy = 0;
Chris Lattner0088a5c2009-01-05 08:18:44 +00003713 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003714 if (ParseTypeAndValue(Op, PFS) ||
3715 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003716 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003717 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003718
Chris Lattner0088a5c2009-01-05 08:18:44 +00003719 if (!EltTy->isFirstClassType())
3720 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003721
3722 Inst = new VAArgInst(Op, EltTy);
3723 return false;
3724}
3725
3726/// ParseExtractElement
3727/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3728bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3729 LocTy Loc;
3730 Value *Op0, *Op1;
3731 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3732 ParseToken(lltok::comma, "expected ',' after extract value") ||
3733 ParseTypeAndValue(Op1, PFS))
3734 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003735
Chris Lattnerdf986172009-01-02 07:01:27 +00003736 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3737 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003738
Eric Christophera3500da2009-07-25 02:28:41 +00003739 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003740 return false;
3741}
3742
3743/// ParseInsertElement
3744/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3745bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3746 LocTy Loc;
3747 Value *Op0, *Op1, *Op2;
3748 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3749 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3750 ParseTypeAndValue(Op1, PFS) ||
3751 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3752 ParseTypeAndValue(Op2, PFS))
3753 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003754
Chris Lattnerdf986172009-01-02 07:01:27 +00003755 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003756 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003757
Chris Lattnerdf986172009-01-02 07:01:27 +00003758 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3759 return false;
3760}
3761
3762/// ParseShuffleVector
3763/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3764bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3765 LocTy Loc;
3766 Value *Op0, *Op1, *Op2;
3767 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3768 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3769 ParseTypeAndValue(Op1, PFS) ||
3770 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3771 ParseTypeAndValue(Op2, PFS))
3772 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003773
Chris Lattnerdf986172009-01-02 07:01:27 +00003774 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
Pete Cooperaf393682012-02-01 23:43:12 +00003775 return Error(Loc, "invalid shufflevector operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003776
Chris Lattnerdf986172009-01-02 07:01:27 +00003777 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3778 return false;
3779}
3780
3781/// ParsePHI
Chris Lattnerc6e20092009-10-18 05:27:44 +00003782/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003783int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattner1afcace2011-07-09 17:41:24 +00003784 Type *Ty = 0; LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003785 Value *Op0, *Op1;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003786
Chris Lattner1afcace2011-07-09 17:41:24 +00003787 if (ParseType(Ty, TypeLoc) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003788 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3789 ParseValue(Ty, Op0, PFS) ||
3790 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003791 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003792 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3793 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003794
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003795 bool AteExtraComma = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00003796 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3797 while (1) {
3798 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003799
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003800 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003801 break;
3802
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003803 if (Lex.getKind() == lltok::MetadataVar) {
3804 AteExtraComma = true;
Devang Patela43d46f2009-10-16 18:45:49 +00003805 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003806 }
Devang Patela43d46f2009-10-16 18:45:49 +00003807
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003808 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003809 ParseValue(Ty, Op0, PFS) ||
3810 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003811 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003812 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3813 return true;
3814 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003815
Chris Lattnerdf986172009-01-02 07:01:27 +00003816 if (!Ty->isFirstClassType())
3817 return Error(TypeLoc, "phi node must have first class type");
3818
Jay Foad3ecfc862011-03-30 11:28:46 +00003819 PHINode *PN = PHINode::Create(Ty, PHIVals.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00003820 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3821 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3822 Inst = PN;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00003823 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00003824}
3825
Bill Wendlinge6e88262011-08-12 20:24:12 +00003826/// ParseLandingPad
3827/// ::= 'landingpad' Type 'personality' TypeAndValue 'cleanup'? Clause+
3828/// Clause
3829/// ::= 'catch' TypeAndValue
3830/// ::= 'filter'
3831/// ::= 'filter' TypeAndValue ( ',' TypeAndValue )*
3832bool LLParser::ParseLandingPad(Instruction *&Inst, PerFunctionState &PFS) {
3833 Type *Ty = 0; LocTy TyLoc;
3834 Value *PersFn; LocTy PersFnLoc;
Bill Wendlinge6e88262011-08-12 20:24:12 +00003835
3836 if (ParseType(Ty, TyLoc) ||
3837 ParseToken(lltok::kw_personality, "expected 'personality'") ||
3838 ParseTypeAndValue(PersFn, PersFnLoc, PFS))
3839 return true;
3840
3841 LandingPadInst *LP = LandingPadInst::Create(Ty, PersFn, 0);
3842 LP->setCleanup(EatIfPresent(lltok::kw_cleanup));
3843
3844 while (Lex.getKind() == lltok::kw_catch || Lex.getKind() == lltok::kw_filter){
3845 LandingPadInst::ClauseType CT;
3846 if (EatIfPresent(lltok::kw_catch))
3847 CT = LandingPadInst::Catch;
3848 else if (EatIfPresent(lltok::kw_filter))
3849 CT = LandingPadInst::Filter;
3850 else
3851 return TokError("expected 'catch' or 'filter' clause type");
3852
3853 Value *V; LocTy VLoc;
3854 if (ParseTypeAndValue(V, VLoc, PFS)) {
3855 delete LP;
3856 return true;
3857 }
3858
Bill Wendling746c8822011-08-12 20:52:25 +00003859 // A 'catch' type expects a non-array constant. A filter clause expects an
3860 // array constant.
3861 if (CT == LandingPadInst::Catch) {
3862 if (isa<ArrayType>(V->getType()))
3863 Error(VLoc, "'catch' clause has an invalid type");
3864 } else {
3865 if (!isa<ArrayType>(V->getType()))
3866 Error(VLoc, "'filter' clause has an invalid type");
3867 }
3868
Bill Wendlinge6e88262011-08-12 20:24:12 +00003869 LP->addClause(V);
3870 }
3871
3872 Inst = LP;
3873 return false;
3874}
3875
Chris Lattnerdf986172009-01-02 07:01:27 +00003876/// ParseCall
3877/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3878/// ParameterList OptionalAttrs
3879bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3880 bool isTail) {
Bill Wendling702cc912012-10-15 20:35:56 +00003881 AttrBuilder RetAttrs, FnAttrs;
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003882 std::vector<unsigned> FwdRefAttrGrps;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003883 CallingConv::ID CC;
Chris Lattner1afcace2011-07-09 17:41:24 +00003884 Type *RetType = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003885 LocTy RetTypeLoc;
3886 ValID CalleeID;
3887 SmallVector<ParamInfo, 16> ArgList;
3888 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003889
Chris Lattnerdf986172009-01-02 07:01:27 +00003890 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3891 ParseOptionalCallingConv(CC) ||
Bill Wendlinge01b81b2012-12-04 23:40:58 +00003892 ParseOptionalReturnAttrs(RetAttrs) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003893 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003894 ParseValID(CalleeID) ||
3895 ParseParameterList(ArgList, PFS) ||
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003896 ParseFnAttributeValuePairs(FnAttrs, FwdRefAttrGrps, false))
Chris Lattnerdf986172009-01-02 07:01:27 +00003897 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003898
Chris Lattnerdf986172009-01-02 07:01:27 +00003899 // If RetType is a non-function pointer type, then this is the short syntax
3900 // for the call, which means that RetType is just the return type. Infer the
3901 // rest of the function argument types from the arguments that are present.
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003902 PointerType *PFTy = 0;
3903 FunctionType *Ty = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003904 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3905 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3906 // Pull out the types of all of the arguments...
Jay Foad5fdd6c82011-07-12 14:06:48 +00003907 std::vector<Type*> ParamTypes;
Eli Friedman83b4a972010-07-24 23:06:59 +00003908 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3909 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003910
Chris Lattnerdf986172009-01-02 07:01:27 +00003911 if (!FunctionType::isValidReturnType(RetType))
3912 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003913
Owen Andersondebcb012009-07-29 22:17:13 +00003914 Ty = FunctionType::get(RetType, ParamTypes, false);
3915 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003916 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003917
Chris Lattnerdf986172009-01-02 07:01:27 +00003918 // Look up the callee.
3919 Value *Callee;
Victor Hernandez92f238d2010-01-11 22:31:58 +00003920 if (ConvertValIDToValue(PFTy, CalleeID, Callee, &PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003921
Bill Wendling034b94b2012-12-19 07:18:57 +00003922 // Set up the Attribute for the function.
Bill Wendlinga1683d62013-01-27 02:24:02 +00003923 SmallVector<AttributeSet, 8> Attrs;
Bill Wendlinge603fe42012-09-19 23:54:18 +00003924 if (RetAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003925 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3926 AttributeSet::ReturnIndex,
3927 RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003928
Chris Lattnerdf986172009-01-02 07:01:27 +00003929 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003930
Chris Lattnerdf986172009-01-02 07:01:27 +00003931 // Loop through FunctionType's arguments and ensure they are specified
3932 // correctly. Also, gather any parameter attributes.
3933 FunctionType::param_iterator I = Ty->param_begin();
3934 FunctionType::param_iterator E = Ty->param_end();
3935 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +00003936 Type *ExpectedTy = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003937 if (I != E) {
3938 ExpectedTy = *I++;
3939 } else if (!Ty->isVarArg()) {
3940 return Error(ArgList[i].Loc, "too many arguments specified");
3941 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003942
Chris Lattnerdf986172009-01-02 07:01:27 +00003943 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3944 return Error(ArgList[i].Loc, "argument is not of expected type '" +
Chris Lattner0cd0d882011-06-18 21:18:23 +00003945 getTypeString(ExpectedTy) + "'");
Chris Lattnerdf986172009-01-02 07:01:27 +00003946 Args.push_back(ArgList[i].V);
Bill Wendling73dee182013-01-31 00:29:54 +00003947 if (ArgList[i].Attrs.hasAttributes(i + 1)) {
3948 AttrBuilder B(ArgList[i].Attrs, i + 1);
Bill Wendlinga1683d62013-01-27 02:24:02 +00003949 Attrs.push_back(AttributeSet::get(RetType->getContext(), i + 1, B));
3950 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003951 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003952
Chris Lattnerdf986172009-01-02 07:01:27 +00003953 if (I != E)
3954 return Error(CallLoc, "not enough parameters specified for call");
3955
Bill Wendlinge603fe42012-09-19 23:54:18 +00003956 if (FnAttrs.hasAttributes())
Bill Wendlinga1683d62013-01-27 02:24:02 +00003957 Attrs.push_back(AttributeSet::get(RetType->getContext(),
3958 AttributeSet::FunctionIndex,
3959 FnAttrs));
Chris Lattnerdf986172009-01-02 07:01:27 +00003960
Bill Wendling034b94b2012-12-19 07:18:57 +00003961 // Finish off the Attribute and check them
Bill Wendling99faa3b2012-12-07 23:16:57 +00003962 AttributeSet PAL = AttributeSet::get(Context, Attrs);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003963
Jay Foada3efbb12011-07-15 08:37:34 +00003964 CallInst *CI = CallInst::Create(Callee, Args);
Chris Lattnerdf986172009-01-02 07:01:27 +00003965 CI->setTailCall(isTail);
3966 CI->setCallingConv(CC);
3967 CI->setAttributes(PAL);
Bill Wendlingbaad55c2013-02-08 06:32:06 +00003968 ForwardRefAttrGroups[CI] = FwdRefAttrGrps;
Chris Lattnerdf986172009-01-02 07:01:27 +00003969 Inst = CI;
3970 return false;
3971}
3972
3973//===----------------------------------------------------------------------===//
3974// Memory Instructions.
3975//===----------------------------------------------------------------------===//
3976
3977/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003978/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerf3a789d2011-06-17 03:16:47 +00003979int LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003980 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003981 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003982 unsigned Alignment = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00003983 Type *Ty = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003984 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003985
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003986 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003987 if (EatIfPresent(lltok::comma)) {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003988 if (Lex.getKind() == lltok::kw_align) {
3989 if (ParseOptionalAlignment(Alignment)) return true;
3990 } else if (Lex.getKind() == lltok::MetadataVar) {
3991 AteExtraComma = true;
Devang Patelf633a062009-09-17 23:04:48 +00003992 } else {
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00003993 if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
3994 ParseOptionalCommaAlign(Alignment, AteExtraComma))
3995 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003996 }
3997 }
3998
Dan Gohmanf75a7d32010-05-28 01:14:11 +00003999 if (Size && !Size->getType()->isIntegerTy())
4000 return Error(SizeLoc, "element count must have integer type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004001
Chris Lattnerf3a789d2011-06-17 03:16:47 +00004002 Inst = new AllocaInst(Ty, Size, Alignment);
4003 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004004}
4005
4006/// ParseLoad
Eli Friedmanf03bb262011-08-12 22:50:01 +00004007/// ::= 'load' 'volatile'? TypeAndValue (',' 'align' i32)?
Michael Ilseman407a6162012-11-15 22:34:00 +00004008/// ::= 'load' 'atomic' 'volatile'? TypeAndValue
Eli Friedmanf03bb262011-08-12 22:50:01 +00004009/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004010int LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004011 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00004012 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004013 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004014 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004015 AtomicOrdering Ordering = NotAtomic;
4016 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004017
4018 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004019 isAtomic = true;
4020 Lex.Lex();
4021 }
4022
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004023 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004024 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004025 isVolatile = true;
4026 Lex.Lex();
4027 }
4028
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004029 if (ParseTypeAndValue(Val, Loc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004030 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004031 ParseOptionalCommaAlign(Alignment, AteExtraComma))
4032 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00004033
Duncan Sands1df98592010-02-16 11:11:14 +00004034 if (!Val->getType()->isPointerTy() ||
Chris Lattnerdf986172009-01-02 07:01:27 +00004035 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
4036 return Error(Loc, "load operand must be a pointer to a first class type");
Eli Friedman21006d42011-08-09 23:02:53 +00004037 if (isAtomic && !Alignment)
4038 return Error(Loc, "atomic load must have explicit non-zero alignment");
4039 if (Ordering == Release || Ordering == AcquireRelease)
4040 return Error(Loc, "atomic load cannot use Release ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004041
Eli Friedman21006d42011-08-09 23:02:53 +00004042 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004043 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004044}
4045
4046/// ParseStore
Eli Friedmanf03bb262011-08-12 22:50:01 +00004047
4048/// ::= 'store' 'volatile'? TypeAndValue ',' TypeAndValue (',' 'align' i32)?
4049/// ::= 'store' 'atomic' 'volatile'? TypeAndValue ',' TypeAndValue
Eli Friedman21006d42011-08-09 23:02:53 +00004050/// 'singlethread'? AtomicOrdering (',' 'align' i32)?
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004051int LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004052 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00004053 unsigned Alignment = 0;
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004054 bool AteExtraComma = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004055 bool isAtomic = false;
Eli Friedman21006d42011-08-09 23:02:53 +00004056 AtomicOrdering Ordering = NotAtomic;
4057 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004058
4059 if (Lex.getKind() == lltok::kw_atomic) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004060 isAtomic = true;
4061 Lex.Lex();
4062 }
4063
Chris Lattnerfbe910e2011-11-27 06:56:53 +00004064 bool isVolatile = false;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004065 if (Lex.getKind() == lltok::kw_volatile) {
Eli Friedmanf03bb262011-08-12 22:50:01 +00004066 isVolatile = true;
4067 Lex.Lex();
4068 }
4069
Chris Lattnerdf986172009-01-02 07:01:27 +00004070 if (ParseTypeAndValue(Val, Loc, PFS) ||
4071 ParseToken(lltok::comma, "expected ',' after store operand") ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004072 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
Eli Friedman21006d42011-08-09 23:02:53 +00004073 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004074 ParseOptionalCommaAlign(Alignment, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004075 return true;
Devang Patelf633a062009-09-17 23:04:48 +00004076
Duncan Sands1df98592010-02-16 11:11:14 +00004077 if (!Ptr->getType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004078 return Error(PtrLoc, "store operand must be a pointer");
4079 if (!Val->getType()->isFirstClassType())
4080 return Error(Loc, "store operand must be a first class value");
4081 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4082 return Error(Loc, "stored value and pointer type do not match");
Eli Friedman21006d42011-08-09 23:02:53 +00004083 if (isAtomic && !Alignment)
4084 return Error(Loc, "atomic store must have explicit non-zero alignment");
4085 if (Ordering == Acquire || Ordering == AcquireRelease)
4086 return Error(Loc, "atomic store cannot use Acquire ordering");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004087
Eli Friedman21006d42011-08-09 23:02:53 +00004088 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
Chris Lattnerc3a6c5c2009-12-30 05:44:30 +00004089 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004090}
4091
Eli Friedmanff030482011-07-28 21:48:00 +00004092/// ParseCmpXchg
Eli Friedmanf03bb262011-08-12 22:50:01 +00004093/// ::= 'cmpxchg' 'volatile'? TypeAndValue ',' TypeAndValue ',' TypeAndValue
4094/// 'singlethread'? AtomicOrdering
4095int LLParser::ParseCmpXchg(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004096 Value *Ptr, *Cmp, *New; LocTy PtrLoc, CmpLoc, NewLoc;
4097 bool AteExtraComma = false;
4098 AtomicOrdering Ordering = NotAtomic;
4099 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004100 bool isVolatile = false;
4101
4102 if (EatIfPresent(lltok::kw_volatile))
4103 isVolatile = true;
4104
Eli Friedmanff030482011-07-28 21:48:00 +00004105 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4106 ParseToken(lltok::comma, "expected ',' after cmpxchg address") ||
4107 ParseTypeAndValue(Cmp, CmpLoc, PFS) ||
4108 ParseToken(lltok::comma, "expected ',' after cmpxchg cmp operand") ||
4109 ParseTypeAndValue(New, NewLoc, PFS) ||
4110 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4111 return true;
4112
4113 if (Ordering == Unordered)
4114 return TokError("cmpxchg cannot be unordered");
4115 if (!Ptr->getType()->isPointerTy())
4116 return Error(PtrLoc, "cmpxchg operand must be a pointer");
4117 if (cast<PointerType>(Ptr->getType())->getElementType() != Cmp->getType())
4118 return Error(CmpLoc, "compare value and pointer type do not match");
4119 if (cast<PointerType>(Ptr->getType())->getElementType() != New->getType())
4120 return Error(NewLoc, "new value and pointer type do not match");
4121 if (!New->getType()->isIntegerTy())
4122 return Error(NewLoc, "cmpxchg operand must be an integer");
4123 unsigned Size = New->getType()->getPrimitiveSizeInBits();
4124 if (Size < 8 || (Size & (Size - 1)))
4125 return Error(NewLoc, "cmpxchg operand must be power-of-two byte-sized"
4126 " integer");
4127
4128 AtomicCmpXchgInst *CXI =
4129 new AtomicCmpXchgInst(Ptr, Cmp, New, Ordering, Scope);
4130 CXI->setVolatile(isVolatile);
4131 Inst = CXI;
4132 return AteExtraComma ? InstExtraComma : InstNormal;
4133}
4134
4135/// ParseAtomicRMW
Eli Friedmanf03bb262011-08-12 22:50:01 +00004136/// ::= 'atomicrmw' 'volatile'? BinOp TypeAndValue ',' TypeAndValue
4137/// 'singlethread'? AtomicOrdering
4138int LLParser::ParseAtomicRMW(Instruction *&Inst, PerFunctionState &PFS) {
Eli Friedmanff030482011-07-28 21:48:00 +00004139 Value *Ptr, *Val; LocTy PtrLoc, ValLoc;
4140 bool AteExtraComma = false;
4141 AtomicOrdering Ordering = NotAtomic;
4142 SynchronizationScope Scope = CrossThread;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004143 bool isVolatile = false;
Eli Friedmanff030482011-07-28 21:48:00 +00004144 AtomicRMWInst::BinOp Operation;
Eli Friedmanf03bb262011-08-12 22:50:01 +00004145
4146 if (EatIfPresent(lltok::kw_volatile))
4147 isVolatile = true;
4148
Eli Friedmanff030482011-07-28 21:48:00 +00004149 switch (Lex.getKind()) {
4150 default: return TokError("expected binary operation in atomicrmw");
4151 case lltok::kw_xchg: Operation = AtomicRMWInst::Xchg; break;
4152 case lltok::kw_add: Operation = AtomicRMWInst::Add; break;
4153 case lltok::kw_sub: Operation = AtomicRMWInst::Sub; break;
4154 case lltok::kw_and: Operation = AtomicRMWInst::And; break;
4155 case lltok::kw_nand: Operation = AtomicRMWInst::Nand; break;
4156 case lltok::kw_or: Operation = AtomicRMWInst::Or; break;
4157 case lltok::kw_xor: Operation = AtomicRMWInst::Xor; break;
4158 case lltok::kw_max: Operation = AtomicRMWInst::Max; break;
4159 case lltok::kw_min: Operation = AtomicRMWInst::Min; break;
4160 case lltok::kw_umax: Operation = AtomicRMWInst::UMax; break;
4161 case lltok::kw_umin: Operation = AtomicRMWInst::UMin; break;
4162 }
4163 Lex.Lex(); // Eat the operation.
4164
4165 if (ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
4166 ParseToken(lltok::comma, "expected ',' after atomicrmw address") ||
4167 ParseTypeAndValue(Val, ValLoc, PFS) ||
4168 ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4169 return true;
4170
4171 if (Ordering == Unordered)
4172 return TokError("atomicrmw cannot be unordered");
4173 if (!Ptr->getType()->isPointerTy())
4174 return Error(PtrLoc, "atomicrmw operand must be a pointer");
4175 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
4176 return Error(ValLoc, "atomicrmw value and pointer type do not match");
4177 if (!Val->getType()->isIntegerTy())
4178 return Error(ValLoc, "atomicrmw operand must be an integer");
4179 unsigned Size = Val->getType()->getPrimitiveSizeInBits();
4180 if (Size < 8 || (Size & (Size - 1)))
4181 return Error(ValLoc, "atomicrmw operand must be power-of-two byte-sized"
4182 " integer");
4183
4184 AtomicRMWInst *RMWI =
4185 new AtomicRMWInst(Operation, Ptr, Val, Ordering, Scope);
4186 RMWI->setVolatile(isVolatile);
4187 Inst = RMWI;
4188 return AteExtraComma ? InstExtraComma : InstNormal;
4189}
4190
Eli Friedman47f35132011-07-25 23:16:38 +00004191/// ParseFence
4192/// ::= 'fence' 'singlethread'? AtomicOrdering
4193int LLParser::ParseFence(Instruction *&Inst, PerFunctionState &PFS) {
4194 AtomicOrdering Ordering = NotAtomic;
4195 SynchronizationScope Scope = CrossThread;
4196 if (ParseScopeAndOrdering(true /*Always atomic*/, Scope, Ordering))
4197 return true;
4198
4199 if (Ordering == Unordered)
4200 return TokError("fence cannot be unordered");
4201 if (Ordering == Monotonic)
4202 return TokError("fence cannot be monotonic");
4203
4204 Inst = new FenceInst(Context, Ordering, Scope);
4205 return InstNormal;
4206}
4207
Chris Lattnerdf986172009-01-02 07:01:27 +00004208/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00004209/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004210int LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
Nadav Rotem16087692011-12-05 06:29:09 +00004211 Value *Ptr = 0;
4212 Value *Val = 0;
4213 LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00004214
Dan Gohmandcb40a32009-07-29 15:58:36 +00004215 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004216
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004217 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00004218
Nadav Rotem16087692011-12-05 06:29:09 +00004219 if (!Ptr->getType()->getScalarType()->isPointerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004220 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004221
Chris Lattnerdf986172009-01-02 07:01:27 +00004222 SmallVector<Value*, 16> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004223 bool AteExtraComma = false;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004224 while (EatIfPresent(lltok::comma)) {
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004225 if (Lex.getKind() == lltok::MetadataVar) {
4226 AteExtraComma = true;
Devang Patel6225d642009-10-13 18:49:55 +00004227 break;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004228 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00004229 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Nadav Rotem16087692011-12-05 06:29:09 +00004230 if (!Val->getType()->getScalarType()->isIntegerTy())
Chris Lattnerdf986172009-01-02 07:01:27 +00004231 return Error(EltLoc, "getelementptr index must be an integer");
Nadav Rotem16087692011-12-05 06:29:09 +00004232 if (Val->getType()->isVectorTy() != Ptr->getType()->isVectorTy())
4233 return Error(EltLoc, "getelementptr index type missmatch");
4234 if (Val->getType()->isVectorTy()) {
4235 unsigned ValNumEl = cast<VectorType>(Val->getType())->getNumElements();
4236 unsigned PtrNumEl = cast<VectorType>(Ptr->getType())->getNumElements();
4237 if (ValNumEl != PtrNumEl)
4238 return Error(EltLoc,
4239 "getelementptr vector index has a wrong number of elements");
4240 }
Chris Lattnerdf986172009-01-02 07:01:27 +00004241 Indices.push_back(Val);
4242 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00004243
Jay Foada9203102011-07-25 09:48:08 +00004244 if (!GetElementPtrInst::getIndexedType(Ptr->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004245 return Error(Loc, "invalid getelementptr indices");
Jay Foada9203102011-07-25 09:48:08 +00004246 Inst = GetElementPtrInst::Create(Ptr, Indices);
Dan Gohmandd8004d2009-07-27 21:53:46 +00004247 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00004248 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004249 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004250}
4251
4252/// ParseExtractValue
4253/// ::= 'extractvalue' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004254int LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004255 Value *Val; LocTy Loc;
4256 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004257 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004258 if (ParseTypeAndValue(Val, Loc, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004259 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004260 return true;
4261
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004262 if (!Val->getType()->isAggregateType())
4263 return Error(Loc, "extractvalue operand must be aggregate type");
Chris Lattnerdf986172009-01-02 07:01:27 +00004264
Jay Foadfc6d3a42011-07-13 10:26:04 +00004265 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004266 return Error(Loc, "invalid indices for extractvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004267 Inst = ExtractValueInst::Create(Val, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004268 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004269}
4270
4271/// ParseInsertValue
4272/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004273int LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00004274 Value *Val0, *Val1; LocTy Loc0, Loc1;
4275 SmallVector<unsigned, 4> Indices;
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004276 bool AteExtraComma;
Chris Lattnerdf986172009-01-02 07:01:27 +00004277 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
4278 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
4279 ParseTypeAndValue(Val1, Loc1, PFS) ||
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004280 ParseIndexList(Indices, AteExtraComma))
Chris Lattnerdf986172009-01-02 07:01:27 +00004281 return true;
Michael Ilseman407a6162012-11-15 22:34:00 +00004282
Chris Lattnerfdfeb692010-02-12 20:49:41 +00004283 if (!Val0->getType()->isAggregateType())
4284 return Error(Loc0, "insertvalue operand must be aggregate type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00004285
Jay Foadfc6d3a42011-07-13 10:26:04 +00004286 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices))
Chris Lattnerdf986172009-01-02 07:01:27 +00004287 return Error(Loc0, "invalid indices for insertvalue");
Jay Foadfc6d3a42011-07-13 10:26:04 +00004288 Inst = InsertValueInst::Create(Val0, Val1, Indices);
Chris Lattnera7d7f2c2009-12-30 05:27:33 +00004289 return AteExtraComma ? InstExtraComma : InstNormal;
Chris Lattnerdf986172009-01-02 07:01:27 +00004290}
Nick Lewycky21cc4462009-04-04 07:22:01 +00004291
4292//===----------------------------------------------------------------------===//
4293// Embedded metadata.
4294//===----------------------------------------------------------------------===//
4295
4296/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00004297/// ::= Element (',' Element)*
4298/// Element
4299/// ::= 'null' | TypeAndValue
Victor Hernandezbf170d42010-01-05 22:22:14 +00004300bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts,
Victor Hernandez24e64df2010-01-10 07:14:18 +00004301 PerFunctionState *PFS) {
Dan Gohmanac809752010-07-13 19:33:27 +00004302 // Check for an empty list.
4303 if (Lex.getKind() == lltok::rbrace)
4304 return false;
4305
Nick Lewycky21cc4462009-04-04 07:22:01 +00004306 do {
Chris Lattnera7352392009-12-30 04:42:57 +00004307 // Null is a special case since it is typeless.
4308 if (EatIfPresent(lltok::kw_null)) {
4309 Elts.push_back(0);
4310 continue;
Nick Lewyckycb337992009-05-10 20:57:05 +00004311 }
Michael Ilseman407a6162012-11-15 22:34:00 +00004312
Chris Lattnera7352392009-12-30 04:42:57 +00004313 Value *V = 0;
Chris Lattner1afcace2011-07-09 17:41:24 +00004314 if (ParseTypeAndValue(V, PFS)) return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00004315 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00004316 } while (EatIfPresent(lltok::comma));
4317
4318 return false;
4319}