blob: 8a686ce2f83a1eb698893348faaca5d3e755d24f [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"
21#include "llvm/Module.h"
22#include "llvm/ValueSymbolTable.h"
23#include "llvm/ADT/SmallPtrSet.h"
24#include "llvm/ADT/StringExtras.h"
25#include "llvm/Support/raw_ostream.h"
26using namespace llvm;
27
Chris Lattnerdf986172009-01-02 07:01:27 +000028namespace llvm {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000029 /// ValID - Represents a reference of a definition of some sort with no type.
30 /// There are several cases where we have to parse the value but where the
31 /// type can depend on later context. This may either be a numeric reference
32 /// or a symbolic (%var) reference. This is just a discriminated union.
Chris Lattnerdf986172009-01-02 07:01:27 +000033 struct ValID {
34 enum {
35 t_LocalID, t_GlobalID, // ID in UIntVal.
36 t_LocalName, t_GlobalName, // Name in StrVal.
37 t_APSInt, t_APFloat, // Value in APSIntVal/APFloatVal.
38 t_Null, t_Undef, t_Zero, // No value.
Chris Lattner081b5052009-01-05 07:52:51 +000039 t_EmptyArray, // No value: []
Chris Lattnerdf986172009-01-02 07:01:27 +000040 t_Constant, // Value in ConstantVal.
41 t_InlineAsm // Value in StrVal/StrVal2/UIntVal.
42 } Kind;
43
44 LLParser::LocTy Loc;
45 unsigned UIntVal;
46 std::string StrVal, StrVal2;
47 APSInt APSIntVal;
48 APFloat APFloatVal;
49 Constant *ConstantVal;
50 ValID() : APFloatVal(0.0) {}
51 };
52}
53
Chris Lattner3ed88ef2009-01-02 08:05:26 +000054/// Run: module ::= toplevelentity*
Chris Lattnerad7d1e22009-01-04 20:44:11 +000055bool LLParser::Run() {
Chris Lattner3ed88ef2009-01-02 08:05:26 +000056 // Prime the lexer.
57 Lex.Lex();
58
Chris Lattnerad7d1e22009-01-04 20:44:11 +000059 return ParseTopLevelEntities() ||
60 ValidateEndOfModule();
Chris Lattnerdf986172009-01-02 07:01:27 +000061}
62
63/// ValidateEndOfModule - Do final validity and sanity checks at the end of the
64/// module.
65bool LLParser::ValidateEndOfModule() {
66 if (!ForwardRefTypes.empty())
67 return Error(ForwardRefTypes.begin()->second.second,
68 "use of undefined type named '" +
69 ForwardRefTypes.begin()->first + "'");
70 if (!ForwardRefTypeIDs.empty())
71 return Error(ForwardRefTypeIDs.begin()->second.second,
72 "use of undefined type '%" +
73 utostr(ForwardRefTypeIDs.begin()->first) + "'");
74
75 if (!ForwardRefVals.empty())
76 return Error(ForwardRefVals.begin()->second.second,
77 "use of undefined value '@" + ForwardRefVals.begin()->first +
78 "'");
79
80 if (!ForwardRefValIDs.empty())
81 return Error(ForwardRefValIDs.begin()->second.second,
82 "use of undefined value '@" +
83 utostr(ForwardRefValIDs.begin()->first) + "'");
84
85 // Look for intrinsic functions and CallInst that need to be upgraded
86 for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
87 UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
88
89 return false;
90}
91
92//===----------------------------------------------------------------------===//
93// Top-Level Entities
94//===----------------------------------------------------------------------===//
95
96bool LLParser::ParseTopLevelEntities() {
Chris Lattnerdf986172009-01-02 07:01:27 +000097 while (1) {
98 switch (Lex.getKind()) {
99 default: return TokError("expected top-level entity");
100 case lltok::Eof: return false;
101 //case lltok::kw_define:
102 case lltok::kw_declare: if (ParseDeclare()) return true; break;
103 case lltok::kw_define: if (ParseDefine()) return true; break;
104 case lltok::kw_module: if (ParseModuleAsm()) return true; break;
105 case lltok::kw_target: if (ParseTargetDefinition()) return true; break;
106 case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
107 case lltok::kw_type: if (ParseUnnamedType()) return true; break;
108 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
109 case lltok::LocalVar: if (ParseNamedType()) return true; break;
110 case lltok::GlobalVar: if (ParseNamedGlobal()) return true; break;
111
112 // The Global variable production with no name can have many different
113 // optional leading prefixes, the production is:
114 // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
115 // OptionalAddrSpace ('constant'|'global') ...
116 case lltok::kw_internal: // OptionalLinkage
117 case lltok::kw_weak: // OptionalLinkage
118 case lltok::kw_linkonce: // OptionalLinkage
119 case lltok::kw_appending: // OptionalLinkage
120 case lltok::kw_dllexport: // OptionalLinkage
121 case lltok::kw_common: // OptionalLinkage
122 case lltok::kw_dllimport: // OptionalLinkage
123 case lltok::kw_extern_weak: // OptionalLinkage
124 case lltok::kw_external: { // OptionalLinkage
125 unsigned Linkage, Visibility;
126 if (ParseOptionalLinkage(Linkage) ||
127 ParseOptionalVisibility(Visibility) ||
128 ParseGlobal("", 0, Linkage, true, Visibility))
129 return true;
130 break;
131 }
132 case lltok::kw_default: // OptionalVisibility
133 case lltok::kw_hidden: // OptionalVisibility
134 case lltok::kw_protected: { // OptionalVisibility
135 unsigned Visibility;
136 if (ParseOptionalVisibility(Visibility) ||
137 ParseGlobal("", 0, 0, false, Visibility))
138 return true;
139 break;
140 }
141
142 case lltok::kw_thread_local: // OptionalThreadLocal
143 case lltok::kw_addrspace: // OptionalAddrSpace
144 case lltok::kw_constant: // GlobalType
145 case lltok::kw_global: // GlobalType
146 if (ParseGlobal("", 0, 0, false, 0)) return true;
147 break;
148 }
149 }
150}
151
152
153/// toplevelentity
154/// ::= 'module' 'asm' STRINGCONSTANT
155bool LLParser::ParseModuleAsm() {
156 assert(Lex.getKind() == lltok::kw_module);
157 Lex.Lex();
158
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000159 std::string AsmStr;
160 if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
161 ParseStringConstant(AsmStr)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000162
163 const std::string &AsmSoFar = M->getModuleInlineAsm();
164 if (AsmSoFar.empty())
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000165 M->setModuleInlineAsm(AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000166 else
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000167 M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
Chris Lattnerdf986172009-01-02 07:01:27 +0000168 return false;
169}
170
171/// toplevelentity
172/// ::= 'target' 'triple' '=' STRINGCONSTANT
173/// ::= 'target' 'datalayout' '=' STRINGCONSTANT
174bool LLParser::ParseTargetDefinition() {
175 assert(Lex.getKind() == lltok::kw_target);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000176 std::string Str;
Chris Lattnerdf986172009-01-02 07:01:27 +0000177 switch (Lex.Lex()) {
178 default: return TokError("unknown target property");
179 case lltok::kw_triple:
180 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000181 if (ParseToken(lltok::equal, "expected '=' after target triple") ||
182 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000183 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000184 M->setTargetTriple(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000185 return false;
186 case lltok::kw_datalayout:
187 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000188 if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
189 ParseStringConstant(Str))
Chris Lattnerdf986172009-01-02 07:01:27 +0000190 return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000191 M->setDataLayout(Str);
Chris Lattnerdf986172009-01-02 07:01:27 +0000192 return false;
193 }
194}
195
196/// toplevelentity
197/// ::= 'deplibs' '=' '[' ']'
198/// ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
199bool LLParser::ParseDepLibs() {
200 assert(Lex.getKind() == lltok::kw_deplibs);
Chris Lattnerdf986172009-01-02 07:01:27 +0000201 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000202 if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
203 ParseToken(lltok::lsquare, "expected '=' after deplibs"))
204 return true;
205
206 if (EatIfPresent(lltok::rsquare))
207 return false;
208
209 std::string Str;
210 if (ParseStringConstant(Str)) return true;
211 M->addLibrary(Str);
212
213 while (EatIfPresent(lltok::comma)) {
214 if (ParseStringConstant(Str)) return true;
215 M->addLibrary(Str);
216 }
217
218 return ParseToken(lltok::rsquare, "expected ']' at end of list");
Chris Lattnerdf986172009-01-02 07:01:27 +0000219}
220
221/// toplevelentity
222/// ::= 'type' type
223bool LLParser::ParseUnnamedType() {
224 assert(Lex.getKind() == lltok::kw_type);
225 LocTy TypeLoc = Lex.getLoc();
226 Lex.Lex(); // eat kw_type
227
228 PATypeHolder Ty(Type::VoidTy);
229 if (ParseType(Ty)) return true;
230
231 unsigned TypeID = NumberedTypes.size();
232
233 // We don't allow assigning names to void type
234 if (Ty == Type::VoidTy)
235 return Error(TypeLoc, "can't assign name to the void type");
236
237 // See if this type was previously referenced.
238 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
239 FI = ForwardRefTypeIDs.find(TypeID);
240 if (FI != ForwardRefTypeIDs.end()) {
241 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
242 Ty = FI->second.first.get();
243 ForwardRefTypeIDs.erase(FI);
244 }
245
246 NumberedTypes.push_back(Ty);
247
248 return false;
249}
250
251/// toplevelentity
252/// ::= LocalVar '=' 'type' type
253bool LLParser::ParseNamedType() {
254 std::string Name = Lex.getStrVal();
255 LocTy NameLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000256 Lex.Lex(); // eat LocalVar.
Chris Lattnerdf986172009-01-02 07:01:27 +0000257
258 PATypeHolder Ty(Type::VoidTy);
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000259
260 if (ParseToken(lltok::equal, "expected '=' after name") ||
261 ParseToken(lltok::kw_type, "expected 'type' after name") ||
262 ParseType(Ty))
263 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000264
265 // We don't allow assigning names to void type
266 if (Ty == Type::VoidTy)
267 return Error(NameLoc, "can't assign name '" + Name + "' to the void type");
268
269 // Set the type name, checking for conflicts as we do so.
270 bool AlreadyExists = M->addTypeName(Name, Ty);
271 if (!AlreadyExists) return false;
272
273 // See if this type is a forward reference. We need to eagerly resolve
274 // types to allow recursive type redefinitions below.
275 std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
276 FI = ForwardRefTypes.find(Name);
277 if (FI != ForwardRefTypes.end()) {
278 cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
279 Ty = FI->second.first.get();
280 ForwardRefTypes.erase(FI);
281 }
282
283 // Inserting a name that is already defined, get the existing name.
284 const Type *Existing = M->getTypeByName(Name);
285 assert(Existing && "Conflict but no matching type?!");
286
287 // Otherwise, this is an attempt to redefine a type. That's okay if
288 // the redefinition is identical to the original.
289 // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
290 if (Existing == Ty) return false;
291
292 // Any other kind of (non-equivalent) redefinition is an error.
293 return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
294 Ty->getDescription() + "'");
295}
296
297
298/// toplevelentity
299/// ::= 'declare' FunctionHeader
300bool LLParser::ParseDeclare() {
301 assert(Lex.getKind() == lltok::kw_declare);
302 Lex.Lex();
303
304 Function *F;
305 return ParseFunctionHeader(F, false);
306}
307
308/// toplevelentity
309/// ::= 'define' FunctionHeader '{' ...
310bool LLParser::ParseDefine() {
311 assert(Lex.getKind() == lltok::kw_define);
312 Lex.Lex();
313
314 Function *F;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000315 return ParseFunctionHeader(F, true) ||
316 ParseFunctionBody(*F);
Chris Lattnerdf986172009-01-02 07:01:27 +0000317}
318
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000319/// ParseGlobalType
320/// ::= 'constant'
321/// ::= 'global'
Chris Lattnerdf986172009-01-02 07:01:27 +0000322bool LLParser::ParseGlobalType(bool &IsConstant) {
323 if (Lex.getKind() == lltok::kw_constant)
324 IsConstant = true;
325 else if (Lex.getKind() == lltok::kw_global)
326 IsConstant = false;
327 else
328 return TokError("expected 'global' or 'constant'");
329 Lex.Lex();
330 return false;
331}
332
333/// ParseNamedGlobal:
334/// GlobalVar '=' OptionalVisibility ALIAS ...
335/// GlobalVar '=' OptionalLinkage OptionalVisibility ... -> global variable
336bool LLParser::ParseNamedGlobal() {
337 assert(Lex.getKind() == lltok::GlobalVar);
338 LocTy NameLoc = Lex.getLoc();
339 std::string Name = Lex.getStrVal();
340 Lex.Lex();
341
342 bool HasLinkage;
343 unsigned Linkage, Visibility;
344 if (ParseToken(lltok::equal, "expected '=' in global variable") ||
345 ParseOptionalLinkage(Linkage, HasLinkage) ||
346 ParseOptionalVisibility(Visibility))
347 return true;
348
349 if (HasLinkage || Lex.getKind() != lltok::kw_alias)
350 return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
351 return ParseAlias(Name, NameLoc, Visibility);
352}
353
354/// ParseAlias:
355/// ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
356/// Aliasee
357/// ::= TypeAndValue | 'bitcast' '(' TypeAndValue 'to' Type ')'
358///
359/// Everything through visibility has already been parsed.
360///
361bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
362 unsigned Visibility) {
363 assert(Lex.getKind() == lltok::kw_alias);
364 Lex.Lex();
365 unsigned Linkage;
366 LocTy LinkageLoc = Lex.getLoc();
367 if (ParseOptionalLinkage(Linkage))
368 return true;
369
370 if (Linkage != GlobalValue::ExternalLinkage &&
371 Linkage != GlobalValue::WeakLinkage &&
372 Linkage != GlobalValue::InternalLinkage)
373 return Error(LinkageLoc, "invalid linkage type for alias");
374
375 Constant *Aliasee;
376 LocTy AliaseeLoc = Lex.getLoc();
377 if (Lex.getKind() != lltok::kw_bitcast) {
378 if (ParseGlobalTypeAndValue(Aliasee)) return true;
379 } else {
380 // The bitcast dest type is not present, it is implied by the dest type.
381 ValID ID;
382 if (ParseValID(ID)) return true;
383 if (ID.Kind != ValID::t_Constant)
384 return Error(AliaseeLoc, "invalid aliasee");
385 Aliasee = ID.ConstantVal;
386 }
387
388 if (!isa<PointerType>(Aliasee->getType()))
389 return Error(AliaseeLoc, "alias must have pointer type");
390
391 // Okay, create the alias but do not insert it into the module yet.
392 GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
393 (GlobalValue::LinkageTypes)Linkage, Name,
394 Aliasee);
395 GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
396
397 // See if this value already exists in the symbol table. If so, it is either
398 // a redefinition or a definition of a forward reference.
399 if (GlobalValue *Val =
400 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name))) {
401 // See if this was a redefinition. If so, there is no entry in
402 // ForwardRefVals.
403 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
404 I = ForwardRefVals.find(Name);
405 if (I == ForwardRefVals.end())
406 return Error(NameLoc, "redefinition of global named '@" + Name + "'");
407
408 // Otherwise, this was a definition of forward ref. Verify that types
409 // agree.
410 if (Val->getType() != GA->getType())
411 return Error(NameLoc,
412 "forward reference and definition of alias have different types");
413
414 // If they agree, just RAUW the old value with the alias and remove the
415 // forward ref info.
416 Val->replaceAllUsesWith(GA);
417 Val->eraseFromParent();
418 ForwardRefVals.erase(I);
419 }
420
421 // Insert into the module, we know its name won't collide now.
422 M->getAliasList().push_back(GA);
423 assert(GA->getNameStr() == Name && "Should not be a name conflict!");
424
425 return false;
426}
427
428/// ParseGlobal
429/// ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
430/// OptionalAddrSpace GlobalType Type Const
431/// ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
432/// OptionalAddrSpace GlobalType Type Const
433///
434/// Everything through visibility has been parsed already.
435///
436bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
437 unsigned Linkage, bool HasLinkage,
438 unsigned Visibility) {
439 unsigned AddrSpace;
440 bool ThreadLocal, IsConstant;
441 LocTy TyLoc;
442
443 PATypeHolder Ty(Type::VoidTy);
444 if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
445 ParseOptionalAddrSpace(AddrSpace) ||
446 ParseGlobalType(IsConstant) ||
447 ParseType(Ty, TyLoc))
448 return true;
449
450 // If the linkage is specified and is external, then no initializer is
451 // present.
452 Constant *Init = 0;
453 if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
454 Linkage != GlobalValue::ExternalWeakLinkage &&
455 Linkage != GlobalValue::ExternalLinkage)) {
456 if (ParseGlobalValue(Ty, Init))
457 return true;
458 }
459
460 if (isa<FunctionType>(Ty) || Ty == Type::LabelTy)
461 return Error(TyLoc, "invald type for global variable");
462
463 GlobalVariable *GV = 0;
464
465 // See if the global was forward referenced, if so, use the global.
466 if (!Name.empty() && (GV = M->getGlobalVariable(Name, true))) {
467 if (!ForwardRefVals.erase(Name))
468 return Error(NameLoc, "redefinition of global '@" + Name + "'");
469 } else {
470 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
471 I = ForwardRefValIDs.find(NumberedVals.size());
472 if (I != ForwardRefValIDs.end()) {
473 GV = cast<GlobalVariable>(I->second.first);
474 ForwardRefValIDs.erase(I);
475 }
476 }
477
478 if (GV == 0) {
479 GV = new GlobalVariable(Ty, false, GlobalValue::ExternalLinkage, 0, Name,
480 M, false, AddrSpace);
481 } else {
482 if (GV->getType()->getElementType() != Ty)
483 return Error(TyLoc,
484 "forward reference and definition of global have different types");
485
486 // Move the forward-reference to the correct spot in the module.
487 M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
488 }
489
490 if (Name.empty())
491 NumberedVals.push_back(GV);
492
493 // Set the parsed properties on the global.
494 if (Init)
495 GV->setInitializer(Init);
496 GV->setConstant(IsConstant);
497 GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
498 GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
499 GV->setThreadLocal(ThreadLocal);
500
501 // Parse attributes on the global.
502 while (Lex.getKind() == lltok::comma) {
503 Lex.Lex();
504
505 if (Lex.getKind() == lltok::kw_section) {
506 Lex.Lex();
507 GV->setSection(Lex.getStrVal());
508 if (ParseToken(lltok::StringConstant, "expected global section string"))
509 return true;
510 } else if (Lex.getKind() == lltok::kw_align) {
511 unsigned Alignment;
512 if (ParseOptionalAlignment(Alignment)) return true;
513 GV->setAlignment(Alignment);
514 } else {
515 TokError("unknown global variable property!");
516 }
517 }
518
519 return false;
520}
521
522
523//===----------------------------------------------------------------------===//
524// GlobalValue Reference/Resolution Routines.
525//===----------------------------------------------------------------------===//
526
527/// GetGlobalVal - Get a value with the specified name or ID, creating a
528/// forward reference record if needed. This can return null if the value
529/// exists but does not have the right type.
530GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
531 LocTy Loc) {
532 const PointerType *PTy = dyn_cast<PointerType>(Ty);
533 if (PTy == 0) {
534 Error(Loc, "global variable reference must have pointer type");
535 return 0;
536 }
537
538 // Look this name up in the normal function symbol table.
539 GlobalValue *Val =
540 cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
541
542 // If this is a forward reference for the value, see if we already created a
543 // forward ref record.
544 if (Val == 0) {
545 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
546 I = ForwardRefVals.find(Name);
547 if (I != ForwardRefVals.end())
548 Val = I->second.first;
549 }
550
551 // If we have the value in the symbol table or fwd-ref table, return it.
552 if (Val) {
553 if (Val->getType() == Ty) return Val;
554 Error(Loc, "'@" + Name + "' defined with type '" +
555 Val->getType()->getDescription() + "'");
556 return 0;
557 }
558
559 // Otherwise, create a new forward reference for this value and remember it.
560 GlobalValue *FwdVal;
561 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
562 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
563 else
564 FwdVal = new GlobalVariable(PTy->getElementType(), false,
565 GlobalValue::ExternalWeakLinkage, 0, Name, M);
566
567 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
568 return FwdVal;
569}
570
571GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
572 const PointerType *PTy = dyn_cast<PointerType>(Ty);
573 if (PTy == 0) {
574 Error(Loc, "global variable reference must have pointer type");
575 return 0;
576 }
577
578 GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
579
580 // If this is a forward reference for the value, see if we already created a
581 // forward ref record.
582 if (Val == 0) {
583 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
584 I = ForwardRefValIDs.find(ID);
585 if (I != ForwardRefValIDs.end())
586 Val = I->second.first;
587 }
588
589 // If we have the value in the symbol table or fwd-ref table, return it.
590 if (Val) {
591 if (Val->getType() == Ty) return Val;
592 Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
593 Val->getType()->getDescription() + "'");
594 return 0;
595 }
596
597 // Otherwise, create a new forward reference for this value and remember it.
598 GlobalValue *FwdVal;
599 if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType()))
600 FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
601 else
602 FwdVal = new GlobalVariable(PTy->getElementType(), false,
603 GlobalValue::ExternalWeakLinkage, 0, "", M);
604
605 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
606 return FwdVal;
607}
608
609
610//===----------------------------------------------------------------------===//
611// Helper Routines.
612//===----------------------------------------------------------------------===//
613
614/// ParseToken - If the current token has the specified kind, eat it and return
615/// success. Otherwise, emit the specified error and return failure.
616bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
617 if (Lex.getKind() != T)
618 return TokError(ErrMsg);
619 Lex.Lex();
620 return false;
621}
622
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000623/// ParseStringConstant
624/// ::= StringConstant
625bool LLParser::ParseStringConstant(std::string &Result) {
626 if (Lex.getKind() != lltok::StringConstant)
627 return TokError("expected string constant");
628 Result = Lex.getStrVal();
629 Lex.Lex();
630 return false;
631}
632
633/// ParseUInt32
634/// ::= uint32
635bool LLParser::ParseUInt32(unsigned &Val) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000636 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
637 return TokError("expected integer");
638 uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
639 if (Val64 != unsigned(Val64))
640 return TokError("expected 32-bit integer (too large)");
641 Val = Val64;
642 Lex.Lex();
643 return false;
644}
645
646
647/// ParseOptionalAddrSpace
648/// := /*empty*/
649/// := 'addrspace' '(' uint32 ')'
650bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
651 AddrSpace = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000652 if (!EatIfPresent(lltok::kw_addrspace))
Chris Lattnerdf986172009-01-02 07:01:27 +0000653 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000654 return ParseToken(lltok::lparen, "expected '(' in address space") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000655 ParseUInt32(AddrSpace) ||
Chris Lattnerdf986172009-01-02 07:01:27 +0000656 ParseToken(lltok::rparen, "expected ')' in address space");
657}
658
659/// ParseOptionalAttrs - Parse a potentially empty attribute list. AttrKind
660/// indicates what kind of attribute list this is: 0: function arg, 1: result,
661/// 2: function attr.
662bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
663 Attrs = Attribute::None;
664 LocTy AttrLoc = Lex.getLoc();
665
666 while (1) {
667 switch (Lex.getKind()) {
668 case lltok::kw_sext:
669 case lltok::kw_zext:
670 // Treat these as signext/zeroext unless they are function attrs.
671 // FIXME: REMOVE THIS IN LLVM 3.0
672 if (AttrKind != 2) {
673 if (Lex.getKind() == lltok::kw_sext)
674 Attrs |= Attribute::SExt;
675 else
676 Attrs |= Attribute::ZExt;
677 break;
678 }
679 // FALL THROUGH.
680 default: // End of attributes.
681 if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
682 return Error(AttrLoc, "invalid use of function-only attribute");
683
684 if (AttrKind != 0 && (Attrs & Attribute::ParameterOnly))
685 return Error(AttrLoc, "invalid use of parameter-only attribute");
686
687 return false;
688 case lltok::kw_zeroext: Attrs |= Attribute::ZExt; break;
689 case lltok::kw_signext: Attrs |= Attribute::SExt; break;
690 case lltok::kw_inreg: Attrs |= Attribute::InReg; break;
691 case lltok::kw_sret: Attrs |= Attribute::StructRet; break;
692 case lltok::kw_noalias: Attrs |= Attribute::NoAlias; break;
693 case lltok::kw_nocapture: Attrs |= Attribute::NoCapture; break;
694 case lltok::kw_byval: Attrs |= Attribute::ByVal; break;
695 case lltok::kw_nest: Attrs |= Attribute::Nest; break;
696
697 case lltok::kw_noreturn: Attrs |= Attribute::NoReturn; break;
698 case lltok::kw_nounwind: Attrs |= Attribute::NoUnwind; break;
699 case lltok::kw_noinline: Attrs |= Attribute::NoInline; break;
700 case lltok::kw_readnone: Attrs |= Attribute::ReadNone; break;
701 case lltok::kw_readonly: Attrs |= Attribute::ReadOnly; break;
702 case lltok::kw_alwaysinline: Attrs |= Attribute::AlwaysInline; break;
703 case lltok::kw_optsize: Attrs |= Attribute::OptimizeForSize; break;
704 case lltok::kw_ssp: Attrs |= Attribute::StackProtect; break;
705 case lltok::kw_sspreq: Attrs |= Attribute::StackProtectReq; break;
706
707
708 case lltok::kw_align: {
709 unsigned Alignment;
710 if (ParseOptionalAlignment(Alignment))
711 return true;
712 Attrs |= Attribute::constructAlignmentFromInt(Alignment);
713 continue;
714 }
715 }
716 Lex.Lex();
717 }
718}
719
720/// ParseOptionalLinkage
721/// ::= /*empty*/
722/// ::= 'internal'
723/// ::= 'weak'
724/// ::= 'linkonce'
725/// ::= 'appending'
726/// ::= 'dllexport'
727/// ::= 'common'
728/// ::= 'dllimport'
729/// ::= 'extern_weak'
730/// ::= 'external'
731bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
732 HasLinkage = false;
733 switch (Lex.getKind()) {
734 default: Res = GlobalValue::ExternalLinkage; return false;
735 case lltok::kw_internal: Res = GlobalValue::InternalLinkage; break;
736 case lltok::kw_weak: Res = GlobalValue::WeakLinkage; break;
737 case lltok::kw_linkonce: Res = GlobalValue::LinkOnceLinkage; break;
738 case lltok::kw_appending: Res = GlobalValue::AppendingLinkage; break;
739 case lltok::kw_dllexport: Res = GlobalValue::DLLExportLinkage; break;
740 case lltok::kw_common: Res = GlobalValue::CommonLinkage; break;
741 case lltok::kw_dllimport: Res = GlobalValue::DLLImportLinkage; break;
742 case lltok::kw_extern_weak: Res = GlobalValue::ExternalWeakLinkage; break;
743 case lltok::kw_external: Res = GlobalValue::ExternalLinkage; break;
744 }
745 Lex.Lex();
746 HasLinkage = true;
747 return false;
748}
749
750/// ParseOptionalVisibility
751/// ::= /*empty*/
752/// ::= 'default'
753/// ::= 'hidden'
754/// ::= 'protected'
755///
756bool LLParser::ParseOptionalVisibility(unsigned &Res) {
757 switch (Lex.getKind()) {
758 default: Res = GlobalValue::DefaultVisibility; return false;
759 case lltok::kw_default: Res = GlobalValue::DefaultVisibility; break;
760 case lltok::kw_hidden: Res = GlobalValue::HiddenVisibility; break;
761 case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
762 }
763 Lex.Lex();
764 return false;
765}
766
767/// ParseOptionalCallingConv
768/// ::= /*empty*/
769/// ::= 'ccc'
770/// ::= 'fastcc'
771/// ::= 'coldcc'
772/// ::= 'x86_stdcallcc'
773/// ::= 'x86_fastcallcc'
774/// ::= 'cc' UINT
775///
776bool LLParser::ParseOptionalCallingConv(unsigned &CC) {
777 switch (Lex.getKind()) {
778 default: CC = CallingConv::C; return false;
779 case lltok::kw_ccc: CC = CallingConv::C; break;
780 case lltok::kw_fastcc: CC = CallingConv::Fast; break;
781 case lltok::kw_coldcc: CC = CallingConv::Cold; break;
782 case lltok::kw_x86_stdcallcc: CC = CallingConv::X86_StdCall; break;
783 case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000784 case lltok::kw_cc: Lex.Lex(); return ParseUInt32(CC);
Chris Lattnerdf986172009-01-02 07:01:27 +0000785 }
786 Lex.Lex();
787 return false;
788}
789
790/// ParseOptionalAlignment
791/// ::= /* empty */
792/// ::= 'align' 4
793bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
794 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000795 if (!EatIfPresent(lltok::kw_align))
796 return false;
Chris Lattner3fbb3ab2009-01-05 07:46:05 +0000797 LocTy AlignLoc = Lex.getLoc();
798 if (ParseUInt32(Alignment)) return true;
799 if (!isPowerOf2_32(Alignment))
800 return Error(AlignLoc, "alignment is not a power of two");
801 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000802}
803
804/// ParseOptionalCommaAlignment
805/// ::= /* empty */
806/// ::= ',' 'align' 4
807bool LLParser::ParseOptionalCommaAlignment(unsigned &Alignment) {
808 Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000809 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +0000810 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +0000811 return ParseToken(lltok::kw_align, "expected 'align'") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000812 ParseUInt32(Alignment);
Chris Lattnerdf986172009-01-02 07:01:27 +0000813}
814
815/// ParseIndexList
816/// ::= (',' uint32)+
817bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
818 if (Lex.getKind() != lltok::comma)
819 return TokError("expected ',' as start of index list");
820
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000821 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +0000822 unsigned Idx;
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000823 if (ParseUInt32(Idx)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000824 Indices.push_back(Idx);
825 }
826
827 return false;
828}
829
830//===----------------------------------------------------------------------===//
831// Type Parsing.
832//===----------------------------------------------------------------------===//
833
834/// ParseType - Parse and resolve a full type.
835bool LLParser::ParseType(PATypeHolder &Result) {
836 if (ParseTypeRec(Result)) return true;
837
838 // Verify no unresolved uprefs.
839 if (!UpRefs.empty())
840 return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
Chris Lattnerdf986172009-01-02 07:01:27 +0000841
842 return false;
843}
844
845/// HandleUpRefs - Every time we finish a new layer of types, this function is
846/// called. It loops through the UpRefs vector, which is a list of the
847/// currently active types. For each type, if the up-reference is contained in
848/// the newly completed type, we decrement the level count. When the level
849/// count reaches zero, the up-referenced type is the type that is passed in:
850/// thus we can complete the cycle.
851///
852PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
853 // If Ty isn't abstract, or if there are no up-references in it, then there is
854 // nothing to resolve here.
855 if (!ty->isAbstract() || UpRefs.empty()) return ty;
856
857 PATypeHolder Ty(ty);
858#if 0
859 errs() << "Type '" << Ty->getDescription()
860 << "' newly formed. Resolving upreferences.\n"
861 << UpRefs.size() << " upreferences active!\n";
862#endif
863
864 // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
865 // to zero), we resolve them all together before we resolve them to Ty. At
866 // the end of the loop, if there is anything to resolve to Ty, it will be in
867 // this variable.
868 OpaqueType *TypeToResolve = 0;
869
870 for (unsigned i = 0; i != UpRefs.size(); ++i) {
871 // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
872 bool ContainsType =
873 std::find(Ty->subtype_begin(), Ty->subtype_end(),
874 UpRefs[i].LastContainedTy) != Ty->subtype_end();
875
876#if 0
877 errs() << " UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
878 << UpRefs[i].LastContainedTy->getDescription() << ") = "
879 << (ContainsType ? "true" : "false")
880 << " level=" << UpRefs[i].NestingLevel << "\n";
881#endif
882 if (!ContainsType)
883 continue;
884
885 // Decrement level of upreference
886 unsigned Level = --UpRefs[i].NestingLevel;
887 UpRefs[i].LastContainedTy = Ty;
888
889 // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
890 if (Level != 0)
891 continue;
892
893#if 0
894 errs() << " * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
895#endif
896 if (!TypeToResolve)
897 TypeToResolve = UpRefs[i].UpRefTy;
898 else
899 UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
900 UpRefs.erase(UpRefs.begin()+i); // Remove from upreference list.
901 --i; // Do not skip the next element.
902 }
903
904 if (TypeToResolve)
905 TypeToResolve->refineAbstractTypeTo(Ty);
906
907 return Ty;
908}
909
910
911/// ParseTypeRec - The recursive function used to process the internal
912/// implementation details of types.
913bool LLParser::ParseTypeRec(PATypeHolder &Result) {
914 switch (Lex.getKind()) {
915 default:
916 return TokError("expected type");
917 case lltok::Type:
918 // TypeRec ::= 'float' | 'void' (etc)
919 Result = Lex.getTyVal();
920 Lex.Lex();
921 break;
922 case lltok::kw_opaque:
923 // TypeRec ::= 'opaque'
924 Result = OpaqueType::get();
925 Lex.Lex();
926 break;
927 case lltok::lbrace:
928 // TypeRec ::= '{' ... '}'
929 if (ParseStructType(Result, false))
930 return true;
931 break;
932 case lltok::lsquare:
933 // TypeRec ::= '[' ... ']'
934 Lex.Lex(); // eat the lsquare.
935 if (ParseArrayVectorType(Result, false))
936 return true;
937 break;
938 case lltok::less: // Either vector or packed struct.
939 // TypeRec ::= '<' ... '>'
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000940 Lex.Lex();
941 if (Lex.getKind() == lltok::lbrace) {
942 if (ParseStructType(Result, true) ||
943 ParseToken(lltok::greater, "expected '>' at end of packed struct"))
Chris Lattnerdf986172009-01-02 07:01:27 +0000944 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000945 } else if (ParseArrayVectorType(Result, true))
946 return true;
947 break;
948 case lltok::LocalVar:
949 case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
950 // TypeRec ::= %foo
951 if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
952 Result = T;
953 } else {
954 Result = OpaqueType::get();
955 ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
956 std::make_pair(Result,
957 Lex.getLoc())));
958 M->addTypeName(Lex.getStrVal(), Result.get());
959 }
960 Lex.Lex();
961 break;
962
963 case lltok::LocalVarID:
964 // TypeRec ::= %4
965 if (Lex.getUIntVal() < NumberedTypes.size())
966 Result = NumberedTypes[Lex.getUIntVal()];
967 else {
968 std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
969 I = ForwardRefTypeIDs.find(Lex.getUIntVal());
970 if (I != ForwardRefTypeIDs.end())
971 Result = I->second.first;
972 else {
973 Result = OpaqueType::get();
974 ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
975 std::make_pair(Result,
976 Lex.getLoc())));
977 }
978 }
979 Lex.Lex();
980 break;
981 case lltok::backslash: {
982 // TypeRec ::= '\' 4
Chris Lattnerdf986172009-01-02 07:01:27 +0000983 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +0000984 unsigned Val;
985 if (ParseUInt32(Val)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +0000986 OpaqueType *OT = OpaqueType::get(); // Use temporary placeholder.
987 UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
988 Result = OT;
989 break;
990 }
991 }
992
993 // Parse the type suffixes.
994 while (1) {
995 switch (Lex.getKind()) {
996 // End of type.
997 default: return false;
998
999 // TypeRec ::= TypeRec '*'
1000 case lltok::star:
1001 if (Result.get() == Type::LabelTy)
1002 return TokError("basic block pointers are invalid");
1003 Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
1004 Lex.Lex();
1005 break;
1006
1007 // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1008 case lltok::kw_addrspace: {
1009 if (Result.get() == Type::LabelTy)
1010 return TokError("basic block pointers are invalid");
1011 unsigned AddrSpace;
1012 if (ParseOptionalAddrSpace(AddrSpace) ||
1013 ParseToken(lltok::star, "expected '*' in address space"))
1014 return true;
1015
1016 Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
1017 break;
1018 }
1019
1020 /// Types '(' ArgTypeListI ')' OptFuncAttrs
1021 case lltok::lparen:
1022 if (ParseFunctionType(Result))
1023 return true;
1024 break;
1025 }
1026 }
1027}
1028
1029/// ParseParameterList
1030/// ::= '(' ')'
1031/// ::= '(' Arg (',' Arg)* ')'
1032/// Arg
1033/// ::= Type OptionalAttributes Value OptionalAttributes
1034bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1035 PerFunctionState &PFS) {
1036 if (ParseToken(lltok::lparen, "expected '(' in call"))
1037 return true;
1038
1039 while (Lex.getKind() != lltok::rparen) {
1040 // If this isn't the first argument, we need a comma.
1041 if (!ArgList.empty() &&
1042 ParseToken(lltok::comma, "expected ',' in argument list"))
1043 return true;
1044
1045 // Parse the argument.
1046 LocTy ArgLoc;
1047 PATypeHolder ArgTy(Type::VoidTy);
1048 unsigned ArgAttrs1, ArgAttrs2;
1049 Value *V;
1050 if (ParseType(ArgTy, ArgLoc) ||
1051 ParseOptionalAttrs(ArgAttrs1, 0) ||
1052 ParseValue(ArgTy, V, PFS) ||
1053 // FIXME: Should not allow attributes after the argument, remove this in
1054 // LLVM 3.0.
1055 ParseOptionalAttrs(ArgAttrs2, 0))
1056 return true;
1057 ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1058 }
1059
1060 Lex.Lex(); // Lex the ')'.
1061 return false;
1062}
1063
1064
1065
1066/// ParseArgumentList
1067/// ::= '(' ArgTypeListI ')'
1068/// ArgTypeListI
1069/// ::= /*empty*/
1070/// ::= '...'
1071/// ::= ArgTypeList ',' '...'
1072/// ::= ArgType (',' ArgType)*
1073bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
1074 bool &isVarArg) {
1075 isVarArg = false;
1076 assert(Lex.getKind() == lltok::lparen);
1077 Lex.Lex(); // eat the (.
1078
1079 if (Lex.getKind() == lltok::rparen) {
1080 // empty
1081 } else if (Lex.getKind() == lltok::dotdotdot) {
1082 isVarArg = true;
1083 Lex.Lex();
1084 } else {
1085 LocTy TypeLoc = Lex.getLoc();
1086 PATypeHolder ArgTy(Type::VoidTy);
Chris Lattnerdf986172009-01-02 07:01:27 +00001087 unsigned Attrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00001088 std::string Name;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001089
1090 if (ParseTypeRec(ArgTy) ||
1091 ParseOptionalAttrs(Attrs, 0)) return true;
1092
Chris Lattnerdf986172009-01-02 07:01:27 +00001093 if (Lex.getKind() == lltok::LocalVar ||
1094 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1095 Name = Lex.getStrVal();
1096 Lex.Lex();
1097 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001098
1099 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1100 return Error(TypeLoc, "invalid type for function argument");
Chris Lattnerdf986172009-01-02 07:01:27 +00001101
1102 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1103
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001104 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001105 // Handle ... at end of arg list.
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001106 if (EatIfPresent(lltok::dotdotdot)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001107 isVarArg = true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001108 break;
1109 }
1110
1111 // Otherwise must be an argument type.
1112 TypeLoc = Lex.getLoc();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001113 if (ParseTypeRec(ArgTy) ||
1114 ParseOptionalAttrs(Attrs, 0)) return true;
1115
Chris Lattnerdf986172009-01-02 07:01:27 +00001116 if (Lex.getKind() == lltok::LocalVar ||
1117 Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1118 Name = Lex.getStrVal();
1119 Lex.Lex();
1120 } else {
1121 Name = "";
1122 }
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001123
1124 if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1125 return Error(TypeLoc, "invalid type for function argument");
Chris Lattnerdf986172009-01-02 07:01:27 +00001126
1127 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1128 }
1129 }
1130
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001131 return ParseToken(lltok::rparen, "expected ')' at end of argument list");
Chris Lattnerdf986172009-01-02 07:01:27 +00001132}
1133
1134/// ParseFunctionType
1135/// ::= Type ArgumentList OptionalAttrs
1136bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1137 assert(Lex.getKind() == lltok::lparen);
1138
Chris Lattnerd77d04c2009-01-05 08:04:33 +00001139 if (!FunctionType::isValidReturnType(Result))
1140 return TokError("invalid function return type");
1141
Chris Lattnerdf986172009-01-02 07:01:27 +00001142 std::vector<ArgInfo> ArgList;
1143 bool isVarArg;
1144 unsigned Attrs;
1145 if (ParseArgumentList(ArgList, isVarArg) ||
1146 // FIXME: Allow, but ignore attributes on function types!
1147 // FIXME: Remove in LLVM 3.0
1148 ParseOptionalAttrs(Attrs, 2))
1149 return true;
1150
1151 // Reject names on the arguments lists.
1152 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1153 if (!ArgList[i].Name.empty())
1154 return Error(ArgList[i].Loc, "argument name invalid in function type");
1155 if (!ArgList[i].Attrs != 0) {
1156 // Allow but ignore attributes on function types; this permits
1157 // auto-upgrade.
1158 // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1159 }
1160 }
1161
1162 std::vector<const Type*> ArgListTy;
1163 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1164 ArgListTy.push_back(ArgList[i].Type);
1165
1166 Result = HandleUpRefs(FunctionType::get(Result.get(), ArgListTy, isVarArg));
1167 return false;
1168}
1169
1170/// ParseStructType: Handles packed and unpacked types. </> parsed elsewhere.
1171/// TypeRec
1172/// ::= '{' '}'
1173/// ::= '{' TypeRec (',' TypeRec)* '}'
1174/// ::= '<' '{' '}' '>'
1175/// ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1176bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1177 assert(Lex.getKind() == lltok::lbrace);
1178 Lex.Lex(); // Consume the '{'
1179
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001180 if (EatIfPresent(lltok::rbrace)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001181 Result = StructType::get(std::vector<const Type*>(), Packed);
Chris Lattnerdf986172009-01-02 07:01:27 +00001182 return false;
1183 }
1184
1185 std::vector<PATypeHolder> ParamsList;
1186 if (ParseTypeRec(Result)) return true;
1187 ParamsList.push_back(Result);
1188
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001189 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001190 if (ParseTypeRec(Result)) return true;
1191 ParamsList.push_back(Result);
1192 }
1193
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001194 if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1195 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001196
1197 std::vector<const Type*> ParamsListTy;
1198 for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1199 ParamsListTy.push_back(ParamsList[i].get());
1200 Result = HandleUpRefs(StructType::get(ParamsListTy, Packed));
1201 return false;
1202}
1203
1204/// ParseArrayVectorType - Parse an array or vector type, assuming the first
1205/// token has already been consumed.
1206/// TypeRec
1207/// ::= '[' APSINTVAL 'x' Types ']'
1208/// ::= '<' APSINTVAL 'x' Types '>'
1209bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1210 if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1211 Lex.getAPSIntVal().getBitWidth() > 64)
1212 return TokError("expected number in address space");
1213
1214 LocTy SizeLoc = Lex.getLoc();
1215 uint64_t Size = Lex.getAPSIntVal().getZExtValue();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001216 Lex.Lex();
1217
1218 if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1219 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001220
1221 LocTy TypeLoc = Lex.getLoc();
1222 PATypeHolder EltTy(Type::VoidTy);
1223 if (ParseTypeRec(EltTy)) return true;
1224
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001225 if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1226 "expected end of sequential type"))
1227 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00001228
1229 if (isVector) {
1230 if ((unsigned)Size != Size)
1231 return Error(SizeLoc, "size too large for vector");
1232 if (!EltTy->isFloatingPoint() && !EltTy->isInteger())
1233 return Error(TypeLoc, "vector element type must be fp or integer");
1234 Result = VectorType::get(EltTy, unsigned(Size));
1235 } else {
1236 if (!EltTy->isFirstClassType() && !isa<OpaqueType>(EltTy))
1237 return Error(TypeLoc, "invalid array element type");
1238 Result = HandleUpRefs(ArrayType::get(EltTy, Size));
1239 }
1240 return false;
1241}
1242
1243//===----------------------------------------------------------------------===//
1244// Function Semantic Analysis.
1245//===----------------------------------------------------------------------===//
1246
1247LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f)
1248 : P(p), F(f) {
1249
1250 // Insert unnamed arguments into the NumberedVals list.
1251 for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1252 AI != E; ++AI)
1253 if (!AI->hasName())
1254 NumberedVals.push_back(AI);
1255}
1256
1257LLParser::PerFunctionState::~PerFunctionState() {
1258 // If there were any forward referenced non-basicblock values, delete them.
1259 for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1260 I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1261 if (!isa<BasicBlock>(I->second.first)) {
1262 I->second.first->replaceAllUsesWith(UndefValue::get(I->second.first
1263 ->getType()));
1264 delete I->second.first;
1265 I->second.first = 0;
1266 }
1267
1268 for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1269 I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1270 if (!isa<BasicBlock>(I->second.first)) {
1271 I->second.first->replaceAllUsesWith(UndefValue::get(I->second.first
1272 ->getType()));
1273 delete I->second.first;
1274 I->second.first = 0;
1275 }
1276}
1277
1278bool LLParser::PerFunctionState::VerifyFunctionComplete() {
1279 if (!ForwardRefVals.empty())
1280 return P.Error(ForwardRefVals.begin()->second.second,
1281 "use of undefined value '%" + ForwardRefVals.begin()->first +
1282 "'");
1283 if (!ForwardRefValIDs.empty())
1284 return P.Error(ForwardRefValIDs.begin()->second.second,
1285 "use of undefined value '%" +
1286 utostr(ForwardRefValIDs.begin()->first) + "'");
1287 return false;
1288}
1289
1290
1291/// GetVal - Get a value with the specified name or ID, creating a
1292/// forward reference record if needed. This can return null if the value
1293/// exists but does not have the right type.
1294Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1295 const Type *Ty, LocTy Loc) {
1296 // Look this name up in the normal function symbol table.
1297 Value *Val = F.getValueSymbolTable().lookup(Name);
1298
1299 // If this is a forward reference for the value, see if we already created a
1300 // forward ref record.
1301 if (Val == 0) {
1302 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1303 I = ForwardRefVals.find(Name);
1304 if (I != ForwardRefVals.end())
1305 Val = I->second.first;
1306 }
1307
1308 // If we have the value in the symbol table or fwd-ref table, return it.
1309 if (Val) {
1310 if (Val->getType() == Ty) return Val;
1311 if (Ty == Type::LabelTy)
1312 P.Error(Loc, "'%" + Name + "' is not a basic block");
1313 else
1314 P.Error(Loc, "'%" + Name + "' defined with type '" +
1315 Val->getType()->getDescription() + "'");
1316 return 0;
1317 }
1318
1319 // Don't make placeholders with invalid type.
1320 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && Ty != Type::LabelTy) {
1321 P.Error(Loc, "invalid use of a non-first-class type");
1322 return 0;
1323 }
1324
1325 // Otherwise, create a new forward reference for this value and remember it.
1326 Value *FwdVal;
1327 if (Ty == Type::LabelTy)
1328 FwdVal = BasicBlock::Create(Name, &F);
1329 else
1330 FwdVal = new Argument(Ty, Name);
1331
1332 ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1333 return FwdVal;
1334}
1335
1336Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1337 LocTy Loc) {
1338 // Look this name up in the normal function symbol table.
1339 Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
1340
1341 // If this is a forward reference for the value, see if we already created a
1342 // forward ref record.
1343 if (Val == 0) {
1344 std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1345 I = ForwardRefValIDs.find(ID);
1346 if (I != ForwardRefValIDs.end())
1347 Val = I->second.first;
1348 }
1349
1350 // If we have the value in the symbol table or fwd-ref table, return it.
1351 if (Val) {
1352 if (Val->getType() == Ty) return Val;
1353 if (Ty == Type::LabelTy)
1354 P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1355 else
1356 P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1357 Val->getType()->getDescription() + "'");
1358 return 0;
1359 }
1360
1361 if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) && Ty != Type::LabelTy) {
1362 P.Error(Loc, "invalid use of a non-first-class type");
1363 return 0;
1364 }
1365
1366 // Otherwise, create a new forward reference for this value and remember it.
1367 Value *FwdVal;
1368 if (Ty == Type::LabelTy)
1369 FwdVal = BasicBlock::Create("", &F);
1370 else
1371 FwdVal = new Argument(Ty);
1372
1373 ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1374 return FwdVal;
1375}
1376
1377/// SetInstName - After an instruction is parsed and inserted into its
1378/// basic block, this installs its name.
1379bool LLParser::PerFunctionState::SetInstName(int NameID,
1380 const std::string &NameStr,
1381 LocTy NameLoc, Instruction *Inst) {
1382 // If this instruction has void type, it cannot have a name or ID specified.
1383 if (Inst->getType() == Type::VoidTy) {
1384 if (NameID != -1 || !NameStr.empty())
1385 return P.Error(NameLoc, "instructions returning void cannot have a name");
1386 return false;
1387 }
1388
1389 // If this was a numbered instruction, verify that the instruction is the
1390 // expected value and resolve any forward references.
1391 if (NameStr.empty()) {
1392 // If neither a name nor an ID was specified, just use the next ID.
1393 if (NameID == -1)
1394 NameID = NumberedVals.size();
1395
1396 if (unsigned(NameID) != NumberedVals.size())
1397 return P.Error(NameLoc, "instruction expected to be numbered '%" +
1398 utostr(NumberedVals.size()) + "'");
1399
1400 std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1401 ForwardRefValIDs.find(NameID);
1402 if (FI != ForwardRefValIDs.end()) {
1403 if (FI->second.first->getType() != Inst->getType())
1404 return P.Error(NameLoc, "instruction forward referenced with type '" +
1405 FI->second.first->getType()->getDescription() + "'");
1406 FI->second.first->replaceAllUsesWith(Inst);
1407 ForwardRefValIDs.erase(FI);
1408 }
1409
1410 NumberedVals.push_back(Inst);
1411 return false;
1412 }
1413
1414 // Otherwise, the instruction had a name. Resolve forward refs and set it.
1415 std::map<std::string, std::pair<Value*, LocTy> >::iterator
1416 FI = ForwardRefVals.find(NameStr);
1417 if (FI != ForwardRefVals.end()) {
1418 if (FI->second.first->getType() != Inst->getType())
1419 return P.Error(NameLoc, "instruction forward referenced with type '" +
1420 FI->second.first->getType()->getDescription() + "'");
1421 FI->second.first->replaceAllUsesWith(Inst);
1422 ForwardRefVals.erase(FI);
1423 }
1424
1425 // Set the name on the instruction.
1426 Inst->setName(NameStr);
1427
1428 if (Inst->getNameStr() != NameStr)
1429 return P.Error(NameLoc, "multiple definition of local value named '" +
1430 NameStr + "'");
1431 return false;
1432}
1433
1434/// GetBB - Get a basic block with the specified name or ID, creating a
1435/// forward reference record if needed.
1436BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1437 LocTy Loc) {
1438 return cast_or_null<BasicBlock>(GetVal(Name, Type::LabelTy, Loc));
1439}
1440
1441BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
1442 return cast_or_null<BasicBlock>(GetVal(ID, Type::LabelTy, Loc));
1443}
1444
1445/// DefineBB - Define the specified basic block, which is either named or
1446/// unnamed. If there is an error, this returns null otherwise it returns
1447/// the block being defined.
1448BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1449 LocTy Loc) {
1450 BasicBlock *BB;
1451 if (Name.empty())
1452 BB = GetBB(NumberedVals.size(), Loc);
1453 else
1454 BB = GetBB(Name, Loc);
1455 if (BB == 0) return 0; // Already diagnosed error.
1456
1457 // Move the block to the end of the function. Forward ref'd blocks are
1458 // inserted wherever they happen to be referenced.
1459 F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
1460
1461 // Remove the block from forward ref sets.
1462 if (Name.empty()) {
1463 ForwardRefValIDs.erase(NumberedVals.size());
1464 NumberedVals.push_back(BB);
1465 } else {
1466 // BB forward references are already in the function symbol table.
1467 ForwardRefVals.erase(Name);
1468 }
1469
1470 return BB;
1471}
1472
1473//===----------------------------------------------------------------------===//
1474// Constants.
1475//===----------------------------------------------------------------------===//
1476
1477/// ParseValID - Parse an abstract value that doesn't necessarily have a
1478/// type implied. For example, if we parse "4" we don't know what integer type
1479/// it has. The value will later be combined with its type and checked for
1480/// sanity.
1481bool LLParser::ParseValID(ValID &ID) {
1482 ID.Loc = Lex.getLoc();
1483 switch (Lex.getKind()) {
1484 default: return TokError("expected value token");
1485 case lltok::GlobalID: // @42
1486 ID.UIntVal = Lex.getUIntVal();
1487 ID.Kind = ValID::t_GlobalID;
1488 break;
1489 case lltok::GlobalVar: // @foo
1490 ID.StrVal = Lex.getStrVal();
1491 ID.Kind = ValID::t_GlobalName;
1492 break;
1493 case lltok::LocalVarID: // %42
1494 ID.UIntVal = Lex.getUIntVal();
1495 ID.Kind = ValID::t_LocalID;
1496 break;
1497 case lltok::LocalVar: // %foo
1498 case lltok::StringConstant: // "foo" - FIXME: REMOVE IN LLVM 3.0
1499 ID.StrVal = Lex.getStrVal();
1500 ID.Kind = ValID::t_LocalName;
1501 break;
1502 case lltok::APSInt:
1503 ID.APSIntVal = Lex.getAPSIntVal();
1504 ID.Kind = ValID::t_APSInt;
1505 break;
1506 case lltok::APFloat:
1507 ID.APFloatVal = Lex.getAPFloatVal();
1508 ID.Kind = ValID::t_APFloat;
1509 break;
1510 case lltok::kw_true:
1511 ID.ConstantVal = ConstantInt::getTrue();
1512 ID.Kind = ValID::t_Constant;
1513 break;
1514 case lltok::kw_false:
1515 ID.ConstantVal = ConstantInt::getFalse();
1516 ID.Kind = ValID::t_Constant;
1517 break;
1518 case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1519 case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1520 case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
1521
1522 case lltok::lbrace: {
1523 // ValID ::= '{' ConstVector '}'
1524 Lex.Lex();
1525 SmallVector<Constant*, 16> Elts;
1526 if (ParseGlobalValueVector(Elts) ||
1527 ParseToken(lltok::rbrace, "expected end of struct constant"))
1528 return true;
1529
1530 ID.ConstantVal = ConstantStruct::get(&Elts[0], Elts.size(), false);
1531 ID.Kind = ValID::t_Constant;
1532 return false;
1533 }
1534 case lltok::less: {
1535 // ValID ::= '<' ConstVector '>' --> Vector.
1536 // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1537 Lex.Lex();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001538 bool isPackedStruct = EatIfPresent(lltok::lbrace);
Chris Lattnerdf986172009-01-02 07:01:27 +00001539
1540 SmallVector<Constant*, 16> Elts;
1541 LocTy FirstEltLoc = Lex.getLoc();
1542 if (ParseGlobalValueVector(Elts) ||
1543 (isPackedStruct &&
1544 ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1545 ParseToken(lltok::greater, "expected end of constant"))
1546 return true;
1547
1548 if (isPackedStruct) {
1549 ID.ConstantVal = ConstantStruct::get(&Elts[0], Elts.size(), true);
1550 ID.Kind = ValID::t_Constant;
1551 return false;
1552 }
1553
1554 if (Elts.empty())
1555 return Error(ID.Loc, "constant vector must not be empty");
1556
1557 if (!Elts[0]->getType()->isInteger() &&
1558 !Elts[0]->getType()->isFloatingPoint())
1559 return Error(FirstEltLoc,
1560 "vector elements must have integer or floating point type");
1561
1562 // Verify that all the vector elements have the same type.
1563 for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1564 if (Elts[i]->getType() != Elts[0]->getType())
1565 return Error(FirstEltLoc,
1566 "vector element #" + utostr(i) +
1567 " is not of type '" + Elts[0]->getType()->getDescription());
1568
1569 ID.ConstantVal = ConstantVector::get(&Elts[0], Elts.size());
1570 ID.Kind = ValID::t_Constant;
1571 return false;
1572 }
1573 case lltok::lsquare: { // Array Constant
1574 Lex.Lex();
1575 SmallVector<Constant*, 16> Elts;
1576 LocTy FirstEltLoc = Lex.getLoc();
1577 if (ParseGlobalValueVector(Elts) ||
1578 ParseToken(lltok::rsquare, "expected end of array constant"))
1579 return true;
1580
1581 // Handle empty element.
1582 if (Elts.empty()) {
1583 // Use undef instead of an array because it's inconvenient to determine
1584 // the element type at this point, there being no elements to examine.
Chris Lattner081b5052009-01-05 07:52:51 +00001585 ID.Kind = ValID::t_EmptyArray;
Chris Lattnerdf986172009-01-02 07:01:27 +00001586 return false;
1587 }
1588
1589 if (!Elts[0]->getType()->isFirstClassType())
1590 return Error(FirstEltLoc, "invalid array element type: " +
1591 Elts[0]->getType()->getDescription());
1592
1593 ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
1594
1595 // Verify all elements are correct type!
Chris Lattner6d6b3cc2009-01-02 08:49:06 +00001596 for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001597 if (Elts[i]->getType() != Elts[0]->getType())
1598 return Error(FirstEltLoc,
1599 "array element #" + utostr(i) +
1600 " is not of type '" +Elts[0]->getType()->getDescription());
1601 }
1602
1603 ID.ConstantVal = ConstantArray::get(ATy, &Elts[0], Elts.size());
1604 ID.Kind = ValID::t_Constant;
1605 return false;
1606 }
1607 case lltok::kw_c: // c "foo"
1608 Lex.Lex();
1609 ID.ConstantVal = ConstantArray::get(Lex.getStrVal(), false);
1610 if (ParseToken(lltok::StringConstant, "expected string")) return true;
1611 ID.Kind = ValID::t_Constant;
1612 return false;
1613
1614 case lltok::kw_asm: {
1615 // ValID ::= 'asm' SideEffect? STRINGCONSTANT ',' STRINGCONSTANT
1616 bool HasSideEffect;
1617 Lex.Lex();
1618 if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001619 ParseStringConstant(ID.StrVal) ||
1620 ParseToken(lltok::comma, "expected comma in inline asm expression") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00001621 ParseToken(lltok::StringConstant, "expected constraint string"))
1622 return true;
1623 ID.StrVal2 = Lex.getStrVal();
1624 ID.UIntVal = HasSideEffect;
1625 ID.Kind = ValID::t_InlineAsm;
1626 return false;
1627 }
1628
1629 case lltok::kw_trunc:
1630 case lltok::kw_zext:
1631 case lltok::kw_sext:
1632 case lltok::kw_fptrunc:
1633 case lltok::kw_fpext:
1634 case lltok::kw_bitcast:
1635 case lltok::kw_uitofp:
1636 case lltok::kw_sitofp:
1637 case lltok::kw_fptoui:
1638 case lltok::kw_fptosi:
1639 case lltok::kw_inttoptr:
1640 case lltok::kw_ptrtoint: {
1641 unsigned Opc = Lex.getUIntVal();
1642 PATypeHolder DestTy(Type::VoidTy);
1643 Constant *SrcVal;
1644 Lex.Lex();
1645 if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
1646 ParseGlobalTypeAndValue(SrcVal) ||
1647 ParseToken(lltok::kw_to, "expected 'to' int constantexpr cast") ||
1648 ParseType(DestTy) ||
1649 ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
1650 return true;
1651 if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
1652 return Error(ID.Loc, "invalid cast opcode for cast from '" +
1653 SrcVal->getType()->getDescription() + "' to '" +
1654 DestTy->getDescription() + "'");
1655 ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc, SrcVal,
1656 DestTy);
1657 ID.Kind = ValID::t_Constant;
1658 return false;
1659 }
1660 case lltok::kw_extractvalue: {
1661 Lex.Lex();
1662 Constant *Val;
1663 SmallVector<unsigned, 4> Indices;
1664 if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
1665 ParseGlobalTypeAndValue(Val) ||
1666 ParseIndexList(Indices) ||
1667 ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
1668 return true;
1669 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
1670 return Error(ID.Loc, "extractvalue operand must be array or struct");
1671 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
1672 Indices.end()))
1673 return Error(ID.Loc, "invalid indices for extractvalue");
1674 ID.ConstantVal = ConstantExpr::getExtractValue(Val,
1675 &Indices[0], Indices.size());
1676 ID.Kind = ValID::t_Constant;
1677 return false;
1678 }
1679 case lltok::kw_insertvalue: {
1680 Lex.Lex();
1681 Constant *Val0, *Val1;
1682 SmallVector<unsigned, 4> Indices;
1683 if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
1684 ParseGlobalTypeAndValue(Val0) ||
1685 ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
1686 ParseGlobalTypeAndValue(Val1) ||
1687 ParseIndexList(Indices) ||
1688 ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
1689 return true;
1690 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
1691 return Error(ID.Loc, "extractvalue operand must be array or struct");
1692 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
1693 Indices.end()))
1694 return Error(ID.Loc, "invalid indices for insertvalue");
1695 ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
1696 &Indices[0], Indices.size());
1697 ID.Kind = ValID::t_Constant;
1698 return false;
1699 }
1700 case lltok::kw_icmp:
1701 case lltok::kw_fcmp:
1702 case lltok::kw_vicmp:
1703 case lltok::kw_vfcmp: {
1704 unsigned PredVal, Opc = Lex.getUIntVal();
1705 Constant *Val0, *Val1;
1706 Lex.Lex();
1707 if (ParseCmpPredicate(PredVal, Opc) ||
1708 ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
1709 ParseGlobalTypeAndValue(Val0) ||
1710 ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
1711 ParseGlobalTypeAndValue(Val1) ||
1712 ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
1713 return true;
1714
1715 if (Val0->getType() != Val1->getType())
1716 return Error(ID.Loc, "compare operands must have the same type");
1717
1718 CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
1719
1720 if (Opc == Instruction::FCmp) {
1721 if (!Val0->getType()->isFPOrFPVector())
1722 return Error(ID.Loc, "fcmp requires floating point operands");
1723 ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
1724 } else if (Opc == Instruction::ICmp) {
1725 if (!Val0->getType()->isIntOrIntVector() &&
1726 !isa<PointerType>(Val0->getType()))
1727 return Error(ID.Loc, "icmp requires pointer or integer operands");
1728 ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
1729 } else if (Opc == Instruction::VFCmp) {
1730 // FIXME: REMOVE VFCMP Support
Chris Lattnerd0f9c732009-01-05 08:26:05 +00001731 if (!Val0->getType()->isFPOrFPVector() ||
1732 !isa<VectorType>(Val0->getType()))
1733 return Error(ID.Loc, "vfcmp requires vector floating point operands");
Chris Lattnerdf986172009-01-02 07:01:27 +00001734 ID.ConstantVal = ConstantExpr::getVFCmp(Pred, Val0, Val1);
1735 } else if (Opc == Instruction::VICmp) {
Chris Lattnerd0f9c732009-01-05 08:26:05 +00001736 // FIXME: REMOVE VICMP Support
1737 if (!Val0->getType()->isIntOrIntVector() ||
1738 !isa<VectorType>(Val0->getType()))
1739 return Error(ID.Loc, "vicmp requires vector floating point operands");
Chris Lattnerdf986172009-01-02 07:01:27 +00001740 ID.ConstantVal = ConstantExpr::getVICmp(Pred, Val0, Val1);
1741 }
1742 ID.Kind = ValID::t_Constant;
1743 return false;
1744 }
1745
1746 // Binary Operators.
1747 case lltok::kw_add:
1748 case lltok::kw_sub:
1749 case lltok::kw_mul:
1750 case lltok::kw_udiv:
1751 case lltok::kw_sdiv:
1752 case lltok::kw_fdiv:
1753 case lltok::kw_urem:
1754 case lltok::kw_srem:
1755 case lltok::kw_frem: {
1756 unsigned Opc = Lex.getUIntVal();
1757 Constant *Val0, *Val1;
1758 Lex.Lex();
1759 if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
1760 ParseGlobalTypeAndValue(Val0) ||
1761 ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
1762 ParseGlobalTypeAndValue(Val1) ||
1763 ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
1764 return true;
1765 if (Val0->getType() != Val1->getType())
1766 return Error(ID.Loc, "operands of constexpr must have same type");
1767 if (!Val0->getType()->isIntOrIntVector() &&
1768 !Val0->getType()->isFPOrFPVector())
1769 return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
1770 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
1771 ID.Kind = ValID::t_Constant;
1772 return false;
1773 }
1774
1775 // Logical Operations
1776 case lltok::kw_shl:
1777 case lltok::kw_lshr:
1778 case lltok::kw_ashr:
1779 case lltok::kw_and:
1780 case lltok::kw_or:
1781 case lltok::kw_xor: {
1782 unsigned Opc = Lex.getUIntVal();
1783 Constant *Val0, *Val1;
1784 Lex.Lex();
1785 if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
1786 ParseGlobalTypeAndValue(Val0) ||
1787 ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
1788 ParseGlobalTypeAndValue(Val1) ||
1789 ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
1790 return true;
1791 if (Val0->getType() != Val1->getType())
1792 return Error(ID.Loc, "operands of constexpr must have same type");
1793 if (!Val0->getType()->isIntOrIntVector())
1794 return Error(ID.Loc,
1795 "constexpr requires integer or integer vector operands");
1796 ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
1797 ID.Kind = ValID::t_Constant;
1798 return false;
1799 }
1800
1801 case lltok::kw_getelementptr:
1802 case lltok::kw_shufflevector:
1803 case lltok::kw_insertelement:
1804 case lltok::kw_extractelement:
1805 case lltok::kw_select: {
1806 unsigned Opc = Lex.getUIntVal();
1807 SmallVector<Constant*, 16> Elts;
1808 Lex.Lex();
1809 if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
1810 ParseGlobalValueVector(Elts) ||
1811 ParseToken(lltok::rparen, "expected ')' in constantexpr"))
1812 return true;
1813
1814 if (Opc == Instruction::GetElementPtr) {
1815 if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
1816 return Error(ID.Loc, "getelementptr requires pointer operand");
1817
1818 if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
1819 (Value**)&Elts[1], Elts.size()-1))
1820 return Error(ID.Loc, "invalid indices for getelementptr");
1821 ID.ConstantVal = ConstantExpr::getGetElementPtr(Elts[0],
1822 &Elts[1], Elts.size()-1);
1823 } else if (Opc == Instruction::Select) {
1824 if (Elts.size() != 3)
1825 return Error(ID.Loc, "expected three operands to select");
1826 if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
1827 Elts[2]))
1828 return Error(ID.Loc, Reason);
1829 ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
1830 } else if (Opc == Instruction::ShuffleVector) {
1831 if (Elts.size() != 3)
1832 return Error(ID.Loc, "expected three operands to shufflevector");
1833 if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
1834 return Error(ID.Loc, "invalid operands to shufflevector");
1835 ID.ConstantVal = ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
1836 } else if (Opc == Instruction::ExtractElement) {
1837 if (Elts.size() != 2)
1838 return Error(ID.Loc, "expected two operands to extractelement");
1839 if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
1840 return Error(ID.Loc, "invalid extractelement operands");
1841 ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
1842 } else {
1843 assert(Opc == Instruction::InsertElement && "Unknown opcode");
1844 if (Elts.size() != 3)
1845 return Error(ID.Loc, "expected three operands to insertelement");
1846 if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
1847 return Error(ID.Loc, "invalid insertelement operands");
1848 ID.ConstantVal = ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
1849 }
1850
1851 ID.Kind = ValID::t_Constant;
1852 return false;
1853 }
1854 }
1855
1856 Lex.Lex();
1857 return false;
1858}
1859
1860/// ParseGlobalValue - Parse a global value with the specified type.
1861bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
1862 V = 0;
1863 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001864 return ParseValID(ID) ||
1865 ConvertGlobalValIDToValue(Ty, ID, V);
Chris Lattnerdf986172009-01-02 07:01:27 +00001866}
1867
1868/// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
1869/// constant.
1870bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
1871 Constant *&V) {
1872 if (isa<FunctionType>(Ty))
1873 return Error(ID.Loc, "functions are not values, refer to them as pointers");
1874
1875 switch (ID.Kind) {
1876 default: assert(0 && "Unknown ValID!");
1877 case ValID::t_LocalID:
1878 case ValID::t_LocalName:
1879 return Error(ID.Loc, "invalid use of function-local name");
1880 case ValID::t_InlineAsm:
1881 return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
1882 case ValID::t_GlobalName:
1883 V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
1884 return V == 0;
1885 case ValID::t_GlobalID:
1886 V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
1887 return V == 0;
1888 case ValID::t_APSInt:
1889 if (!isa<IntegerType>(Ty))
1890 return Error(ID.Loc, "integer constant must have integer type");
1891 ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
1892 V = ConstantInt::get(ID.APSIntVal);
1893 return false;
1894 case ValID::t_APFloat:
1895 if (!Ty->isFloatingPoint() ||
1896 !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
1897 return Error(ID.Loc, "floating point constant invalid for type");
1898
1899 // The lexer has no type info, so builds all float and double FP constants
1900 // as double. Fix this here. Long double does not need this.
1901 if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
1902 Ty == Type::FloatTy) {
1903 bool Ignored;
1904 ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
1905 &Ignored);
1906 }
1907 V = ConstantFP::get(ID.APFloatVal);
1908 return false;
1909 case ValID::t_Null:
1910 if (!isa<PointerType>(Ty))
1911 return Error(ID.Loc, "null must be a pointer type");
1912 V = ConstantPointerNull::get(cast<PointerType>(Ty));
1913 return false;
1914 case ValID::t_Undef:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00001915 // FIXME: LabelTy should not be a first-class type.
1916 if (!Ty->isFirstClassType() || Ty == Type::LabelTy)
1917 return Error(ID.Loc, "invalid type for undef constant");
Chris Lattnerdf986172009-01-02 07:01:27 +00001918 V = UndefValue::get(Ty);
1919 return false;
Chris Lattner081b5052009-01-05 07:52:51 +00001920 case ValID::t_EmptyArray:
1921 if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
1922 return Error(ID.Loc, "invalid empty array initializer");
1923 V = UndefValue::get(Ty);
1924 return false;
Chris Lattnerdf986172009-01-02 07:01:27 +00001925 case ValID::t_Zero:
Chris Lattnere67c1aa2009-01-05 08:13:38 +00001926 // FIXME: LabelTy should not be a first-class type.
1927 if (!Ty->isFirstClassType() || Ty == Type::LabelTy)
Chris Lattnerdf986172009-01-02 07:01:27 +00001928 return Error(ID.Loc, "invalid type for null constant");
1929 V = Constant::getNullValue(Ty);
1930 return false;
1931 case ValID::t_Constant:
1932 if (ID.ConstantVal->getType() != Ty)
1933 return Error(ID.Loc, "constant expression type mismatch");
1934 V = ID.ConstantVal;
1935 return false;
1936 }
1937}
1938
1939bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
1940 PATypeHolder Type(Type::VoidTy);
1941 return ParseType(Type) ||
1942 ParseGlobalValue(Type, V);
1943}
1944
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001945/// ParseGlobalValueVector
1946/// ::= /*empty*/
1947/// ::= TypeAndValue (',' TypeAndValue)*
Chris Lattnerdf986172009-01-02 07:01:27 +00001948bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
1949 // Empty list.
1950 if (Lex.getKind() == lltok::rbrace ||
1951 Lex.getKind() == lltok::rsquare ||
1952 Lex.getKind() == lltok::greater ||
1953 Lex.getKind() == lltok::rparen)
1954 return false;
1955
1956 Constant *C;
1957 if (ParseGlobalTypeAndValue(C)) return true;
1958 Elts.push_back(C);
1959
Chris Lattner3ed88ef2009-01-02 08:05:26 +00001960 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00001961 if (ParseGlobalTypeAndValue(C)) return true;
1962 Elts.push_back(C);
1963 }
1964
1965 return false;
1966}
1967
1968
1969//===----------------------------------------------------------------------===//
1970// Function Parsing.
1971//===----------------------------------------------------------------------===//
1972
1973bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
1974 PerFunctionState &PFS) {
1975 if (ID.Kind == ValID::t_LocalID)
1976 V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc);
1977 else if (ID.Kind == ValID::t_LocalName)
1978 V = PFS.GetVal(ID.StrVal, Ty, ID.Loc);
1979 else if (ID.Kind == ValID::ValID::t_InlineAsm) {
1980 const PointerType *PTy = dyn_cast<PointerType>(Ty);
1981 const FunctionType *FTy =
1982 PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
1983 if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
1984 return Error(ID.Loc, "invalid type for inline asm constraint string");
1985 V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal);
1986 return false;
1987 } else {
1988 Constant *C;
1989 if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
1990 V = C;
1991 return false;
1992 }
1993
1994 return V == 0;
1995}
1996
1997bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
1998 V = 0;
1999 ValID ID;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002000 return ParseValID(ID) ||
2001 ConvertValIDToValue(Ty, ID, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002002}
2003
2004bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
2005 PATypeHolder T(Type::VoidTy);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002006 return ParseType(T) ||
2007 ParseValue(T, V, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002008}
2009
2010/// FunctionHeader
2011/// ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2012/// Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2013/// OptionalAlign OptGC
2014bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2015 // Parse the linkage.
2016 LocTy LinkageLoc = Lex.getLoc();
2017 unsigned Linkage;
2018
2019 unsigned Visibility, CC, RetAttrs;
2020 PATypeHolder RetType(Type::VoidTy);
2021 LocTy RetTypeLoc = Lex.getLoc();
2022 if (ParseOptionalLinkage(Linkage) ||
2023 ParseOptionalVisibility(Visibility) ||
2024 ParseOptionalCallingConv(CC) ||
2025 ParseOptionalAttrs(RetAttrs, 1) ||
2026 ParseType(RetType, RetTypeLoc))
2027 return true;
2028
2029 // Verify that the linkage is ok.
2030 switch ((GlobalValue::LinkageTypes)Linkage) {
2031 case GlobalValue::ExternalLinkage:
2032 break; // always ok.
2033 case GlobalValue::DLLImportLinkage:
2034 case GlobalValue::ExternalWeakLinkage:
2035 if (isDefine)
2036 return Error(LinkageLoc, "invalid linkage for function definition");
2037 break;
2038 case GlobalValue::InternalLinkage:
2039 case GlobalValue::LinkOnceLinkage:
2040 case GlobalValue::WeakLinkage:
2041 case GlobalValue::DLLExportLinkage:
2042 if (!isDefine)
2043 return Error(LinkageLoc, "invalid linkage for function declaration");
2044 break;
2045 case GlobalValue::AppendingLinkage:
2046 case GlobalValue::GhostLinkage:
2047 case GlobalValue::CommonLinkage:
2048 return Error(LinkageLoc, "invalid function linkage type");
2049 }
2050
Chris Lattner99bb3152009-01-05 08:00:30 +00002051 if (!FunctionType::isValidReturnType(RetType) ||
2052 isa<OpaqueType>(RetType))
Chris Lattnerdf986172009-01-02 07:01:27 +00002053 return Error(RetTypeLoc, "invalid function return type");
2054
2055 if (Lex.getKind() != lltok::GlobalVar)
2056 return TokError("expected function name");
2057
2058 LocTy NameLoc = Lex.getLoc();
2059 std::string FunctionName = Lex.getStrVal();
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002060 Lex.Lex();
Chris Lattnerdf986172009-01-02 07:01:27 +00002061
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002062 if (Lex.getKind() != lltok::lparen)
Chris Lattnerdf986172009-01-02 07:01:27 +00002063 return TokError("expected '(' in function argument list");
2064
2065 std::vector<ArgInfo> ArgList;
2066 bool isVarArg;
Chris Lattnerdf986172009-01-02 07:01:27 +00002067 unsigned FuncAttrs;
Chris Lattnerdf986172009-01-02 07:01:27 +00002068 std::string Section;
Chris Lattnerdf986172009-01-02 07:01:27 +00002069 unsigned Alignment;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002070 std::string GC;
2071
2072 if (ParseArgumentList(ArgList, isVarArg) ||
2073 ParseOptionalAttrs(FuncAttrs, 2) ||
2074 (EatIfPresent(lltok::kw_section) &&
2075 ParseStringConstant(Section)) ||
2076 ParseOptionalAlignment(Alignment) ||
2077 (EatIfPresent(lltok::kw_gc) &&
2078 ParseStringConstant(GC)))
2079 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002080
2081 // If the alignment was parsed as an attribute, move to the alignment field.
2082 if (FuncAttrs & Attribute::Alignment) {
2083 Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2084 FuncAttrs &= ~Attribute::Alignment;
2085 }
2086
Chris Lattnerdf986172009-01-02 07:01:27 +00002087 // Okay, if we got here, the function is syntactically valid. Convert types
2088 // and do semantic checks.
2089 std::vector<const Type*> ParamTypeList;
2090 SmallVector<AttributeWithIndex, 8> Attrs;
2091 // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
2092 // attributes.
2093 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2094 if (FuncAttrs & ObsoleteFuncAttrs) {
2095 RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2096 FuncAttrs &= ~ObsoleteFuncAttrs;
2097 }
2098
2099 if (RetAttrs != Attribute::None)
2100 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
2101
2102 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2103 ParamTypeList.push_back(ArgList[i].Type);
2104 if (ArgList[i].Attrs != Attribute::None)
2105 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2106 }
2107
2108 if (FuncAttrs != Attribute::None)
2109 Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2110
2111 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
2112
2113 const FunctionType *FT = FunctionType::get(RetType, ParamTypeList, isVarArg);
2114 const PointerType *PFT = PointerType::getUnqual(FT);
2115
2116 Fn = 0;
2117 if (!FunctionName.empty()) {
2118 // If this was a definition of a forward reference, remove the definition
2119 // from the forward reference table and fill in the forward ref.
2120 std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2121 ForwardRefVals.find(FunctionName);
2122 if (FRVI != ForwardRefVals.end()) {
2123 Fn = M->getFunction(FunctionName);
2124 ForwardRefVals.erase(FRVI);
2125 } else if ((Fn = M->getFunction(FunctionName))) {
2126 // If this function already exists in the symbol table, then it is
2127 // multiply defined. We accept a few cases for old backwards compat.
2128 // FIXME: Remove this stuff for LLVM 3.0.
2129 if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2130 (!Fn->isDeclaration() && isDefine)) {
2131 // If the redefinition has different type or different attributes,
2132 // reject it. If both have bodies, reject it.
2133 return Error(NameLoc, "invalid redefinition of function '" +
2134 FunctionName + "'");
2135 } else if (Fn->isDeclaration()) {
2136 // Make sure to strip off any argument names so we can't get conflicts.
2137 for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2138 AI != AE; ++AI)
2139 AI->setName("");
2140 }
2141 }
2142
2143 } else if (FunctionName.empty()) {
2144 // If this is a definition of a forward referenced function, make sure the
2145 // types agree.
2146 std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2147 = ForwardRefValIDs.find(NumberedVals.size());
2148 if (I != ForwardRefValIDs.end()) {
2149 Fn = cast<Function>(I->second.first);
2150 if (Fn->getType() != PFT)
2151 return Error(NameLoc, "type of definition and forward reference of '@" +
2152 utostr(NumberedVals.size()) +"' disagree");
2153 ForwardRefValIDs.erase(I);
2154 }
2155 }
2156
2157 if (Fn == 0)
2158 Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2159 else // Move the forward-reference to the correct spot in the module.
2160 M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2161
2162 if (FunctionName.empty())
2163 NumberedVals.push_back(Fn);
2164
2165 Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2166 Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2167 Fn->setCallingConv(CC);
2168 Fn->setAttributes(PAL);
2169 Fn->setAlignment(Alignment);
2170 Fn->setSection(Section);
2171 if (!GC.empty()) Fn->setGC(GC.c_str());
2172
2173 // Add all of the arguments we parsed to the function.
2174 Function::arg_iterator ArgIt = Fn->arg_begin();
2175 for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
2176 // If the argument has a name, insert it into the argument symbol table.
2177 if (ArgList[i].Name.empty()) continue;
2178
2179 // Set the name, if it conflicted, it will be auto-renamed.
2180 ArgIt->setName(ArgList[i].Name);
2181
2182 if (ArgIt->getNameStr() != ArgList[i].Name)
2183 return Error(ArgList[i].Loc, "redefinition of argument '%" +
2184 ArgList[i].Name + "'");
2185 }
2186
2187 return false;
2188}
2189
2190
2191/// ParseFunctionBody
2192/// ::= '{' BasicBlock+ '}'
2193/// ::= 'begin' BasicBlock+ 'end' // FIXME: remove in LLVM 3.0
2194///
2195bool LLParser::ParseFunctionBody(Function &Fn) {
2196 if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2197 return TokError("expected '{' in function body");
2198 Lex.Lex(); // eat the {.
2199
2200 PerFunctionState PFS(*this, Fn);
2201
2202 while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2203 if (ParseBasicBlock(PFS)) return true;
2204
2205 // Eat the }.
2206 Lex.Lex();
2207
2208 // Verify function is ok.
2209 return PFS.VerifyFunctionComplete();
2210}
2211
2212/// ParseBasicBlock
2213/// ::= LabelStr? Instruction*
2214bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2215 // If this basic block starts out with a name, remember it.
2216 std::string Name;
2217 LocTy NameLoc = Lex.getLoc();
2218 if (Lex.getKind() == lltok::LabelStr) {
2219 Name = Lex.getStrVal();
2220 Lex.Lex();
2221 }
2222
2223 BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2224 if (BB == 0) return true;
2225
2226 std::string NameStr;
2227
2228 // Parse the instructions in this block until we get a terminator.
2229 Instruction *Inst;
2230 do {
2231 // This instruction may have three possibilities for a name: a) none
2232 // specified, b) name specified "%foo =", c) number specified: "%4 =".
2233 LocTy NameLoc = Lex.getLoc();
2234 int NameID = -1;
2235 NameStr = "";
2236
2237 if (Lex.getKind() == lltok::LocalVarID) {
2238 NameID = Lex.getUIntVal();
2239 Lex.Lex();
2240 if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2241 return true;
2242 } else if (Lex.getKind() == lltok::LocalVar ||
2243 // FIXME: REMOVE IN LLVM 3.0
2244 Lex.getKind() == lltok::StringConstant) {
2245 NameStr = Lex.getStrVal();
2246 Lex.Lex();
2247 if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2248 return true;
2249 }
2250
2251 if (ParseInstruction(Inst, BB, PFS)) return true;
2252
2253 BB->getInstList().push_back(Inst);
2254
2255 // Set the name on the instruction.
2256 if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2257 } while (!isa<TerminatorInst>(Inst));
2258
2259 return false;
2260}
2261
2262//===----------------------------------------------------------------------===//
2263// Instruction Parsing.
2264//===----------------------------------------------------------------------===//
2265
2266/// ParseInstruction - Parse one of the many different instructions.
2267///
2268bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2269 PerFunctionState &PFS) {
2270 lltok::Kind Token = Lex.getKind();
2271 if (Token == lltok::Eof)
2272 return TokError("found end of file when expecting more instructions");
2273 LocTy Loc = Lex.getLoc();
2274 Lex.Lex(); // Eat the keyword.
2275
2276 switch (Token) {
2277 default: return Error(Loc, "expected instruction opcode");
2278 // Terminator Instructions.
2279 case lltok::kw_unwind: Inst = new UnwindInst(); return false;
2280 case lltok::kw_unreachable: Inst = new UnreachableInst(); return false;
2281 case lltok::kw_ret: return ParseRet(Inst, BB, PFS);
2282 case lltok::kw_br: return ParseBr(Inst, PFS);
2283 case lltok::kw_switch: return ParseSwitch(Inst, PFS);
2284 case lltok::kw_invoke: return ParseInvoke(Inst, PFS);
2285 // Binary Operators.
2286 case lltok::kw_add:
2287 case lltok::kw_sub:
Chris Lattnere914b592009-01-05 08:24:46 +00002288 case lltok::kw_mul: return ParseArithmetic(Inst, PFS, Lex.getUIntVal(), 0);
2289
Chris Lattnerdf986172009-01-02 07:01:27 +00002290 case lltok::kw_udiv:
2291 case lltok::kw_sdiv:
Chris Lattnerdf986172009-01-02 07:01:27 +00002292 case lltok::kw_urem:
Chris Lattnere914b592009-01-05 08:24:46 +00002293 case lltok::kw_srem: return ParseArithmetic(Inst, PFS, Lex.getUIntVal(), 1);
2294 case lltok::kw_fdiv:
2295 case lltok::kw_frem: return ParseArithmetic(Inst, PFS, Lex.getUIntVal(), 2);
Chris Lattnerdf986172009-01-02 07:01:27 +00002296 case lltok::kw_shl:
2297 case lltok::kw_lshr:
2298 case lltok::kw_ashr:
2299 case lltok::kw_and:
2300 case lltok::kw_or:
2301 case lltok::kw_xor: return ParseLogical(Inst, PFS, Lex.getUIntVal());
2302 case lltok::kw_icmp:
2303 case lltok::kw_fcmp:
2304 case lltok::kw_vicmp:
2305 case lltok::kw_vfcmp: return ParseCompare(Inst, PFS, Lex.getUIntVal());
2306 // Casts.
2307 case lltok::kw_trunc:
2308 case lltok::kw_zext:
2309 case lltok::kw_sext:
2310 case lltok::kw_fptrunc:
2311 case lltok::kw_fpext:
2312 case lltok::kw_bitcast:
2313 case lltok::kw_uitofp:
2314 case lltok::kw_sitofp:
2315 case lltok::kw_fptoui:
2316 case lltok::kw_fptosi:
2317 case lltok::kw_inttoptr:
2318 case lltok::kw_ptrtoint: return ParseCast(Inst, PFS, Lex.getUIntVal());
2319 // Other.
2320 case lltok::kw_select: return ParseSelect(Inst, PFS);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002321 case lltok::kw_va_arg: return ParseVA_Arg(Inst, PFS);
Chris Lattnerdf986172009-01-02 07:01:27 +00002322 case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2323 case lltok::kw_insertelement: return ParseInsertElement(Inst, PFS);
2324 case lltok::kw_shufflevector: return ParseShuffleVector(Inst, PFS);
2325 case lltok::kw_phi: return ParsePHI(Inst, PFS);
2326 case lltok::kw_call: return ParseCall(Inst, PFS, false);
2327 case lltok::kw_tail: return ParseCall(Inst, PFS, true);
2328 // Memory.
2329 case lltok::kw_alloca:
2330 case lltok::kw_malloc: return ParseAlloc(Inst, PFS, Lex.getUIntVal());
2331 case lltok::kw_free: return ParseFree(Inst, PFS);
2332 case lltok::kw_load: return ParseLoad(Inst, PFS, false);
2333 case lltok::kw_store: return ParseStore(Inst, PFS, false);
2334 case lltok::kw_volatile:
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002335 if (EatIfPresent(lltok::kw_load))
Chris Lattnerdf986172009-01-02 07:01:27 +00002336 return ParseLoad(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002337 else if (EatIfPresent(lltok::kw_store))
Chris Lattnerdf986172009-01-02 07:01:27 +00002338 return ParseStore(Inst, PFS, true);
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002339 else
Chris Lattnerdf986172009-01-02 07:01:27 +00002340 return TokError("expected 'load' or 'store'");
Chris Lattnerdf986172009-01-02 07:01:27 +00002341 case lltok::kw_getresult: return ParseGetResult(Inst, PFS);
2342 case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2343 case lltok::kw_extractvalue: return ParseExtractValue(Inst, PFS);
2344 case lltok::kw_insertvalue: return ParseInsertValue(Inst, PFS);
2345 }
2346}
2347
2348/// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2349bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
2350 // FIXME: REMOVE vicmp/vfcmp!
2351 if (Opc == Instruction::FCmp || Opc == Instruction::VFCmp) {
2352 switch (Lex.getKind()) {
2353 default: TokError("expected fcmp predicate (e.g. 'oeq')");
2354 case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2355 case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2356 case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2357 case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2358 case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2359 case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2360 case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2361 case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2362 case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2363 case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2364 case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2365 case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2366 case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2367 case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2368 case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2369 case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2370 }
2371 } else {
2372 switch (Lex.getKind()) {
2373 default: TokError("expected icmp predicate (e.g. 'eq')");
2374 case lltok::kw_eq: P = CmpInst::ICMP_EQ; break;
2375 case lltok::kw_ne: P = CmpInst::ICMP_NE; break;
2376 case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2377 case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2378 case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2379 case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2380 case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2381 case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2382 case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
2383 case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
2384 }
2385 }
2386 Lex.Lex();
2387 return false;
2388}
2389
2390//===----------------------------------------------------------------------===//
2391// Terminator Instructions.
2392//===----------------------------------------------------------------------===//
2393
2394/// ParseRet - Parse a return instruction.
2395/// ::= 'ret' void
2396/// ::= 'ret' TypeAndValue
2397/// ::= 'ret' TypeAndValue (',' TypeAndValue)+ [[obsolete: LLVM 3.0]]
2398bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
2399 PerFunctionState &PFS) {
2400 PATypeHolder Ty(Type::VoidTy);
2401 if (ParseType(Ty)) return true;
2402
2403 if (Ty == Type::VoidTy) {
2404 Inst = ReturnInst::Create();
2405 return false;
2406 }
2407
2408 Value *RV;
2409 if (ParseValue(Ty, RV, PFS)) return true;
2410
2411 // The normal case is one return value.
2412 if (Lex.getKind() == lltok::comma) {
2413 // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring use
2414 // of 'ret {i32,i32} {i32 1, i32 2}'
2415 SmallVector<Value*, 8> RVs;
2416 RVs.push_back(RV);
2417
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002418 while (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002419 if (ParseTypeAndValue(RV, PFS)) return true;
2420 RVs.push_back(RV);
2421 }
2422
2423 RV = UndefValue::get(PFS.getFunction().getReturnType());
2424 for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
2425 Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
2426 BB->getInstList().push_back(I);
2427 RV = I;
2428 }
2429 }
2430 Inst = ReturnInst::Create(RV);
2431 return false;
2432}
2433
2434
2435/// ParseBr
2436/// ::= 'br' TypeAndValue
2437/// ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
2438bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
2439 LocTy Loc, Loc2;
2440 Value *Op0, *Op1, *Op2;
2441 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
2442
2443 if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
2444 Inst = BranchInst::Create(BB);
2445 return false;
2446 }
2447
2448 if (Op0->getType() != Type::Int1Ty)
2449 return Error(Loc, "branch condition must have 'i1' type");
2450
2451 if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
2452 ParseTypeAndValue(Op1, Loc, PFS) ||
2453 ParseToken(lltok::comma, "expected ',' after true destination") ||
2454 ParseTypeAndValue(Op2, Loc2, PFS))
2455 return true;
2456
2457 if (!isa<BasicBlock>(Op1))
2458 return Error(Loc, "true destination of branch must be a basic block");
Chris Lattnerdf986172009-01-02 07:01:27 +00002459 if (!isa<BasicBlock>(Op2))
2460 return Error(Loc2, "true destination of branch must be a basic block");
2461
2462 Inst = BranchInst::Create(cast<BasicBlock>(Op1), cast<BasicBlock>(Op2), Op0);
2463 return false;
2464}
2465
2466/// ParseSwitch
2467/// Instruction
2468/// ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
2469/// JumpTable
2470/// ::= (TypeAndValue ',' TypeAndValue)*
2471bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
2472 LocTy CondLoc, BBLoc;
2473 Value *Cond, *DefaultBB;
2474 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
2475 ParseToken(lltok::comma, "expected ',' after switch condition") ||
2476 ParseTypeAndValue(DefaultBB, BBLoc, PFS) ||
2477 ParseToken(lltok::lsquare, "expected '[' with switch table"))
2478 return true;
2479
2480 if (!isa<IntegerType>(Cond->getType()))
2481 return Error(CondLoc, "switch condition must have integer type");
2482 if (!isa<BasicBlock>(DefaultBB))
2483 return Error(BBLoc, "default destination must be a basic block");
2484
2485 // Parse the jump table pairs.
2486 SmallPtrSet<Value*, 32> SeenCases;
2487 SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
2488 while (Lex.getKind() != lltok::rsquare) {
2489 Value *Constant, *DestBB;
2490
2491 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
2492 ParseToken(lltok::comma, "expected ',' after case value") ||
2493 ParseTypeAndValue(DestBB, BBLoc, PFS))
2494 return true;
2495
2496 if (!SeenCases.insert(Constant))
2497 return Error(CondLoc, "duplicate case value in switch");
2498 if (!isa<ConstantInt>(Constant))
2499 return Error(CondLoc, "case value is not a constant integer");
2500 if (!isa<BasicBlock>(DestBB))
2501 return Error(BBLoc, "case destination is not a basic block");
2502
2503 Table.push_back(std::make_pair(cast<ConstantInt>(Constant),
2504 cast<BasicBlock>(DestBB)));
2505 }
2506
2507 Lex.Lex(); // Eat the ']'.
2508
2509 SwitchInst *SI = SwitchInst::Create(Cond, cast<BasicBlock>(DefaultBB),
2510 Table.size());
2511 for (unsigned i = 0, e = Table.size(); i != e; ++i)
2512 SI->addCase(Table[i].first, Table[i].second);
2513 Inst = SI;
2514 return false;
2515}
2516
2517/// ParseInvoke
2518/// ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
2519/// OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
2520bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
2521 LocTy CallLoc = Lex.getLoc();
2522 unsigned CC, RetAttrs, FnAttrs;
2523 PATypeHolder RetType(Type::VoidTy);
2524 LocTy RetTypeLoc;
2525 ValID CalleeID;
2526 SmallVector<ParamInfo, 16> ArgList;
2527
2528 Value *NormalBB, *UnwindBB;
2529 if (ParseOptionalCallingConv(CC) ||
2530 ParseOptionalAttrs(RetAttrs, 1) ||
2531 ParseType(RetType, RetTypeLoc) ||
2532 ParseValID(CalleeID) ||
2533 ParseParameterList(ArgList, PFS) ||
2534 ParseOptionalAttrs(FnAttrs, 2) ||
2535 ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
2536 ParseTypeAndValue(NormalBB, PFS) ||
2537 ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
2538 ParseTypeAndValue(UnwindBB, PFS))
2539 return true;
2540
2541 if (!isa<BasicBlock>(NormalBB))
2542 return Error(CallLoc, "normal destination is not a basic block");
2543 if (!isa<BasicBlock>(UnwindBB))
2544 return Error(CallLoc, "unwind destination is not a basic block");
2545
2546 // If RetType is a non-function pointer type, then this is the short syntax
2547 // for the call, which means that RetType is just the return type. Infer the
2548 // rest of the function argument types from the arguments that are present.
2549 const PointerType *PFTy = 0;
2550 const FunctionType *Ty = 0;
2551 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
2552 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2553 // Pull out the types of all of the arguments...
2554 std::vector<const Type*> ParamTypes;
2555 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
2556 ParamTypes.push_back(ArgList[i].V->getType());
2557
2558 if (!FunctionType::isValidReturnType(RetType))
2559 return Error(RetTypeLoc, "Invalid result type for LLVM function");
2560
2561 Ty = FunctionType::get(RetType, ParamTypes, false);
2562 PFTy = PointerType::getUnqual(Ty);
2563 }
2564
2565 // Look up the callee.
2566 Value *Callee;
2567 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
2568
2569 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
2570 // function attributes.
2571 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2572 if (FnAttrs & ObsoleteFuncAttrs) {
2573 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
2574 FnAttrs &= ~ObsoleteFuncAttrs;
2575 }
2576
2577 // Set up the Attributes for the function.
2578 SmallVector<AttributeWithIndex, 8> Attrs;
2579 if (RetAttrs != Attribute::None)
2580 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
2581
2582 SmallVector<Value*, 8> Args;
2583
2584 // Loop through FunctionType's arguments and ensure they are specified
2585 // correctly. Also, gather any parameter attributes.
2586 FunctionType::param_iterator I = Ty->param_begin();
2587 FunctionType::param_iterator E = Ty->param_end();
2588 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2589 const Type *ExpectedTy = 0;
2590 if (I != E) {
2591 ExpectedTy = *I++;
2592 } else if (!Ty->isVarArg()) {
2593 return Error(ArgList[i].Loc, "too many arguments specified");
2594 }
2595
2596 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
2597 return Error(ArgList[i].Loc, "argument is not of expected type '" +
2598 ExpectedTy->getDescription() + "'");
2599 Args.push_back(ArgList[i].V);
2600 if (ArgList[i].Attrs != Attribute::None)
2601 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2602 }
2603
2604 if (I != E)
2605 return Error(CallLoc, "not enough parameters specified for call");
2606
2607 if (FnAttrs != Attribute::None)
2608 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
2609
2610 // Finish off the Attributes and check them
2611 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
2612
2613 InvokeInst *II = InvokeInst::Create(Callee, cast<BasicBlock>(NormalBB),
2614 cast<BasicBlock>(UnwindBB),
2615 Args.begin(), Args.end());
2616 II->setCallingConv(CC);
2617 II->setAttributes(PAL);
2618 Inst = II;
2619 return false;
2620}
2621
2622
2623
2624//===----------------------------------------------------------------------===//
2625// Binary Operators.
2626//===----------------------------------------------------------------------===//
2627
2628/// ParseArithmetic
Chris Lattnere914b592009-01-05 08:24:46 +00002629/// ::= ArithmeticOps TypeAndValue ',' Value
2630///
2631/// If OperandType is 0, then any FP or integer operand is allowed. If it is 1,
2632/// then any integer operand is allowed, if it is 2, any fp operand is allowed.
Chris Lattnerdf986172009-01-02 07:01:27 +00002633bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
Chris Lattnere914b592009-01-05 08:24:46 +00002634 unsigned Opc, unsigned OperandType) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002635 LocTy Loc; Value *LHS, *RHS;
2636 if (ParseTypeAndValue(LHS, Loc, PFS) ||
2637 ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
2638 ParseValue(LHS->getType(), RHS, PFS))
2639 return true;
2640
Chris Lattnere914b592009-01-05 08:24:46 +00002641 bool Valid;
2642 switch (OperandType) {
2643 default: assert(0 && "Unknown operand type!");
2644 case 0: // int or FP.
2645 Valid = LHS->getType()->isIntOrIntVector() ||
2646 LHS->getType()->isFPOrFPVector();
2647 break;
2648 case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
2649 case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
2650 }
2651
2652 if (!Valid)
2653 return Error(Loc, "invalid operand type for instruction");
Chris Lattnerdf986172009-01-02 07:01:27 +00002654
2655 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2656 return false;
2657}
2658
2659/// ParseLogical
2660/// ::= ArithmeticOps TypeAndValue ',' Value {
2661bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
2662 unsigned Opc) {
2663 LocTy Loc; Value *LHS, *RHS;
2664 if (ParseTypeAndValue(LHS, Loc, PFS) ||
2665 ParseToken(lltok::comma, "expected ',' in logical operation") ||
2666 ParseValue(LHS->getType(), RHS, PFS))
2667 return true;
2668
2669 if (!LHS->getType()->isIntOrIntVector())
2670 return Error(Loc,"instruction requires integer or integer vector operands");
2671
2672 Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2673 return false;
2674}
2675
2676
2677/// ParseCompare
2678/// ::= 'icmp' IPredicates TypeAndValue ',' Value
2679/// ::= 'fcmp' FPredicates TypeAndValue ',' Value
2680/// ::= 'vicmp' IPredicates TypeAndValue ',' Value
2681/// ::= 'vfcmp' FPredicates TypeAndValue ',' Value
2682bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
2683 unsigned Opc) {
2684 // Parse the integer/fp comparison predicate.
2685 LocTy Loc;
2686 unsigned Pred;
2687 Value *LHS, *RHS;
2688 if (ParseCmpPredicate(Pred, Opc) ||
2689 ParseTypeAndValue(LHS, Loc, PFS) ||
2690 ParseToken(lltok::comma, "expected ',' after compare value") ||
2691 ParseValue(LHS->getType(), RHS, PFS))
2692 return true;
2693
2694 if (Opc == Instruction::FCmp) {
2695 if (!LHS->getType()->isFPOrFPVector())
2696 return Error(Loc, "fcmp requires floating point operands");
2697 Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
2698 } else if (Opc == Instruction::ICmp) {
2699 if (!LHS->getType()->isIntOrIntVector() &&
2700 !isa<PointerType>(LHS->getType()))
2701 return Error(Loc, "icmp requires integer operands");
2702 Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
2703 } else if (Opc == Instruction::VFCmp) {
Chris Lattner4a1c4a42009-01-05 08:09:48 +00002704 if (!LHS->getType()->isFPOrFPVector() || !isa<VectorType>(LHS->getType()))
2705 return Error(Loc, "vfcmp requires vector floating point operands");
Chris Lattnerdf986172009-01-02 07:01:27 +00002706 Inst = new VFCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
2707 } else if (Opc == Instruction::VICmp) {
Chris Lattner4a1c4a42009-01-05 08:09:48 +00002708 if (!LHS->getType()->isIntOrIntVector() || !isa<VectorType>(LHS->getType()))
2709 return Error(Loc, "vicmp requires vector floating point operands");
Chris Lattnerdf986172009-01-02 07:01:27 +00002710 Inst = new VICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
2711 }
2712 return false;
2713}
2714
2715//===----------------------------------------------------------------------===//
2716// Other Instructions.
2717//===----------------------------------------------------------------------===//
2718
2719
2720/// ParseCast
2721/// ::= CastOpc TypeAndValue 'to' Type
2722bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
2723 unsigned Opc) {
2724 LocTy Loc; Value *Op;
2725 PATypeHolder DestTy(Type::VoidTy);
2726 if (ParseTypeAndValue(Op, Loc, PFS) ||
2727 ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
2728 ParseType(DestTy))
2729 return true;
2730
2731 if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy))
2732 return Error(Loc, "invalid cast opcode for cast from '" +
2733 Op->getType()->getDescription() + "' to '" +
2734 DestTy->getDescription() + "'");
2735 Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
2736 return false;
2737}
2738
2739/// ParseSelect
2740/// ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
2741bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
2742 LocTy Loc;
2743 Value *Op0, *Op1, *Op2;
2744 if (ParseTypeAndValue(Op0, Loc, PFS) ||
2745 ParseToken(lltok::comma, "expected ',' after select condition") ||
2746 ParseTypeAndValue(Op1, PFS) ||
2747 ParseToken(lltok::comma, "expected ',' after select value") ||
2748 ParseTypeAndValue(Op2, PFS))
2749 return true;
2750
2751 if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
2752 return Error(Loc, Reason);
2753
2754 Inst = SelectInst::Create(Op0, Op1, Op2);
2755 return false;
2756}
2757
Chris Lattner0088a5c2009-01-05 08:18:44 +00002758/// ParseVA_Arg
2759/// ::= 'va_arg' TypeAndValue ',' Type
2760bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002761 Value *Op;
2762 PATypeHolder EltTy(Type::VoidTy);
Chris Lattner0088a5c2009-01-05 08:18:44 +00002763 LocTy TypeLoc;
Chris Lattnerdf986172009-01-02 07:01:27 +00002764 if (ParseTypeAndValue(Op, PFS) ||
2765 ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
Chris Lattner0088a5c2009-01-05 08:18:44 +00002766 ParseType(EltTy, TypeLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00002767 return true;
Chris Lattner0088a5c2009-01-05 08:18:44 +00002768
2769 if (!EltTy->isFirstClassType())
2770 return Error(TypeLoc, "va_arg requires operand with first class type");
Chris Lattnerdf986172009-01-02 07:01:27 +00002771
2772 Inst = new VAArgInst(Op, EltTy);
2773 return false;
2774}
2775
2776/// ParseExtractElement
2777/// ::= 'extractelement' TypeAndValue ',' TypeAndValue
2778bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
2779 LocTy Loc;
2780 Value *Op0, *Op1;
2781 if (ParseTypeAndValue(Op0, Loc, PFS) ||
2782 ParseToken(lltok::comma, "expected ',' after extract value") ||
2783 ParseTypeAndValue(Op1, PFS))
2784 return true;
2785
2786 if (!ExtractElementInst::isValidOperands(Op0, Op1))
2787 return Error(Loc, "invalid extractelement operands");
2788
2789 Inst = new ExtractElementInst(Op0, Op1);
2790 return false;
2791}
2792
2793/// ParseInsertElement
2794/// ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
2795bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
2796 LocTy Loc;
2797 Value *Op0, *Op1, *Op2;
2798 if (ParseTypeAndValue(Op0, Loc, PFS) ||
2799 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
2800 ParseTypeAndValue(Op1, PFS) ||
2801 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
2802 ParseTypeAndValue(Op2, PFS))
2803 return true;
2804
2805 if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
2806 return Error(Loc, "invalid extractelement operands");
2807
2808 Inst = InsertElementInst::Create(Op0, Op1, Op2);
2809 return false;
2810}
2811
2812/// ParseShuffleVector
2813/// ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
2814bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
2815 LocTy Loc;
2816 Value *Op0, *Op1, *Op2;
2817 if (ParseTypeAndValue(Op0, Loc, PFS) ||
2818 ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
2819 ParseTypeAndValue(Op1, PFS) ||
2820 ParseToken(lltok::comma, "expected ',' after shuffle value") ||
2821 ParseTypeAndValue(Op2, PFS))
2822 return true;
2823
2824 if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
2825 return Error(Loc, "invalid extractelement operands");
2826
2827 Inst = new ShuffleVectorInst(Op0, Op1, Op2);
2828 return false;
2829}
2830
2831/// ParsePHI
2832/// ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Valueß ']')*
2833bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
2834 PATypeHolder Ty(Type::VoidTy);
2835 Value *Op0, *Op1;
2836 LocTy TypeLoc = Lex.getLoc();
2837
2838 if (ParseType(Ty) ||
2839 ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
2840 ParseValue(Ty, Op0, PFS) ||
2841 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
2842 ParseValue(Type::LabelTy, Op1, PFS) ||
2843 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
2844 return true;
2845
2846 SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
2847 while (1) {
2848 PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
2849
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002850 if (!EatIfPresent(lltok::comma))
Chris Lattnerdf986172009-01-02 07:01:27 +00002851 break;
2852
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002853 if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
Chris Lattnerdf986172009-01-02 07:01:27 +00002854 ParseValue(Ty, Op0, PFS) ||
2855 ParseToken(lltok::comma, "expected ',' after insertelement value") ||
2856 ParseValue(Type::LabelTy, Op1, PFS) ||
2857 ParseToken(lltok::rsquare, "expected ']' in phi value list"))
2858 return true;
2859 }
2860
2861 if (!Ty->isFirstClassType())
2862 return Error(TypeLoc, "phi node must have first class type");
2863
2864 PHINode *PN = PHINode::Create(Ty);
2865 PN->reserveOperandSpace(PHIVals.size());
2866 for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
2867 PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
2868 Inst = PN;
2869 return false;
2870}
2871
2872/// ParseCall
2873/// ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
2874/// ParameterList OptionalAttrs
2875bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
2876 bool isTail) {
2877 unsigned CC, RetAttrs, FnAttrs;
2878 PATypeHolder RetType(Type::VoidTy);
2879 LocTy RetTypeLoc;
2880 ValID CalleeID;
2881 SmallVector<ParamInfo, 16> ArgList;
2882 LocTy CallLoc = Lex.getLoc();
2883
2884 if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
2885 ParseOptionalCallingConv(CC) ||
2886 ParseOptionalAttrs(RetAttrs, 1) ||
2887 ParseType(RetType, RetTypeLoc) ||
2888 ParseValID(CalleeID) ||
2889 ParseParameterList(ArgList, PFS) ||
2890 ParseOptionalAttrs(FnAttrs, 2))
2891 return true;
2892
2893 // If RetType is a non-function pointer type, then this is the short syntax
2894 // for the call, which means that RetType is just the return type. Infer the
2895 // rest of the function argument types from the arguments that are present.
2896 const PointerType *PFTy = 0;
2897 const FunctionType *Ty = 0;
2898 if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
2899 !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
2900 // Pull out the types of all of the arguments...
2901 std::vector<const Type*> ParamTypes;
2902 for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
2903 ParamTypes.push_back(ArgList[i].V->getType());
2904
2905 if (!FunctionType::isValidReturnType(RetType))
2906 return Error(RetTypeLoc, "Invalid result type for LLVM function");
2907
2908 Ty = FunctionType::get(RetType, ParamTypes, false);
2909 PFTy = PointerType::getUnqual(Ty);
2910 }
2911
2912 // Look up the callee.
2913 Value *Callee;
2914 if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
2915
2916 // Check for call to invalid intrinsic to avoid crashing later.
2917 if (Function *F = dyn_cast<Function>(Callee)) {
2918 if (F->hasName() && F->getNameLen() >= 5 &&
2919 !strncmp(F->getValueName()->getKeyData(), "llvm.", 5) &&
2920 !F->getIntrinsicID(true))
2921 return Error(CallLoc, "Call to invalid LLVM intrinsic function '" +
2922 F->getNameStr() + "'");
2923 }
2924
2925 // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
2926 // function attributes.
2927 unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2928 if (FnAttrs & ObsoleteFuncAttrs) {
2929 RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
2930 FnAttrs &= ~ObsoleteFuncAttrs;
2931 }
2932
2933 // Set up the Attributes for the function.
2934 SmallVector<AttributeWithIndex, 8> Attrs;
2935 if (RetAttrs != Attribute::None)
2936 Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
2937
2938 SmallVector<Value*, 8> Args;
2939
2940 // Loop through FunctionType's arguments and ensure they are specified
2941 // correctly. Also, gather any parameter attributes.
2942 FunctionType::param_iterator I = Ty->param_begin();
2943 FunctionType::param_iterator E = Ty->param_end();
2944 for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2945 const Type *ExpectedTy = 0;
2946 if (I != E) {
2947 ExpectedTy = *I++;
2948 } else if (!Ty->isVarArg()) {
2949 return Error(ArgList[i].Loc, "too many arguments specified");
2950 }
2951
2952 if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
2953 return Error(ArgList[i].Loc, "argument is not of expected type '" +
2954 ExpectedTy->getDescription() + "'");
2955 Args.push_back(ArgList[i].V);
2956 if (ArgList[i].Attrs != Attribute::None)
2957 Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2958 }
2959
2960 if (I != E)
2961 return Error(CallLoc, "not enough parameters specified for call");
2962
2963 if (FnAttrs != Attribute::None)
2964 Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
2965
2966 // Finish off the Attributes and check them
2967 AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
2968
2969 CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
2970 CI->setTailCall(isTail);
2971 CI->setCallingConv(CC);
2972 CI->setAttributes(PAL);
2973 Inst = CI;
2974 return false;
2975}
2976
2977//===----------------------------------------------------------------------===//
2978// Memory Instructions.
2979//===----------------------------------------------------------------------===//
2980
2981/// ParseAlloc
2982/// ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalAlignment)?
2983/// ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalAlignment)?
2984bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
2985 unsigned Opc) {
2986 PATypeHolder Ty(Type::VoidTy);
2987 Value *Size = 0;
2988 LocTy SizeLoc = 0;
2989 unsigned Alignment = 0;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002990 if (ParseType(Ty)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002991
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002992 if (EatIfPresent(lltok::comma)) {
Chris Lattnerdf986172009-01-02 07:01:27 +00002993 if (Lex.getKind() == lltok::kw_align) {
2994 if (ParseOptionalAlignment(Alignment)) return true;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00002995 } else if (ParseTypeAndValue(Size, SizeLoc, PFS) ||
2996 ParseOptionalCommaAlignment(Alignment)) {
2997 return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00002998 }
2999 }
3000
3001 if (Size && Size->getType() != Type::Int32Ty)
3002 return Error(SizeLoc, "element count must be i32");
3003
3004 if (Opc == Instruction::Malloc)
3005 Inst = new MallocInst(Ty, Size, Alignment);
3006 else
3007 Inst = new AllocaInst(Ty, Size, Alignment);
3008 return false;
3009}
3010
3011/// ParseFree
3012/// ::= 'free' TypeAndValue
3013bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS) {
3014 Value *Val; LocTy Loc;
3015 if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3016 if (!isa<PointerType>(Val->getType()))
3017 return Error(Loc, "operand to free must be a pointer");
3018 Inst = new FreeInst(Val);
3019 return false;
3020}
3021
3022/// ParseLoad
3023/// ::= 'volatile'? 'load' TypeAndValue (',' 'align' uint)?
3024bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3025 bool isVolatile) {
3026 Value *Val; LocTy Loc;
3027 unsigned Alignment;
3028 if (ParseTypeAndValue(Val, Loc, PFS) ||
3029 ParseOptionalCommaAlignment(Alignment))
3030 return true;
3031
3032 if (!isa<PointerType>(Val->getType()) ||
3033 !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3034 return Error(Loc, "load operand must be a pointer to a first class type");
3035
3036 Inst = new LoadInst(Val, "", isVolatile, Alignment);
3037 return false;
3038}
3039
3040/// ParseStore
3041/// ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' uint)?
3042bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3043 bool isVolatile) {
3044 Value *Val, *Ptr; LocTy Loc, PtrLoc;
3045 unsigned Alignment;
3046 if (ParseTypeAndValue(Val, Loc, PFS) ||
3047 ParseToken(lltok::comma, "expected ',' after store operand") ||
3048 ParseTypeAndValue(Ptr, PtrLoc, PFS) ||
3049 ParseOptionalCommaAlignment(Alignment))
3050 return true;
3051
3052 if (!isa<PointerType>(Ptr->getType()))
3053 return Error(PtrLoc, "store operand must be a pointer");
3054 if (!Val->getType()->isFirstClassType())
3055 return Error(Loc, "store operand must be a first class value");
3056 if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3057 return Error(Loc, "stored value and pointer type do not match");
3058
3059 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3060 return false;
3061}
3062
3063/// ParseGetResult
3064/// ::= 'getresult' TypeAndValue ',' uint
3065/// FIXME: Remove support for getresult in LLVM 3.0
3066bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3067 Value *Val; LocTy ValLoc, EltLoc;
3068 unsigned Element;
3069 if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3070 ParseToken(lltok::comma, "expected ',' after getresult operand") ||
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003071 ParseUInt32(Element, EltLoc))
Chris Lattnerdf986172009-01-02 07:01:27 +00003072 return true;
3073
3074 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3075 return Error(ValLoc, "getresult inst requires an aggregate operand");
3076 if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3077 return Error(EltLoc, "invalid getresult index for value");
3078 Inst = ExtractValueInst::Create(Val, Element);
3079 return false;
3080}
3081
3082/// ParseGetElementPtr
3083/// ::= 'getelementptr' TypeAndValue (',' TypeAndValue)*
3084bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3085 Value *Ptr, *Val; LocTy Loc, EltLoc;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003086 if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003087
3088 if (!isa<PointerType>(Ptr->getType()))
3089 return Error(Loc, "base of getelementptr must be a pointer");
3090
3091 SmallVector<Value*, 16> Indices;
Chris Lattner3ed88ef2009-01-02 08:05:26 +00003092 while (EatIfPresent(lltok::comma)) {
3093 if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
Chris Lattnerdf986172009-01-02 07:01:27 +00003094 if (!isa<IntegerType>(Val->getType()))
3095 return Error(EltLoc, "getelementptr index must be an integer");
3096 Indices.push_back(Val);
3097 }
3098
3099 if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3100 Indices.begin(), Indices.end()))
3101 return Error(Loc, "invalid getelementptr indices");
3102 Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
3103 return false;
3104}
3105
3106/// ParseExtractValue
3107/// ::= 'extractvalue' TypeAndValue (',' uint32)+
3108bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3109 Value *Val; LocTy Loc;
3110 SmallVector<unsigned, 4> Indices;
3111 if (ParseTypeAndValue(Val, Loc, PFS) ||
3112 ParseIndexList(Indices))
3113 return true;
3114
3115 if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3116 return Error(Loc, "extractvalue operand must be array or struct");
3117
3118 if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3119 Indices.end()))
3120 return Error(Loc, "invalid indices for extractvalue");
3121 Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3122 return false;
3123}
3124
3125/// ParseInsertValue
3126/// ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3127bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3128 Value *Val0, *Val1; LocTy Loc0, Loc1;
3129 SmallVector<unsigned, 4> Indices;
3130 if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3131 ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3132 ParseTypeAndValue(Val1, Loc1, PFS) ||
3133 ParseIndexList(Indices))
3134 return true;
3135
3136 if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3137 return Error(Loc0, "extractvalue operand must be array or struct");
3138
3139 if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3140 Indices.end()))
3141 return Error(Loc0, "invalid indices for insertvalue");
3142 Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3143 return false;
3144}