blob: d90588dd5fee5f49d39f24406de8d3a83e94402a [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"
15#include "llvm/AutoUpgrade.h"
16#include "llvm/CallingConv.h"
17#include "llvm/Constants.h"
18#include "llvm/DerivedTypes.h"
19#include "llvm/InlineAsm.h"
20#include "llvm/Instructions.h"
Owen Andersonfba933c2009-07-01 23:57:11 +000021#include "llvm/LLVMContext.h"
Devang Patel0a9f7b92009-07-28 21:49:47 +000022#include "llvm/Metadata.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000023#include "llvm/Module.h"
Dan Gohman1224c382009-07-20 21:19:07 +000024#include "llvm/Operator.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000025#include "llvm/ValueSymbolTable.h"
26#include "llvm/ADT/SmallPtrSet.h"
27#include "llvm/ADT/StringExtras.h"
Torok Edwinc25e7582009-07-11 20:10:48 +000028#include "llvm/Support/ErrorHandling.h"
Chris Lattnerdf986172009-01-02 07:01:27 +000029#include "llvm/Support/raw_ostream.h"
30using namespace llvm;
31
Chris Lattnerdf986172009-01-02 07:01:27 +000032namespace llvm {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000033 /// ValID - Represents a reference of a definition of some sort with no type.
34 /// There are several cases where we have to parse the value but where the
35 /// type can depend on later context. This may either be a numeric reference
36 /// or a symbolic (%var) reference. This is just a discriminated union.
Chris Lattnerdf986172009-01-02 07:01:27 +000037 struct ValID {
38 enum {
39 t_LocalID, t_GlobalID, // ID in UIntVal.
40 t_LocalName, t_GlobalName, // Name in StrVal.
41 t_APSInt, t_APFloat, // Value in APSIntVal/APFloatVal.
42 t_Null, t_Undef, t_Zero, // No value.
Chris Lattner081b5052009-01-05 07:52:51 +000043 t_EmptyArray, // No value: []
Chris Lattnerdf986172009-01-02 07:01:27 +000044 t_Constant, // Value in ConstantVal.
Devang Patele54abc92009-07-22 17:43:22 +000045 t_InlineAsm, // Value in StrVal/StrVal2/UIntVal.
46 t_Metadata // Value in MetadataVal.
Chris Lattnerdf986172009-01-02 07:01:27 +000047 } Kind;
Daniel Dunbara279bc32009-09-20 02:20:51 +000048
Chris Lattnerdf986172009-01-02 07:01:27 +000049 LLParser::LocTy Loc;
50 unsigned UIntVal;
51 std::string StrVal, StrVal2;
52 APSInt APSIntVal;
53 APFloat APFloatVal;
54 Constant *ConstantVal;
Devang Patele54abc92009-07-22 17:43:22 +000055 MetadataBase *MetadataVal;
Chris Lattnerdf986172009-01-02 07:01:27 +000056 ValID() : APFloatVal(0.0) {}
57 };
58}
59
Chris Lattner3ed88ef2009-01-02 08:05:26 +000060/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000061bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000062 // Prime the lexer.
63 Lex.Lex();
64
Chris Lattnerad7d1e22009-01-04 20:44:11 +000065 return ParseTopLevelEntities() ||
66 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000067}
68
69/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
70/// module.
71bool LLParser::ValidateEndOfModule() {
Victor Hernandez96b930d2009-09-24 17:47:49 +000072 // Update auto-upgraded malloc calls from "autoupgrade_malloc" to "malloc".
73 if (MallocF) {
74 MallocF->setName("malloc");
75 // If setName() does not set the name to "malloc", then there is already a
76 // declaration of "malloc". In that case, iterate over all calls to MallocF
77 // and get them to call the declared "malloc" instead.
78 if (MallocF->getName() != "malloc") {
79 Function* realMallocF = M->getFunction("malloc");
80 for (User::use_iterator UI = MallocF->use_begin(), UE= MallocF->use_end();
81 UI != UE; ) {
82 User* user = *UI;
83 UI++;
84 if (CallInst *Call = dyn_cast<CallInst>(user))
85 Call->setCalledFunction(realMallocF);
86 }
87 if (!realMallocF->doesNotAlias(0)) realMallocF->setDoesNotAlias(0);
88 MallocF->eraseFromParent();
89 MallocF = NULL;
90 }
91 }
92
Chris Lattnerdf986172009-01-02 07:01:27 +000093 if (!ForwardRefTypes.empty())
94 return Error(ForwardRefTypes.begin()->second.second,
95 "use of undefined type named '" +
96 ForwardRefTypes.begin()->first + "'");
97 if (!ForwardRefTypeIDs.empty())
98 return Error(ForwardRefTypeIDs.begin()->second.second,
99 "use of undefined type '%" +
100 utostr(ForwardRefTypeIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000101
Chris Lattnerdf986172009-01-02 07:01:27 +0000102 if (!ForwardRefVals.empty())
103 return Error(ForwardRefVals.begin()->second.second,
104 "use of undefined value '@" + ForwardRefVals.begin()->first +
105 "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000106
Chris Lattnerdf986172009-01-02 07:01:27 +0000107 if (!ForwardRefValIDs.empty())
108 return Error(ForwardRefValIDs.begin()->second.second,
109 "use of undefined value '@" +
110 utostr(ForwardRefValIDs.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000111
Devang Patel1c7eea62009-07-08 19:23:54 +0000112 if (!ForwardRefMDNodes.empty())
113 return Error(ForwardRefMDNodes.begin()->second.second,
114 "use of undefined metadata '!" +
115 utostr(ForwardRefMDNodes.begin()->first) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000116
Devang Patel1c7eea62009-07-08 19:23:54 +0000117
Chris Lattnerdf986172009-01-02 07:01:27 +0000118 // Look for intrinsic functions and CallInst that need to be upgraded
119 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
120 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
Daniel Dunbara279bc32009-09-20 02:20:51 +0000121
Devang Patele4b27562009-08-28 23:24:31 +0000122 // Check debug info intrinsics.
123 CheckDebugInfoIntrinsics(M);
Chris Lattnerdf986172009-01-02 07:01:27 +0000124 return false;
125}
126
127//===----------------------------------------------------------------------===//
128// Top-Level Entities
129//===----------------------------------------------------------------------===//
130
131bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +0000132 while (1) {
133 switch (Lex.getKind()) {
134 default: return TokError("expected top-level entity");
135 case lltok::Eof: return false;
136 //case lltok::kw_define:
137 case lltok::kw_declare: if (ParseDeclare()) return true; break;
138 case lltok::kw_define: if (ParseDefine()) return true; break;
139 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
140 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
141 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
142 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000143 case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000144 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
145 case lltok::LocalVar: if (ParseNamedType()) return true; break;
Dan Gohman3845e502009-08-12 23:32:33 +0000146 case lltok::GlobalID: if (ParseUnnamedGlobal()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000147 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
Devang Patel923078c2009-07-01 19:21:12 +0000148 case lltok::Metadata: if (ParseStandaloneMetadata()) return true; break;
Devang Pateleff2ab62009-07-29 00:34:02 +0000149 case lltok::NamedMD: if (ParseNamedMetadata()) return true; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000150
151 // The Global variable production with no name can have many different
152 // optional leading prefixes, the production is:
153 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
154 // OptionalAddrSpace ('constant'|'global') ...
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000155 case lltok::kw_private : // OptionalLinkage
156 case lltok::kw_linker_private: // OptionalLinkage
157 case lltok::kw_internal: // OptionalLinkage
158 case lltok::kw_weak: // OptionalLinkage
159 case lltok::kw_weak_odr: // OptionalLinkage
160 case lltok::kw_linkonce: // OptionalLinkage
161 case lltok::kw_linkonce_odr: // OptionalLinkage
162 case lltok::kw_appending: // OptionalLinkage
163 case lltok::kw_dllexport: // OptionalLinkage
164 case lltok::kw_common: // OptionalLinkage
165 case lltok::kw_dllimport: // OptionalLinkage
166 case lltok::kw_extern_weak: // OptionalLinkage
167 case lltok::kw_external: { // OptionalLinkage
Chris Lattnerdf986172009-01-02 07:01:27 +0000168 unsigned Linkage, Visibility;
169 if (ParseOptionalLinkage(Linkage) ||
170 ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000171 ParseGlobal("", SMLoc(), Linkage, true, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000172 return true;
173 break;
174 }
175 case lltok::kw_default: // OptionalVisibility
176 case lltok::kw_hidden: // OptionalVisibility
177 case lltok::kw_protected: { // OptionalVisibility
178 unsigned Visibility;
179 if (ParseOptionalVisibility(Visibility) ||
Chris Lattnereeb4a842009-07-02 23:08:13 +0000180 ParseGlobal("", SMLoc(), 0, false, Visibility))
Chris Lattnerdf986172009-01-02 07:01:27 +0000181 return true;
182 break;
183 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000184
Chris Lattnerdf986172009-01-02 07:01:27 +0000185 case lltok::kw_thread_local: // OptionalThreadLocal
186 case lltok::kw_addrspace: // OptionalAddrSpace
187 case lltok::kw_constant: // GlobalType
188 case lltok::kw_global: // GlobalType
Chris Lattnereeb4a842009-07-02 23:08:13 +0000189 if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000190 break;
191 }
192 }
193}
194
195
196/// toplevelentity
197/// ::= 'module' 'asm' STRINGCONSTANT
198bool LLParser::ParseModuleAsm() {
199 assert(Lex.getKind() == lltok::kw_module);
200 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000201
202 std::string AsmStr;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000203 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
204 ParseStringConstant(AsmStr)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000205
Chris Lattnerdf986172009-01-02 07:01:27 +0000206 const std::string &AsmSoFar = M->getModuleInlineAsm();
207 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000208 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000209 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000210 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000211 return false;
212}
213
214/// toplevelentity
215/// ::= 'target' 'triple' '=' STRINGCONSTANT
216/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
217bool LLParser::ParseTargetDefinition() {
218 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000219 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000220 switch (Lex.Lex()) {
221 default: return TokError("unknown target property");
222 case lltok::kw_triple:
223 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000224 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
225 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000226 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000227 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000228 return false;
229 case lltok::kw_datalayout:
230 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000231 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
232 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000233 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000234 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000235 return false;
236 }
237}
238
239/// toplevelentity
240/// ::= 'deplibs' '=' '[' ']'
241/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
242bool LLParser::ParseDepLibs() {
243 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000244 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000245 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
246 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
247 return true;
248
249 if (EatIfPresent(lltok::rsquare))
250 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000251
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000252 std::string Str;
253 if (ParseStringConstant(Str)) return true;
254 M->addLibrary(Str);
255
256 while (EatIfPresent(lltok::comma)) {
257 if (ParseStringConstant(Str)) return true;
258 M->addLibrary(Str);
259 }
260
261 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000262}
263
Dan Gohman3845e502009-08-12 23:32:33 +0000264/// ParseUnnamedType:
Chris Lattnerdf986172009-01-02 07:01:27 +0000265/// ::= 'type' type
Dan Gohman3845e502009-08-12 23:32:33 +0000266/// ::= LocalVarID '=' 'type' type
Chris Lattnerdf986172009-01-02 07:01:27 +0000267bool LLParser::ParseUnnamedType() {
Dan Gohman3845e502009-08-12 23:32:33 +0000268 unsigned TypeID = NumberedTypes.size();
269
270 // Handle the LocalVarID form.
271 if (Lex.getKind() == lltok::LocalVarID) {
272 if (Lex.getUIntVal() != TypeID)
273 return Error(Lex.getLoc(), "type expected to be numbered '%" +
274 utostr(TypeID) + "'");
275 Lex.Lex(); // eat LocalVarID;
276
277 if (ParseToken(lltok::equal, "expected '=' after name"))
278 return true;
279 }
280
Chris Lattnerdf986172009-01-02 07:01:27 +0000281 assert(Lex.getKind() == lltok::kw_type);
282 LocTy TypeLoc = Lex.getLoc();
283 Lex.Lex(); // eat kw_type
284
Owen Anderson1d0be152009-08-13 21:58:54 +0000285 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000286 if (ParseType(Ty)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000287
Chris Lattnerdf986172009-01-02 07:01:27 +0000288 // See if this type was previously referenced.
289 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
290 FI = ForwardRefTypeIDs.find(TypeID);
291 if (FI != ForwardRefTypeIDs.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000292 if (FI->second.first.get() == Ty)
293 return Error(TypeLoc, "self referential type is invalid");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000294
Chris Lattnerdf986172009-01-02 07:01:27 +0000295 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
296 Ty = FI->second.first.get();
297 ForwardRefTypeIDs.erase(FI);
298 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000299
Chris Lattnerdf986172009-01-02 07:01:27 +0000300 NumberedTypes.push_back(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000301
Chris Lattnerdf986172009-01-02 07:01:27 +0000302 return false;
303}
304
305/// toplevelentity
306/// ::= LocalVar '=' 'type' type
307bool LLParser::ParseNamedType() {
308 std::string Name = Lex.getStrVal();
309 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000310 Lex.Lex(); // eat LocalVar.
Daniel Dunbara279bc32009-09-20 02:20:51 +0000311
Owen Anderson1d0be152009-08-13 21:58:54 +0000312 PATypeHolder Ty(Type::getVoidTy(Context));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000313
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000314 if (ParseToken(lltok::equal, "expected '=' after name") ||
315 ParseToken(lltok::kw_type, "expected 'type' after name") ||
316 ParseType(Ty))
317 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000318
Chris Lattnerdf986172009-01-02 07:01:27 +0000319 // Set the type name, checking for conflicts as we do so.
320 bool AlreadyExists = M->addTypeName(Name, Ty);
321 if (!AlreadyExists) return false;
322
323 // See if this type is a forward reference. We need to eagerly resolve
324 // types to allow recursive type redefinitions below.
325 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
326 FI = ForwardRefTypes.find(Name);
327 if (FI != ForwardRefTypes.end()) {
Chris Lattnerc38daba2009-01-05 18:19:46 +0000328 if (FI->second.first.get() == Ty)
329 return Error(NameLoc, "self referential type is invalid");
330
Chris Lattnerdf986172009-01-02 07:01:27 +0000331 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
332 Ty = FI->second.first.get();
333 ForwardRefTypes.erase(FI);
334 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000335
Chris Lattnerdf986172009-01-02 07:01:27 +0000336 // Inserting a name that is already defined, get the existing name.
337 const Type *Existing = M->getTypeByName(Name);
338 assert(Existing && "Conflict but no matching type?!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000339
Chris Lattnerdf986172009-01-02 07:01:27 +0000340 // Otherwise, this is an attempt to redefine a type. That's okay if
341 // the redefinition is identical to the original.
342 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
343 if (Existing == Ty) return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000344
Chris Lattnerdf986172009-01-02 07:01:27 +0000345 // Any other kind of (non-equivalent) redefinition is an error.
346 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
347 Ty->getDescription() + "'");
348}
349
350
351/// toplevelentity
352/// ::= 'declare' FunctionHeader
353bool LLParser::ParseDeclare() {
354 assert(Lex.getKind() == lltok::kw_declare);
355 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000356
Chris Lattnerdf986172009-01-02 07:01:27 +0000357 Function *F;
358 return ParseFunctionHeader(F, false);
359}
360
361/// toplevelentity
362/// ::= 'define' FunctionHeader '{' ...
363bool LLParser::ParseDefine() {
364 assert(Lex.getKind() == lltok::kw_define);
365 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000366
Chris Lattnerdf986172009-01-02 07:01:27 +0000367 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000368 return ParseFunctionHeader(F, true) ||
369 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000370}
371
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000372/// ParseGlobalType
373/// ::= 'constant'
374/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000375bool LLParser::ParseGlobalType(bool &IsConstant) {
376 if (Lex.getKind() == lltok::kw_constant)
377 IsConstant = true;
378 else if (Lex.getKind() == lltok::kw_global)
379 IsConstant = false;
Duncan Sands35b51072009-02-10 16:24:55 +0000380 else {
381 IsConstant = false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000382 return TokError("expected 'global' or 'constant'");
Duncan Sands35b51072009-02-10 16:24:55 +0000383 }
Chris Lattnerdf986172009-01-02 07:01:27 +0000384 Lex.Lex();
385 return false;
386}
387
Dan Gohman3845e502009-08-12 23:32:33 +0000388/// ParseUnnamedGlobal:
389/// OptionalVisibility ALIAS ...
390/// OptionalLinkage OptionalVisibility ... -> global variable
391/// GlobalID '=' OptionalVisibility ALIAS ...
392/// GlobalID '=' OptionalLinkage OptionalVisibility ... -> global variable
393bool LLParser::ParseUnnamedGlobal() {
394 unsigned VarID = NumberedVals.size();
395 std::string Name;
396 LocTy NameLoc = Lex.getLoc();
397
398 // Handle the GlobalID form.
399 if (Lex.getKind() == lltok::GlobalID) {
400 if (Lex.getUIntVal() != VarID)
401 return Error(Lex.getLoc(), "variable expected to be numbered '%" +
402 utostr(VarID) + "'");
403 Lex.Lex(); // eat GlobalID;
404
405 if (ParseToken(lltok::equal, "expected '=' after name"))
406 return true;
407 }
408
409 bool HasLinkage;
410 unsigned Linkage, Visibility;
411 if (ParseOptionalLinkage(Linkage, HasLinkage) ||
412 ParseOptionalVisibility(Visibility))
413 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000414
Dan Gohman3845e502009-08-12 23:32:33 +0000415 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
416 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
417 return ParseAlias(Name, NameLoc, Visibility);
418}
419
Chris Lattnerdf986172009-01-02 07:01:27 +0000420/// ParseNamedGlobal:
421/// GlobalVar '=' OptionalVisibility ALIAS ...
422/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
423bool LLParser::ParseNamedGlobal() {
424 assert(Lex.getKind() == lltok::GlobalVar);
425 LocTy NameLoc = Lex.getLoc();
426 std::string Name = Lex.getStrVal();
427 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000428
Chris Lattnerdf986172009-01-02 07:01:27 +0000429 bool HasLinkage;
430 unsigned Linkage, Visibility;
431 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
432 ParseOptionalLinkage(Linkage, HasLinkage) ||
433 ParseOptionalVisibility(Visibility))
434 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000435
Chris Lattnerdf986172009-01-02 07:01:27 +0000436 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
437 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
438 return ParseAlias(Name, NameLoc, Visibility);
439}
440
Devang Patel256be962009-07-20 19:00:08 +0000441// MDString:
442// ::= '!' STRINGCONSTANT
Devang Patele54abc92009-07-22 17:43:22 +0000443bool LLParser::ParseMDString(MetadataBase *&MDS) {
Devang Patel256be962009-07-20 19:00:08 +0000444 std::string Str;
445 if (ParseStringConstant(Str)) return true;
Owen Anderson647e3012009-07-31 21:35:40 +0000446 MDS = MDString::get(Context, Str);
Devang Patel256be962009-07-20 19:00:08 +0000447 return false;
448}
449
450// MDNode:
451// ::= '!' MDNodeNumber
Devang Patel104cf9e2009-07-23 01:07:34 +0000452bool LLParser::ParseMDNode(MetadataBase *&Node) {
Devang Patel256be962009-07-20 19:00:08 +0000453 // !{ ..., !42, ... }
454 unsigned MID = 0;
455 if (ParseUInt32(MID)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000456
Devang Patel256be962009-07-20 19:00:08 +0000457 // Check existing MDNode.
Devang Patel104cf9e2009-07-23 01:07:34 +0000458 std::map<unsigned, MetadataBase *>::iterator I = MetadataCache.find(MID);
Devang Patel256be962009-07-20 19:00:08 +0000459 if (I != MetadataCache.end()) {
460 Node = I->second;
461 return false;
462 }
463
464 // Check known forward references.
Devang Patel104cf9e2009-07-23 01:07:34 +0000465 std::map<unsigned, std::pair<MetadataBase *, LocTy> >::iterator
Devang Patel256be962009-07-20 19:00:08 +0000466 FI = ForwardRefMDNodes.find(MID);
467 if (FI != ForwardRefMDNodes.end()) {
468 Node = FI->second.first;
469 return false;
470 }
471
472 // Create MDNode forward reference
473 SmallVector<Value *, 1> Elts;
474 std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
Owen Anderson647e3012009-07-31 21:35:40 +0000475 Elts.push_back(MDString::get(Context, FwdRefName));
476 MDNode *FwdNode = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel256be962009-07-20 19:00:08 +0000477 ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
478 Node = FwdNode;
479 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000480}
Devang Patel256be962009-07-20 19:00:08 +0000481
Devang Pateleff2ab62009-07-29 00:34:02 +0000482///ParseNamedMetadata:
483/// !foo = !{ !1, !2 }
484bool LLParser::ParseNamedMetadata() {
485 assert(Lex.getKind() == lltok::NamedMD);
486 Lex.Lex();
487 std::string Name = Lex.getStrVal();
488
489 if (ParseToken(lltok::equal, "expected '=' here"))
490 return true;
491
492 if (Lex.getKind() != lltok::Metadata)
493 return TokError("Expected '!' here");
494 Lex.Lex();
495
496 if (Lex.getKind() != lltok::lbrace)
497 return TokError("Expected '{' here");
498 Lex.Lex();
499 SmallVector<MetadataBase *, 8> Elts;
500 do {
501 if (Lex.getKind() != lltok::Metadata)
502 return TokError("Expected '!' here");
503 Lex.Lex();
504 MetadataBase *N = 0;
505 if (ParseMDNode(N)) return true;
506 Elts.push_back(N);
507 } while (EatIfPresent(lltok::comma));
508
509 if (ParseToken(lltok::rbrace, "expected end of metadata node"))
510 return true;
511
Owen Anderson1d0be152009-08-13 21:58:54 +0000512 NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
Devang Pateleff2ab62009-07-29 00:34:02 +0000513 return false;
514}
515
Devang Patel923078c2009-07-01 19:21:12 +0000516/// ParseStandaloneMetadata:
Daniel Dunbara279bc32009-09-20 02:20:51 +0000517/// !42 = !{...}
Devang Patel923078c2009-07-01 19:21:12 +0000518bool LLParser::ParseStandaloneMetadata() {
519 assert(Lex.getKind() == lltok::Metadata);
520 Lex.Lex();
521 unsigned MetadataID = 0;
522 if (ParseUInt32(MetadataID))
523 return true;
524 if (MetadataCache.find(MetadataID) != MetadataCache.end())
525 return TokError("Metadata id is already used");
526 if (ParseToken(lltok::equal, "expected '=' here"))
527 return true;
528
529 LocTy TyLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +0000530 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patel2214c942009-07-08 21:57:07 +0000531 if (ParseType(Ty, TyLoc))
Devang Patel923078c2009-07-01 19:21:12 +0000532 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000533
Devang Patel104cf9e2009-07-23 01:07:34 +0000534 if (Lex.getKind() != lltok::Metadata)
535 return TokError("Expected metadata here");
Devang Patel923078c2009-07-01 19:21:12 +0000536
Devang Patel104cf9e2009-07-23 01:07:34 +0000537 Lex.Lex();
538 if (Lex.getKind() != lltok::lbrace)
539 return TokError("Expected '{' here");
540
541 SmallVector<Value *, 16> Elts;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000542 if (ParseMDNodeVector(Elts)
Benjamin Kramer30d3b912009-07-27 09:06:52 +0000543 || ParseToken(lltok::rbrace, "expected end of metadata node"))
Devang Patel104cf9e2009-07-23 01:07:34 +0000544 return true;
545
Owen Anderson647e3012009-07-31 21:35:40 +0000546 MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
Devang Patel923078c2009-07-01 19:21:12 +0000547 MetadataCache[MetadataID] = Init;
Devang Patel104cf9e2009-07-23 01:07:34 +0000548 std::map<unsigned, std::pair<MetadataBase *, LocTy> >::iterator
Devang Patel1c7eea62009-07-08 19:23:54 +0000549 FI = ForwardRefMDNodes.find(MetadataID);
550 if (FI != ForwardRefMDNodes.end()) {
Devang Patel104cf9e2009-07-23 01:07:34 +0000551 MDNode *FwdNode = cast<MDNode>(FI->second.first);
Devang Patel1c7eea62009-07-08 19:23:54 +0000552 FwdNode->replaceAllUsesWith(Init);
553 ForwardRefMDNodes.erase(FI);
554 }
555
Devang Patel923078c2009-07-01 19:21:12 +0000556 return false;
557}
558
Chris Lattnerdf986172009-01-02 07:01:27 +0000559/// ParseAlias:
560/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
561/// Aliasee
Chris Lattner040f7582009-04-25 21:26:00 +0000562/// ::= TypeAndValue
563/// ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
Dan Gohmandd8004d2009-07-27 21:53:46 +0000564/// ::= 'getelementptr' 'inbounds'? '(' ... ')'
Chris Lattnerdf986172009-01-02 07:01:27 +0000565///
566/// Everything through visibility has already been parsed.
567///
568bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
569 unsigned Visibility) {
570 assert(Lex.getKind() == lltok::kw_alias);
571 Lex.Lex();
572 unsigned Linkage;
573 LocTy LinkageLoc = Lex.getLoc();
574 if (ParseOptionalLinkage(Linkage))
575 return true;
576
577 if (Linkage != GlobalValue::ExternalLinkage &&
Duncan Sands667d4b82009-03-07 15:45:40 +0000578 Linkage != GlobalValue::WeakAnyLinkage &&
579 Linkage != GlobalValue::WeakODRLinkage &&
Rafael Espindolabb46f522009-01-15 20:18:42 +0000580 Linkage != GlobalValue::InternalLinkage &&
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000581 Linkage != GlobalValue::PrivateLinkage &&
582 Linkage != GlobalValue::LinkerPrivateLinkage)
Chris Lattnerdf986172009-01-02 07:01:27 +0000583 return Error(LinkageLoc, "invalid linkage type for alias");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000584
Chris Lattnerdf986172009-01-02 07:01:27 +0000585 Constant *Aliasee;
586 LocTy AliaseeLoc = Lex.getLoc();
Chris Lattner040f7582009-04-25 21:26:00 +0000587 if (Lex.getKind() != lltok::kw_bitcast &&
588 Lex.getKind() != lltok::kw_getelementptr) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000589 if (ParseGlobalTypeAndValue(Aliasee)) return true;
590 } else {
591 // The bitcast dest type is not present, it is implied by the dest type.
592 ValID ID;
593 if (ParseValID(ID)) return true;
594 if (ID.Kind != ValID::t_Constant)
595 return Error(AliaseeLoc, "invalid aliasee");
596 Aliasee = ID.ConstantVal;
597 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000598
Chris Lattnerdf986172009-01-02 07:01:27 +0000599 if (!isa<PointerType>(Aliasee->getType()))
600 return Error(AliaseeLoc, "alias must have pointer type");
601
602 // Okay, create the alias but do not insert it into the module yet.
603 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
604 (GlobalValue::LinkageTypes)Linkage, Name,
605 Aliasee);
606 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000607
Chris Lattnerdf986172009-01-02 07:01:27 +0000608 // See if this value already exists in the symbol table. If so, it is either
609 // a redefinition or a definition of a forward reference.
610 if (GlobalValue *Val =
611 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name))) {
612 // See if this was a redefinition. If so, there is no entry in
613 // ForwardRefVals.
614 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
615 I = ForwardRefVals.find(Name);
616 if (I == ForwardRefVals.end())
617 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
618
619 // Otherwise, this was a definition of forward ref. Verify that types
620 // agree.
621 if (Val->getType() != GA->getType())
622 return Error(NameLoc,
623 "forward reference and definition of alias have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000624
Chris Lattnerdf986172009-01-02 07:01:27 +0000625 // If they agree, just RAUW the old value with the alias and remove the
626 // forward ref info.
627 Val->replaceAllUsesWith(GA);
628 Val->eraseFromParent();
629 ForwardRefVals.erase(I);
630 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000631
Chris Lattnerdf986172009-01-02 07:01:27 +0000632 // Insert into the module, we know its name won't collide now.
633 M->getAliasList().push_back(GA);
634 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000635
Chris Lattnerdf986172009-01-02 07:01:27 +0000636 return false;
637}
638
639/// ParseGlobal
640/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
641/// OptionalAddrSpace GlobalType Type Const
642/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
643/// OptionalAddrSpace GlobalType Type Const
644///
645/// Everything through visibility has been parsed already.
646///
647bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
648 unsigned Linkage, bool HasLinkage,
649 unsigned Visibility) {
650 unsigned AddrSpace;
651 bool ThreadLocal, IsConstant;
652 LocTy TyLoc;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000653
Owen Anderson1d0be152009-08-13 21:58:54 +0000654 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +0000655 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
656 ParseOptionalAddrSpace(AddrSpace) ||
657 ParseGlobalType(IsConstant) ||
658 ParseType(Ty, TyLoc))
659 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000660
Chris Lattnerdf986172009-01-02 07:01:27 +0000661 // If the linkage is specified and is external, then no initializer is
662 // present.
663 Constant *Init = 0;
664 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000665 Linkage != GlobalValue::ExternalWeakLinkage &&
Chris Lattnerdf986172009-01-02 07:01:27 +0000666 Linkage != GlobalValue::ExternalLinkage)) {
667 if (ParseGlobalValue(Ty, Init))
668 return true;
669 }
670
Owen Anderson1d0be152009-08-13 21:58:54 +0000671 if (isa<FunctionType>(Ty) || Ty == Type::getLabelTy(Context))
Chris Lattner4a2f1122009-02-08 20:00:15 +0000672 return Error(TyLoc, "invalid type for global variable");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000673
Chris Lattnerdf986172009-01-02 07:01:27 +0000674 GlobalVariable *GV = 0;
675
676 // See if the global was forward referenced, if so, use the global.
Chris Lattner91dad872009-02-02 07:24:28 +0000677 if (!Name.empty()) {
678 if ((GV = M->getGlobalVariable(Name, true)) &&
679 !ForwardRefVals.erase(Name))
Chris Lattnerdf986172009-01-02 07:01:27 +0000680 return Error(NameLoc, "redefinition of global '@" + Name + "'");
681 } else {
682 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
683 I = ForwardRefValIDs.find(NumberedVals.size());
684 if (I != ForwardRefValIDs.end()) {
685 GV = cast<GlobalVariable>(I->second.first);
686 ForwardRefValIDs.erase(I);
687 }
688 }
689
690 if (GV == 0) {
Daniel Dunbara279bc32009-09-20 02:20:51 +0000691 GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
Owen Andersone9b11b42009-07-08 19:03:57 +0000692 Name, 0, false, AddrSpace);
Chris Lattnerdf986172009-01-02 07:01:27 +0000693 } else {
694 if (GV->getType()->getElementType() != Ty)
695 return Error(TyLoc,
696 "forward reference and definition of global have different types");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000697
Chris Lattnerdf986172009-01-02 07:01:27 +0000698 // Move the forward-reference to the correct spot in the module.
699 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
700 }
701
702 if (Name.empty())
703 NumberedVals.push_back(GV);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000704
Chris Lattnerdf986172009-01-02 07:01:27 +0000705 // Set the parsed properties on the global.
706 if (Init)
707 GV->setInitializer(Init);
708 GV->setConstant(IsConstant);
709 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
710 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
711 GV->setThreadLocal(ThreadLocal);
Daniel Dunbara279bc32009-09-20 02:20:51 +0000712
Chris Lattnerdf986172009-01-02 07:01:27 +0000713 // Parse attributes on the global.
714 while (Lex.getKind() == lltok::comma) {
715 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000716
Chris Lattnerdf986172009-01-02 07:01:27 +0000717 if (Lex.getKind() == lltok::kw_section) {
718 Lex.Lex();
719 GV->setSection(Lex.getStrVal());
720 if (ParseToken(lltok::StringConstant, "expected global section string"))
721 return true;
722 } else if (Lex.getKind() == lltok::kw_align) {
723 unsigned Alignment;
724 if (ParseOptionalAlignment(Alignment)) return true;
725 GV->setAlignment(Alignment);
726 } else {
727 TokError("unknown global variable property!");
728 }
729 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000730
Chris Lattnerdf986172009-01-02 07:01:27 +0000731 return false;
732}
733
734
735//===----------------------------------------------------------------------===//
736// GlobalValue Reference/Resolution Routines.
737//===----------------------------------------------------------------------===//
738
739/// GetGlobalVal - Get a value with the specified name or ID, creating a
740/// forward reference record if needed. This can return null if the value
741/// exists but does not have the right type.
742GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
743 LocTy Loc) {
744 const PointerType *PTy = dyn_cast<PointerType>(Ty);
745 if (PTy == 0) {
746 Error(Loc, "global variable reference must have pointer type");
747 return 0;
748 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000749
Chris Lattnerdf986172009-01-02 07:01:27 +0000750 // Look this name up in the normal function symbol table.
751 GlobalValue *Val =
752 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +0000753
Chris Lattnerdf986172009-01-02 07:01:27 +0000754 // If this is a forward reference for the value, see if we already created a
755 // forward ref record.
756 if (Val == 0) {
757 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
758 I = ForwardRefVals.find(Name);
759 if (I != ForwardRefVals.end())
760 Val = I->second.first;
761 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000762
Chris Lattnerdf986172009-01-02 07:01:27 +0000763 // If we have the value in the symbol table or fwd-ref table, return it.
764 if (Val) {
765 if (Val->getType() == Ty) return Val;
766 Error(Loc, "'@" + Name + "' defined with type '" +
767 Val->getType()->getDescription() + "'");
768 return 0;
769 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000770
Chris Lattnerdf986172009-01-02 07:01:27 +0000771 // Otherwise, create a new forward reference for this value and remember it.
772 GlobalValue *FwdVal;
Chris Lattner1e407c32009-01-08 19:05:36 +0000773 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
774 // Function types can return opaque but functions can't.
775 if (isa<OpaqueType>(FT->getReturnType())) {
776 Error(Loc, "function may not return opaque type");
777 return 0;
778 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000779
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000780 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
Chris Lattner1e407c32009-01-08 19:05:36 +0000781 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000782 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
783 GlobalValue::ExternalWeakLinkage, 0, Name);
Chris Lattner1e407c32009-01-08 19:05:36 +0000784 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000785
Chris Lattnerdf986172009-01-02 07:01:27 +0000786 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
787 return FwdVal;
788}
789
790GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
791 const PointerType *PTy = dyn_cast<PointerType>(Ty);
792 if (PTy == 0) {
793 Error(Loc, "global variable reference must have pointer type");
794 return 0;
795 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000796
Chris Lattnerdf986172009-01-02 07:01:27 +0000797 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000798
Chris Lattnerdf986172009-01-02 07:01:27 +0000799 // If this is a forward reference for the value, see if we already created a
800 // forward ref record.
801 if (Val == 0) {
802 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
803 I = ForwardRefValIDs.find(ID);
804 if (I != ForwardRefValIDs.end())
805 Val = I->second.first;
806 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000807
Chris Lattnerdf986172009-01-02 07:01:27 +0000808 // If we have the value in the symbol table or fwd-ref table, return it.
809 if (Val) {
810 if (Val->getType() == Ty) return Val;
811 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
812 Val->getType()->getDescription() + "'");
813 return 0;
814 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000815
Chris Lattnerdf986172009-01-02 07:01:27 +0000816 // Otherwise, create a new forward reference for this value and remember it.
817 GlobalValue *FwdVal;
Chris Lattner830703b2009-01-05 18:27:50 +0000818 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
819 // Function types can return opaque but functions can't.
820 if (isa<OpaqueType>(FT->getReturnType())) {
Chris Lattner0d8484f2009-01-05 18:56:52 +0000821 Error(Loc, "function may not return opaque type");
Chris Lattner830703b2009-01-05 18:27:50 +0000822 return 0;
823 }
Duncan Sands5f4ee1f2009-03-11 08:08:06 +0000824 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
Chris Lattner830703b2009-01-05 18:27:50 +0000825 } else {
Owen Andersone9b11b42009-07-08 19:03:57 +0000826 FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
827 GlobalValue::ExternalWeakLinkage, 0, "");
Chris Lattner830703b2009-01-05 18:27:50 +0000828 }
Daniel Dunbara279bc32009-09-20 02:20:51 +0000829
Chris Lattnerdf986172009-01-02 07:01:27 +0000830 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
831 return FwdVal;
832}
833
834
835//===----------------------------------------------------------------------===//
836// Helper Routines.
837//===----------------------------------------------------------------------===//
838
839/// ParseToken - If the current token has the specified kind, eat it and return
840/// success. Otherwise, emit the specified error and return failure.
841bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
842 if (Lex.getKind() != T)
843 return TokError(ErrMsg);
844 Lex.Lex();
845 return false;
846}
847
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000848/// ParseStringConstant
849/// ::= StringConstant
850bool LLParser::ParseStringConstant(std::string &Result) {
851 if (Lex.getKind() != lltok::StringConstant)
852 return TokError("expected string constant");
853 Result = Lex.getStrVal();
854 Lex.Lex();
855 return false;
856}
857
858/// ParseUInt32
859/// ::= uint32
860bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000861 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
862 return TokError("expected integer");
863 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
864 if (Val64 != unsigned(Val64))
865 return TokError("expected 32-bit integer (too large)");
866 Val = Val64;
867 Lex.Lex();
868 return false;
869}
870
871
872/// ParseOptionalAddrSpace
873/// := /*empty*/
874/// := 'addrspace' '(' uint32 ')'
875bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
876 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000877 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000878 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000879 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000880 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000881 ParseToken(lltok::rparen, "expected ')' in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000882}
Chris Lattnerdf986172009-01-02 07:01:27 +0000883
884/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
885/// indicates what kind of attribute list this is: 0: function arg, 1: result,
886/// 2: function attr.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000887/// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
Chris Lattnerdf986172009-01-02 07:01:27 +0000888bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
889 Attrs = Attribute::None;
890 LocTy AttrLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +0000891
Chris Lattnerdf986172009-01-02 07:01:27 +0000892 while (1) {
893 switch (Lex.getKind()) {
894 case lltok::kw_sext:
895 case lltok::kw_zext:
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000896 // Treat these as signext/zeroext if they occur in the argument list after
897 // the value, as in "call i8 @foo(i8 10 sext)". If they occur before the
898 // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
899 // expr.
Chris Lattnerdf986172009-01-02 07:01:27 +0000900 // FIXME: REMOVE THIS IN LLVM 3.0
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000901 if (AttrKind == 3) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000902 if (Lex.getKind() == lltok::kw_sext)
903 Attrs |= Attribute::SExt;
904 else
905 Attrs |= Attribute::ZExt;
906 break;
907 }
908 // FALL THROUGH.
909 default: // End of attributes.
910 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
911 return Error(AttrLoc, "invalid use of function-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000912
Chris Lattnerad9ad7c2009-03-25 06:36:36 +0000913 if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
Chris Lattnerdf986172009-01-02 07:01:27 +0000914 return Error(AttrLoc, "invalid use of parameter-only attribute");
Daniel Dunbara279bc32009-09-20 02:20:51 +0000915
Chris Lattnerdf986172009-01-02 07:01:27 +0000916 return false;
Devang Patel578efa92009-06-05 21:57:13 +0000917 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
918 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
919 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
920 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
921 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
922 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
923 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
924 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000925
Devang Patel578efa92009-06-05 21:57:13 +0000926 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
927 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
928 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
929 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
930 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
Dale Johannesende86d472009-08-26 01:08:21 +0000931 case lltok::kw_inlinehint: Attrs |= Attribute::InlineHint; break;
Devang Patel578efa92009-06-05 21:57:13 +0000932 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
933 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
934 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
935 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
936 case lltok::kw_noredzone: Attrs |= Attribute::NoRedZone; break;
937 case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
Anton Korobeynikovc5ec8a72009-07-17 18:07:26 +0000938 case lltok::kw_naked: Attrs |= Attribute::Naked; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +0000939
Chris Lattnerdf986172009-01-02 07:01:27 +0000940 case lltok::kw_align: {
941 unsigned Alignment;
942 if (ParseOptionalAlignment(Alignment))
943 return true;
944 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
945 continue;
946 }
947 }
948 Lex.Lex();
949 }
950}
951
952/// ParseOptionalLinkage
953/// ::= /*empty*/
Rafael Espindolabb46f522009-01-15 20:18:42 +0000954/// ::= 'private'
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000955/// ::= 'linker_private'
Chris Lattnerdf986172009-01-02 07:01:27 +0000956/// ::= 'internal'
957/// ::= 'weak'
Duncan Sands667d4b82009-03-07 15:45:40 +0000958/// ::= 'weak_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000959/// ::= 'linkonce'
Duncan Sands667d4b82009-03-07 15:45:40 +0000960/// ::= 'linkonce_odr'
Chris Lattnerdf986172009-01-02 07:01:27 +0000961/// ::= 'appending'
962/// ::= 'dllexport'
963/// ::= 'common'
964/// ::= 'dllimport'
965/// ::= 'extern_weak'
966/// ::= 'external'
967bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
968 HasLinkage = false;
969 switch (Lex.getKind()) {
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000970 default: Res=GlobalValue::ExternalLinkage; return false;
971 case lltok::kw_private: Res = GlobalValue::PrivateLinkage; break;
972 case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
973 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
974 case lltok::kw_weak: Res = GlobalValue::WeakAnyLinkage; break;
975 case lltok::kw_weak_odr: Res = GlobalValue::WeakODRLinkage; break;
976 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceAnyLinkage; break;
977 case lltok::kw_linkonce_odr: Res = GlobalValue::LinkOnceODRLinkage; break;
Chris Lattner266c7bb2009-04-13 05:44:34 +0000978 case lltok::kw_available_externally:
979 Res = GlobalValue::AvailableExternallyLinkage;
980 break;
Bill Wendling3d10a5a2009-07-20 01:03:30 +0000981 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
982 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
983 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
984 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
985 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
986 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
Chris Lattnerdf986172009-01-02 07:01:27 +0000987 }
988 Lex.Lex();
989 HasLinkage = true;
990 return false;
991}
992
993/// ParseOptionalVisibility
994/// ::= /*empty*/
995/// ::= 'default'
996/// ::= 'hidden'
997/// ::= 'protected'
Daniel Dunbara279bc32009-09-20 02:20:51 +0000998///
Chris Lattnerdf986172009-01-02 07:01:27 +0000999bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1000 switch (Lex.getKind()) {
1001 default: Res = GlobalValue::DefaultVisibility; return false;
1002 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
1003 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
1004 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1005 }
1006 Lex.Lex();
1007 return false;
1008}
1009
1010/// ParseOptionalCallingConv
1011/// ::= /*empty*/
1012/// ::= 'ccc'
1013/// ::= 'fastcc'
1014/// ::= 'coldcc'
1015/// ::= 'x86_stdcallcc'
1016/// ::= 'x86_fastcallcc'
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001017/// ::= 'arm_apcscc'
1018/// ::= 'arm_aapcscc'
1019/// ::= 'arm_aapcs_vfpcc'
Chris Lattnerdf986172009-01-02 07:01:27 +00001020/// ::= 'cc' UINT
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001021///
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001022bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001023 switch (Lex.getKind()) {
1024 default: CC = CallingConv::C; return false;
1025 case lltok::kw_ccc: CC = CallingConv::C; break;
1026 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
1027 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
1028 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
1029 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Anton Korobeynikov385f5a92009-06-16 18:50:49 +00001030 case lltok::kw_arm_apcscc: CC = CallingConv::ARM_APCS; break;
1031 case lltok::kw_arm_aapcscc: CC = CallingConv::ARM_AAPCS; break;
1032 case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00001033 case lltok::kw_cc: {
1034 unsigned ArbitraryCC;
1035 Lex.Lex();
1036 if (ParseUInt32(ArbitraryCC)) {
1037 return true;
1038 } else
1039 CC = static_cast<CallingConv::ID>(ArbitraryCC);
1040 return false;
1041 }
1042 break;
Chris Lattnerdf986172009-01-02 07:01:27 +00001043 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001044
Chris Lattnerdf986172009-01-02 07:01:27 +00001045 Lex.Lex();
1046 return false;
1047}
1048
Devang Patelf633a062009-09-17 23:04:48 +00001049/// ParseOptionalDbgInfo
1050/// ::= /* empty */
1051/// ::= 'dbg' !42
1052bool LLParser::ParseOptionalDbgInfo() {
1053
1054 if (!EatIfPresent(lltok::kw_dbg))
1055 return false;
1056 if (Lex.getKind() != lltok::Metadata)
1057 return TokError("Expected '!' here");
1058 Lex.Lex();
1059 MetadataBase *Node;
1060 if (ParseMDNode(Node)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001061
Devang Patelf633a062009-09-17 23:04:48 +00001062 Metadata &TheMetadata = M->getContext().getMetadata();
1063 unsigned MDDbgKind = TheMetadata.getMDKind("dbg");
1064 if (!MDDbgKind)
1065 MDDbgKind = TheMetadata.RegisterMDKind("dbg");
1066 MDsOnInst.push_back(std::make_pair(MDDbgKind, cast<MDNode>(Node)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001067
Devang Patelf633a062009-09-17 23:04:48 +00001068 return false;
1069}
1070
Chris Lattnerdf986172009-01-02 07:01:27 +00001071/// ParseOptionalAlignment
1072/// ::= /* empty */
1073/// ::= 'align' 4
1074bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1075 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001076 if (!EatIfPresent(lltok::kw_align))
1077 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +00001078 LocTy AlignLoc = Lex.getLoc();
1079 if (ParseUInt32(Alignment)) return true;
1080 if (!isPowerOf2_32(Alignment))
1081 return Error(AlignLoc, "alignment is not a power of two");
1082 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001083}
1084
Devang Patelf633a062009-09-17 23:04:48 +00001085/// ParseOptionalInfo
1086/// ::= OptionalInfo (',' OptionalInfo)+
1087bool LLParser::ParseOptionalInfo(unsigned &Alignment) {
1088
1089 // FIXME: Handle customized metadata info attached with an instruction.
1090 do {
1091 if (Lex.getKind() == lltok::kw_dbg) {
1092 if (ParseOptionalDbgInfo()) return true;
1093 } else if (Lex.getKind() == lltok::kw_align) {
1094 if (ParseOptionalAlignment(Alignment)) return true;
1095 } else
1096 return true;
1097 } while (EatIfPresent(lltok::comma));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001098
Devang Patelf633a062009-09-17 23:04:48 +00001099 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001100}
1101
Devang Patelf633a062009-09-17 23:04:48 +00001102
Chris Lattnerdf986172009-01-02 07:01:27 +00001103/// ParseIndexList
1104/// ::= (',' uint32)+
1105bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
1106 if (Lex.getKind() != lltok::comma)
1107 return TokError("expected ',' as start of index list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001108
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001109 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001110 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001111 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001112 Indices.push_back(Idx);
1113 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001114
Chris Lattnerdf986172009-01-02 07:01:27 +00001115 return false;
1116}
1117
1118//===----------------------------------------------------------------------===//
1119// Type Parsing.
1120//===----------------------------------------------------------------------===//
1121
1122/// ParseType - Parse and resolve a full type.
Chris Lattnera9a9e072009-03-09 04:49:14 +00001123bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1124 LocTy TypeLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001125 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001126
Chris Lattnerdf986172009-01-02 07:01:27 +00001127 // Verify no unresolved uprefs.
1128 if (!UpRefs.empty())
1129 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001130
Owen Anderson1d0be152009-08-13 21:58:54 +00001131 if (!AllowVoid && Result.get() == Type::getVoidTy(Context))
Chris Lattnera9a9e072009-03-09 04:49:14 +00001132 return Error(TypeLoc, "void type only allowed for function results");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001133
Chris Lattnerdf986172009-01-02 07:01:27 +00001134 return false;
1135}
1136
1137/// HandleUpRefs - Every time we finish a new layer of types, this function is
1138/// called. It loops through the UpRefs vector, which is a list of the
1139/// currently active types. For each type, if the up-reference is contained in
1140/// the newly completed type, we decrement the level count. When the level
1141/// count reaches zero, the up-referenced type is the type that is passed in:
1142/// thus we can complete the cycle.
1143///
1144PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1145 // If Ty isn't abstract, or if there are no up-references in it, then there is
1146 // nothing to resolve here.
1147 if (!ty->isAbstract() || UpRefs.empty()) return ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001148
Chris Lattnerdf986172009-01-02 07:01:27 +00001149 PATypeHolder Ty(ty);
1150#if 0
1151 errs() << "Type '" << Ty->getDescription()
1152 << "' newly formed. Resolving upreferences.\n"
1153 << UpRefs.size() << " upreferences active!\n";
1154#endif
Daniel Dunbara279bc32009-09-20 02:20:51 +00001155
Chris Lattnerdf986172009-01-02 07:01:27 +00001156 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1157 // to zero), we resolve them all together before we resolve them to Ty. At
1158 // the end of the loop, if there is anything to resolve to Ty, it will be in
1159 // this variable.
1160 OpaqueType *TypeToResolve = 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001161
Chris Lattnerdf986172009-01-02 07:01:27 +00001162 for (unsigned i = 0; i != UpRefs.size(); ++i) {
1163 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1164 bool ContainsType =
1165 std::find(Ty->subtype_begin(), Ty->subtype_end(),
1166 UpRefs[i].LastContainedTy) != Ty->subtype_end();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001167
Chris Lattnerdf986172009-01-02 07:01:27 +00001168#if 0
1169 errs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
1170 << UpRefs[i].LastContainedTy->getDescription() << ") = "
1171 << (ContainsType ? "true" : "false")
1172 << " level=" << UpRefs[i].NestingLevel << "\n";
1173#endif
1174 if (!ContainsType)
1175 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001176
Chris Lattnerdf986172009-01-02 07:01:27 +00001177 // Decrement level of upreference
1178 unsigned Level = --UpRefs[i].NestingLevel;
1179 UpRefs[i].LastContainedTy = Ty;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001180
Chris Lattnerdf986172009-01-02 07:01:27 +00001181 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1182 if (Level != 0)
1183 continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001184
Chris Lattnerdf986172009-01-02 07:01:27 +00001185#if 0
1186 errs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
1187#endif
1188 if (!TypeToResolve)
1189 TypeToResolve = UpRefs[i].UpRefTy;
1190 else
1191 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1192 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
1193 --i; // Do not skip the next element.
1194 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001195
Chris Lattnerdf986172009-01-02 07:01:27 +00001196 if (TypeToResolve)
1197 TypeToResolve->refineAbstractTypeTo(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001198
Chris Lattnerdf986172009-01-02 07:01:27 +00001199 return Ty;
1200}
1201
1202
1203/// ParseTypeRec - The recursive function used to process the internal
1204/// implementation details of types.
1205bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1206 switch (Lex.getKind()) {
1207 default:
1208 return TokError("expected type");
1209 case lltok::Type:
1210 // TypeRec ::= 'float' | 'void' (etc)
1211 Result = Lex.getTyVal();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001212 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00001213 break;
1214 case lltok::kw_opaque:
1215 // TypeRec ::= 'opaque'
Owen Anderson0e275dc2009-08-13 23:27:32 +00001216 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001217 Lex.Lex();
1218 break;
1219 case lltok::lbrace:
1220 // TypeRec ::= '{' ... '}'
1221 if (ParseStructType(Result, false))
1222 return true;
1223 break;
1224 case lltok::lsquare:
1225 // TypeRec ::= '[' ... ']'
1226 Lex.Lex(); // eat the lsquare.
1227 if (ParseArrayVectorType(Result, false))
1228 return true;
1229 break;
1230 case lltok::less: // Either vector or packed struct.
1231 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001232 Lex.Lex();
1233 if (Lex.getKind() == lltok::lbrace) {
1234 if (ParseStructType(Result, true) ||
1235 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +00001236 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001237 } else if (ParseArrayVectorType(Result, true))
1238 return true;
1239 break;
1240 case lltok::LocalVar:
1241 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
1242 // TypeRec ::= %foo
1243 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1244 Result = T;
1245 } else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001246 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001247 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1248 std::make_pair(Result,
1249 Lex.getLoc())));
1250 M->addTypeName(Lex.getStrVal(), Result.get());
1251 }
1252 Lex.Lex();
1253 break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001254
Chris Lattnerdf986172009-01-02 07:01:27 +00001255 case lltok::LocalVarID:
1256 // TypeRec ::= %4
1257 if (Lex.getUIntVal() < NumberedTypes.size())
1258 Result = NumberedTypes[Lex.getUIntVal()];
1259 else {
1260 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1261 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1262 if (I != ForwardRefTypeIDs.end())
1263 Result = I->second.first;
1264 else {
Owen Anderson0e275dc2009-08-13 23:27:32 +00001265 Result = OpaqueType::get(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001266 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1267 std::make_pair(Result,
1268 Lex.getLoc())));
1269 }
1270 }
1271 Lex.Lex();
1272 break;
1273 case lltok::backslash: {
1274 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +00001275 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001276 unsigned Val;
1277 if (ParseUInt32(Val)) return true;
Owen Anderson0e275dc2009-08-13 23:27:32 +00001278 OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
Chris Lattnerdf986172009-01-02 07:01:27 +00001279 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1280 Result = OT;
1281 break;
1282 }
1283 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001284
1285 // Parse the type suffixes.
Chris Lattnerdf986172009-01-02 07:01:27 +00001286 while (1) {
1287 switch (Lex.getKind()) {
1288 // End of type.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001289 default: return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001290
1291 // TypeRec ::= TypeRec '*'
1292 case lltok::star:
Owen Anderson1d0be152009-08-13 21:58:54 +00001293 if (Result.get() == Type::getLabelTy(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00001294 return TokError("basic block pointers are invalid");
Owen Anderson1d0be152009-08-13 21:58:54 +00001295 if (Result.get() == Type::getVoidTy(Context))
Dan Gohmanb9070d32009-02-09 17:41:21 +00001296 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001297 if (!PointerType::isValidElementType(Result.get()))
1298 return TokError("pointer to this type is invalid");
Owen Andersondebcb012009-07-29 22:17:13 +00001299 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001300 Lex.Lex();
1301 break;
1302
1303 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1304 case lltok::kw_addrspace: {
Owen Anderson1d0be152009-08-13 21:58:54 +00001305 if (Result.get() == Type::getLabelTy(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00001306 return TokError("basic block pointers are invalid");
Owen Anderson1d0be152009-08-13 21:58:54 +00001307 if (Result.get() == Type::getVoidTy(Context))
Dan Gohmanb9070d32009-02-09 17:41:21 +00001308 return TokError("pointers to void are invalid; use i8* instead");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001309 if (!PointerType::isValidElementType(Result.get()))
1310 return TokError("pointer to this type is invalid");
Chris Lattnerdf986172009-01-02 07:01:27 +00001311 unsigned AddrSpace;
1312 if (ParseOptionalAddrSpace(AddrSpace) ||
1313 ParseToken(lltok::star, "expected '*' in address space"))
1314 return true;
1315
Owen Andersondebcb012009-07-29 22:17:13 +00001316 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
Chris Lattnerdf986172009-01-02 07:01:27 +00001317 break;
1318 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001319
Chris Lattnerdf986172009-01-02 07:01:27 +00001320 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1321 case lltok::lparen:
1322 if (ParseFunctionType(Result))
1323 return true;
1324 break;
1325 }
1326 }
1327}
1328
1329/// ParseParameterList
1330/// ::= '(' ')'
1331/// ::= '(' Arg (',' Arg)* ')'
1332/// Arg
1333/// ::= Type OptionalAttributes Value OptionalAttributes
1334bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1335 PerFunctionState &PFS) {
1336 if (ParseToken(lltok::lparen, "expected '(' in call"))
1337 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001338
Chris Lattnerdf986172009-01-02 07:01:27 +00001339 while (Lex.getKind() != lltok::rparen) {
1340 // If this isn't the first argument, we need a comma.
1341 if (!ArgList.empty() &&
1342 ParseToken(lltok::comma, "expected ',' in argument list"))
1343 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001344
Chris Lattnerdf986172009-01-02 07:01:27 +00001345 // Parse the argument.
1346 LocTy ArgLoc;
Owen Anderson1d0be152009-08-13 21:58:54 +00001347 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001348 unsigned ArgAttrs1, ArgAttrs2;
1349 Value *V;
1350 if (ParseType(ArgTy, ArgLoc) ||
1351 ParseOptionalAttrs(ArgAttrs1, 0) ||
1352 ParseValue(ArgTy, V, PFS) ||
1353 // FIXME: Should not allow attributes after the argument, remove this in
1354 // LLVM 3.0.
Chris Lattnerad9ad7c2009-03-25 06:36:36 +00001355 ParseOptionalAttrs(ArgAttrs2, 3))
Chris Lattnerdf986172009-01-02 07:01:27 +00001356 return true;
1357 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1358 }
1359
1360 Lex.Lex(); // Lex the ')'.
1361 return false;
1362}
1363
1364
1365
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001366/// ParseArgumentList - Parse the argument list for a function type or function
1367/// prototype. If 'inType' is true then we are parsing a FunctionType.
Chris Lattnerdf986172009-01-02 07:01:27 +00001368/// ::= '(' ArgTypeListI ')'
1369/// ArgTypeListI
1370/// ::= /*empty*/
1371/// ::= '...'
1372/// ::= ArgTypeList ',' '...'
1373/// ::= ArgType (',' ArgType)*
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001374///
Chris Lattnerdf986172009-01-02 07:01:27 +00001375bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001376 bool &isVarArg, bool inType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001377 isVarArg = false;
1378 assert(Lex.getKind() == lltok::lparen);
1379 Lex.Lex(); // eat the (.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001380
Chris Lattnerdf986172009-01-02 07:01:27 +00001381 if (Lex.getKind() == lltok::rparen) {
1382 // empty
1383 } else if (Lex.getKind() == lltok::dotdotdot) {
1384 isVarArg = true;
1385 Lex.Lex();
1386 } else {
1387 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001388 PATypeHolder ArgTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001389 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001390 std::string Name;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001391
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001392 // If we're parsing a type, use ParseTypeRec, because we allow recursive
1393 // types (such as a function returning a pointer to itself). If parsing a
1394 // function prototype, we require fully resolved types.
1395 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001396 ParseOptionalAttrs(Attrs, 0)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001397
Owen Anderson1d0be152009-08-13 21:58:54 +00001398 if (ArgTy == Type::getVoidTy(Context))
Chris Lattnera9a9e072009-03-09 04:49:14 +00001399 return Error(TypeLoc, "argument can not have void type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001400
Chris Lattnerdf986172009-01-02 07:01:27 +00001401 if (Lex.getKind() == lltok::LocalVar ||
1402 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1403 Name = Lex.getStrVal();
1404 Lex.Lex();
1405 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001406
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001407 if (!FunctionType::isValidArgumentType(ArgTy))
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001408 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001409
Chris Lattnerdf986172009-01-02 07:01:27 +00001410 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
Daniel Dunbara279bc32009-09-20 02:20:51 +00001411
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001412 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001413 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001414 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001415 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001416 break;
1417 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001418
Chris Lattnerdf986172009-01-02 07:01:27 +00001419 // Otherwise must be an argument type.
1420 TypeLoc = Lex.getLoc();
Chris Lattnera9a9e072009-03-09 04:49:14 +00001421 if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001422 ParseOptionalAttrs(Attrs, 0)) return true;
1423
Owen Anderson1d0be152009-08-13 21:58:54 +00001424 if (ArgTy == Type::getVoidTy(Context))
Chris Lattnera9a9e072009-03-09 04:49:14 +00001425 return Error(TypeLoc, "argument can not have void type");
1426
Chris Lattnerdf986172009-01-02 07:01:27 +00001427 if (Lex.getKind() == lltok::LocalVar ||
1428 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1429 Name = Lex.getStrVal();
1430 Lex.Lex();
1431 } else {
1432 Name = "";
1433 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001434
1435 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1436 return Error(TypeLoc, "invalid type for function argument");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001437
Chris Lattnerdf986172009-01-02 07:01:27 +00001438 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1439 }
1440 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001441
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001442 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001443}
Daniel Dunbara279bc32009-09-20 02:20:51 +00001444
Chris Lattnerdf986172009-01-02 07:01:27 +00001445/// ParseFunctionType
1446/// ::= Type ArgumentList OptionalAttrs
1447bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1448 assert(Lex.getKind() == lltok::lparen);
1449
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001450 if (!FunctionType::isValidReturnType(Result))
1451 return TokError("invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001452
Chris Lattnerdf986172009-01-02 07:01:27 +00001453 std::vector<ArgInfo> ArgList;
1454 bool isVarArg;
1455 unsigned Attrs;
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00001456 if (ParseArgumentList(ArgList, isVarArg, true) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001457 // FIXME: Allow, but ignore attributes on function types!
1458 // FIXME: Remove in LLVM 3.0
1459 ParseOptionalAttrs(Attrs, 2))
1460 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001461
Chris Lattnerdf986172009-01-02 07:01:27 +00001462 // Reject names on the arguments lists.
1463 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1464 if (!ArgList[i].Name.empty())
1465 return Error(ArgList[i].Loc, "argument name invalid in function type");
1466 if (!ArgList[i].Attrs != 0) {
1467 // Allow but ignore attributes on function types; this permits
1468 // auto-upgrade.
1469 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1470 }
1471 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001472
Chris Lattnerdf986172009-01-02 07:01:27 +00001473 std::vector<const Type*> ArgListTy;
1474 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1475 ArgListTy.push_back(ArgList[i].Type);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001476
Owen Andersondebcb012009-07-29 22:17:13 +00001477 Result = HandleUpRefs(FunctionType::get(Result.get(),
Owen Andersonfba933c2009-07-01 23:57:11 +00001478 ArgListTy, isVarArg));
Chris Lattnerdf986172009-01-02 07:01:27 +00001479 return false;
1480}
1481
1482/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1483/// TypeRec
1484/// ::= '{' '}'
1485/// ::= '{' TypeRec (',' TypeRec)* '}'
1486/// ::= '<' '{' '}' '>'
1487/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1488bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1489 assert(Lex.getKind() == lltok::lbrace);
1490 Lex.Lex(); // Consume the '{'
Daniel Dunbara279bc32009-09-20 02:20:51 +00001491
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001492 if (EatIfPresent(lltok::rbrace)) {
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001493 Result = StructType::get(Context, Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001494 return false;
1495 }
1496
1497 std::vector<PATypeHolder> ParamsList;
Chris Lattnera9a9e072009-03-09 04:49:14 +00001498 LocTy EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001499 if (ParseTypeRec(Result)) return true;
1500 ParamsList.push_back(Result);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001501
Owen Anderson1d0be152009-08-13 21:58:54 +00001502 if (Result == Type::getVoidTy(Context))
Chris Lattnera9a9e072009-03-09 04:49:14 +00001503 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001504 if (!StructType::isValidElementType(Result))
1505 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001506
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001507 while (EatIfPresent(lltok::comma)) {
Chris Lattnera9a9e072009-03-09 04:49:14 +00001508 EltTyLoc = Lex.getLoc();
Chris Lattnerdf986172009-01-02 07:01:27 +00001509 if (ParseTypeRec(Result)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001510
Owen Anderson1d0be152009-08-13 21:58:54 +00001511 if (Result == Type::getVoidTy(Context))
Chris Lattnera9a9e072009-03-09 04:49:14 +00001512 return Error(EltTyLoc, "struct element can not have void type");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001513 if (!StructType::isValidElementType(Result))
1514 return Error(EltTyLoc, "invalid element type for struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001515
Chris Lattnerdf986172009-01-02 07:01:27 +00001516 ParamsList.push_back(Result);
1517 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001518
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001519 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1520 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001521
Chris Lattnerdf986172009-01-02 07:01:27 +00001522 std::vector<const Type*> ParamsListTy;
1523 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1524 ParamsListTy.push_back(ParamsList[i].get());
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001525 Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
Chris Lattnerdf986172009-01-02 07:01:27 +00001526 return false;
1527}
1528
1529/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1530/// token has already been consumed.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001531/// TypeRec
Chris Lattnerdf986172009-01-02 07:01:27 +00001532/// ::= '[' APSINTVAL 'x' Types ']'
1533/// ::= '<' APSINTVAL 'x' Types '>'
1534bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1535 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1536 Lex.getAPSIntVal().getBitWidth() > 64)
1537 return TokError("expected number in address space");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001538
Chris Lattnerdf986172009-01-02 07:01:27 +00001539 LocTy SizeLoc = Lex.getLoc();
1540 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001541 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001542
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001543 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1544 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001545
1546 LocTy TypeLoc = Lex.getLoc();
Owen Anderson1d0be152009-08-13 21:58:54 +00001547 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00001548 if (ParseTypeRec(EltTy)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001549
Owen Anderson1d0be152009-08-13 21:58:54 +00001550 if (EltTy == Type::getVoidTy(Context))
Chris Lattnera9a9e072009-03-09 04:49:14 +00001551 return Error(TypeLoc, "array and vector element type cannot be void");
1552
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001553 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1554 "expected end of sequential type"))
1555 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001556
Chris Lattnerdf986172009-01-02 07:01:27 +00001557 if (isVector) {
Chris Lattner452e2622009-02-28 18:12:41 +00001558 if (Size == 0)
1559 return Error(SizeLoc, "zero element vector is illegal");
Chris Lattnerdf986172009-01-02 07:01:27 +00001560 if ((unsigned)Size != Size)
1561 return Error(SizeLoc, "size too large for vector");
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001562 if (!VectorType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001563 return Error(TypeLoc, "vector element type must be fp or integer");
Owen Andersondebcb012009-07-29 22:17:13 +00001564 Result = VectorType::get(EltTy, unsigned(Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001565 } else {
Nick Lewyckya5f54a02009-06-07 07:26:46 +00001566 if (!ArrayType::isValidElementType(EltTy))
Chris Lattnerdf986172009-01-02 07:01:27 +00001567 return Error(TypeLoc, "invalid array element type");
Owen Andersondebcb012009-07-29 22:17:13 +00001568 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
Chris Lattnerdf986172009-01-02 07:01:27 +00001569 }
1570 return false;
1571}
1572
1573//===----------------------------------------------------------------------===//
1574// Function Semantic Analysis.
1575//===----------------------------------------------------------------------===//
1576
1577LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f)
1578 : P(p), F(f) {
1579
1580 // Insert unnamed arguments into the NumberedVals list.
1581 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1582 AI != E; ++AI)
1583 if (!AI->hasName())
1584 NumberedVals.push_back(AI);
1585}
1586
1587LLParser::PerFunctionState::~PerFunctionState() {
1588 // If there were any forward referenced non-basicblock values, delete them.
1589 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1590 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1591 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001592 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001593 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001594 delete I->second.first;
1595 I->second.first = 0;
1596 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001597
Chris Lattnerdf986172009-01-02 07:01:27 +00001598 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1599 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1600 if (!isa<BasicBlock>(I->second.first)) {
Owen Andersonb43eae72009-07-02 17:04:01 +00001601 I->second.first->replaceAllUsesWith(
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001602 UndefValue::get(I->second.first->getType()));
Chris Lattnerdf986172009-01-02 07:01:27 +00001603 delete I->second.first;
1604 I->second.first = 0;
1605 }
1606}
1607
1608bool LLParser::PerFunctionState::VerifyFunctionComplete() {
1609 if (!ForwardRefVals.empty())
1610 return P.Error(ForwardRefVals.begin()->second.second,
1611 "use of undefined value '%" + ForwardRefVals.begin()->first +
1612 "'");
1613 if (!ForwardRefValIDs.empty())
1614 return P.Error(ForwardRefValIDs.begin()->second.second,
1615 "use of undefined value '%" +
1616 utostr(ForwardRefValIDs.begin()->first) + "'");
1617 return false;
1618}
1619
1620
1621/// GetVal - Get a value with the specified name or ID, creating a
1622/// forward reference record if needed. This can return null if the value
1623/// exists but does not have the right type.
1624Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1625 const Type *Ty, LocTy Loc) {
1626 // Look this name up in the normal function symbol table.
1627 Value *Val = F.getValueSymbolTable().lookup(Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001628
Chris Lattnerdf986172009-01-02 07:01:27 +00001629 // If this is a forward reference for the value, see if we already created a
1630 // forward ref record.
1631 if (Val == 0) {
1632 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1633 I = ForwardRefVals.find(Name);
1634 if (I != ForwardRefVals.end())
1635 Val = I->second.first;
1636 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001637
Chris Lattnerdf986172009-01-02 07:01:27 +00001638 // If we have the value in the symbol table or fwd-ref table, return it.
1639 if (Val) {
1640 if (Val->getType() == Ty) return Val;
Owen Anderson1d0be152009-08-13 21:58:54 +00001641 if (Ty == Type::getLabelTy(F.getContext()))
Chris Lattnerdf986172009-01-02 07:01:27 +00001642 P.Error(Loc, "'%" + Name + "' is not a basic block");
1643 else
1644 P.Error(Loc, "'%" + Name + "' defined with type '" +
1645 Val->getType()->getDescription() + "'");
1646 return 0;
1647 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001648
Chris Lattnerdf986172009-01-02 07:01:27 +00001649 // Don't make placeholders with invalid type.
Owen Anderson1d0be152009-08-13 21:58:54 +00001650 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1651 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001652 P.Error(Loc, "invalid use of a non-first-class type");
1653 return 0;
1654 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001655
Chris Lattnerdf986172009-01-02 07:01:27 +00001656 // Otherwise, create a new forward reference for this value and remember it.
1657 Value *FwdVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001658 if (Ty == Type::getLabelTy(F.getContext()))
Owen Anderson1d0be152009-08-13 21:58:54 +00001659 FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001660 else
1661 FwdVal = new Argument(Ty, Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001662
Chris Lattnerdf986172009-01-02 07:01:27 +00001663 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1664 return FwdVal;
1665}
1666
1667Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1668 LocTy Loc) {
1669 // Look this name up in the normal function symbol table.
1670 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001671
Chris Lattnerdf986172009-01-02 07:01:27 +00001672 // If this is a forward reference for the value, see if we already created a
1673 // forward ref record.
1674 if (Val == 0) {
1675 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1676 I = ForwardRefValIDs.find(ID);
1677 if (I != ForwardRefValIDs.end())
1678 Val = I->second.first;
1679 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001680
Chris Lattnerdf986172009-01-02 07:01:27 +00001681 // If we have the value in the symbol table or fwd-ref table, return it.
1682 if (Val) {
1683 if (Val->getType() == Ty) return Val;
Owen Anderson1d0be152009-08-13 21:58:54 +00001684 if (Ty == Type::getLabelTy(F.getContext()))
Chris Lattnerdf986172009-01-02 07:01:27 +00001685 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1686 else
1687 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1688 Val->getType()->getDescription() + "'");
1689 return 0;
1690 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001691
Owen Anderson1d0be152009-08-13 21:58:54 +00001692 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1693 Ty != Type::getLabelTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001694 P.Error(Loc, "invalid use of a non-first-class type");
1695 return 0;
1696 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001697
Chris Lattnerdf986172009-01-02 07:01:27 +00001698 // Otherwise, create a new forward reference for this value and remember it.
1699 Value *FwdVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001700 if (Ty == Type::getLabelTy(F.getContext()))
Owen Anderson1d0be152009-08-13 21:58:54 +00001701 FwdVal = BasicBlock::Create(F.getContext(), "", &F);
Chris Lattnerdf986172009-01-02 07:01:27 +00001702 else
1703 FwdVal = new Argument(Ty);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001704
Chris Lattnerdf986172009-01-02 07:01:27 +00001705 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1706 return FwdVal;
1707}
1708
1709/// SetInstName - After an instruction is parsed and inserted into its
1710/// basic block, this installs its name.
1711bool LLParser::PerFunctionState::SetInstName(int NameID,
1712 const std::string &NameStr,
1713 LocTy NameLoc, Instruction *Inst) {
1714 // If this instruction has void type, it cannot have a name or ID specified.
Owen Anderson1d0be152009-08-13 21:58:54 +00001715 if (Inst->getType() == Type::getVoidTy(F.getContext())) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001716 if (NameID != -1 || !NameStr.empty())
1717 return P.Error(NameLoc, "instructions returning void cannot have a name");
1718 return false;
1719 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001720
Chris Lattnerdf986172009-01-02 07:01:27 +00001721 // If this was a numbered instruction, verify that the instruction is the
1722 // expected value and resolve any forward references.
1723 if (NameStr.empty()) {
1724 // If neither a name nor an ID was specified, just use the next ID.
1725 if (NameID == -1)
1726 NameID = NumberedVals.size();
Daniel Dunbara279bc32009-09-20 02:20:51 +00001727
Chris Lattnerdf986172009-01-02 07:01:27 +00001728 if (unsigned(NameID) != NumberedVals.size())
1729 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1730 utostr(NumberedVals.size()) + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001731
Chris Lattnerdf986172009-01-02 07:01:27 +00001732 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1733 ForwardRefValIDs.find(NameID);
1734 if (FI != ForwardRefValIDs.end()) {
1735 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001736 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001737 FI->second.first->getType()->getDescription() + "'");
1738 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes2b4f28e2009-09-02 15:02:57 +00001739 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001740 ForwardRefValIDs.erase(FI);
1741 }
1742
1743 NumberedVals.push_back(Inst);
1744 return false;
1745 }
1746
1747 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1748 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1749 FI = ForwardRefVals.find(NameStr);
1750 if (FI != ForwardRefVals.end()) {
1751 if (FI->second.first->getType() != Inst->getType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001752 return P.Error(NameLoc, "instruction forward referenced with type '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001753 FI->second.first->getType()->getDescription() + "'");
1754 FI->second.first->replaceAllUsesWith(Inst);
Nuno Lopes531552a2009-09-02 14:22:03 +00001755 delete FI->second.first;
Chris Lattnerdf986172009-01-02 07:01:27 +00001756 ForwardRefVals.erase(FI);
1757 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001758
Chris Lattnerdf986172009-01-02 07:01:27 +00001759 // Set the name on the instruction.
1760 Inst->setName(NameStr);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001761
Chris Lattnerdf986172009-01-02 07:01:27 +00001762 if (Inst->getNameStr() != NameStr)
Daniel Dunbara279bc32009-09-20 02:20:51 +00001763 return P.Error(NameLoc, "multiple definition of local value named '" +
Chris Lattnerdf986172009-01-02 07:01:27 +00001764 NameStr + "'");
1765 return false;
1766}
1767
1768/// GetBB - Get a basic block with the specified name or ID, creating a
1769/// forward reference record if needed.
1770BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1771 LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001772 return cast_or_null<BasicBlock>(GetVal(Name,
1773 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001774}
1775
1776BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001777 return cast_or_null<BasicBlock>(GetVal(ID,
1778 Type::getLabelTy(F.getContext()), Loc));
Chris Lattnerdf986172009-01-02 07:01:27 +00001779}
1780
1781/// DefineBB - Define the specified basic block, which is either named or
1782/// unnamed. If there is an error, this returns null otherwise it returns
1783/// the block being defined.
1784BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1785 LocTy Loc) {
1786 BasicBlock *BB;
1787 if (Name.empty())
1788 BB = GetBB(NumberedVals.size(), Loc);
1789 else
1790 BB = GetBB(Name, Loc);
1791 if (BB == 0) return 0; // Already diagnosed error.
Daniel Dunbara279bc32009-09-20 02:20:51 +00001792
Chris Lattnerdf986172009-01-02 07:01:27 +00001793 // Move the block to the end of the function. Forward ref'd blocks are
1794 // inserted wherever they happen to be referenced.
1795 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001796
Chris Lattnerdf986172009-01-02 07:01:27 +00001797 // Remove the block from forward ref sets.
1798 if (Name.empty()) {
1799 ForwardRefValIDs.erase(NumberedVals.size());
1800 NumberedVals.push_back(BB);
1801 } else {
1802 // BB forward references are already in the function symbol table.
1803 ForwardRefVals.erase(Name);
1804 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001805
Chris Lattnerdf986172009-01-02 07:01:27 +00001806 return BB;
1807}
1808
1809//===----------------------------------------------------------------------===//
1810// Constants.
1811//===----------------------------------------------------------------------===//
1812
1813/// ParseValID - Parse an abstract value that doesn't necessarily have a
1814/// type implied. For example, if we parse "4" we don't know what integer type
1815/// it has. The value will later be combined with its type and checked for
1816/// sanity.
1817bool LLParser::ParseValID(ValID &ID) {
1818 ID.Loc = Lex.getLoc();
1819 switch (Lex.getKind()) {
1820 default: return TokError("expected value token");
1821 case lltok::GlobalID: // @42
1822 ID.UIntVal = Lex.getUIntVal();
1823 ID.Kind = ValID::t_GlobalID;
1824 break;
1825 case lltok::GlobalVar: // @foo
1826 ID.StrVal = Lex.getStrVal();
1827 ID.Kind = ValID::t_GlobalName;
1828 break;
1829 case lltok::LocalVarID: // %42
1830 ID.UIntVal = Lex.getUIntVal();
1831 ID.Kind = ValID::t_LocalID;
1832 break;
1833 case lltok::LocalVar: // %foo
1834 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1835 ID.StrVal = Lex.getStrVal();
1836 ID.Kind = ValID::t_LocalName;
1837 break;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001838 case lltok::Metadata: { // !{...} MDNode, !"foo" MDString
Devang Patel104cf9e2009-07-23 01:07:34 +00001839 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001840 Lex.Lex();
1841 if (Lex.getKind() == lltok::lbrace) {
Nick Lewyckycb337992009-05-10 20:57:05 +00001842 SmallVector<Value*, 16> Elts;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001843 if (ParseMDNodeVector(Elts) ||
1844 ParseToken(lltok::rbrace, "expected end of metadata node"))
1845 return true;
Nick Lewyckycb337992009-05-10 20:57:05 +00001846
Owen Anderson647e3012009-07-31 21:35:40 +00001847 ID.MetadataVal = MDNode::get(Context, Elts.data(), Elts.size());
Nick Lewycky21cc4462009-04-04 07:22:01 +00001848 return false;
1849 }
1850
Devang Patel923078c2009-07-01 19:21:12 +00001851 // Standalone metadata reference
1852 // !{ ..., !42, ... }
Devang Patel104cf9e2009-07-23 01:07:34 +00001853 if (!ParseMDNode(ID.MetadataVal))
Devang Patel923078c2009-07-01 19:21:12 +00001854 return false;
Devang Patel256be962009-07-20 19:00:08 +00001855
Nick Lewycky21cc4462009-04-04 07:22:01 +00001856 // MDString:
1857 // ::= '!' STRINGCONSTANT
Devang Patele54abc92009-07-22 17:43:22 +00001858 if (ParseMDString(ID.MetadataVal)) return true;
1859 ID.Kind = ValID::t_Metadata;
Nick Lewycky21cc4462009-04-04 07:22:01 +00001860 return false;
1861 }
Chris Lattnerdf986172009-01-02 07:01:27 +00001862 case lltok::APSInt:
Daniel Dunbara279bc32009-09-20 02:20:51 +00001863 ID.APSIntVal = Lex.getAPSIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00001864 ID.Kind = ValID::t_APSInt;
1865 break;
1866 case lltok::APFloat:
1867 ID.APFloatVal = Lex.getAPFloatVal();
1868 ID.Kind = ValID::t_APFloat;
1869 break;
1870 case lltok::kw_true:
Owen Anderson5defacc2009-07-31 17:39:07 +00001871 ID.ConstantVal = ConstantInt::getTrue(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001872 ID.Kind = ValID::t_Constant;
1873 break;
1874 case lltok::kw_false:
Owen Anderson5defacc2009-07-31 17:39:07 +00001875 ID.ConstantVal = ConstantInt::getFalse(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00001876 ID.Kind = ValID::t_Constant;
1877 break;
1878 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1879 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1880 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001881
Chris Lattnerdf986172009-01-02 07:01:27 +00001882 case lltok::lbrace: {
1883 // ValID ::= '{' ConstVector '}'
1884 Lex.Lex();
1885 SmallVector<Constant*, 16> Elts;
1886 if (ParseGlobalValueVector(Elts) ||
1887 ParseToken(lltok::rbrace, "expected end of struct constant"))
1888 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001889
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001890 ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1891 Elts.size(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001892 ID.Kind = ValID::t_Constant;
1893 return false;
1894 }
1895 case lltok::less: {
1896 // ValID ::= '<' ConstVector '>' --> Vector.
1897 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1898 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001899 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Daniel Dunbara279bc32009-09-20 02:20:51 +00001900
Chris Lattnerdf986172009-01-02 07:01:27 +00001901 SmallVector<Constant*, 16> Elts;
1902 LocTy FirstEltLoc = Lex.getLoc();
1903 if (ParseGlobalValueVector(Elts) ||
1904 (isPackedStruct &&
1905 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1906 ParseToken(lltok::greater, "expected end of constant"))
1907 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00001908
Chris Lattnerdf986172009-01-02 07:01:27 +00001909 if (isPackedStruct) {
Owen Andersonfba933c2009-07-01 23:57:11 +00001910 ID.ConstantVal =
Owen Andersond7f2a6c2009-08-05 23:16:16 +00001911 ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
Chris Lattnerdf986172009-01-02 07:01:27 +00001912 ID.Kind = ValID::t_Constant;
1913 return false;
1914 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001915
Chris Lattnerdf986172009-01-02 07:01:27 +00001916 if (Elts.empty())
1917 return Error(ID.Loc, "constant vector must not be empty");
1918
1919 if (!Elts[0]->getType()->isInteger() &&
1920 !Elts[0]->getType()->isFloatingPoint())
1921 return Error(FirstEltLoc,
1922 "vector elements must have integer or floating point type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00001923
Chris Lattnerdf986172009-01-02 07:01:27 +00001924 // Verify that all the vector elements have the same type.
1925 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1926 if (Elts[i]->getType() != Elts[0]->getType())
1927 return Error(FirstEltLoc,
1928 "vector element #" + utostr(i) +
1929 " is not of type '" + Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001930
Owen Andersonaf7ec972009-07-28 21:19:26 +00001931 ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00001932 ID.Kind = ValID::t_Constant;
1933 return false;
1934 }
1935 case lltok::lsquare: { // Array Constant
1936 Lex.Lex();
1937 SmallVector<Constant*, 16> Elts;
1938 LocTy FirstEltLoc = Lex.getLoc();
1939 if (ParseGlobalValueVector(Elts) ||
1940 ParseToken(lltok::rsquare, "expected end of array constant"))
1941 return true;
1942
1943 // Handle empty element.
1944 if (Elts.empty()) {
1945 // Use undef instead of an array because it's inconvenient to determine
1946 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00001947 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00001948 return false;
1949 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001950
Chris Lattnerdf986172009-01-02 07:01:27 +00001951 if (!Elts[0]->getType()->isFirstClassType())
Daniel Dunbara279bc32009-09-20 02:20:51 +00001952 return Error(FirstEltLoc, "invalid array element type: " +
Chris Lattnerdf986172009-01-02 07:01:27 +00001953 Elts[0]->getType()->getDescription());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001954
Owen Andersondebcb012009-07-29 22:17:13 +00001955 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
Daniel Dunbara279bc32009-09-20 02:20:51 +00001956
Chris Lattnerdf986172009-01-02 07:01:27 +00001957 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00001958 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001959 if (Elts[i]->getType() != Elts[0]->getType())
1960 return Error(FirstEltLoc,
1961 "array element #" + utostr(i) +
1962 " is not of type '" +Elts[0]->getType()->getDescription());
1963 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001964
Owen Anderson1fd70962009-07-28 18:32:17 +00001965 ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00001966 ID.Kind = ValID::t_Constant;
1967 return false;
1968 }
1969 case lltok::kw_c: // c "foo"
1970 Lex.Lex();
Owen Anderson1d0be152009-08-13 21:58:54 +00001971 ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
Chris Lattnerdf986172009-01-02 07:01:27 +00001972 if (ParseToken(lltok::StringConstant, "expected string")) return true;
1973 ID.Kind = ValID::t_Constant;
1974 return false;
1975
1976 case lltok::kw_asm: {
1977 // ValID ::= 'asm' SideEffect? STRINGCONSTANT ',' STRINGCONSTANT
1978 bool HasSideEffect;
1979 Lex.Lex();
1980 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001981 ParseStringConstant(ID.StrVal) ||
1982 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001983 ParseToken(lltok::StringConstant, "expected constraint string"))
1984 return true;
1985 ID.StrVal2 = Lex.getStrVal();
1986 ID.UIntVal = HasSideEffect;
1987 ID.Kind = ValID::t_InlineAsm;
1988 return false;
1989 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00001990
Chris Lattnerdf986172009-01-02 07:01:27 +00001991 case lltok::kw_trunc:
1992 case lltok::kw_zext:
1993 case lltok::kw_sext:
1994 case lltok::kw_fptrunc:
1995 case lltok::kw_fpext:
1996 case lltok::kw_bitcast:
1997 case lltok::kw_uitofp:
1998 case lltok::kw_sitofp:
1999 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002000 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002001 case lltok::kw_inttoptr:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002002 case lltok::kw_ptrtoint: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002003 unsigned Opc = Lex.getUIntVal();
Owen Anderson1d0be152009-08-13 21:58:54 +00002004 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002005 Constant *SrcVal;
2006 Lex.Lex();
2007 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2008 ParseGlobalTypeAndValue(SrcVal) ||
Dan Gohman24b108b2009-06-15 21:52:11 +00002009 ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002010 ParseType(DestTy) ||
2011 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2012 return true;
2013 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2014 return Error(ID.Loc, "invalid cast opcode for cast from '" +
2015 SrcVal->getType()->getDescription() + "' to '" +
2016 DestTy->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002017 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
Owen Andersonfba933c2009-07-01 23:57:11 +00002018 SrcVal, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00002019 ID.Kind = ValID::t_Constant;
2020 return false;
2021 }
2022 case lltok::kw_extractvalue: {
2023 Lex.Lex();
2024 Constant *Val;
2025 SmallVector<unsigned, 4> Indices;
2026 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2027 ParseGlobalTypeAndValue(Val) ||
2028 ParseIndexList(Indices) ||
2029 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2030 return true;
2031 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2032 return Error(ID.Loc, "extractvalue operand must be array or struct");
2033 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2034 Indices.end()))
2035 return Error(ID.Loc, "invalid indices for extractvalue");
Jay Foade3e51c02009-05-21 09:52:38 +00002036 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002037 ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002038 ID.Kind = ValID::t_Constant;
2039 return false;
2040 }
2041 case lltok::kw_insertvalue: {
2042 Lex.Lex();
2043 Constant *Val0, *Val1;
2044 SmallVector<unsigned, 4> Indices;
2045 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2046 ParseGlobalTypeAndValue(Val0) ||
2047 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2048 ParseGlobalTypeAndValue(Val1) ||
2049 ParseIndexList(Indices) ||
2050 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2051 return true;
2052 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2053 return Error(ID.Loc, "extractvalue operand must be array or struct");
2054 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2055 Indices.end()))
2056 return Error(ID.Loc, "invalid indices for insertvalue");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002057 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
Owen Andersonfba933c2009-07-01 23:57:11 +00002058 Indices.data(), Indices.size());
Chris Lattnerdf986172009-01-02 07:01:27 +00002059 ID.Kind = ValID::t_Constant;
2060 return false;
2061 }
2062 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002063 case lltok::kw_fcmp: {
Chris Lattnerdf986172009-01-02 07:01:27 +00002064 unsigned PredVal, Opc = Lex.getUIntVal();
2065 Constant *Val0, *Val1;
2066 Lex.Lex();
2067 if (ParseCmpPredicate(PredVal, Opc) ||
2068 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2069 ParseGlobalTypeAndValue(Val0) ||
2070 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2071 ParseGlobalTypeAndValue(Val1) ||
2072 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2073 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002074
Chris Lattnerdf986172009-01-02 07:01:27 +00002075 if (Val0->getType() != Val1->getType())
2076 return Error(ID.Loc, "compare operands must have the same type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002077
Chris Lattnerdf986172009-01-02 07:01:27 +00002078 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002079
Chris Lattnerdf986172009-01-02 07:01:27 +00002080 if (Opc == Instruction::FCmp) {
2081 if (!Val0->getType()->isFPOrFPVector())
2082 return Error(ID.Loc, "fcmp requires floating point operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002083 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002084 } else {
2085 assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00002086 if (!Val0->getType()->isIntOrIntVector() &&
2087 !isa<PointerType>(Val0->getType()))
2088 return Error(ID.Loc, "icmp requires pointer or integer operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002089 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002090 }
2091 ID.Kind = ValID::t_Constant;
2092 return false;
2093 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002094
Chris Lattnerdf986172009-01-02 07:01:27 +00002095 // Binary Operators.
2096 case lltok::kw_add:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002097 case lltok::kw_fadd:
Chris Lattnerdf986172009-01-02 07:01:27 +00002098 case lltok::kw_sub:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002099 case lltok::kw_fsub:
Chris Lattnerdf986172009-01-02 07:01:27 +00002100 case lltok::kw_mul:
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002101 case lltok::kw_fmul:
Chris Lattnerdf986172009-01-02 07:01:27 +00002102 case lltok::kw_udiv:
2103 case lltok::kw_sdiv:
2104 case lltok::kw_fdiv:
2105 case lltok::kw_urem:
2106 case lltok::kw_srem:
2107 case lltok::kw_frem: {
Dan Gohman59858cf2009-07-27 16:11:46 +00002108 bool NUW = false;
2109 bool NSW = false;
2110 bool Exact = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002111 unsigned Opc = Lex.getUIntVal();
2112 Constant *Val0, *Val1;
2113 Lex.Lex();
Dan Gohman59858cf2009-07-27 16:11:46 +00002114 LocTy ModifierLoc = Lex.getLoc();
2115 if (Opc == Instruction::Add ||
2116 Opc == Instruction::Sub ||
2117 Opc == Instruction::Mul) {
2118 if (EatIfPresent(lltok::kw_nuw))
2119 NUW = true;
2120 if (EatIfPresent(lltok::kw_nsw)) {
2121 NSW = true;
2122 if (EatIfPresent(lltok::kw_nuw))
2123 NUW = true;
2124 }
2125 } else if (Opc == Instruction::SDiv) {
2126 if (EatIfPresent(lltok::kw_exact))
2127 Exact = true;
2128 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002129 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2130 ParseGlobalTypeAndValue(Val0) ||
2131 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2132 ParseGlobalTypeAndValue(Val1) ||
2133 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2134 return true;
2135 if (Val0->getType() != Val1->getType())
2136 return Error(ID.Loc, "operands of constexpr must have same type");
Dan Gohman59858cf2009-07-27 16:11:46 +00002137 if (!Val0->getType()->isIntOrIntVector()) {
2138 if (NUW)
2139 return Error(ModifierLoc, "nuw only applies to integer operations");
2140 if (NSW)
2141 return Error(ModifierLoc, "nsw only applies to integer operations");
2142 }
2143 // API compatibility: Accept either integer or floating-point types with
2144 // add, sub, and mul.
Chris Lattnerdf986172009-01-02 07:01:27 +00002145 if (!Val0->getType()->isIntOrIntVector() &&
2146 !Val0->getType()->isFPOrFPVector())
2147 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002148 unsigned Flags = 0;
2149 if (NUW) Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2150 if (NSW) Flags |= OverflowingBinaryOperator::NoSignedWrap;
2151 if (Exact) Flags |= SDivOperator::IsExact;
2152 Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
Dan Gohman59858cf2009-07-27 16:11:46 +00002153 ID.ConstantVal = C;
Chris Lattnerdf986172009-01-02 07:01:27 +00002154 ID.Kind = ValID::t_Constant;
2155 return false;
2156 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002157
Chris Lattnerdf986172009-01-02 07:01:27 +00002158 // Logical Operations
2159 case lltok::kw_shl:
2160 case lltok::kw_lshr:
2161 case lltok::kw_ashr:
2162 case lltok::kw_and:
2163 case lltok::kw_or:
2164 case lltok::kw_xor: {
2165 unsigned Opc = Lex.getUIntVal();
2166 Constant *Val0, *Val1;
2167 Lex.Lex();
2168 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2169 ParseGlobalTypeAndValue(Val0) ||
2170 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2171 ParseGlobalTypeAndValue(Val1) ||
2172 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2173 return true;
2174 if (Val0->getType() != Val1->getType())
2175 return Error(ID.Loc, "operands of constexpr must have same type");
2176 if (!Val0->getType()->isIntOrIntVector())
2177 return Error(ID.Loc,
2178 "constexpr requires integer or integer vector operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002179 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002180 ID.Kind = ValID::t_Constant;
2181 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002182 }
2183
Chris Lattnerdf986172009-01-02 07:01:27 +00002184 case lltok::kw_getelementptr:
2185 case lltok::kw_shufflevector:
2186 case lltok::kw_insertelement:
2187 case lltok::kw_extractelement:
2188 case lltok::kw_select: {
2189 unsigned Opc = Lex.getUIntVal();
2190 SmallVector<Constant*, 16> Elts;
Dan Gohmandd8004d2009-07-27 21:53:46 +00002191 bool InBounds = false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002192 Lex.Lex();
Dan Gohmandd8004d2009-07-27 21:53:46 +00002193 if (Opc == Instruction::GetElementPtr)
Dan Gohmandcb40a32009-07-29 15:58:36 +00002194 InBounds = EatIfPresent(lltok::kw_inbounds);
Chris Lattnerdf986172009-01-02 07:01:27 +00002195 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2196 ParseGlobalValueVector(Elts) ||
2197 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2198 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002199
Chris Lattnerdf986172009-01-02 07:01:27 +00002200 if (Opc == Instruction::GetElementPtr) {
2201 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2202 return Error(ID.Loc, "getelementptr requires pointer operand");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002203
Chris Lattnerdf986172009-01-02 07:01:27 +00002204 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
Eli Friedman4e9bac32009-07-24 21:56:17 +00002205 (Value**)(Elts.data() + 1),
2206 Elts.size() - 1))
Chris Lattnerdf986172009-01-02 07:01:27 +00002207 return Error(ID.Loc, "invalid indices for getelementptr");
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002208 ID.ConstantVal = InBounds ?
2209 ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2210 Elts.data() + 1,
2211 Elts.size() - 1) :
2212 ConstantExpr::getGetElementPtr(Elts[0],
2213 Elts.data() + 1, Elts.size() - 1);
Chris Lattnerdf986172009-01-02 07:01:27 +00002214 } else if (Opc == Instruction::Select) {
2215 if (Elts.size() != 3)
2216 return Error(ID.Loc, "expected three operands to select");
2217 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2218 Elts[2]))
2219 return Error(ID.Loc, Reason);
Owen Andersonbaf3c402009-07-29 18:55:55 +00002220 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002221 } else if (Opc == Instruction::ShuffleVector) {
2222 if (Elts.size() != 3)
2223 return Error(ID.Loc, "expected three operands to shufflevector");
2224 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2225 return Error(ID.Loc, "invalid operands to shufflevector");
Owen Andersonfba933c2009-07-01 23:57:11 +00002226 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002227 ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002228 } else if (Opc == Instruction::ExtractElement) {
2229 if (Elts.size() != 2)
2230 return Error(ID.Loc, "expected two operands to extractelement");
2231 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2232 return Error(ID.Loc, "invalid extractelement operands");
Owen Andersonbaf3c402009-07-29 18:55:55 +00002233 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002234 } else {
2235 assert(Opc == Instruction::InsertElement && "Unknown opcode");
2236 if (Elts.size() != 3)
2237 return Error(ID.Loc, "expected three operands to insertelement");
2238 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2239 return Error(ID.Loc, "invalid insertelement operands");
Owen Andersonfba933c2009-07-01 23:57:11 +00002240 ID.ConstantVal =
Owen Andersonbaf3c402009-07-29 18:55:55 +00002241 ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
Chris Lattnerdf986172009-01-02 07:01:27 +00002242 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002243
Chris Lattnerdf986172009-01-02 07:01:27 +00002244 ID.Kind = ValID::t_Constant;
2245 return false;
2246 }
2247 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002248
Chris Lattnerdf986172009-01-02 07:01:27 +00002249 Lex.Lex();
2250 return false;
2251}
2252
2253/// ParseGlobalValue - Parse a global value with the specified type.
2254bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2255 V = 0;
2256 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002257 return ParseValID(ID) ||
2258 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00002259}
2260
2261/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2262/// constant.
2263bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2264 Constant *&V) {
2265 if (isa<FunctionType>(Ty))
2266 return Error(ID.Loc, "functions are not values, refer to them as pointers");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002267
Chris Lattnerdf986172009-01-02 07:01:27 +00002268 switch (ID.Kind) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002269 default: llvm_unreachable("Unknown ValID!");
Devang Patele54abc92009-07-22 17:43:22 +00002270 case ValID::t_Metadata:
2271 return Error(ID.Loc, "invalid use of metadata");
Chris Lattnerdf986172009-01-02 07:01:27 +00002272 case ValID::t_LocalID:
2273 case ValID::t_LocalName:
2274 return Error(ID.Loc, "invalid use of function-local name");
2275 case ValID::t_InlineAsm:
2276 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2277 case ValID::t_GlobalName:
2278 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2279 return V == 0;
2280 case ValID::t_GlobalID:
2281 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2282 return V == 0;
2283 case ValID::t_APSInt:
2284 if (!isa<IntegerType>(Ty))
2285 return Error(ID.Loc, "integer constant must have integer type");
2286 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
Owen Andersoneed707b2009-07-24 23:12:02 +00002287 V = ConstantInt::get(Context, ID.APSIntVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002288 return false;
2289 case ValID::t_APFloat:
2290 if (!Ty->isFloatingPoint() ||
2291 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2292 return Error(ID.Loc, "floating point constant invalid for type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002293
Chris Lattnerdf986172009-01-02 07:01:27 +00002294 // The lexer has no type info, so builds all float and double FP constants
2295 // as double. Fix this here. Long double does not need this.
2296 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002297 Ty == Type::getFloatTy(Context)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002298 bool Ignored;
2299 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2300 &Ignored);
2301 }
Owen Anderson6f83c9c2009-07-27 20:59:43 +00002302 V = ConstantFP::get(Context, ID.APFloatVal);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002303
Chris Lattner959873d2009-01-05 18:24:23 +00002304 if (V->getType() != Ty)
2305 return Error(ID.Loc, "floating point constant does not have type '" +
2306 Ty->getDescription() + "'");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002307
Chris Lattnerdf986172009-01-02 07:01:27 +00002308 return false;
2309 case ValID::t_Null:
2310 if (!isa<PointerType>(Ty))
2311 return Error(ID.Loc, "null must be a pointer type");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002312 V = ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerdf986172009-01-02 07:01:27 +00002313 return false;
2314 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002315 // FIXME: LabelTy should not be a first-class type.
Owen Anderson1d0be152009-08-13 21:58:54 +00002316 if ((!Ty->isFirstClassType() || Ty == Type::getLabelTy(Context)) &&
Chris Lattner0b616352009-01-05 18:12:21 +00002317 !isa<OpaqueType>(Ty))
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002318 return Error(ID.Loc, "invalid type for undef constant");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002319 V = UndefValue::get(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002320 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00002321 case ValID::t_EmptyArray:
2322 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2323 return Error(ID.Loc, "invalid empty array initializer");
Owen Anderson9e9a0d52009-07-30 23:03:37 +00002324 V = UndefValue::get(Ty);
Chris Lattner081b5052009-01-05 07:52:51 +00002325 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002326 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00002327 // FIXME: LabelTy should not be a first-class type.
Owen Anderson1d0be152009-08-13 21:58:54 +00002328 if (!Ty->isFirstClassType() || Ty == Type::getLabelTy(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00002329 return Error(ID.Loc, "invalid type for null constant");
Owen Andersona7235ea2009-07-31 20:28:14 +00002330 V = Constant::getNullValue(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00002331 return false;
2332 case ValID::t_Constant:
2333 if (ID.ConstantVal->getType() != Ty)
2334 return Error(ID.Loc, "constant expression type mismatch");
2335 V = ID.ConstantVal;
2336 return false;
2337 }
2338}
Daniel Dunbara279bc32009-09-20 02:20:51 +00002339
Chris Lattnerdf986172009-01-02 07:01:27 +00002340bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002341 PATypeHolder Type(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002342 return ParseType(Type) ||
2343 ParseGlobalValue(Type, V);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002344}
Chris Lattnerdf986172009-01-02 07:01:27 +00002345
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002346/// ParseGlobalValueVector
2347/// ::= /*empty*/
2348/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00002349bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2350 // Empty list.
2351 if (Lex.getKind() == lltok::rbrace ||
2352 Lex.getKind() == lltok::rsquare ||
2353 Lex.getKind() == lltok::greater ||
2354 Lex.getKind() == lltok::rparen)
2355 return false;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002356
Chris Lattnerdf986172009-01-02 07:01:27 +00002357 Constant *C;
2358 if (ParseGlobalTypeAndValue(C)) return true;
2359 Elts.push_back(C);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002360
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002361 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002362 if (ParseGlobalTypeAndValue(C)) return true;
2363 Elts.push_back(C);
2364 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002365
Chris Lattnerdf986172009-01-02 07:01:27 +00002366 return false;
2367}
2368
2369
2370//===----------------------------------------------------------------------===//
2371// Function Parsing.
2372//===----------------------------------------------------------------------===//
2373
2374bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2375 PerFunctionState &PFS) {
2376 if (ID.Kind == ValID::t_LocalID)
2377 V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc);
2378 else if (ID.Kind == ValID::t_LocalName)
2379 V = PFS.GetVal(ID.StrVal, Ty, ID.Loc);
Steve Naroffb0adcdb2009-01-05 18:48:47 +00002380 else if (ID.Kind == ValID::t_InlineAsm) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002381 const PointerType *PTy = dyn_cast<PointerType>(Ty);
2382 const FunctionType *FTy =
2383 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2384 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2385 return Error(ID.Loc, "invalid type for inline asm constraint string");
2386 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal);
2387 return false;
Devang Patele54abc92009-07-22 17:43:22 +00002388 } else if (ID.Kind == ValID::t_Metadata) {
2389 V = ID.MetadataVal;
Chris Lattnerdf986172009-01-02 07:01:27 +00002390 } else {
2391 Constant *C;
2392 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2393 V = C;
2394 return false;
2395 }
2396
2397 return V == 0;
2398}
2399
2400bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2401 V = 0;
2402 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002403 return ParseValID(ID) ||
2404 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002405}
2406
2407bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002408 PATypeHolder T(Type::getVoidTy(Context));
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002409 return ParseType(T) ||
2410 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002411}
2412
2413/// FunctionHeader
2414/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2415/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2416/// OptionalAlign OptGC
2417bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2418 // Parse the linkage.
2419 LocTy LinkageLoc = Lex.getLoc();
2420 unsigned Linkage;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002421
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00002422 unsigned Visibility, RetAttrs;
2423 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00002424 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00002425 LocTy RetTypeLoc = Lex.getLoc();
2426 if (ParseOptionalLinkage(Linkage) ||
2427 ParseOptionalVisibility(Visibility) ||
2428 ParseOptionalCallingConv(CC) ||
2429 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00002430 ParseType(RetType, RetTypeLoc, true /*void allowed*/))
Chris Lattnerdf986172009-01-02 07:01:27 +00002431 return true;
2432
2433 // Verify that the linkage is ok.
2434 switch ((GlobalValue::LinkageTypes)Linkage) {
2435 case GlobalValue::ExternalLinkage:
2436 break; // always ok.
2437 case GlobalValue::DLLImportLinkage:
Duncan Sands5f4ee1f2009-03-11 08:08:06 +00002438 case GlobalValue::ExternalWeakLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002439 if (isDefine)
2440 return Error(LinkageLoc, "invalid linkage for function definition");
2441 break;
Rafael Espindolabb46f522009-01-15 20:18:42 +00002442 case GlobalValue::PrivateLinkage:
Bill Wendling3d10a5a2009-07-20 01:03:30 +00002443 case GlobalValue::LinkerPrivateLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002444 case GlobalValue::InternalLinkage:
Nick Lewycky55f64db2009-04-13 07:02:02 +00002445 case GlobalValue::AvailableExternallyLinkage:
Duncan Sands667d4b82009-03-07 15:45:40 +00002446 case GlobalValue::LinkOnceAnyLinkage:
2447 case GlobalValue::LinkOnceODRLinkage:
2448 case GlobalValue::WeakAnyLinkage:
2449 case GlobalValue::WeakODRLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002450 case GlobalValue::DLLExportLinkage:
2451 if (!isDefine)
2452 return Error(LinkageLoc, "invalid linkage for function declaration");
2453 break;
2454 case GlobalValue::AppendingLinkage:
2455 case GlobalValue::GhostLinkage:
Duncan Sands4dc2b392009-03-11 20:14:15 +00002456 case GlobalValue::CommonLinkage:
Chris Lattnerdf986172009-01-02 07:01:27 +00002457 return Error(LinkageLoc, "invalid function linkage type");
2458 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002459
Chris Lattner99bb3152009-01-05 08:00:30 +00002460 if (!FunctionType::isValidReturnType(RetType) ||
2461 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002462 return Error(RetTypeLoc, "invalid function return type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002463
Chris Lattnerdf986172009-01-02 07:01:27 +00002464 LocTy NameLoc = Lex.getLoc();
Chris Lattnerf570e622009-02-18 21:48:13 +00002465
2466 std::string FunctionName;
2467 if (Lex.getKind() == lltok::GlobalVar) {
2468 FunctionName = Lex.getStrVal();
2469 } else if (Lex.getKind() == lltok::GlobalID) { // @42 is ok.
2470 unsigned NameID = Lex.getUIntVal();
2471
2472 if (NameID != NumberedVals.size())
2473 return TokError("function expected to be numbered '%" +
2474 utostr(NumberedVals.size()) + "'");
2475 } else {
2476 return TokError("expected function name");
2477 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002478
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002479 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002480
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002481 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002482 return TokError("expected '(' in function argument list");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002483
Chris Lattnerdf986172009-01-02 07:01:27 +00002484 std::vector<ArgInfo> ArgList;
2485 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002486 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002487 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002488 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002489 std::string GC;
2490
Chris Lattnerdfd19dd2009-01-05 18:34:07 +00002491 if (ParseArgumentList(ArgList, isVarArg, false) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002492 ParseOptionalAttrs(FuncAttrs, 2) ||
2493 (EatIfPresent(lltok::kw_section) &&
2494 ParseStringConstant(Section)) ||
2495 ParseOptionalAlignment(Alignment) ||
2496 (EatIfPresent(lltok::kw_gc) &&
2497 ParseStringConstant(GC)))
2498 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002499
2500 // If the alignment was parsed as an attribute, move to the alignment field.
2501 if (FuncAttrs & Attribute::Alignment) {
2502 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2503 FuncAttrs &= ~Attribute::Alignment;
2504 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002505
Chris Lattnerdf986172009-01-02 07:01:27 +00002506 // Okay, if we got here, the function is syntactically valid. Convert types
2507 // and do semantic checks.
2508 std::vector<const Type*> ParamTypeList;
2509 SmallVector<AttributeWithIndex, 8> Attrs;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002510 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
Chris Lattnerdf986172009-01-02 07:01:27 +00002511 // attributes.
2512 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2513 if (FuncAttrs & ObsoleteFuncAttrs) {
2514 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2515 FuncAttrs &= ~ObsoleteFuncAttrs;
2516 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002517
Chris Lattnerdf986172009-01-02 07:01:27 +00002518 if (RetAttrs != Attribute::None)
2519 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002520
Chris Lattnerdf986172009-01-02 07:01:27 +00002521 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2522 ParamTypeList.push_back(ArgList[i].Type);
2523 if (ArgList[i].Attrs != Attribute::None)
2524 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2525 }
2526
2527 if (FuncAttrs != Attribute::None)
2528 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2529
2530 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002531
Chris Lattnera9a9e072009-03-09 04:49:14 +00002532 if (PAL.paramHasAttr(1, Attribute::StructRet) &&
Owen Anderson1d0be152009-08-13 21:58:54 +00002533 RetType != Type::getVoidTy(Context))
Daniel Dunbara279bc32009-09-20 02:20:51 +00002534 return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2535
Owen Andersonfba933c2009-07-01 23:57:11 +00002536 const FunctionType *FT =
Owen Andersondebcb012009-07-29 22:17:13 +00002537 FunctionType::get(RetType, ParamTypeList, isVarArg);
2538 const PointerType *PFT = PointerType::getUnqual(FT);
Chris Lattnerdf986172009-01-02 07:01:27 +00002539
2540 Fn = 0;
2541 if (!FunctionName.empty()) {
2542 // If this was a definition of a forward reference, remove the definition
2543 // from the forward reference table and fill in the forward ref.
2544 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2545 ForwardRefVals.find(FunctionName);
2546 if (FRVI != ForwardRefVals.end()) {
2547 Fn = M->getFunction(FunctionName);
2548 ForwardRefVals.erase(FRVI);
2549 } else if ((Fn = M->getFunction(FunctionName))) {
2550 // If this function already exists in the symbol table, then it is
2551 // multiply defined. We accept a few cases for old backwards compat.
2552 // FIXME: Remove this stuff for LLVM 3.0.
2553 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2554 (!Fn->isDeclaration() && isDefine)) {
2555 // If the redefinition has different type or different attributes,
2556 // reject it. If both have bodies, reject it.
2557 return Error(NameLoc, "invalid redefinition of function '" +
2558 FunctionName + "'");
2559 } else if (Fn->isDeclaration()) {
2560 // Make sure to strip off any argument names so we can't get conflicts.
2561 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2562 AI != AE; ++AI)
2563 AI->setName("");
2564 }
2565 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002566
Dan Gohman41905542009-08-29 23:37:49 +00002567 } else {
Chris Lattnerdf986172009-01-02 07:01:27 +00002568 // If this is a definition of a forward referenced function, make sure the
2569 // types agree.
2570 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2571 = ForwardRefValIDs.find(NumberedVals.size());
2572 if (I != ForwardRefValIDs.end()) {
2573 Fn = cast<Function>(I->second.first);
2574 if (Fn->getType() != PFT)
2575 return Error(NameLoc, "type of definition and forward reference of '@" +
2576 utostr(NumberedVals.size()) +"' disagree");
2577 ForwardRefValIDs.erase(I);
2578 }
2579 }
2580
2581 if (Fn == 0)
2582 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2583 else // Move the forward-reference to the correct spot in the module.
2584 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2585
2586 if (FunctionName.empty())
2587 NumberedVals.push_back(Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002588
Chris Lattnerdf986172009-01-02 07:01:27 +00002589 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2590 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2591 Fn->setCallingConv(CC);
2592 Fn->setAttributes(PAL);
2593 Fn->setAlignment(Alignment);
2594 Fn->setSection(Section);
2595 if (!GC.empty()) Fn->setGC(GC.c_str());
Daniel Dunbara279bc32009-09-20 02:20:51 +00002596
Chris Lattnerdf986172009-01-02 07:01:27 +00002597 // Add all of the arguments we parsed to the function.
2598 Function::arg_iterator ArgIt = Fn->arg_begin();
2599 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
2600 // If the argument has a name, insert it into the argument symbol table.
2601 if (ArgList[i].Name.empty()) continue;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002602
Chris Lattnerdf986172009-01-02 07:01:27 +00002603 // Set the name, if it conflicted, it will be auto-renamed.
2604 ArgIt->setName(ArgList[i].Name);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002605
Chris Lattnerdf986172009-01-02 07:01:27 +00002606 if (ArgIt->getNameStr() != ArgList[i].Name)
2607 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2608 ArgList[i].Name + "'");
2609 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002610
Chris Lattnerdf986172009-01-02 07:01:27 +00002611 return false;
2612}
2613
2614
2615/// ParseFunctionBody
2616/// ::= '{' BasicBlock+ '}'
2617/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2618///
2619bool LLParser::ParseFunctionBody(Function &Fn) {
2620 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2621 return TokError("expected '{' in function body");
2622 Lex.Lex(); // eat the {.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002623
Chris Lattnerdf986172009-01-02 07:01:27 +00002624 PerFunctionState PFS(*this, Fn);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002625
Chris Lattnerdf986172009-01-02 07:01:27 +00002626 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2627 if (ParseBasicBlock(PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002628
Chris Lattnerdf986172009-01-02 07:01:27 +00002629 // Eat the }.
2630 Lex.Lex();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002631
Chris Lattnerdf986172009-01-02 07:01:27 +00002632 // Verify function is ok.
2633 return PFS.VerifyFunctionComplete();
2634}
2635
2636/// ParseBasicBlock
2637/// ::= LabelStr? Instruction*
2638bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2639 // If this basic block starts out with a name, remember it.
2640 std::string Name;
2641 LocTy NameLoc = Lex.getLoc();
2642 if (Lex.getKind() == lltok::LabelStr) {
2643 Name = Lex.getStrVal();
2644 Lex.Lex();
2645 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002646
Chris Lattnerdf986172009-01-02 07:01:27 +00002647 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2648 if (BB == 0) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002649
Chris Lattnerdf986172009-01-02 07:01:27 +00002650 std::string NameStr;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002651
Chris Lattnerdf986172009-01-02 07:01:27 +00002652 // Parse the instructions in this block until we get a terminator.
2653 Instruction *Inst;
2654 do {
2655 // This instruction may have three possibilities for a name: a) none
2656 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2657 LocTy NameLoc = Lex.getLoc();
2658 int NameID = -1;
2659 NameStr = "";
Daniel Dunbara279bc32009-09-20 02:20:51 +00002660
Chris Lattnerdf986172009-01-02 07:01:27 +00002661 if (Lex.getKind() == lltok::LocalVarID) {
2662 NameID = Lex.getUIntVal();
2663 Lex.Lex();
2664 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2665 return true;
2666 } else if (Lex.getKind() == lltok::LocalVar ||
2667 // FIXME: REMOVE IN LLVM 3.0
2668 Lex.getKind() == lltok::StringConstant) {
2669 NameStr = Lex.getStrVal();
2670 Lex.Lex();
2671 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2672 return true;
2673 }
Devang Patelf633a062009-09-17 23:04:48 +00002674
Chris Lattnerdf986172009-01-02 07:01:27 +00002675 if (ParseInstruction(Inst, BB, PFS)) return true;
Devang Patelf633a062009-09-17 23:04:48 +00002676 if (EatIfPresent(lltok::comma))
2677 ParseOptionalDbgInfo();
2678
2679 // Set metadata attached with this instruction.
2680 Metadata &TheMetadata = M->getContext().getMetadata();
Daniel Dunbara279bc32009-09-20 02:20:51 +00002681 for (SmallVector<std::pair<MDKindID, MDNode *>, 2>::iterator
2682 MDI = MDsOnInst.begin(), MDE = MDsOnInst.end(); MDI != MDE; ++MDI)
Devang Patelf633a062009-09-17 23:04:48 +00002683 TheMetadata.setMD(MDI->first, MDI->second, Inst);
2684 MDsOnInst.clear();
2685
Chris Lattnerdf986172009-01-02 07:01:27 +00002686 BB->getInstList().push_back(Inst);
2687
2688 // Set the name on the instruction.
2689 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2690 } while (!isa<TerminatorInst>(Inst));
Daniel Dunbara279bc32009-09-20 02:20:51 +00002691
Chris Lattnerdf986172009-01-02 07:01:27 +00002692 return false;
2693}
2694
2695//===----------------------------------------------------------------------===//
2696// Instruction Parsing.
2697//===----------------------------------------------------------------------===//
2698
2699/// ParseInstruction - Parse one of the many different instructions.
2700///
2701bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2702 PerFunctionState &PFS) {
2703 lltok::Kind Token = Lex.getKind();
2704 if (Token == lltok::Eof)
2705 return TokError("found end of file when expecting more instructions");
2706 LocTy Loc = Lex.getLoc();
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002707 unsigned KeywordVal = Lex.getUIntVal();
Chris Lattnerdf986172009-01-02 07:01:27 +00002708 Lex.Lex(); // Eat the keyword.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002709
Chris Lattnerdf986172009-01-02 07:01:27 +00002710 switch (Token) {
2711 default: return Error(Loc, "expected instruction opcode");
2712 // Terminator Instructions.
Owen Anderson1d0be152009-08-13 21:58:54 +00002713 case lltok::kw_unwind: Inst = new UnwindInst(Context); return false;
2714 case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00002715 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2716 case lltok::kw_br: return ParseBr(Inst, PFS);
2717 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
2718 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2719 // Binary Operators.
2720 case lltok::kw_add:
2721 case lltok::kw_sub:
Dan Gohman59858cf2009-07-27 16:11:46 +00002722 case lltok::kw_mul: {
2723 bool NUW = false;
2724 bool NSW = false;
2725 LocTy ModifierLoc = Lex.getLoc();
2726 if (EatIfPresent(lltok::kw_nuw))
2727 NUW = true;
2728 if (EatIfPresent(lltok::kw_nsw)) {
2729 NSW = true;
2730 if (EatIfPresent(lltok::kw_nuw))
2731 NUW = true;
2732 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002733 // API compatibility: Accept either integer or floating-point types.
Dan Gohman59858cf2009-07-27 16:11:46 +00002734 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2735 if (!Result) {
2736 if (!Inst->getType()->isIntOrIntVector()) {
2737 if (NUW)
2738 return Error(ModifierLoc, "nuw only applies to integer operations");
2739 if (NSW)
2740 return Error(ModifierLoc, "nsw only applies to integer operations");
2741 }
2742 if (NUW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002743 cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002744 if (NSW)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002745 cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002746 }
2747 return Result;
2748 }
Dan Gohmanae3a0be2009-06-04 22:49:04 +00002749 case lltok::kw_fadd:
2750 case lltok::kw_fsub:
2751 case lltok::kw_fmul: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2752
Dan Gohman59858cf2009-07-27 16:11:46 +00002753 case lltok::kw_sdiv: {
2754 bool Exact = false;
2755 if (EatIfPresent(lltok::kw_exact))
2756 Exact = true;
2757 bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2758 if (!Result)
2759 if (Exact)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00002760 cast<BinaryOperator>(Inst)->setIsExact(true);
Dan Gohman59858cf2009-07-27 16:11:46 +00002761 return Result;
2762 }
2763
Chris Lattnerdf986172009-01-02 07:01:27 +00002764 case lltok::kw_udiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002765 case lltok::kw_urem:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002766 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, KeywordVal, 1);
Chris Lattnere914b592009-01-05 08:24:46 +00002767 case lltok::kw_fdiv:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002768 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, KeywordVal, 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002769 case lltok::kw_shl:
2770 case lltok::kw_lshr:
2771 case lltok::kw_ashr:
2772 case lltok::kw_and:
2773 case lltok::kw_or:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002774 case lltok::kw_xor: return ParseLogical(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002775 case lltok::kw_icmp:
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002776 case lltok::kw_fcmp: return ParseCompare(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002777 // Casts.
2778 case lltok::kw_trunc:
2779 case lltok::kw_zext:
2780 case lltok::kw_sext:
2781 case lltok::kw_fptrunc:
2782 case lltok::kw_fpext:
2783 case lltok::kw_bitcast:
2784 case lltok::kw_uitofp:
2785 case lltok::kw_sitofp:
2786 case lltok::kw_fptoui:
Daniel Dunbara279bc32009-09-20 02:20:51 +00002787 case lltok::kw_fptosi:
Chris Lattnerdf986172009-01-02 07:01:27 +00002788 case lltok::kw_inttoptr:
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00002789 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, KeywordVal);
Chris Lattnerdf986172009-01-02 07:01:27 +00002790 // Other.
2791 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002792 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002793 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2794 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2795 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2796 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2797 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2798 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2799 // Memory.
Victor Hernandez96b930d2009-09-24 17:47:49 +00002800 case lltok::kw_alloca: return ParseAlloc(Inst, PFS);
2801 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, BB, false);
Chris Lattnerdf986172009-01-02 07:01:27 +00002802 case lltok::kw_free: return ParseFree(Inst, PFS);
2803 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2804 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2805 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002806 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002807 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002808 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002809 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002810 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002811 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002812 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2813 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2814 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2815 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2816 }
2817}
2818
2819/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2820bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00002821 if (Opc == Instruction::FCmp) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002822 switch (Lex.getKind()) {
2823 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2824 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2825 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2826 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2827 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2828 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2829 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2830 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2831 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2832 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2833 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2834 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2835 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2836 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2837 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2838 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2839 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2840 }
2841 } else {
2842 switch (Lex.getKind()) {
2843 default: TokError("expected icmp predicate (e.g. 'eq')");
2844 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2845 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2846 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2847 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2848 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2849 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2850 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2851 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2852 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
2853 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
2854 }
2855 }
2856 Lex.Lex();
2857 return false;
2858}
2859
2860//===----------------------------------------------------------------------===//
2861// Terminator Instructions.
2862//===----------------------------------------------------------------------===//
2863
2864/// ParseRet - Parse a return instruction.
Devang Patelf633a062009-09-17 23:04:48 +00002865/// ::= 'ret' void (',' 'dbg' !1)
2866/// ::= 'ret' TypeAndValue (',' 'dbg' !1)
Daniel Dunbara279bc32009-09-20 02:20:51 +00002867/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ (',' 'dbg' !1)
Devang Patelf633a062009-09-17 23:04:48 +00002868/// [[obsolete: LLVM 3.0]]
Chris Lattnerdf986172009-01-02 07:01:27 +00002869bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
2870 PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00002871 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnera9a9e072009-03-09 04:49:14 +00002872 if (ParseType(Ty, true /*void allowed*/)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002873
Owen Anderson1d0be152009-08-13 21:58:54 +00002874 if (Ty == Type::getVoidTy(Context)) {
Devang Patelf633a062009-09-17 23:04:48 +00002875 if (EatIfPresent(lltok::comma))
2876 if (ParseOptionalDbgInfo()) return true;
Owen Anderson1d0be152009-08-13 21:58:54 +00002877 Inst = ReturnInst::Create(Context);
Chris Lattnerdf986172009-01-02 07:01:27 +00002878 return false;
2879 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002880
Chris Lattnerdf986172009-01-02 07:01:27 +00002881 Value *RV;
2882 if (ParseValue(Ty, RV, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002883
Devang Patelf633a062009-09-17 23:04:48 +00002884 if (EatIfPresent(lltok::comma)) {
2885 // Parse optional 'dbg'
2886 if (Lex.getKind() == lltok::kw_dbg) {
2887 if (ParseOptionalDbgInfo()) return true;
2888 } else {
2889 // The normal case is one return value.
2890 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring use
2891 // of 'ret {i32,i32} {i32 1, i32 2}'
2892 SmallVector<Value*, 8> RVs;
2893 RVs.push_back(RV);
Daniel Dunbara279bc32009-09-20 02:20:51 +00002894
Devang Patelf633a062009-09-17 23:04:48 +00002895 do {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002896 // If optional 'dbg' is seen then this is the end of MRV.
2897 if (Lex.getKind() == lltok::kw_dbg)
2898 break;
2899 if (ParseTypeAndValue(RV, PFS)) return true;
2900 RVs.push_back(RV);
Devang Patelf633a062009-09-17 23:04:48 +00002901 } while (EatIfPresent(lltok::comma));
2902
2903 RV = UndefValue::get(PFS.getFunction().getReturnType());
2904 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
Daniel Dunbara279bc32009-09-20 02:20:51 +00002905 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
2906 BB->getInstList().push_back(I);
2907 RV = I;
Devang Patelf633a062009-09-17 23:04:48 +00002908 }
Chris Lattnerdf986172009-01-02 07:01:27 +00002909 }
2910 }
Devang Patelf633a062009-09-17 23:04:48 +00002911 if (EatIfPresent(lltok::comma))
2912 if (ParseOptionalDbgInfo()) return true;
2913
Owen Anderson1d0be152009-08-13 21:58:54 +00002914 Inst = ReturnInst::Create(Context, RV);
Chris Lattnerdf986172009-01-02 07:01:27 +00002915 return false;
2916}
2917
2918
2919/// ParseBr
2920/// ::= 'br' TypeAndValue
2921/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
2922bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
2923 LocTy Loc, Loc2;
2924 Value *Op0, *Op1, *Op2;
2925 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002926
Chris Lattnerdf986172009-01-02 07:01:27 +00002927 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
2928 Inst = BranchInst::Create(BB);
2929 return false;
2930 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002931
Owen Anderson1d0be152009-08-13 21:58:54 +00002932 if (Op0->getType() != Type::getInt1Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00002933 return Error(Loc, "branch condition must have 'i1' type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002934
Chris Lattnerdf986172009-01-02 07:01:27 +00002935 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
2936 ParseTypeAndValue(Op1, Loc, PFS) ||
2937 ParseToken(lltok::comma, "expected ',' after true destination") ||
2938 ParseTypeAndValue(Op2, Loc2, PFS))
2939 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002940
Chris Lattnerdf986172009-01-02 07:01:27 +00002941 if (!isa<BasicBlock>(Op1))
2942 return Error(Loc, "true destination of branch must be a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002943 if (!isa<BasicBlock>(Op2))
2944 return Error(Loc2, "true destination of branch must be a basic block");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002945
Chris Lattnerdf986172009-01-02 07:01:27 +00002946 Inst = BranchInst::Create(cast<BasicBlock>(Op1), cast<BasicBlock>(Op2), Op0);
2947 return false;
2948}
2949
2950/// ParseSwitch
2951/// Instruction
2952/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
2953/// JumpTable
2954/// ::= (TypeAndValue ',' TypeAndValue)*
2955bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
2956 LocTy CondLoc, BBLoc;
2957 Value *Cond, *DefaultBB;
2958 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
2959 ParseToken(lltok::comma, "expected ',' after switch condition") ||
2960 ParseTypeAndValue(DefaultBB, BBLoc, PFS) ||
2961 ParseToken(lltok::lsquare, "expected '[' with switch table"))
2962 return true;
2963
2964 if (!isa<IntegerType>(Cond->getType()))
2965 return Error(CondLoc, "switch condition must have integer type");
2966 if (!isa<BasicBlock>(DefaultBB))
2967 return Error(BBLoc, "default destination must be a basic block");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002968
Chris Lattnerdf986172009-01-02 07:01:27 +00002969 // Parse the jump table pairs.
2970 SmallPtrSet<Value*, 32> SeenCases;
2971 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
2972 while (Lex.getKind() != lltok::rsquare) {
2973 Value *Constant, *DestBB;
Daniel Dunbara279bc32009-09-20 02:20:51 +00002974
Chris Lattnerdf986172009-01-02 07:01:27 +00002975 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
2976 ParseToken(lltok::comma, "expected ',' after case value") ||
2977 ParseTypeAndValue(DestBB, BBLoc, PFS))
2978 return true;
2979
2980 if (!SeenCases.insert(Constant))
2981 return Error(CondLoc, "duplicate case value in switch");
2982 if (!isa<ConstantInt>(Constant))
2983 return Error(CondLoc, "case value is not a constant integer");
2984 if (!isa<BasicBlock>(DestBB))
2985 return Error(BBLoc, "case destination is not a basic block");
Daniel Dunbara279bc32009-09-20 02:20:51 +00002986
Chris Lattnerdf986172009-01-02 07:01:27 +00002987 Table.push_back(std::make_pair(cast<ConstantInt>(Constant),
2988 cast<BasicBlock>(DestBB)));
2989 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00002990
Chris Lattnerdf986172009-01-02 07:01:27 +00002991 Lex.Lex(); // Eat the ']'.
Daniel Dunbara279bc32009-09-20 02:20:51 +00002992
Chris Lattnerdf986172009-01-02 07:01:27 +00002993 SwitchInst *SI = SwitchInst::Create(Cond, cast<BasicBlock>(DefaultBB),
2994 Table.size());
2995 for (unsigned i = 0, e = Table.size(); i != e; ++i)
2996 SI->addCase(Table[i].first, Table[i].second);
2997 Inst = SI;
2998 return false;
2999}
3000
3001/// ParseInvoke
3002/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3003/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3004bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3005 LocTy CallLoc = Lex.getLoc();
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003006 unsigned RetAttrs, FnAttrs;
3007 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003008 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003009 LocTy RetTypeLoc;
3010 ValID CalleeID;
3011 SmallVector<ParamInfo, 16> ArgList;
3012
3013 Value *NormalBB, *UnwindBB;
3014 if (ParseOptionalCallingConv(CC) ||
3015 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003016 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003017 ParseValID(CalleeID) ||
3018 ParseParameterList(ArgList, PFS) ||
3019 ParseOptionalAttrs(FnAttrs, 2) ||
3020 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
3021 ParseTypeAndValue(NormalBB, PFS) ||
3022 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
3023 ParseTypeAndValue(UnwindBB, PFS))
3024 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003025
Chris Lattnerdf986172009-01-02 07:01:27 +00003026 if (!isa<BasicBlock>(NormalBB))
3027 return Error(CallLoc, "normal destination is not a basic block");
3028 if (!isa<BasicBlock>(UnwindBB))
3029 return Error(CallLoc, "unwind destination is not a basic block");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003030
Chris Lattnerdf986172009-01-02 07:01:27 +00003031 // If RetType is a non-function pointer type, then this is the short syntax
3032 // for the call, which means that RetType is just the return type. Infer the
3033 // rest of the function argument types from the arguments that are present.
3034 const PointerType *PFTy = 0;
3035 const FunctionType *Ty = 0;
3036 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3037 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3038 // Pull out the types of all of the arguments...
3039 std::vector<const Type*> ParamTypes;
3040 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3041 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003042
Chris Lattnerdf986172009-01-02 07:01:27 +00003043 if (!FunctionType::isValidReturnType(RetType))
3044 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003045
Owen Andersondebcb012009-07-29 22:17:13 +00003046 Ty = FunctionType::get(RetType, ParamTypes, false);
3047 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003048 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003049
Chris Lattnerdf986172009-01-02 07:01:27 +00003050 // Look up the callee.
3051 Value *Callee;
3052 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003053
Chris Lattnerdf986172009-01-02 07:01:27 +00003054 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3055 // function attributes.
3056 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3057 if (FnAttrs & ObsoleteFuncAttrs) {
3058 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3059 FnAttrs &= ~ObsoleteFuncAttrs;
3060 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003061
Chris Lattnerdf986172009-01-02 07:01:27 +00003062 // Set up the Attributes for the function.
3063 SmallVector<AttributeWithIndex, 8> Attrs;
3064 if (RetAttrs != Attribute::None)
3065 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003066
Chris Lattnerdf986172009-01-02 07:01:27 +00003067 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003068
Chris Lattnerdf986172009-01-02 07:01:27 +00003069 // Loop through FunctionType's arguments and ensure they are specified
3070 // correctly. Also, gather any parameter attributes.
3071 FunctionType::param_iterator I = Ty->param_begin();
3072 FunctionType::param_iterator E = Ty->param_end();
3073 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3074 const Type *ExpectedTy = 0;
3075 if (I != E) {
3076 ExpectedTy = *I++;
3077 } else if (!Ty->isVarArg()) {
3078 return Error(ArgList[i].Loc, "too many arguments specified");
3079 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003080
Chris Lattnerdf986172009-01-02 07:01:27 +00003081 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3082 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3083 ExpectedTy->getDescription() + "'");
3084 Args.push_back(ArgList[i].V);
3085 if (ArgList[i].Attrs != Attribute::None)
3086 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3087 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003088
Chris Lattnerdf986172009-01-02 07:01:27 +00003089 if (I != E)
3090 return Error(CallLoc, "not enough parameters specified for call");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003091
Chris Lattnerdf986172009-01-02 07:01:27 +00003092 if (FnAttrs != Attribute::None)
3093 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003094
Chris Lattnerdf986172009-01-02 07:01:27 +00003095 // Finish off the Attributes and check them
3096 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003097
Chris Lattnerdf986172009-01-02 07:01:27 +00003098 InvokeInst *II = InvokeInst::Create(Callee, cast<BasicBlock>(NormalBB),
3099 cast<BasicBlock>(UnwindBB),
3100 Args.begin(), Args.end());
3101 II->setCallingConv(CC);
3102 II->setAttributes(PAL);
3103 Inst = II;
3104 return false;
3105}
3106
3107
3108
3109//===----------------------------------------------------------------------===//
3110// Binary Operators.
3111//===----------------------------------------------------------------------===//
3112
3113/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00003114/// ::= ArithmeticOps TypeAndValue ',' Value
3115///
3116/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
3117/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00003118bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00003119 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003120 LocTy Loc; Value *LHS, *RHS;
3121 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3122 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3123 ParseValue(LHS->getType(), RHS, PFS))
3124 return true;
3125
Chris Lattnere914b592009-01-05 08:24:46 +00003126 bool Valid;
3127 switch (OperandType) {
Torok Edwinc23197a2009-07-14 16:55:14 +00003128 default: llvm_unreachable("Unknown operand type!");
Chris Lattnere914b592009-01-05 08:24:46 +00003129 case 0: // int or FP.
3130 Valid = LHS->getType()->isIntOrIntVector() ||
3131 LHS->getType()->isFPOrFPVector();
3132 break;
3133 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3134 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3135 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003136
Chris Lattnere914b592009-01-05 08:24:46 +00003137 if (!Valid)
3138 return Error(Loc, "invalid operand type for instruction");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003139
Chris Lattnerdf986172009-01-02 07:01:27 +00003140 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3141 return false;
3142}
3143
3144/// ParseLogical
3145/// ::= ArithmeticOps TypeAndValue ',' Value {
3146bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3147 unsigned Opc) {
3148 LocTy Loc; Value *LHS, *RHS;
3149 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3150 ParseToken(lltok::comma, "expected ',' in logical operation") ||
3151 ParseValue(LHS->getType(), RHS, PFS))
3152 return true;
3153
3154 if (!LHS->getType()->isIntOrIntVector())
3155 return Error(Loc,"instruction requires integer or integer vector operands");
3156
3157 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3158 return false;
3159}
3160
3161
3162/// ParseCompare
3163/// ::= 'icmp' IPredicates TypeAndValue ',' Value
3164/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
Chris Lattnerdf986172009-01-02 07:01:27 +00003165bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3166 unsigned Opc) {
3167 // Parse the integer/fp comparison predicate.
3168 LocTy Loc;
3169 unsigned Pred;
3170 Value *LHS, *RHS;
3171 if (ParseCmpPredicate(Pred, Opc) ||
3172 ParseTypeAndValue(LHS, Loc, PFS) ||
3173 ParseToken(lltok::comma, "expected ',' after compare value") ||
3174 ParseValue(LHS->getType(), RHS, PFS))
3175 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003176
Chris Lattnerdf986172009-01-02 07:01:27 +00003177 if (Opc == Instruction::FCmp) {
3178 if (!LHS->getType()->isFPOrFPVector())
3179 return Error(Loc, "fcmp requires floating point operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003180 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Nick Lewycky7f6aa2b2009-07-08 03:04:38 +00003181 } else {
3182 assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
Chris Lattnerdf986172009-01-02 07:01:27 +00003183 if (!LHS->getType()->isIntOrIntVector() &&
3184 !isa<PointerType>(LHS->getType()))
3185 return Error(Loc, "icmp requires integer operands");
Dan Gohman1c8a23c2009-08-25 23:17:54 +00003186 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
Chris Lattnerdf986172009-01-02 07:01:27 +00003187 }
3188 return false;
3189}
3190
3191//===----------------------------------------------------------------------===//
3192// Other Instructions.
3193//===----------------------------------------------------------------------===//
3194
3195
3196/// ParseCast
3197/// ::= CastOpc TypeAndValue 'to' Type
3198bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3199 unsigned Opc) {
3200 LocTy Loc; Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003201 PATypeHolder DestTy(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003202 if (ParseTypeAndValue(Op, Loc, PFS) ||
3203 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3204 ParseType(DestTy))
3205 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003206
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003207 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3208 CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00003209 return Error(Loc, "invalid cast opcode for cast from '" +
3210 Op->getType()->getDescription() + "' to '" +
3211 DestTy->getDescription() + "'");
Chris Lattnerf6f0bdf2009-03-01 00:53:13 +00003212 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003213 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3214 return false;
3215}
3216
3217/// ParseSelect
3218/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3219bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3220 LocTy Loc;
3221 Value *Op0, *Op1, *Op2;
3222 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3223 ParseToken(lltok::comma, "expected ',' after select condition") ||
3224 ParseTypeAndValue(Op1, PFS) ||
3225 ParseToken(lltok::comma, "expected ',' after select value") ||
3226 ParseTypeAndValue(Op2, PFS))
3227 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003228
Chris Lattnerdf986172009-01-02 07:01:27 +00003229 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3230 return Error(Loc, Reason);
Daniel Dunbara279bc32009-09-20 02:20:51 +00003231
Chris Lattnerdf986172009-01-02 07:01:27 +00003232 Inst = SelectInst::Create(Op0, Op1, Op2);
3233 return false;
3234}
3235
Chris Lattner0088a5c2009-01-05 08:18:44 +00003236/// ParseVA_Arg
3237/// ::= 'va_arg' TypeAndValue ',' Type
3238bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00003239 Value *Op;
Owen Anderson1d0be152009-08-13 21:58:54 +00003240 PATypeHolder EltTy(Type::getVoidTy(Context));
Chris Lattner0088a5c2009-01-05 08:18:44 +00003241 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003242 if (ParseTypeAndValue(Op, PFS) ||
3243 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00003244 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003245 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003246
Chris Lattner0088a5c2009-01-05 08:18:44 +00003247 if (!EltTy->isFirstClassType())
3248 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00003249
3250 Inst = new VAArgInst(Op, EltTy);
3251 return false;
3252}
3253
3254/// ParseExtractElement
3255/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
3256bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3257 LocTy Loc;
3258 Value *Op0, *Op1;
3259 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3260 ParseToken(lltok::comma, "expected ',' after extract value") ||
3261 ParseTypeAndValue(Op1, PFS))
3262 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003263
Chris Lattnerdf986172009-01-02 07:01:27 +00003264 if (!ExtractElementInst::isValidOperands(Op0, Op1))
3265 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003266
Eric Christophera3500da2009-07-25 02:28:41 +00003267 Inst = ExtractElementInst::Create(Op0, Op1);
Chris Lattnerdf986172009-01-02 07:01:27 +00003268 return false;
3269}
3270
3271/// ParseInsertElement
3272/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3273bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3274 LocTy Loc;
3275 Value *Op0, *Op1, *Op2;
3276 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3277 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3278 ParseTypeAndValue(Op1, PFS) ||
3279 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3280 ParseTypeAndValue(Op2, PFS))
3281 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003282
Chris Lattnerdf986172009-01-02 07:01:27 +00003283 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
Eric Christopher0aaf4e92009-07-23 01:01:32 +00003284 return Error(Loc, "invalid insertelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003285
Chris Lattnerdf986172009-01-02 07:01:27 +00003286 Inst = InsertElementInst::Create(Op0, Op1, Op2);
3287 return false;
3288}
3289
3290/// ParseShuffleVector
3291/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3292bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3293 LocTy Loc;
3294 Value *Op0, *Op1, *Op2;
3295 if (ParseTypeAndValue(Op0, Loc, PFS) ||
3296 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3297 ParseTypeAndValue(Op1, PFS) ||
3298 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3299 ParseTypeAndValue(Op2, PFS))
3300 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003301
Chris Lattnerdf986172009-01-02 07:01:27 +00003302 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3303 return Error(Loc, "invalid extractelement operands");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003304
Chris Lattnerdf986172009-01-02 07:01:27 +00003305 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3306 return false;
3307}
3308
3309/// ParsePHI
Victor Hernandez96b930d2009-09-24 17:47:49 +00003310/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Valueß ']')*
Chris Lattnerdf986172009-01-02 07:01:27 +00003311bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003312 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003313 Value *Op0, *Op1;
3314 LocTy TypeLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003315
Chris Lattnerdf986172009-01-02 07:01:27 +00003316 if (ParseType(Ty) ||
3317 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3318 ParseValue(Ty, Op0, PFS) ||
3319 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003320 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003321 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3322 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003323
Chris Lattnerdf986172009-01-02 07:01:27 +00003324 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3325 while (1) {
3326 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003327
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003328 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00003329 break;
3330
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003331 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003332 ParseValue(Ty, Op0, PFS) ||
3333 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
Owen Anderson1d0be152009-08-13 21:58:54 +00003334 ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003335 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3336 return true;
3337 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003338
Chris Lattnerdf986172009-01-02 07:01:27 +00003339 if (!Ty->isFirstClassType())
3340 return Error(TypeLoc, "phi node must have first class type");
3341
3342 PHINode *PN = PHINode::Create(Ty);
3343 PN->reserveOperandSpace(PHIVals.size());
3344 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3345 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3346 Inst = PN;
3347 return false;
3348}
3349
3350/// ParseCall
3351/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3352/// ParameterList OptionalAttrs
3353bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3354 bool isTail) {
Sandeep Patel65c3c8f2009-09-02 08:44:58 +00003355 unsigned RetAttrs, FnAttrs;
3356 CallingConv::ID CC;
Owen Anderson1d0be152009-08-13 21:58:54 +00003357 PATypeHolder RetType(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003358 LocTy RetTypeLoc;
3359 ValID CalleeID;
3360 SmallVector<ParamInfo, 16> ArgList;
3361 LocTy CallLoc = Lex.getLoc();
Daniel Dunbara279bc32009-09-20 02:20:51 +00003362
Chris Lattnerdf986172009-01-02 07:01:27 +00003363 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3364 ParseOptionalCallingConv(CC) ||
3365 ParseOptionalAttrs(RetAttrs, 1) ||
Chris Lattnera9a9e072009-03-09 04:49:14 +00003366 ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
Chris Lattnerdf986172009-01-02 07:01:27 +00003367 ParseValID(CalleeID) ||
3368 ParseParameterList(ArgList, PFS) ||
3369 ParseOptionalAttrs(FnAttrs, 2))
3370 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003371
Chris Lattnerdf986172009-01-02 07:01:27 +00003372 // If RetType is a non-function pointer type, then this is the short syntax
3373 // for the call, which means that RetType is just the return type. Infer the
3374 // rest of the function argument types from the arguments that are present.
3375 const PointerType *PFTy = 0;
3376 const FunctionType *Ty = 0;
3377 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3378 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3379 // Pull out the types of all of the arguments...
3380 std::vector<const Type*> ParamTypes;
3381 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3382 ParamTypes.push_back(ArgList[i].V->getType());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003383
Chris Lattnerdf986172009-01-02 07:01:27 +00003384 if (!FunctionType::isValidReturnType(RetType))
3385 return Error(RetTypeLoc, "Invalid result type for LLVM function");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003386
Owen Andersondebcb012009-07-29 22:17:13 +00003387 Ty = FunctionType::get(RetType, ParamTypes, false);
3388 PFTy = PointerType::getUnqual(Ty);
Chris Lattnerdf986172009-01-02 07:01:27 +00003389 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003390
Chris Lattnerdf986172009-01-02 07:01:27 +00003391 // Look up the callee.
3392 Value *Callee;
3393 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003394
Chris Lattnerdf986172009-01-02 07:01:27 +00003395 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3396 // function attributes.
3397 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3398 if (FnAttrs & ObsoleteFuncAttrs) {
3399 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3400 FnAttrs &= ~ObsoleteFuncAttrs;
3401 }
3402
3403 // Set up the Attributes for the function.
3404 SmallVector<AttributeWithIndex, 8> Attrs;
3405 if (RetAttrs != Attribute::None)
3406 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
Daniel Dunbara279bc32009-09-20 02:20:51 +00003407
Chris Lattnerdf986172009-01-02 07:01:27 +00003408 SmallVector<Value*, 8> Args;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003409
Chris Lattnerdf986172009-01-02 07:01:27 +00003410 // Loop through FunctionType's arguments and ensure they are specified
3411 // correctly. Also, gather any parameter attributes.
3412 FunctionType::param_iterator I = Ty->param_begin();
3413 FunctionType::param_iterator E = Ty->param_end();
3414 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3415 const Type *ExpectedTy = 0;
3416 if (I != E) {
3417 ExpectedTy = *I++;
3418 } else if (!Ty->isVarArg()) {
3419 return Error(ArgList[i].Loc, "too many arguments specified");
3420 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003421
Chris Lattnerdf986172009-01-02 07:01:27 +00003422 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3423 return Error(ArgList[i].Loc, "argument is not of expected type '" +
3424 ExpectedTy->getDescription() + "'");
3425 Args.push_back(ArgList[i].V);
3426 if (ArgList[i].Attrs != Attribute::None)
3427 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3428 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003429
Chris Lattnerdf986172009-01-02 07:01:27 +00003430 if (I != E)
3431 return Error(CallLoc, "not enough parameters specified for call");
3432
3433 if (FnAttrs != Attribute::None)
3434 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3435
3436 // Finish off the Attributes and check them
3437 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
Daniel Dunbara279bc32009-09-20 02:20:51 +00003438
Chris Lattnerdf986172009-01-02 07:01:27 +00003439 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3440 CI->setTailCall(isTail);
3441 CI->setCallingConv(CC);
3442 CI->setAttributes(PAL);
3443 Inst = CI;
3444 return false;
3445}
3446
3447//===----------------------------------------------------------------------===//
3448// Memory Instructions.
3449//===----------------------------------------------------------------------===//
3450
3451/// ParseAlloc
Devang Patelf633a062009-09-17 23:04:48 +00003452/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3453/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003454bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
Victor Hernandez96b930d2009-09-24 17:47:49 +00003455 BasicBlock* BB, bool isAlloca) {
Owen Anderson1d0be152009-08-13 21:58:54 +00003456 PATypeHolder Ty(Type::getVoidTy(Context));
Chris Lattnerdf986172009-01-02 07:01:27 +00003457 Value *Size = 0;
Chris Lattnereeb4a842009-07-02 23:08:13 +00003458 LocTy SizeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00003459 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003460 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003461
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003462 if (EatIfPresent(lltok::comma)) {
Devang Patelf633a062009-09-17 23:04:48 +00003463 if (Lex.getKind() == lltok::kw_align || Lex.getKind() == lltok::kw_dbg) {
3464 if (ParseOptionalInfo(Alignment)) return true;
3465 } else {
3466 if (ParseTypeAndValue(Size, SizeLoc, PFS)) return true;
3467 if (EatIfPresent(lltok::comma))
Daniel Dunbara279bc32009-09-20 02:20:51 +00003468 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003469 }
3470 }
3471
Owen Anderson1d0be152009-08-13 21:58:54 +00003472 if (Size && Size->getType() != Type::getInt32Ty(Context))
Chris Lattnerdf986172009-01-02 07:01:27 +00003473 return Error(SizeLoc, "element count must be i32");
3474
Victor Hernandez96b930d2009-09-24 17:47:49 +00003475 if (isAlloca)
Owen Anderson50dead02009-07-15 23:53:25 +00003476 Inst = new AllocaInst(Ty, Size, Alignment);
Victor Hernandez96b930d2009-09-24 17:47:49 +00003477 else {
3478 // Autoupgrade old malloc instruction to malloc call.
3479 const Type* IntPtrTy = Type::getInt32Ty(Context);
3480 const Type* Int8PtrTy = PointerType::getUnqual(Type::getInt8Ty(Context));
3481 if (!MallocF)
3482 // Prototype malloc as "void *autoupgrade_malloc(int32)".
3483 MallocF = cast<Function>(M->getOrInsertFunction("autoupgrade_malloc",
3484 Int8PtrTy, IntPtrTy, NULL));
3485 // "autoupgrade_malloc" updated to "malloc" in ValidateEndOfModule().
3486
3487 Inst = cast<Instruction>(CallInst::CreateMalloc(BB, IntPtrTy, Ty,
3488 Size, MallocF));
3489 }
Chris Lattnerdf986172009-01-02 07:01:27 +00003490 return false;
3491}
3492
3493/// ParseFree
3494/// ::= 'free' TypeAndValue
3495bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS) {
3496 Value *Val; LocTy Loc;
3497 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3498 if (!isa<PointerType>(Val->getType()))
3499 return Error(Loc, "operand to free must be a pointer");
3500 Inst = new FreeInst(Val);
3501 return false;
3502}
3503
3504/// ParseLoad
Devang Patelf633a062009-09-17 23:04:48 +00003505/// ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003506bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3507 bool isVolatile) {
3508 Value *Val; LocTy Loc;
Devang Patelf633a062009-09-17 23:04:48 +00003509 unsigned Alignment = 0;
3510 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003511
Devang Patelf633a062009-09-17 23:04:48 +00003512 if (EatIfPresent(lltok::comma))
3513 if (ParseOptionalInfo(Alignment)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003514
3515 if (!isa<PointerType>(Val->getType()) ||
3516 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3517 return Error(Loc, "load operand must be a pointer to a first class type");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003518
Chris Lattnerdf986172009-01-02 07:01:27 +00003519 Inst = new LoadInst(Val, "", isVolatile, Alignment);
3520 return false;
3521}
3522
3523/// ParseStore
Dan Gohmana119de82009-06-14 23:30:43 +00003524/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
Chris Lattnerdf986172009-01-02 07:01:27 +00003525bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3526 bool isVolatile) {
3527 Value *Val, *Ptr; LocTy Loc, PtrLoc;
Devang Patelf633a062009-09-17 23:04:48 +00003528 unsigned Alignment = 0;
Chris Lattnerdf986172009-01-02 07:01:27 +00003529 if (ParseTypeAndValue(Val, Loc, PFS) ||
3530 ParseToken(lltok::comma, "expected ',' after store operand") ||
Devang Patelf633a062009-09-17 23:04:48 +00003531 ParseTypeAndValue(Ptr, PtrLoc, PFS))
Chris Lattnerdf986172009-01-02 07:01:27 +00003532 return true;
Devang Patelf633a062009-09-17 23:04:48 +00003533
3534 if (EatIfPresent(lltok::comma))
3535 if (ParseOptionalInfo(Alignment)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003536
Chris Lattnerdf986172009-01-02 07:01:27 +00003537 if (!isa<PointerType>(Ptr->getType()))
3538 return Error(PtrLoc, "store operand must be a pointer");
3539 if (!Val->getType()->isFirstClassType())
3540 return Error(Loc, "store operand must be a first class value");
3541 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3542 return Error(Loc, "stored value and pointer type do not match");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003543
Chris Lattnerdf986172009-01-02 07:01:27 +00003544 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3545 return false;
3546}
3547
3548/// ParseGetResult
Dan Gohmana119de82009-06-14 23:30:43 +00003549/// ::= 'getresult' TypeAndValue ',' i32
Chris Lattnerdf986172009-01-02 07:01:27 +00003550/// FIXME: Remove support for getresult in LLVM 3.0
3551bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3552 Value *Val; LocTy ValLoc, EltLoc;
3553 unsigned Element;
3554 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3555 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003556 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003557 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003558
Chris Lattnerdf986172009-01-02 07:01:27 +00003559 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3560 return Error(ValLoc, "getresult inst requires an aggregate operand");
3561 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3562 return Error(EltLoc, "invalid getresult index for value");
3563 Inst = ExtractValueInst::Create(Val, Element);
3564 return false;
3565}
3566
3567/// ParseGetElementPtr
Dan Gohmandd8004d2009-07-27 21:53:46 +00003568/// ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00003569bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3570 Value *Ptr, *Val; LocTy Loc, EltLoc;
Dan Gohmandd8004d2009-07-27 21:53:46 +00003571
Dan Gohmandcb40a32009-07-29 15:58:36 +00003572 bool InBounds = EatIfPresent(lltok::kw_inbounds);
Dan Gohmandd8004d2009-07-27 21:53:46 +00003573
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003574 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003575
Chris Lattnerdf986172009-01-02 07:01:27 +00003576 if (!isa<PointerType>(Ptr->getType()))
3577 return Error(Loc, "base of getelementptr must be a pointer");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003578
Chris Lattnerdf986172009-01-02 07:01:27 +00003579 SmallVector<Value*, 16> Indices;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003580 while (EatIfPresent(lltok::comma)) {
3581 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003582 if (!isa<IntegerType>(Val->getType()))
3583 return Error(EltLoc, "getelementptr index must be an integer");
3584 Indices.push_back(Val);
3585 }
Daniel Dunbara279bc32009-09-20 02:20:51 +00003586
Chris Lattnerdf986172009-01-02 07:01:27 +00003587 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3588 Indices.begin(), Indices.end()))
3589 return Error(Loc, "invalid getelementptr indices");
3590 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
Dan Gohmandd8004d2009-07-27 21:53:46 +00003591 if (InBounds)
Dan Gohmanf8dbee72009-09-07 23:54:19 +00003592 cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
Chris Lattnerdf986172009-01-02 07:01:27 +00003593 return false;
3594}
3595
3596/// ParseExtractValue
3597/// ::= 'extractvalue' TypeAndValue (',' uint32)+
3598bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3599 Value *Val; LocTy Loc;
3600 SmallVector<unsigned, 4> Indices;
3601 if (ParseTypeAndValue(Val, Loc, PFS) ||
3602 ParseIndexList(Indices))
3603 return true;
3604
3605 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3606 return Error(Loc, "extractvalue operand must be array or struct");
3607
3608 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3609 Indices.end()))
3610 return Error(Loc, "invalid indices for extractvalue");
3611 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3612 return false;
3613}
3614
3615/// ParseInsertValue
3616/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3617bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3618 Value *Val0, *Val1; LocTy Loc0, Loc1;
3619 SmallVector<unsigned, 4> Indices;
3620 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3621 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3622 ParseTypeAndValue(Val1, Loc1, PFS) ||
3623 ParseIndexList(Indices))
3624 return true;
Daniel Dunbara279bc32009-09-20 02:20:51 +00003625
Chris Lattnerdf986172009-01-02 07:01:27 +00003626 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3627 return Error(Loc0, "extractvalue operand must be array or struct");
Daniel Dunbara279bc32009-09-20 02:20:51 +00003628
Chris Lattnerdf986172009-01-02 07:01:27 +00003629 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3630 Indices.end()))
3631 return Error(Loc0, "invalid indices for insertvalue");
3632 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3633 return false;
3634}
Nick Lewycky21cc4462009-04-04 07:22:01 +00003635
3636//===----------------------------------------------------------------------===//
3637// Embedded metadata.
3638//===----------------------------------------------------------------------===//
3639
3640/// ParseMDNodeVector
Nick Lewyckycb337992009-05-10 20:57:05 +00003641/// ::= Element (',' Element)*
3642/// Element
3643/// ::= 'null' | TypeAndValue
3644bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
Nick Lewycky21cc4462009-04-04 07:22:01 +00003645 assert(Lex.getKind() == lltok::lbrace);
3646 Lex.Lex();
3647 do {
Devang Pateldb5e9002009-07-23 01:36:16 +00003648 Value *V = 0;
Nick Lewyckycb337992009-05-10 20:57:05 +00003649 if (Lex.getKind() == lltok::kw_null) {
3650 Lex.Lex();
3651 V = 0;
3652 } else {
Owen Anderson1d0be152009-08-13 21:58:54 +00003653 PATypeHolder Ty(Type::getVoidTy(Context));
Devang Patele54abc92009-07-22 17:43:22 +00003654 if (ParseType(Ty)) return true;
3655 if (Lex.getKind() == lltok::Metadata) {
3656 Lex.Lex();
Devang Patel104cf9e2009-07-23 01:07:34 +00003657 MetadataBase *Node = 0;
Devang Patele54abc92009-07-22 17:43:22 +00003658 if (!ParseMDNode(Node))
3659 V = Node;
3660 else {
3661 MetadataBase *MDS = 0;
3662 if (ParseMDString(MDS)) return true;
3663 V = MDS;
3664 }
3665 } else {
3666 Constant *C;
3667 if (ParseGlobalValue(Ty, C)) return true;
3668 V = C;
3669 }
Nick Lewyckycb337992009-05-10 20:57:05 +00003670 }
3671 Elts.push_back(V);
Nick Lewycky21cc4462009-04-04 07:22:01 +00003672 } while (EatIfPresent(lltok::comma));
3673
3674 return false;
3675}