rename NamedOrCustomMD -> MetadataVar to follow conventions of all the rest of the...
[oota-llvm.git] / lib / AsmParser / LLParser.cpp
1 //===-- 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/Operator.h"
23 #include "llvm/ValueSymbolTable.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/StringExtras.h"
26 #include "llvm/Support/ErrorHandling.h"
27 #include "llvm/Support/raw_ostream.h"
28 using namespace llvm;
29
30 /// Run: module ::= toplevelentity*
31 bool LLParser::Run() {
32   // Prime the lexer.
33   Lex.Lex();
34
35   return ParseTopLevelEntities() ||
36          ValidateEndOfModule();
37 }
38
39 /// ValidateEndOfModule - Do final validity and sanity checks at the end of the
40 /// module.
41 bool LLParser::ValidateEndOfModule() {
42   // Update auto-upgraded malloc calls to "malloc".
43   // FIXME: Remove in LLVM 3.0.
44   if (MallocF) {
45     MallocF->setName("malloc");
46     // If setName() does not set the name to "malloc", then there is already a 
47     // declaration of "malloc".  In that case, iterate over all calls to MallocF
48     // and get them to call the declared "malloc" instead.
49     if (MallocF->getName() != "malloc") {
50       Constant *RealMallocF = M->getFunction("malloc");
51       if (RealMallocF->getType() != MallocF->getType())
52         RealMallocF = ConstantExpr::getBitCast(RealMallocF, MallocF->getType());
53       MallocF->replaceAllUsesWith(RealMallocF);
54       MallocF->eraseFromParent();
55       MallocF = NULL;
56     }
57   }
58   
59   
60   // If there are entries in ForwardRefBlockAddresses at this point, they are
61   // references after the function was defined.  Resolve those now.
62   while (!ForwardRefBlockAddresses.empty()) {
63     // Okay, we are referencing an already-parsed function, resolve them now.
64     Function *TheFn = 0;
65     const ValID &Fn = ForwardRefBlockAddresses.begin()->first;
66     if (Fn.Kind == ValID::t_GlobalName)
67       TheFn = M->getFunction(Fn.StrVal);
68     else if (Fn.UIntVal < NumberedVals.size())
69       TheFn = dyn_cast<Function>(NumberedVals[Fn.UIntVal]);
70     
71     if (TheFn == 0)
72       return Error(Fn.Loc, "unknown function referenced by blockaddress");
73     
74     // Resolve all these references.
75     if (ResolveForwardRefBlockAddresses(TheFn, 
76                                       ForwardRefBlockAddresses.begin()->second,
77                                         0))
78       return true;
79     
80     ForwardRefBlockAddresses.erase(ForwardRefBlockAddresses.begin());
81   }
82   
83   
84   if (!ForwardRefTypes.empty())
85     return Error(ForwardRefTypes.begin()->second.second,
86                  "use of undefined type named '" +
87                  ForwardRefTypes.begin()->first + "'");
88   if (!ForwardRefTypeIDs.empty())
89     return Error(ForwardRefTypeIDs.begin()->second.second,
90                  "use of undefined type '%" +
91                  utostr(ForwardRefTypeIDs.begin()->first) + "'");
92
93   if (!ForwardRefVals.empty())
94     return Error(ForwardRefVals.begin()->second.second,
95                  "use of undefined value '@" + ForwardRefVals.begin()->first +
96                  "'");
97
98   if (!ForwardRefValIDs.empty())
99     return Error(ForwardRefValIDs.begin()->second.second,
100                  "use of undefined value '@" +
101                  utostr(ForwardRefValIDs.begin()->first) + "'");
102
103   if (!ForwardRefMDNodes.empty())
104     return Error(ForwardRefMDNodes.begin()->second.second,
105                  "use of undefined metadata '!" +
106                  utostr(ForwardRefMDNodes.begin()->first) + "'");
107
108
109   // Look for intrinsic functions and CallInst that need to be upgraded
110   for (Module::iterator FI = M->begin(), FE = M->end(); FI != FE; )
111     UpgradeCallsToIntrinsic(FI++); // must be post-increment, as we remove
112
113   // Check debug info intrinsics.
114   CheckDebugInfoIntrinsics(M);
115   return false;
116 }
117
118 bool LLParser::ResolveForwardRefBlockAddresses(Function *TheFn, 
119                              std::vector<std::pair<ValID, GlobalValue*> > &Refs,
120                                                PerFunctionState *PFS) {
121   // Loop over all the references, resolving them.
122   for (unsigned i = 0, e = Refs.size(); i != e; ++i) {
123     BasicBlock *Res;
124     if (PFS) {
125       if (Refs[i].first.Kind == ValID::t_LocalName)
126         Res = PFS->GetBB(Refs[i].first.StrVal, Refs[i].first.Loc);
127       else
128         Res = PFS->GetBB(Refs[i].first.UIntVal, Refs[i].first.Loc);
129     } else if (Refs[i].first.Kind == ValID::t_LocalID) {
130       return Error(Refs[i].first.Loc,
131        "cannot take address of numeric label after the function is defined");
132     } else {
133       Res = dyn_cast_or_null<BasicBlock>(
134                      TheFn->getValueSymbolTable().lookup(Refs[i].first.StrVal));
135     }
136     
137     if (Res == 0)
138       return Error(Refs[i].first.Loc,
139                    "referenced value is not a basic block");
140     
141     // Get the BlockAddress for this and update references to use it.
142     BlockAddress *BA = BlockAddress::get(TheFn, Res);
143     Refs[i].second->replaceAllUsesWith(BA);
144     Refs[i].second->eraseFromParent();
145   }
146   return false;
147 }
148
149
150 //===----------------------------------------------------------------------===//
151 // Top-Level Entities
152 //===----------------------------------------------------------------------===//
153
154 bool LLParser::ParseTopLevelEntities() {
155   while (1) {
156     switch (Lex.getKind()) {
157     default:         return TokError("expected top-level entity");
158     case lltok::Eof: return false;
159     //case lltok::kw_define:
160     case lltok::kw_declare: if (ParseDeclare()) return true; break;
161     case lltok::kw_define:  if (ParseDefine()) return true; break;
162     case lltok::kw_module:  if (ParseModuleAsm()) return true; break;
163     case lltok::kw_target:  if (ParseTargetDefinition()) return true; break;
164     case lltok::kw_deplibs: if (ParseDepLibs()) return true; break;
165     case lltok::kw_type:    if (ParseUnnamedType()) return true; break;
166     case lltok::LocalVarID: if (ParseUnnamedType()) return true; break;
167     case lltok::StringConstant: // FIXME: REMOVE IN LLVM 3.0
168     case lltok::LocalVar:   if (ParseNamedType()) return true; break;
169     case lltok::GlobalID:   if (ParseUnnamedGlobal()) return true; break;
170     case lltok::GlobalVar:  if (ParseNamedGlobal()) return true; break;
171     case lltok::exclaim:    if (ParseStandaloneMetadata()) return true; break;
172     case lltok::MetadataVar: if (ParseNamedMetadata()) return true; break;
173
174     // The Global variable production with no name can have many different
175     // optional leading prefixes, the production is:
176     // GlobalVar ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
177     //               OptionalAddrSpace ('constant'|'global') ...
178     case lltok::kw_private :       // OptionalLinkage
179     case lltok::kw_linker_private: // OptionalLinkage
180     case lltok::kw_internal:       // OptionalLinkage
181     case lltok::kw_weak:           // OptionalLinkage
182     case lltok::kw_weak_odr:       // OptionalLinkage
183     case lltok::kw_linkonce:       // OptionalLinkage
184     case lltok::kw_linkonce_odr:   // OptionalLinkage
185     case lltok::kw_appending:      // OptionalLinkage
186     case lltok::kw_dllexport:      // OptionalLinkage
187     case lltok::kw_common:         // OptionalLinkage
188     case lltok::kw_dllimport:      // OptionalLinkage
189     case lltok::kw_extern_weak:    // OptionalLinkage
190     case lltok::kw_external: {     // OptionalLinkage
191       unsigned Linkage, Visibility;
192       if (ParseOptionalLinkage(Linkage) ||
193           ParseOptionalVisibility(Visibility) ||
194           ParseGlobal("", SMLoc(), Linkage, true, Visibility))
195         return true;
196       break;
197     }
198     case lltok::kw_default:       // OptionalVisibility
199     case lltok::kw_hidden:        // OptionalVisibility
200     case lltok::kw_protected: {   // OptionalVisibility
201       unsigned Visibility;
202       if (ParseOptionalVisibility(Visibility) ||
203           ParseGlobal("", SMLoc(), 0, false, Visibility))
204         return true;
205       break;
206     }
207
208     case lltok::kw_thread_local:  // OptionalThreadLocal
209     case lltok::kw_addrspace:     // OptionalAddrSpace
210     case lltok::kw_constant:      // GlobalType
211     case lltok::kw_global:        // GlobalType
212       if (ParseGlobal("", SMLoc(), 0, false, 0)) return true;
213       break;
214     }
215   }
216 }
217
218
219 /// toplevelentity
220 ///   ::= 'module' 'asm' STRINGCONSTANT
221 bool LLParser::ParseModuleAsm() {
222   assert(Lex.getKind() == lltok::kw_module);
223   Lex.Lex();
224
225   std::string AsmStr;
226   if (ParseToken(lltok::kw_asm, "expected 'module asm'") ||
227       ParseStringConstant(AsmStr)) return true;
228
229   const std::string &AsmSoFar = M->getModuleInlineAsm();
230   if (AsmSoFar.empty())
231     M->setModuleInlineAsm(AsmStr);
232   else
233     M->setModuleInlineAsm(AsmSoFar+"\n"+AsmStr);
234   return false;
235 }
236
237 /// toplevelentity
238 ///   ::= 'target' 'triple' '=' STRINGCONSTANT
239 ///   ::= 'target' 'datalayout' '=' STRINGCONSTANT
240 bool LLParser::ParseTargetDefinition() {
241   assert(Lex.getKind() == lltok::kw_target);
242   std::string Str;
243   switch (Lex.Lex()) {
244   default: return TokError("unknown target property");
245   case lltok::kw_triple:
246     Lex.Lex();
247     if (ParseToken(lltok::equal, "expected '=' after target triple") ||
248         ParseStringConstant(Str))
249       return true;
250     M->setTargetTriple(Str);
251     return false;
252   case lltok::kw_datalayout:
253     Lex.Lex();
254     if (ParseToken(lltok::equal, "expected '=' after target datalayout") ||
255         ParseStringConstant(Str))
256       return true;
257     M->setDataLayout(Str);
258     return false;
259   }
260 }
261
262 /// toplevelentity
263 ///   ::= 'deplibs' '=' '[' ']'
264 ///   ::= 'deplibs' '=' '[' STRINGCONSTANT (',' STRINGCONSTANT)* ']'
265 bool LLParser::ParseDepLibs() {
266   assert(Lex.getKind() == lltok::kw_deplibs);
267   Lex.Lex();
268   if (ParseToken(lltok::equal, "expected '=' after deplibs") ||
269       ParseToken(lltok::lsquare, "expected '=' after deplibs"))
270     return true;
271
272   if (EatIfPresent(lltok::rsquare))
273     return false;
274
275   std::string Str;
276   if (ParseStringConstant(Str)) return true;
277   M->addLibrary(Str);
278
279   while (EatIfPresent(lltok::comma)) {
280     if (ParseStringConstant(Str)) return true;
281     M->addLibrary(Str);
282   }
283
284   return ParseToken(lltok::rsquare, "expected ']' at end of list");
285 }
286
287 /// ParseUnnamedType:
288 ///   ::= 'type' type
289 ///   ::= LocalVarID '=' 'type' type
290 bool LLParser::ParseUnnamedType() {
291   unsigned TypeID = NumberedTypes.size();
292
293   // Handle the LocalVarID form.
294   if (Lex.getKind() == lltok::LocalVarID) {
295     if (Lex.getUIntVal() != TypeID)
296       return Error(Lex.getLoc(), "type expected to be numbered '%" +
297                    utostr(TypeID) + "'");
298     Lex.Lex(); // eat LocalVarID;
299
300     if (ParseToken(lltok::equal, "expected '=' after name"))
301       return true;
302   }
303
304   assert(Lex.getKind() == lltok::kw_type);
305   LocTy TypeLoc = Lex.getLoc();
306   Lex.Lex(); // eat kw_type
307
308   PATypeHolder Ty(Type::getVoidTy(Context));
309   if (ParseType(Ty)) return true;
310
311   // See if this type was previously referenced.
312   std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
313     FI = ForwardRefTypeIDs.find(TypeID);
314   if (FI != ForwardRefTypeIDs.end()) {
315     if (FI->second.first.get() == Ty)
316       return Error(TypeLoc, "self referential type is invalid");
317
318     cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
319     Ty = FI->second.first.get();
320     ForwardRefTypeIDs.erase(FI);
321   }
322
323   NumberedTypes.push_back(Ty);
324
325   return false;
326 }
327
328 /// toplevelentity
329 ///   ::= LocalVar '=' 'type' type
330 bool LLParser::ParseNamedType() {
331   std::string Name = Lex.getStrVal();
332   LocTy NameLoc = Lex.getLoc();
333   Lex.Lex();  // eat LocalVar.
334
335   PATypeHolder Ty(Type::getVoidTy(Context));
336
337   if (ParseToken(lltok::equal, "expected '=' after name") ||
338       ParseToken(lltok::kw_type, "expected 'type' after name") ||
339       ParseType(Ty))
340     return true;
341
342   // Set the type name, checking for conflicts as we do so.
343   bool AlreadyExists = M->addTypeName(Name, Ty);
344   if (!AlreadyExists) return false;
345
346   // See if this type is a forward reference.  We need to eagerly resolve
347   // types to allow recursive type redefinitions below.
348   std::map<std::string, std::pair<PATypeHolder, LocTy> >::iterator
349   FI = ForwardRefTypes.find(Name);
350   if (FI != ForwardRefTypes.end()) {
351     if (FI->second.first.get() == Ty)
352       return Error(NameLoc, "self referential type is invalid");
353
354     cast<DerivedType>(FI->second.first.get())->refineAbstractTypeTo(Ty);
355     Ty = FI->second.first.get();
356     ForwardRefTypes.erase(FI);
357   }
358
359   // Inserting a name that is already defined, get the existing name.
360   const Type *Existing = M->getTypeByName(Name);
361   assert(Existing && "Conflict but no matching type?!");
362
363   // Otherwise, this is an attempt to redefine a type. That's okay if
364   // the redefinition is identical to the original.
365   // FIXME: REMOVE REDEFINITIONS IN LLVM 3.0
366   if (Existing == Ty) return false;
367
368   // Any other kind of (non-equivalent) redefinition is an error.
369   return Error(NameLoc, "redefinition of type named '" + Name + "' of type '" +
370                Ty->getDescription() + "'");
371 }
372
373
374 /// toplevelentity
375 ///   ::= 'declare' FunctionHeader
376 bool LLParser::ParseDeclare() {
377   assert(Lex.getKind() == lltok::kw_declare);
378   Lex.Lex();
379
380   Function *F;
381   return ParseFunctionHeader(F, false);
382 }
383
384 /// toplevelentity
385 ///   ::= 'define' FunctionHeader '{' ...
386 bool LLParser::ParseDefine() {
387   assert(Lex.getKind() == lltok::kw_define);
388   Lex.Lex();
389
390   Function *F;
391   return ParseFunctionHeader(F, true) ||
392          ParseFunctionBody(*F);
393 }
394
395 /// ParseGlobalType
396 ///   ::= 'constant'
397 ///   ::= 'global'
398 bool LLParser::ParseGlobalType(bool &IsConstant) {
399   if (Lex.getKind() == lltok::kw_constant)
400     IsConstant = true;
401   else if (Lex.getKind() == lltok::kw_global)
402     IsConstant = false;
403   else {
404     IsConstant = false;
405     return TokError("expected 'global' or 'constant'");
406   }
407   Lex.Lex();
408   return false;
409 }
410
411 /// ParseUnnamedGlobal:
412 ///   OptionalVisibility ALIAS ...
413 ///   OptionalLinkage OptionalVisibility ...   -> global variable
414 ///   GlobalID '=' OptionalVisibility ALIAS ...
415 ///   GlobalID '=' OptionalLinkage OptionalVisibility ...   -> global variable
416 bool LLParser::ParseUnnamedGlobal() {
417   unsigned VarID = NumberedVals.size();
418   std::string Name;
419   LocTy NameLoc = Lex.getLoc();
420
421   // Handle the GlobalID form.
422   if (Lex.getKind() == lltok::GlobalID) {
423     if (Lex.getUIntVal() != VarID)
424       return Error(Lex.getLoc(), "variable expected to be numbered '%" +
425                    utostr(VarID) + "'");
426     Lex.Lex(); // eat GlobalID;
427
428     if (ParseToken(lltok::equal, "expected '=' after name"))
429       return true;
430   }
431
432   bool HasLinkage;
433   unsigned Linkage, Visibility;
434   if (ParseOptionalLinkage(Linkage, HasLinkage) ||
435       ParseOptionalVisibility(Visibility))
436     return true;
437
438   if (HasLinkage || Lex.getKind() != lltok::kw_alias)
439     return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
440   return ParseAlias(Name, NameLoc, Visibility);
441 }
442
443 /// ParseNamedGlobal:
444 ///   GlobalVar '=' OptionalVisibility ALIAS ...
445 ///   GlobalVar '=' OptionalLinkage OptionalVisibility ...   -> global variable
446 bool LLParser::ParseNamedGlobal() {
447   assert(Lex.getKind() == lltok::GlobalVar);
448   LocTy NameLoc = Lex.getLoc();
449   std::string Name = Lex.getStrVal();
450   Lex.Lex();
451
452   bool HasLinkage;
453   unsigned Linkage, Visibility;
454   if (ParseToken(lltok::equal, "expected '=' in global variable") ||
455       ParseOptionalLinkage(Linkage, HasLinkage) ||
456       ParseOptionalVisibility(Visibility))
457     return true;
458
459   if (HasLinkage || Lex.getKind() != lltok::kw_alias)
460     return ParseGlobal(Name, NameLoc, Linkage, HasLinkage, Visibility);
461   return ParseAlias(Name, NameLoc, Visibility);
462 }
463
464 // MDString:
465 //   ::= '!' STRINGCONSTANT
466 bool LLParser::ParseMDString(MDString *&Result) {
467   std::string Str;
468   if (ParseStringConstant(Str)) return true;
469   Result = MDString::get(Context, Str);
470   return false;
471 }
472
473 // MDNode:
474 //   ::= '!' MDNodeNumber
475 bool LLParser::ParseMDNodeID(MDNode *&Result) {
476   // !{ ..., !42, ... }
477   unsigned MID = 0;
478   if (ParseUInt32(MID)) return true;
479
480   // Check existing MDNode.
481   if (MID < NumberedMetadata.size() && NumberedMetadata[MID] != 0) {
482     Result = NumberedMetadata[MID];
483     return false;
484   }
485
486   // Create MDNode forward reference.
487
488   // FIXME: This is not unique enough!
489   std::string FwdRefName = "llvm.mdnode.fwdref." + utostr(MID);
490   Value *V = MDString::get(Context, FwdRefName);
491   MDNode *FwdNode = MDNode::get(Context, &V, 1);
492   ForwardRefMDNodes[MID] = std::make_pair(FwdNode, Lex.getLoc());
493   
494   if (NumberedMetadata.size() <= MID)
495     NumberedMetadata.resize(MID+1);
496   NumberedMetadata[MID] = FwdNode;
497   Result = FwdNode;
498   return false;
499 }
500
501 /// ParseNamedMetadata:
502 ///   !foo = !{ !1, !2 }
503 bool LLParser::ParseNamedMetadata() {
504   assert(Lex.getKind() == lltok::MetadataVar);
505   std::string Name = Lex.getStrVal();
506   Lex.Lex();
507
508   if (ParseToken(lltok::equal, "expected '=' here") ||
509       ParseToken(lltok::exclaim, "Expected '!' here") ||
510       ParseToken(lltok::lbrace, "Expected '{' here"))
511     return true;
512
513   SmallVector<MetadataBase *, 8> Elts;
514   do {
515     if (ParseToken(lltok::exclaim, "Expected '!' here"))
516       return true;
517     
518     // FIXME: This rejects MDStrings.  Are they legal in an named MDNode or not?
519     MDNode *N = 0;
520     if (ParseMDNodeID(N)) return true;
521     Elts.push_back(N);
522   } while (EatIfPresent(lltok::comma));
523
524   if (ParseToken(lltok::rbrace, "expected end of metadata node"))
525     return true;
526
527   NamedMDNode::Create(Context, Name, Elts.data(), Elts.size(), M);
528   return false;
529 }
530
531 /// ParseStandaloneMetadata:
532 ///   !42 = !{...}
533 bool LLParser::ParseStandaloneMetadata() {
534   assert(Lex.getKind() == lltok::exclaim);
535   Lex.Lex();
536   unsigned MetadataID = 0;
537
538   LocTy TyLoc;
539   PATypeHolder Ty(Type::getVoidTy(Context));
540   SmallVector<Value *, 16> Elts;
541   // FIXME: This doesn't make sense here.  Pull braced MD stuff parsing out!
542   if (ParseUInt32(MetadataID) ||
543       ParseToken(lltok::equal, "expected '=' here") ||
544       ParseType(Ty, TyLoc) ||
545       ParseToken(lltok::exclaim, "Expected '!' here") ||
546       ParseToken(lltok::lbrace, "Expected '{' here") ||
547       ParseMDNodeVector(Elts) ||
548       ParseToken(lltok::rbrace, "expected end of metadata node"))
549     return true;
550
551   MDNode *Init = MDNode::get(Context, Elts.data(), Elts.size());
552   
553   // See if this was forward referenced, if so, handle it.
554   std::map<unsigned, std::pair<TrackingVH<MDNode>, LocTy> >::iterator
555     FI = ForwardRefMDNodes.find(MetadataID);
556   if (FI != ForwardRefMDNodes.end()) {
557     FI->second.first->replaceAllUsesWith(Init);
558     ForwardRefMDNodes.erase(FI);
559     
560     assert(NumberedMetadata[MetadataID] == Init && "Tracking VH didn't work");
561   } else {
562     if (MetadataID >= NumberedMetadata.size())
563       NumberedMetadata.resize(MetadataID+1);
564
565     if (NumberedMetadata[MetadataID] != 0)
566       return TokError("Metadata id is already used");
567     NumberedMetadata[MetadataID] = Init;
568   }
569
570   return false;
571 }
572
573 /// ParseAlias:
574 ///   ::= GlobalVar '=' OptionalVisibility 'alias' OptionalLinkage Aliasee
575 /// Aliasee
576 ///   ::= TypeAndValue
577 ///   ::= 'bitcast' '(' TypeAndValue 'to' Type ')'
578 ///   ::= 'getelementptr' 'inbounds'? '(' ... ')'
579 ///
580 /// Everything through visibility has already been parsed.
581 ///
582 bool LLParser::ParseAlias(const std::string &Name, LocTy NameLoc,
583                           unsigned Visibility) {
584   assert(Lex.getKind() == lltok::kw_alias);
585   Lex.Lex();
586   unsigned Linkage;
587   LocTy LinkageLoc = Lex.getLoc();
588   if (ParseOptionalLinkage(Linkage))
589     return true;
590
591   if (Linkage != GlobalValue::ExternalLinkage &&
592       Linkage != GlobalValue::WeakAnyLinkage &&
593       Linkage != GlobalValue::WeakODRLinkage &&
594       Linkage != GlobalValue::InternalLinkage &&
595       Linkage != GlobalValue::PrivateLinkage &&
596       Linkage != GlobalValue::LinkerPrivateLinkage)
597     return Error(LinkageLoc, "invalid linkage type for alias");
598
599   Constant *Aliasee;
600   LocTy AliaseeLoc = Lex.getLoc();
601   if (Lex.getKind() != lltok::kw_bitcast &&
602       Lex.getKind() != lltok::kw_getelementptr) {
603     if (ParseGlobalTypeAndValue(Aliasee)) return true;
604   } else {
605     // The bitcast dest type is not present, it is implied by the dest type.
606     ValID ID;
607     if (ParseValID(ID)) return true;
608     if (ID.Kind != ValID::t_Constant)
609       return Error(AliaseeLoc, "invalid aliasee");
610     Aliasee = ID.ConstantVal;
611   }
612
613   if (!isa<PointerType>(Aliasee->getType()))
614     return Error(AliaseeLoc, "alias must have pointer type");
615
616   // Okay, create the alias but do not insert it into the module yet.
617   GlobalAlias* GA = new GlobalAlias(Aliasee->getType(),
618                                     (GlobalValue::LinkageTypes)Linkage, Name,
619                                     Aliasee);
620   GA->setVisibility((GlobalValue::VisibilityTypes)Visibility);
621
622   // See if this value already exists in the symbol table.  If so, it is either
623   // a redefinition or a definition of a forward reference.
624   if (GlobalValue *Val = M->getNamedValue(Name)) {
625     // See if this was a redefinition.  If so, there is no entry in
626     // ForwardRefVals.
627     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
628       I = ForwardRefVals.find(Name);
629     if (I == ForwardRefVals.end())
630       return Error(NameLoc, "redefinition of global named '@" + Name + "'");
631
632     // Otherwise, this was a definition of forward ref.  Verify that types
633     // agree.
634     if (Val->getType() != GA->getType())
635       return Error(NameLoc,
636               "forward reference and definition of alias have different types");
637
638     // If they agree, just RAUW the old value with the alias and remove the
639     // forward ref info.
640     Val->replaceAllUsesWith(GA);
641     Val->eraseFromParent();
642     ForwardRefVals.erase(I);
643   }
644
645   // Insert into the module, we know its name won't collide now.
646   M->getAliasList().push_back(GA);
647   assert(GA->getNameStr() == Name && "Should not be a name conflict!");
648
649   return false;
650 }
651
652 /// ParseGlobal
653 ///   ::= GlobalVar '=' OptionalLinkage OptionalVisibility OptionalThreadLocal
654 ///       OptionalAddrSpace GlobalType Type Const
655 ///   ::= OptionalLinkage OptionalVisibility OptionalThreadLocal
656 ///       OptionalAddrSpace GlobalType Type Const
657 ///
658 /// Everything through visibility has been parsed already.
659 ///
660 bool LLParser::ParseGlobal(const std::string &Name, LocTy NameLoc,
661                            unsigned Linkage, bool HasLinkage,
662                            unsigned Visibility) {
663   unsigned AddrSpace;
664   bool ThreadLocal, IsConstant;
665   LocTy TyLoc;
666
667   PATypeHolder Ty(Type::getVoidTy(Context));
668   if (ParseOptionalToken(lltok::kw_thread_local, ThreadLocal) ||
669       ParseOptionalAddrSpace(AddrSpace) ||
670       ParseGlobalType(IsConstant) ||
671       ParseType(Ty, TyLoc))
672     return true;
673
674   // If the linkage is specified and is external, then no initializer is
675   // present.
676   Constant *Init = 0;
677   if (!HasLinkage || (Linkage != GlobalValue::DLLImportLinkage &&
678                       Linkage != GlobalValue::ExternalWeakLinkage &&
679                       Linkage != GlobalValue::ExternalLinkage)) {
680     if (ParseGlobalValue(Ty, Init))
681       return true;
682   }
683
684   if (isa<FunctionType>(Ty) || Ty->isLabelTy())
685     return Error(TyLoc, "invalid type for global variable");
686
687   GlobalVariable *GV = 0;
688
689   // See if the global was forward referenced, if so, use the global.
690   if (!Name.empty()) {
691     if (GlobalValue *GVal = M->getNamedValue(Name)) {
692       if (!ForwardRefVals.erase(Name) || !isa<GlobalValue>(GVal))
693         return Error(NameLoc, "redefinition of global '@" + Name + "'");
694       GV = cast<GlobalVariable>(GVal);
695     }
696   } else {
697     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
698       I = ForwardRefValIDs.find(NumberedVals.size());
699     if (I != ForwardRefValIDs.end()) {
700       GV = cast<GlobalVariable>(I->second.first);
701       ForwardRefValIDs.erase(I);
702     }
703   }
704
705   if (GV == 0) {
706     GV = new GlobalVariable(*M, Ty, false, GlobalValue::ExternalLinkage, 0,
707                             Name, 0, false, AddrSpace);
708   } else {
709     if (GV->getType()->getElementType() != Ty)
710       return Error(TyLoc,
711             "forward reference and definition of global have different types");
712
713     // Move the forward-reference to the correct spot in the module.
714     M->getGlobalList().splice(M->global_end(), M->getGlobalList(), GV);
715   }
716
717   if (Name.empty())
718     NumberedVals.push_back(GV);
719
720   // Set the parsed properties on the global.
721   if (Init)
722     GV->setInitializer(Init);
723   GV->setConstant(IsConstant);
724   GV->setLinkage((GlobalValue::LinkageTypes)Linkage);
725   GV->setVisibility((GlobalValue::VisibilityTypes)Visibility);
726   GV->setThreadLocal(ThreadLocal);
727
728   // Parse attributes on the global.
729   while (Lex.getKind() == lltok::comma) {
730     Lex.Lex();
731
732     if (Lex.getKind() == lltok::kw_section) {
733       Lex.Lex();
734       GV->setSection(Lex.getStrVal());
735       if (ParseToken(lltok::StringConstant, "expected global section string"))
736         return true;
737     } else if (Lex.getKind() == lltok::kw_align) {
738       unsigned Alignment;
739       if (ParseOptionalAlignment(Alignment)) return true;
740       GV->setAlignment(Alignment);
741     } else {
742       TokError("unknown global variable property!");
743     }
744   }
745
746   return false;
747 }
748
749
750 //===----------------------------------------------------------------------===//
751 // GlobalValue Reference/Resolution Routines.
752 //===----------------------------------------------------------------------===//
753
754 /// GetGlobalVal - Get a value with the specified name or ID, creating a
755 /// forward reference record if needed.  This can return null if the value
756 /// exists but does not have the right type.
757 GlobalValue *LLParser::GetGlobalVal(const std::string &Name, const Type *Ty,
758                                     LocTy Loc) {
759   const PointerType *PTy = dyn_cast<PointerType>(Ty);
760   if (PTy == 0) {
761     Error(Loc, "global variable reference must have pointer type");
762     return 0;
763   }
764
765   // Look this name up in the normal function symbol table.
766   GlobalValue *Val =
767     cast_or_null<GlobalValue>(M->getValueSymbolTable().lookup(Name));
768
769   // If this is a forward reference for the value, see if we already created a
770   // forward ref record.
771   if (Val == 0) {
772     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator
773       I = ForwardRefVals.find(Name);
774     if (I != ForwardRefVals.end())
775       Val = I->second.first;
776   }
777
778   // If we have the value in the symbol table or fwd-ref table, return it.
779   if (Val) {
780     if (Val->getType() == Ty) return Val;
781     Error(Loc, "'@" + Name + "' defined with type '" +
782           Val->getType()->getDescription() + "'");
783     return 0;
784   }
785
786   // Otherwise, create a new forward reference for this value and remember it.
787   GlobalValue *FwdVal;
788   if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
789     // Function types can return opaque but functions can't.
790     if (isa<OpaqueType>(FT->getReturnType())) {
791       Error(Loc, "function may not return opaque type");
792       return 0;
793     }
794
795     FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, Name, M);
796   } else {
797     FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
798                                 GlobalValue::ExternalWeakLinkage, 0, Name);
799   }
800
801   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
802   return FwdVal;
803 }
804
805 GlobalValue *LLParser::GetGlobalVal(unsigned ID, const Type *Ty, LocTy Loc) {
806   const PointerType *PTy = dyn_cast<PointerType>(Ty);
807   if (PTy == 0) {
808     Error(Loc, "global variable reference must have pointer type");
809     return 0;
810   }
811
812   GlobalValue *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
813
814   // If this is a forward reference for the value, see if we already created a
815   // forward ref record.
816   if (Val == 0) {
817     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator
818       I = ForwardRefValIDs.find(ID);
819     if (I != ForwardRefValIDs.end())
820       Val = I->second.first;
821   }
822
823   // If we have the value in the symbol table or fwd-ref table, return it.
824   if (Val) {
825     if (Val->getType() == Ty) return Val;
826     Error(Loc, "'@" + utostr(ID) + "' defined with type '" +
827           Val->getType()->getDescription() + "'");
828     return 0;
829   }
830
831   // Otherwise, create a new forward reference for this value and remember it.
832   GlobalValue *FwdVal;
833   if (const FunctionType *FT = dyn_cast<FunctionType>(PTy->getElementType())) {
834     // Function types can return opaque but functions can't.
835     if (isa<OpaqueType>(FT->getReturnType())) {
836       Error(Loc, "function may not return opaque type");
837       return 0;
838     }
839     FwdVal = Function::Create(FT, GlobalValue::ExternalWeakLinkage, "", M);
840   } else {
841     FwdVal = new GlobalVariable(*M, PTy->getElementType(), false,
842                                 GlobalValue::ExternalWeakLinkage, 0, "");
843   }
844
845   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
846   return FwdVal;
847 }
848
849
850 //===----------------------------------------------------------------------===//
851 // Helper Routines.
852 //===----------------------------------------------------------------------===//
853
854 /// ParseToken - If the current token has the specified kind, eat it and return
855 /// success.  Otherwise, emit the specified error and return failure.
856 bool LLParser::ParseToken(lltok::Kind T, const char *ErrMsg) {
857   if (Lex.getKind() != T)
858     return TokError(ErrMsg);
859   Lex.Lex();
860   return false;
861 }
862
863 /// ParseStringConstant
864 ///   ::= StringConstant
865 bool LLParser::ParseStringConstant(std::string &Result) {
866   if (Lex.getKind() != lltok::StringConstant)
867     return TokError("expected string constant");
868   Result = Lex.getStrVal();
869   Lex.Lex();
870   return false;
871 }
872
873 /// ParseUInt32
874 ///   ::= uint32
875 bool LLParser::ParseUInt32(unsigned &Val) {
876   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned())
877     return TokError("expected integer");
878   uint64_t Val64 = Lex.getAPSIntVal().getLimitedValue(0xFFFFFFFFULL+1);
879   if (Val64 != unsigned(Val64))
880     return TokError("expected 32-bit integer (too large)");
881   Val = Val64;
882   Lex.Lex();
883   return false;
884 }
885
886
887 /// ParseOptionalAddrSpace
888 ///   := /*empty*/
889 ///   := 'addrspace' '(' uint32 ')'
890 bool LLParser::ParseOptionalAddrSpace(unsigned &AddrSpace) {
891   AddrSpace = 0;
892   if (!EatIfPresent(lltok::kw_addrspace))
893     return false;
894   return ParseToken(lltok::lparen, "expected '(' in address space") ||
895          ParseUInt32(AddrSpace) ||
896          ParseToken(lltok::rparen, "expected ')' in address space");
897 }
898
899 /// ParseOptionalAttrs - Parse a potentially empty attribute list.  AttrKind
900 /// indicates what kind of attribute list this is: 0: function arg, 1: result,
901 /// 2: function attr.
902 /// 3: function arg after value: FIXME: REMOVE IN LLVM 3.0
903 bool LLParser::ParseOptionalAttrs(unsigned &Attrs, unsigned AttrKind) {
904   Attrs = Attribute::None;
905   LocTy AttrLoc = Lex.getLoc();
906
907   while (1) {
908     switch (Lex.getKind()) {
909     case lltok::kw_sext:
910     case lltok::kw_zext:
911       // Treat these as signext/zeroext if they occur in the argument list after
912       // the value, as in "call i8 @foo(i8 10 sext)".  If they occur before the
913       // value, as in "call i8 @foo(i8 sext (" then it is part of a constant
914       // expr.
915       // FIXME: REMOVE THIS IN LLVM 3.0
916       if (AttrKind == 3) {
917         if (Lex.getKind() == lltok::kw_sext)
918           Attrs |= Attribute::SExt;
919         else
920           Attrs |= Attribute::ZExt;
921         break;
922       }
923       // FALL THROUGH.
924     default:  // End of attributes.
925       if (AttrKind != 2 && (Attrs & Attribute::FunctionOnly))
926         return Error(AttrLoc, "invalid use of function-only attribute");
927
928       if (AttrKind != 0 && AttrKind != 3 && (Attrs & Attribute::ParameterOnly))
929         return Error(AttrLoc, "invalid use of parameter-only attribute");
930
931       return false;
932     case lltok::kw_zeroext:         Attrs |= Attribute::ZExt; break;
933     case lltok::kw_signext:         Attrs |= Attribute::SExt; break;
934     case lltok::kw_inreg:           Attrs |= Attribute::InReg; break;
935     case lltok::kw_sret:            Attrs |= Attribute::StructRet; break;
936     case lltok::kw_noalias:         Attrs |= Attribute::NoAlias; break;
937     case lltok::kw_nocapture:       Attrs |= Attribute::NoCapture; break;
938     case lltok::kw_byval:           Attrs |= Attribute::ByVal; break;
939     case lltok::kw_nest:            Attrs |= Attribute::Nest; break;
940
941     case lltok::kw_noreturn:        Attrs |= Attribute::NoReturn; break;
942     case lltok::kw_nounwind:        Attrs |= Attribute::NoUnwind; break;
943     case lltok::kw_noinline:        Attrs |= Attribute::NoInline; break;
944     case lltok::kw_readnone:        Attrs |= Attribute::ReadNone; break;
945     case lltok::kw_readonly:        Attrs |= Attribute::ReadOnly; break;
946     case lltok::kw_inlinehint:      Attrs |= Attribute::InlineHint; break;
947     case lltok::kw_alwaysinline:    Attrs |= Attribute::AlwaysInline; break;
948     case lltok::kw_optsize:         Attrs |= Attribute::OptimizeForSize; break;
949     case lltok::kw_ssp:             Attrs |= Attribute::StackProtect; break;
950     case lltok::kw_sspreq:          Attrs |= Attribute::StackProtectReq; break;
951     case lltok::kw_noredzone:       Attrs |= Attribute::NoRedZone; break;
952     case lltok::kw_noimplicitfloat: Attrs |= Attribute::NoImplicitFloat; break;
953     case lltok::kw_naked:           Attrs |= Attribute::Naked; break;
954
955     case lltok::kw_align: {
956       unsigned Alignment;
957       if (ParseOptionalAlignment(Alignment))
958         return true;
959       Attrs |= Attribute::constructAlignmentFromInt(Alignment);
960       continue;
961     }
962     }
963     Lex.Lex();
964   }
965 }
966
967 /// ParseOptionalLinkage
968 ///   ::= /*empty*/
969 ///   ::= 'private'
970 ///   ::= 'linker_private'
971 ///   ::= 'internal'
972 ///   ::= 'weak'
973 ///   ::= 'weak_odr'
974 ///   ::= 'linkonce'
975 ///   ::= 'linkonce_odr'
976 ///   ::= 'appending'
977 ///   ::= 'dllexport'
978 ///   ::= 'common'
979 ///   ::= 'dllimport'
980 ///   ::= 'extern_weak'
981 ///   ::= 'external'
982 bool LLParser::ParseOptionalLinkage(unsigned &Res, bool &HasLinkage) {
983   HasLinkage = false;
984   switch (Lex.getKind()) {
985   default:                       Res=GlobalValue::ExternalLinkage; return false;
986   case lltok::kw_private:        Res = GlobalValue::PrivateLinkage;       break;
987   case lltok::kw_linker_private: Res = GlobalValue::LinkerPrivateLinkage; break;
988   case lltok::kw_internal:       Res = GlobalValue::InternalLinkage;      break;
989   case lltok::kw_weak:           Res = GlobalValue::WeakAnyLinkage;       break;
990   case lltok::kw_weak_odr:       Res = GlobalValue::WeakODRLinkage;       break;
991   case lltok::kw_linkonce:       Res = GlobalValue::LinkOnceAnyLinkage;   break;
992   case lltok::kw_linkonce_odr:   Res = GlobalValue::LinkOnceODRLinkage;   break;
993   case lltok::kw_available_externally:
994     Res = GlobalValue::AvailableExternallyLinkage;
995     break;
996   case lltok::kw_appending:      Res = GlobalValue::AppendingLinkage;     break;
997   case lltok::kw_dllexport:      Res = GlobalValue::DLLExportLinkage;     break;
998   case lltok::kw_common:         Res = GlobalValue::CommonLinkage;        break;
999   case lltok::kw_dllimport:      Res = GlobalValue::DLLImportLinkage;     break;
1000   case lltok::kw_extern_weak:    Res = GlobalValue::ExternalWeakLinkage;  break;
1001   case lltok::kw_external:       Res = GlobalValue::ExternalLinkage;      break;
1002   }
1003   Lex.Lex();
1004   HasLinkage = true;
1005   return false;
1006 }
1007
1008 /// ParseOptionalVisibility
1009 ///   ::= /*empty*/
1010 ///   ::= 'default'
1011 ///   ::= 'hidden'
1012 ///   ::= 'protected'
1013 ///
1014 bool LLParser::ParseOptionalVisibility(unsigned &Res) {
1015   switch (Lex.getKind()) {
1016   default:                  Res = GlobalValue::DefaultVisibility; return false;
1017   case lltok::kw_default:   Res = GlobalValue::DefaultVisibility; break;
1018   case lltok::kw_hidden:    Res = GlobalValue::HiddenVisibility; break;
1019   case lltok::kw_protected: Res = GlobalValue::ProtectedVisibility; break;
1020   }
1021   Lex.Lex();
1022   return false;
1023 }
1024
1025 /// ParseOptionalCallingConv
1026 ///   ::= /*empty*/
1027 ///   ::= 'ccc'
1028 ///   ::= 'fastcc'
1029 ///   ::= 'coldcc'
1030 ///   ::= 'x86_stdcallcc'
1031 ///   ::= 'x86_fastcallcc'
1032 ///   ::= 'arm_apcscc'
1033 ///   ::= 'arm_aapcscc'
1034 ///   ::= 'arm_aapcs_vfpcc'
1035 ///   ::= 'msp430_intrcc'
1036 ///   ::= 'cc' UINT
1037 ///
1038 bool LLParser::ParseOptionalCallingConv(CallingConv::ID &CC) {
1039   switch (Lex.getKind()) {
1040   default:                       CC = CallingConv::C; return false;
1041   case lltok::kw_ccc:            CC = CallingConv::C; break;
1042   case lltok::kw_fastcc:         CC = CallingConv::Fast; break;
1043   case lltok::kw_coldcc:         CC = CallingConv::Cold; break;
1044   case lltok::kw_x86_stdcallcc:  CC = CallingConv::X86_StdCall; break;
1045   case lltok::kw_x86_fastcallcc: CC = CallingConv::X86_FastCall; break;
1046   case lltok::kw_arm_apcscc:     CC = CallingConv::ARM_APCS; break;
1047   case lltok::kw_arm_aapcscc:    CC = CallingConv::ARM_AAPCS; break;
1048   case lltok::kw_arm_aapcs_vfpcc:CC = CallingConv::ARM_AAPCS_VFP; break;
1049   case lltok::kw_msp430_intrcc:  CC = CallingConv::MSP430_INTR; break;
1050   case lltok::kw_cc: {
1051       unsigned ArbitraryCC;
1052       Lex.Lex();
1053       if (ParseUInt32(ArbitraryCC)) {
1054         return true;
1055       } else
1056         CC = static_cast<CallingConv::ID>(ArbitraryCC);
1057         return false;
1058     }
1059     break;
1060   }
1061
1062   Lex.Lex();
1063   return false;
1064 }
1065
1066 /// ParseOptionalCustomMetadata
1067 ///   ::= /* empty */
1068 ///   ::= !dbg !42 (',' !dbg !57)*
1069 bool LLParser::ParseOptionalCustomMetadata() {
1070   if (Lex.getKind() != lltok::MetadataVar)
1071     return false;
1072
1073   while (1) {
1074     std::string Name = Lex.getStrVal();
1075     Lex.Lex();
1076
1077     MDNode *Node;
1078     if (ParseToken(lltok::exclaim, "expected '!' here") ||
1079         ParseMDNodeID(Node))
1080       return true;
1081
1082     unsigned MDK = M->getMDKindID(Name.c_str());
1083     MDsOnInst.push_back(std::make_pair(MDK, Node));
1084
1085     // If this is the end of the list, we're done.
1086     if (!EatIfPresent(lltok::comma))
1087       return false;
1088
1089     // The next value must be a custom metadata id.
1090     if (Lex.getKind() != lltok::MetadataVar)
1091       return TokError("expected more custom metadata ids");
1092   }
1093 }
1094
1095 /// ParseOptionalAlignment
1096 ///   ::= /* empty */
1097 ///   ::= 'align' 4
1098 bool LLParser::ParseOptionalAlignment(unsigned &Alignment) {
1099   Alignment = 0;
1100   if (!EatIfPresent(lltok::kw_align))
1101     return false;
1102   LocTy AlignLoc = Lex.getLoc();
1103   if (ParseUInt32(Alignment)) return true;
1104   if (!isPowerOf2_32(Alignment))
1105     return Error(AlignLoc, "alignment is not a power of two");
1106   return false;
1107 }
1108
1109 /// ParseOptionalInfo
1110 ///   ::= OptionalInfo (',' OptionalInfo)+
1111 bool LLParser::ParseOptionalInfo(unsigned &Alignment) {
1112
1113   // FIXME: Handle customized metadata info attached with an instruction.
1114   do {
1115     if (Lex.getKind() == lltok::MetadataVar) {
1116       if (ParseOptionalCustomMetadata()) return true;
1117     } else if (Lex.getKind() == lltok::kw_align) {
1118       if (ParseOptionalAlignment(Alignment)) return true;
1119     } else
1120       return true;
1121   } while (EatIfPresent(lltok::comma));
1122
1123   return false;
1124 }
1125
1126
1127 /// ParseIndexList
1128 ///    ::=  (',' uint32)+
1129 bool LLParser::ParseIndexList(SmallVectorImpl<unsigned> &Indices) {
1130   if (Lex.getKind() != lltok::comma)
1131     return TokError("expected ',' as start of index list");
1132
1133   while (EatIfPresent(lltok::comma)) {
1134     // FIXME: TERRIBLE HACK.  Loses comma state.
1135     if (Lex.getKind() == lltok::MetadataVar)
1136       break;
1137     unsigned Idx;
1138     if (ParseUInt32(Idx)) return true;
1139     Indices.push_back(Idx);
1140   }
1141
1142   return false;
1143 }
1144
1145 //===----------------------------------------------------------------------===//
1146 // Type Parsing.
1147 //===----------------------------------------------------------------------===//
1148
1149 /// ParseType - Parse and resolve a full type.
1150 bool LLParser::ParseType(PATypeHolder &Result, bool AllowVoid) {
1151   LocTy TypeLoc = Lex.getLoc();
1152   if (ParseTypeRec(Result)) return true;
1153
1154   // Verify no unresolved uprefs.
1155   if (!UpRefs.empty())
1156     return Error(UpRefs.back().Loc, "invalid unresolved type up reference");
1157
1158   if (!AllowVoid && Result.get()->isVoidTy())
1159     return Error(TypeLoc, "void type only allowed for function results");
1160
1161   return false;
1162 }
1163
1164 /// HandleUpRefs - Every time we finish a new layer of types, this function is
1165 /// called.  It loops through the UpRefs vector, which is a list of the
1166 /// currently active types.  For each type, if the up-reference is contained in
1167 /// the newly completed type, we decrement the level count.  When the level
1168 /// count reaches zero, the up-referenced type is the type that is passed in:
1169 /// thus we can complete the cycle.
1170 ///
1171 PATypeHolder LLParser::HandleUpRefs(const Type *ty) {
1172   // If Ty isn't abstract, or if there are no up-references in it, then there is
1173   // nothing to resolve here.
1174   if (!ty->isAbstract() || UpRefs.empty()) return ty;
1175
1176   PATypeHolder Ty(ty);
1177 #if 0
1178   dbgs() << "Type '" << Ty->getDescription()
1179          << "' newly formed.  Resolving upreferences.\n"
1180          << UpRefs.size() << " upreferences active!\n";
1181 #endif
1182
1183   // If we find any resolvable upreferences (i.e., those whose NestingLevel goes
1184   // to zero), we resolve them all together before we resolve them to Ty.  At
1185   // the end of the loop, if there is anything to resolve to Ty, it will be in
1186   // this variable.
1187   OpaqueType *TypeToResolve = 0;
1188
1189   for (unsigned i = 0; i != UpRefs.size(); ++i) {
1190     // Determine if 'Ty' directly contains this up-references 'LastContainedTy'.
1191     bool ContainsType =
1192       std::find(Ty->subtype_begin(), Ty->subtype_end(),
1193                 UpRefs[i].LastContainedTy) != Ty->subtype_end();
1194
1195 #if 0
1196     dbgs() << "  UR#" << i << " - TypeContains(" << Ty->getDescription() << ", "
1197            << UpRefs[i].LastContainedTy->getDescription() << ") = "
1198            << (ContainsType ? "true" : "false")
1199            << " level=" << UpRefs[i].NestingLevel << "\n";
1200 #endif
1201     if (!ContainsType)
1202       continue;
1203
1204     // Decrement level of upreference
1205     unsigned Level = --UpRefs[i].NestingLevel;
1206     UpRefs[i].LastContainedTy = Ty;
1207
1208     // If the Up-reference has a non-zero level, it shouldn't be resolved yet.
1209     if (Level != 0)
1210       continue;
1211
1212 #if 0
1213     dbgs() << "  * Resolving upreference for " << UpRefs[i].UpRefTy << "\n";
1214 #endif
1215     if (!TypeToResolve)
1216       TypeToResolve = UpRefs[i].UpRefTy;
1217     else
1218       UpRefs[i].UpRefTy->refineAbstractTypeTo(TypeToResolve);
1219     UpRefs.erase(UpRefs.begin()+i);     // Remove from upreference list.
1220     --i;                                // Do not skip the next element.
1221   }
1222
1223   if (TypeToResolve)
1224     TypeToResolve->refineAbstractTypeTo(Ty);
1225
1226   return Ty;
1227 }
1228
1229
1230 /// ParseTypeRec - The recursive function used to process the internal
1231 /// implementation details of types.
1232 bool LLParser::ParseTypeRec(PATypeHolder &Result) {
1233   switch (Lex.getKind()) {
1234   default:
1235     return TokError("expected type");
1236   case lltok::Type:
1237     // TypeRec ::= 'float' | 'void' (etc)
1238     Result = Lex.getTyVal();
1239     Lex.Lex();
1240     break;
1241   case lltok::kw_opaque:
1242     // TypeRec ::= 'opaque'
1243     Result = OpaqueType::get(Context);
1244     Lex.Lex();
1245     break;
1246   case lltok::lbrace:
1247     // TypeRec ::= '{' ... '}'
1248     if (ParseStructType(Result, false))
1249       return true;
1250     break;
1251   case lltok::lsquare:
1252     // TypeRec ::= '[' ... ']'
1253     Lex.Lex(); // eat the lsquare.
1254     if (ParseArrayVectorType(Result, false))
1255       return true;
1256     break;
1257   case lltok::less: // Either vector or packed struct.
1258     // TypeRec ::= '<' ... '>'
1259     Lex.Lex();
1260     if (Lex.getKind() == lltok::lbrace) {
1261       if (ParseStructType(Result, true) ||
1262           ParseToken(lltok::greater, "expected '>' at end of packed struct"))
1263         return true;
1264     } else if (ParseArrayVectorType(Result, true))
1265       return true;
1266     break;
1267   case lltok::LocalVar:
1268   case lltok::StringConstant:  // FIXME: REMOVE IN LLVM 3.0
1269     // TypeRec ::= %foo
1270     if (const Type *T = M->getTypeByName(Lex.getStrVal())) {
1271       Result = T;
1272     } else {
1273       Result = OpaqueType::get(Context);
1274       ForwardRefTypes.insert(std::make_pair(Lex.getStrVal(),
1275                                             std::make_pair(Result,
1276                                                            Lex.getLoc())));
1277       M->addTypeName(Lex.getStrVal(), Result.get());
1278     }
1279     Lex.Lex();
1280     break;
1281
1282   case lltok::LocalVarID:
1283     // TypeRec ::= %4
1284     if (Lex.getUIntVal() < NumberedTypes.size())
1285       Result = NumberedTypes[Lex.getUIntVal()];
1286     else {
1287       std::map<unsigned, std::pair<PATypeHolder, LocTy> >::iterator
1288         I = ForwardRefTypeIDs.find(Lex.getUIntVal());
1289       if (I != ForwardRefTypeIDs.end())
1290         Result = I->second.first;
1291       else {
1292         Result = OpaqueType::get(Context);
1293         ForwardRefTypeIDs.insert(std::make_pair(Lex.getUIntVal(),
1294                                                 std::make_pair(Result,
1295                                                                Lex.getLoc())));
1296       }
1297     }
1298     Lex.Lex();
1299     break;
1300   case lltok::backslash: {
1301     // TypeRec ::= '\' 4
1302     Lex.Lex();
1303     unsigned Val;
1304     if (ParseUInt32(Val)) return true;
1305     OpaqueType *OT = OpaqueType::get(Context); //Use temporary placeholder.
1306     UpRefs.push_back(UpRefRecord(Lex.getLoc(), Val, OT));
1307     Result = OT;
1308     break;
1309   }
1310   }
1311
1312   // Parse the type suffixes.
1313   while (1) {
1314     switch (Lex.getKind()) {
1315     // End of type.
1316     default: return false;
1317
1318     // TypeRec ::= TypeRec '*'
1319     case lltok::star:
1320       if (Result.get()->isLabelTy())
1321         return TokError("basic block pointers are invalid");
1322       if (Result.get()->isVoidTy())
1323         return TokError("pointers to void are invalid; use i8* instead");
1324       if (!PointerType::isValidElementType(Result.get()))
1325         return TokError("pointer to this type is invalid");
1326       Result = HandleUpRefs(PointerType::getUnqual(Result.get()));
1327       Lex.Lex();
1328       break;
1329
1330     // TypeRec ::= TypeRec 'addrspace' '(' uint32 ')' '*'
1331     case lltok::kw_addrspace: {
1332       if (Result.get()->isLabelTy())
1333         return TokError("basic block pointers are invalid");
1334       if (Result.get()->isVoidTy())
1335         return TokError("pointers to void are invalid; use i8* instead");
1336       if (!PointerType::isValidElementType(Result.get()))
1337         return TokError("pointer to this type is invalid");
1338       unsigned AddrSpace;
1339       if (ParseOptionalAddrSpace(AddrSpace) ||
1340           ParseToken(lltok::star, "expected '*' in address space"))
1341         return true;
1342
1343       Result = HandleUpRefs(PointerType::get(Result.get(), AddrSpace));
1344       break;
1345     }
1346
1347     /// Types '(' ArgTypeListI ')' OptFuncAttrs
1348     case lltok::lparen:
1349       if (ParseFunctionType(Result))
1350         return true;
1351       break;
1352     }
1353   }
1354 }
1355
1356 /// ParseParameterList
1357 ///    ::= '(' ')'
1358 ///    ::= '(' Arg (',' Arg)* ')'
1359 ///  Arg
1360 ///    ::= Type OptionalAttributes Value OptionalAttributes
1361 bool LLParser::ParseParameterList(SmallVectorImpl<ParamInfo> &ArgList,
1362                                   PerFunctionState &PFS) {
1363   if (ParseToken(lltok::lparen, "expected '(' in call"))
1364     return true;
1365
1366   while (Lex.getKind() != lltok::rparen) {
1367     // If this isn't the first argument, we need a comma.
1368     if (!ArgList.empty() &&
1369         ParseToken(lltok::comma, "expected ',' in argument list"))
1370       return true;
1371
1372     // Parse the argument.
1373     LocTy ArgLoc;
1374     PATypeHolder ArgTy(Type::getVoidTy(Context));
1375     unsigned ArgAttrs1 = Attribute::None;
1376     unsigned ArgAttrs2 = Attribute::None;
1377     Value *V;
1378     if (ParseType(ArgTy, ArgLoc))
1379       return true;
1380
1381     // Otherwise, handle normal operands.
1382     if (ParseOptionalAttrs(ArgAttrs1, 0) ||
1383         ParseValue(ArgTy, V, PFS) ||
1384         // FIXME: Should not allow attributes after the argument, remove this
1385         // in LLVM 3.0.
1386         ParseOptionalAttrs(ArgAttrs2, 3))
1387       return true;
1388     ArgList.push_back(ParamInfo(ArgLoc, V, ArgAttrs1|ArgAttrs2));
1389   }
1390
1391   Lex.Lex();  // Lex the ')'.
1392   return false;
1393 }
1394
1395
1396
1397 /// ParseArgumentList - Parse the argument list for a function type or function
1398 /// prototype.  If 'inType' is true then we are parsing a FunctionType.
1399 ///   ::= '(' ArgTypeListI ')'
1400 /// ArgTypeListI
1401 ///   ::= /*empty*/
1402 ///   ::= '...'
1403 ///   ::= ArgTypeList ',' '...'
1404 ///   ::= ArgType (',' ArgType)*
1405 ///
1406 bool LLParser::ParseArgumentList(std::vector<ArgInfo> &ArgList,
1407                                  bool &isVarArg, bool inType) {
1408   isVarArg = false;
1409   assert(Lex.getKind() == lltok::lparen);
1410   Lex.Lex(); // eat the (.
1411
1412   if (Lex.getKind() == lltok::rparen) {
1413     // empty
1414   } else if (Lex.getKind() == lltok::dotdotdot) {
1415     isVarArg = true;
1416     Lex.Lex();
1417   } else {
1418     LocTy TypeLoc = Lex.getLoc();
1419     PATypeHolder ArgTy(Type::getVoidTy(Context));
1420     unsigned Attrs;
1421     std::string Name;
1422
1423     // If we're parsing a type, use ParseTypeRec, because we allow recursive
1424     // types (such as a function returning a pointer to itself).  If parsing a
1425     // function prototype, we require fully resolved types.
1426     if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
1427         ParseOptionalAttrs(Attrs, 0)) return true;
1428
1429     if (ArgTy->isVoidTy())
1430       return Error(TypeLoc, "argument can not have void type");
1431
1432     if (Lex.getKind() == lltok::LocalVar ||
1433         Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1434       Name = Lex.getStrVal();
1435       Lex.Lex();
1436     }
1437
1438     if (!FunctionType::isValidArgumentType(ArgTy))
1439       return Error(TypeLoc, "invalid type for function argument");
1440
1441     ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1442
1443     while (EatIfPresent(lltok::comma)) {
1444       // Handle ... at end of arg list.
1445       if (EatIfPresent(lltok::dotdotdot)) {
1446         isVarArg = true;
1447         break;
1448       }
1449
1450       // Otherwise must be an argument type.
1451       TypeLoc = Lex.getLoc();
1452       if ((inType ? ParseTypeRec(ArgTy) : ParseType(ArgTy)) ||
1453           ParseOptionalAttrs(Attrs, 0)) return true;
1454
1455       if (ArgTy->isVoidTy())
1456         return Error(TypeLoc, "argument can not have void type");
1457
1458       if (Lex.getKind() == lltok::LocalVar ||
1459           Lex.getKind() == lltok::StringConstant) { // FIXME: REMOVE IN LLVM 3.0
1460         Name = Lex.getStrVal();
1461         Lex.Lex();
1462       } else {
1463         Name = "";
1464       }
1465
1466       if (!ArgTy->isFirstClassType() && !isa<OpaqueType>(ArgTy))
1467         return Error(TypeLoc, "invalid type for function argument");
1468
1469       ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1470     }
1471   }
1472
1473   return ParseToken(lltok::rparen, "expected ')' at end of argument list");
1474 }
1475
1476 /// ParseFunctionType
1477 ///  ::= Type ArgumentList OptionalAttrs
1478 bool LLParser::ParseFunctionType(PATypeHolder &Result) {
1479   assert(Lex.getKind() == lltok::lparen);
1480
1481   if (!FunctionType::isValidReturnType(Result))
1482     return TokError("invalid function return type");
1483
1484   std::vector<ArgInfo> ArgList;
1485   bool isVarArg;
1486   unsigned Attrs;
1487   if (ParseArgumentList(ArgList, isVarArg, true) ||
1488       // FIXME: Allow, but ignore attributes on function types!
1489       // FIXME: Remove in LLVM 3.0
1490       ParseOptionalAttrs(Attrs, 2))
1491     return true;
1492
1493   // Reject names on the arguments lists.
1494   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
1495     if (!ArgList[i].Name.empty())
1496       return Error(ArgList[i].Loc, "argument name invalid in function type");
1497     if (!ArgList[i].Attrs != 0) {
1498       // Allow but ignore attributes on function types; this permits
1499       // auto-upgrade.
1500       // FIXME: REJECT ATTRIBUTES ON FUNCTION TYPES in LLVM 3.0
1501     }
1502   }
1503
1504   std::vector<const Type*> ArgListTy;
1505   for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
1506     ArgListTy.push_back(ArgList[i].Type);
1507
1508   Result = HandleUpRefs(FunctionType::get(Result.get(),
1509                                                 ArgListTy, isVarArg));
1510   return false;
1511 }
1512
1513 /// ParseStructType: Handles packed and unpacked types.  </> parsed elsewhere.
1514 ///   TypeRec
1515 ///     ::= '{' '}'
1516 ///     ::= '{' TypeRec (',' TypeRec)* '}'
1517 ///     ::= '<' '{' '}' '>'
1518 ///     ::= '<' '{' TypeRec (',' TypeRec)* '}' '>'
1519 bool LLParser::ParseStructType(PATypeHolder &Result, bool Packed) {
1520   assert(Lex.getKind() == lltok::lbrace);
1521   Lex.Lex(); // Consume the '{'
1522
1523   if (EatIfPresent(lltok::rbrace)) {
1524     Result = StructType::get(Context, Packed);
1525     return false;
1526   }
1527
1528   std::vector<PATypeHolder> ParamsList;
1529   LocTy EltTyLoc = Lex.getLoc();
1530   if (ParseTypeRec(Result)) return true;
1531   ParamsList.push_back(Result);
1532
1533   if (Result->isVoidTy())
1534     return Error(EltTyLoc, "struct element can not have void type");
1535   if (!StructType::isValidElementType(Result))
1536     return Error(EltTyLoc, "invalid element type for struct");
1537
1538   while (EatIfPresent(lltok::comma)) {
1539     EltTyLoc = Lex.getLoc();
1540     if (ParseTypeRec(Result)) return true;
1541
1542     if (Result->isVoidTy())
1543       return Error(EltTyLoc, "struct element can not have void type");
1544     if (!StructType::isValidElementType(Result))
1545       return Error(EltTyLoc, "invalid element type for struct");
1546
1547     ParamsList.push_back(Result);
1548   }
1549
1550   if (ParseToken(lltok::rbrace, "expected '}' at end of struct"))
1551     return true;
1552
1553   std::vector<const Type*> ParamsListTy;
1554   for (unsigned i = 0, e = ParamsList.size(); i != e; ++i)
1555     ParamsListTy.push_back(ParamsList[i].get());
1556   Result = HandleUpRefs(StructType::get(Context, ParamsListTy, Packed));
1557   return false;
1558 }
1559
1560 /// ParseArrayVectorType - Parse an array or vector type, assuming the first
1561 /// token has already been consumed.
1562 ///   TypeRec
1563 ///     ::= '[' APSINTVAL 'x' Types ']'
1564 ///     ::= '<' APSINTVAL 'x' Types '>'
1565 bool LLParser::ParseArrayVectorType(PATypeHolder &Result, bool isVector) {
1566   if (Lex.getKind() != lltok::APSInt || Lex.getAPSIntVal().isSigned() ||
1567       Lex.getAPSIntVal().getBitWidth() > 64)
1568     return TokError("expected number in address space");
1569
1570   LocTy SizeLoc = Lex.getLoc();
1571   uint64_t Size = Lex.getAPSIntVal().getZExtValue();
1572   Lex.Lex();
1573
1574   if (ParseToken(lltok::kw_x, "expected 'x' after element count"))
1575       return true;
1576
1577   LocTy TypeLoc = Lex.getLoc();
1578   PATypeHolder EltTy(Type::getVoidTy(Context));
1579   if (ParseTypeRec(EltTy)) return true;
1580
1581   if (EltTy->isVoidTy())
1582     return Error(TypeLoc, "array and vector element type cannot be void");
1583
1584   if (ParseToken(isVector ? lltok::greater : lltok::rsquare,
1585                  "expected end of sequential type"))
1586     return true;
1587
1588   if (isVector) {
1589     if (Size == 0)
1590       return Error(SizeLoc, "zero element vector is illegal");
1591     if ((unsigned)Size != Size)
1592       return Error(SizeLoc, "size too large for vector");
1593     if (!VectorType::isValidElementType(EltTy))
1594       return Error(TypeLoc, "vector element type must be fp or integer");
1595     Result = VectorType::get(EltTy, unsigned(Size));
1596   } else {
1597     if (!ArrayType::isValidElementType(EltTy))
1598       return Error(TypeLoc, "invalid array element type");
1599     Result = HandleUpRefs(ArrayType::get(EltTy, Size));
1600   }
1601   return false;
1602 }
1603
1604 //===----------------------------------------------------------------------===//
1605 // Function Semantic Analysis.
1606 //===----------------------------------------------------------------------===//
1607
1608 LLParser::PerFunctionState::PerFunctionState(LLParser &p, Function &f,
1609                                              int functionNumber)
1610   : P(p), F(f), FunctionNumber(functionNumber) {
1611
1612   // Insert unnamed arguments into the NumberedVals list.
1613   for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end();
1614        AI != E; ++AI)
1615     if (!AI->hasName())
1616       NumberedVals.push_back(AI);
1617 }
1618
1619 LLParser::PerFunctionState::~PerFunctionState() {
1620   // If there were any forward referenced non-basicblock values, delete them.
1621   for (std::map<std::string, std::pair<Value*, LocTy> >::iterator
1622        I = ForwardRefVals.begin(), E = ForwardRefVals.end(); I != E; ++I)
1623     if (!isa<BasicBlock>(I->second.first)) {
1624       I->second.first->replaceAllUsesWith(
1625                            UndefValue::get(I->second.first->getType()));
1626       delete I->second.first;
1627       I->second.first = 0;
1628     }
1629
1630   for (std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1631        I = ForwardRefValIDs.begin(), E = ForwardRefValIDs.end(); I != E; ++I)
1632     if (!isa<BasicBlock>(I->second.first)) {
1633       I->second.first->replaceAllUsesWith(
1634                            UndefValue::get(I->second.first->getType()));
1635       delete I->second.first;
1636       I->second.first = 0;
1637     }
1638 }
1639
1640 bool LLParser::PerFunctionState::FinishFunction() {
1641   // Check to see if someone took the address of labels in this block.
1642   if (!P.ForwardRefBlockAddresses.empty()) {
1643     ValID FunctionID;
1644     if (!F.getName().empty()) {
1645       FunctionID.Kind = ValID::t_GlobalName;
1646       FunctionID.StrVal = F.getName();
1647     } else {
1648       FunctionID.Kind = ValID::t_GlobalID;
1649       FunctionID.UIntVal = FunctionNumber;
1650     }
1651   
1652     std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >::iterator
1653       FRBAI = P.ForwardRefBlockAddresses.find(FunctionID);
1654     if (FRBAI != P.ForwardRefBlockAddresses.end()) {
1655       // Resolve all these references.
1656       if (P.ResolveForwardRefBlockAddresses(&F, FRBAI->second, this))
1657         return true;
1658       
1659       P.ForwardRefBlockAddresses.erase(FRBAI);
1660     }
1661   }
1662   
1663   if (!ForwardRefVals.empty())
1664     return P.Error(ForwardRefVals.begin()->second.second,
1665                    "use of undefined value '%" + ForwardRefVals.begin()->first +
1666                    "'");
1667   if (!ForwardRefValIDs.empty())
1668     return P.Error(ForwardRefValIDs.begin()->second.second,
1669                    "use of undefined value '%" +
1670                    utostr(ForwardRefValIDs.begin()->first) + "'");
1671   return false;
1672 }
1673
1674
1675 /// GetVal - Get a value with the specified name or ID, creating a
1676 /// forward reference record if needed.  This can return null if the value
1677 /// exists but does not have the right type.
1678 Value *LLParser::PerFunctionState::GetVal(const std::string &Name,
1679                                           const Type *Ty, LocTy Loc) {
1680   // Look this name up in the normal function symbol table.
1681   Value *Val = F.getValueSymbolTable().lookup(Name);
1682
1683   // If this is a forward reference for the value, see if we already created a
1684   // forward ref record.
1685   if (Val == 0) {
1686     std::map<std::string, std::pair<Value*, LocTy> >::iterator
1687       I = ForwardRefVals.find(Name);
1688     if (I != ForwardRefVals.end())
1689       Val = I->second.first;
1690   }
1691
1692   // If we have the value in the symbol table or fwd-ref table, return it.
1693   if (Val) {
1694     if (Val->getType() == Ty) return Val;
1695     if (Ty->isLabelTy())
1696       P.Error(Loc, "'%" + Name + "' is not a basic block");
1697     else
1698       P.Error(Loc, "'%" + Name + "' defined with type '" +
1699               Val->getType()->getDescription() + "'");
1700     return 0;
1701   }
1702
1703   // Don't make placeholders with invalid type.
1704   if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1705       Ty != Type::getLabelTy(F.getContext())) {
1706     P.Error(Loc, "invalid use of a non-first-class type");
1707     return 0;
1708   }
1709
1710   // Otherwise, create a new forward reference for this value and remember it.
1711   Value *FwdVal;
1712   if (Ty->isLabelTy())
1713     FwdVal = BasicBlock::Create(F.getContext(), Name, &F);
1714   else
1715     FwdVal = new Argument(Ty, Name);
1716
1717   ForwardRefVals[Name] = std::make_pair(FwdVal, Loc);
1718   return FwdVal;
1719 }
1720
1721 Value *LLParser::PerFunctionState::GetVal(unsigned ID, const Type *Ty,
1722                                           LocTy Loc) {
1723   // Look this name up in the normal function symbol table.
1724   Value *Val = ID < NumberedVals.size() ? NumberedVals[ID] : 0;
1725
1726   // If this is a forward reference for the value, see if we already created a
1727   // forward ref record.
1728   if (Val == 0) {
1729     std::map<unsigned, std::pair<Value*, LocTy> >::iterator
1730       I = ForwardRefValIDs.find(ID);
1731     if (I != ForwardRefValIDs.end())
1732       Val = I->second.first;
1733   }
1734
1735   // If we have the value in the symbol table or fwd-ref table, return it.
1736   if (Val) {
1737     if (Val->getType() == Ty) return Val;
1738     if (Ty->isLabelTy())
1739       P.Error(Loc, "'%" + utostr(ID) + "' is not a basic block");
1740     else
1741       P.Error(Loc, "'%" + utostr(ID) + "' defined with type '" +
1742               Val->getType()->getDescription() + "'");
1743     return 0;
1744   }
1745
1746   if (!Ty->isFirstClassType() && !isa<OpaqueType>(Ty) &&
1747       Ty != Type::getLabelTy(F.getContext())) {
1748     P.Error(Loc, "invalid use of a non-first-class type");
1749     return 0;
1750   }
1751
1752   // Otherwise, create a new forward reference for this value and remember it.
1753   Value *FwdVal;
1754   if (Ty->isLabelTy())
1755     FwdVal = BasicBlock::Create(F.getContext(), "", &F);
1756   else
1757     FwdVal = new Argument(Ty);
1758
1759   ForwardRefValIDs[ID] = std::make_pair(FwdVal, Loc);
1760   return FwdVal;
1761 }
1762
1763 /// SetInstName - After an instruction is parsed and inserted into its
1764 /// basic block, this installs its name.
1765 bool LLParser::PerFunctionState::SetInstName(int NameID,
1766                                              const std::string &NameStr,
1767                                              LocTy NameLoc, Instruction *Inst) {
1768   // If this instruction has void type, it cannot have a name or ID specified.
1769   if (Inst->getType()->isVoidTy()) {
1770     if (NameID != -1 || !NameStr.empty())
1771       return P.Error(NameLoc, "instructions returning void cannot have a name");
1772     return false;
1773   }
1774
1775   // If this was a numbered instruction, verify that the instruction is the
1776   // expected value and resolve any forward references.
1777   if (NameStr.empty()) {
1778     // If neither a name nor an ID was specified, just use the next ID.
1779     if (NameID == -1)
1780       NameID = NumberedVals.size();
1781
1782     if (unsigned(NameID) != NumberedVals.size())
1783       return P.Error(NameLoc, "instruction expected to be numbered '%" +
1784                      utostr(NumberedVals.size()) + "'");
1785
1786     std::map<unsigned, std::pair<Value*, LocTy> >::iterator FI =
1787       ForwardRefValIDs.find(NameID);
1788     if (FI != ForwardRefValIDs.end()) {
1789       if (FI->second.first->getType() != Inst->getType())
1790         return P.Error(NameLoc, "instruction forward referenced with type '" +
1791                        FI->second.first->getType()->getDescription() + "'");
1792       FI->second.first->replaceAllUsesWith(Inst);
1793       delete FI->second.first;
1794       ForwardRefValIDs.erase(FI);
1795     }
1796
1797     NumberedVals.push_back(Inst);
1798     return false;
1799   }
1800
1801   // Otherwise, the instruction had a name.  Resolve forward refs and set it.
1802   std::map<std::string, std::pair<Value*, LocTy> >::iterator
1803     FI = ForwardRefVals.find(NameStr);
1804   if (FI != ForwardRefVals.end()) {
1805     if (FI->second.first->getType() != Inst->getType())
1806       return P.Error(NameLoc, "instruction forward referenced with type '" +
1807                      FI->second.first->getType()->getDescription() + "'");
1808     FI->second.first->replaceAllUsesWith(Inst);
1809     delete FI->second.first;
1810     ForwardRefVals.erase(FI);
1811   }
1812
1813   // Set the name on the instruction.
1814   Inst->setName(NameStr);
1815
1816   if (Inst->getNameStr() != NameStr)
1817     return P.Error(NameLoc, "multiple definition of local value named '" +
1818                    NameStr + "'");
1819   return false;
1820 }
1821
1822 /// GetBB - Get a basic block with the specified name or ID, creating a
1823 /// forward reference record if needed.
1824 BasicBlock *LLParser::PerFunctionState::GetBB(const std::string &Name,
1825                                               LocTy Loc) {
1826   return cast_or_null<BasicBlock>(GetVal(Name,
1827                                         Type::getLabelTy(F.getContext()), Loc));
1828 }
1829
1830 BasicBlock *LLParser::PerFunctionState::GetBB(unsigned ID, LocTy Loc) {
1831   return cast_or_null<BasicBlock>(GetVal(ID,
1832                                         Type::getLabelTy(F.getContext()), Loc));
1833 }
1834
1835 /// DefineBB - Define the specified basic block, which is either named or
1836 /// unnamed.  If there is an error, this returns null otherwise it returns
1837 /// the block being defined.
1838 BasicBlock *LLParser::PerFunctionState::DefineBB(const std::string &Name,
1839                                                  LocTy Loc) {
1840   BasicBlock *BB;
1841   if (Name.empty())
1842     BB = GetBB(NumberedVals.size(), Loc);
1843   else
1844     BB = GetBB(Name, Loc);
1845   if (BB == 0) return 0; // Already diagnosed error.
1846
1847   // Move the block to the end of the function.  Forward ref'd blocks are
1848   // inserted wherever they happen to be referenced.
1849   F.getBasicBlockList().splice(F.end(), F.getBasicBlockList(), BB);
1850
1851   // Remove the block from forward ref sets.
1852   if (Name.empty()) {
1853     ForwardRefValIDs.erase(NumberedVals.size());
1854     NumberedVals.push_back(BB);
1855   } else {
1856     // BB forward references are already in the function symbol table.
1857     ForwardRefVals.erase(Name);
1858   }
1859
1860   return BB;
1861 }
1862
1863 //===----------------------------------------------------------------------===//
1864 // Constants.
1865 //===----------------------------------------------------------------------===//
1866
1867 /// ParseValID - Parse an abstract value that doesn't necessarily have a
1868 /// type implied.  For example, if we parse "4" we don't know what integer type
1869 /// it has.  The value will later be combined with its type and checked for
1870 /// sanity.
1871 bool LLParser::ParseValID(ValID &ID) {
1872   ID.Loc = Lex.getLoc();
1873   switch (Lex.getKind()) {
1874   default: return TokError("expected value token");
1875   case lltok::GlobalID:  // @42
1876     ID.UIntVal = Lex.getUIntVal();
1877     ID.Kind = ValID::t_GlobalID;
1878     break;
1879   case lltok::GlobalVar:  // @foo
1880     ID.StrVal = Lex.getStrVal();
1881     ID.Kind = ValID::t_GlobalName;
1882     break;
1883   case lltok::LocalVarID:  // %42
1884     ID.UIntVal = Lex.getUIntVal();
1885     ID.Kind = ValID::t_LocalID;
1886     break;
1887   case lltok::LocalVar:  // %foo
1888   case lltok::StringConstant:  // "foo" - FIXME: REMOVE IN LLVM 3.0
1889     ID.StrVal = Lex.getStrVal();
1890     ID.Kind = ValID::t_LocalName;
1891     break;
1892   case lltok::exclaim:   // !{...} MDNode, !"foo" MDString
1893     Lex.Lex();
1894     
1895     // FIXME: This doesn't belong here.
1896     if (EatIfPresent(lltok::lbrace)) {
1897       SmallVector<Value*, 16> Elts;
1898       if (ParseMDNodeVector(Elts) ||
1899           ParseToken(lltok::rbrace, "expected end of metadata node"))
1900         return true;
1901
1902       ID.MDNodeVal = MDNode::get(Context, Elts.data(), Elts.size());
1903       ID.Kind = ValID::t_MDNode;
1904       return false;
1905     }
1906
1907     // Standalone metadata reference
1908     // !{ ..., !42, ... }
1909     if (Lex.getKind() == lltok::APSInt) {
1910       if (ParseMDNodeID(ID.MDNodeVal)) return true;
1911       ID.Kind = ValID::t_MDNode;
1912       return false;
1913     }
1914     
1915     // MDString:
1916     //   ::= '!' STRINGCONSTANT
1917     if (ParseMDString(ID.MDStringVal)) return true;
1918     ID.Kind = ValID::t_MDString;
1919     return false;
1920   case lltok::APSInt:
1921     ID.APSIntVal = Lex.getAPSIntVal();
1922     ID.Kind = ValID::t_APSInt;
1923     break;
1924   case lltok::APFloat:
1925     ID.APFloatVal = Lex.getAPFloatVal();
1926     ID.Kind = ValID::t_APFloat;
1927     break;
1928   case lltok::kw_true:
1929     ID.ConstantVal = ConstantInt::getTrue(Context);
1930     ID.Kind = ValID::t_Constant;
1931     break;
1932   case lltok::kw_false:
1933     ID.ConstantVal = ConstantInt::getFalse(Context);
1934     ID.Kind = ValID::t_Constant;
1935     break;
1936   case lltok::kw_null: ID.Kind = ValID::t_Null; break;
1937   case lltok::kw_undef: ID.Kind = ValID::t_Undef; break;
1938   case lltok::kw_zeroinitializer: ID.Kind = ValID::t_Zero; break;
1939
1940   case lltok::lbrace: {
1941     // ValID ::= '{' ConstVector '}'
1942     Lex.Lex();
1943     SmallVector<Constant*, 16> Elts;
1944     if (ParseGlobalValueVector(Elts) ||
1945         ParseToken(lltok::rbrace, "expected end of struct constant"))
1946       return true;
1947
1948     ID.ConstantVal = ConstantStruct::get(Context, Elts.data(),
1949                                          Elts.size(), false);
1950     ID.Kind = ValID::t_Constant;
1951     return false;
1952   }
1953   case lltok::less: {
1954     // ValID ::= '<' ConstVector '>'         --> Vector.
1955     // ValID ::= '<' '{' ConstVector '}' '>' --> Packed Struct.
1956     Lex.Lex();
1957     bool isPackedStruct = EatIfPresent(lltok::lbrace);
1958
1959     SmallVector<Constant*, 16> Elts;
1960     LocTy FirstEltLoc = Lex.getLoc();
1961     if (ParseGlobalValueVector(Elts) ||
1962         (isPackedStruct &&
1963          ParseToken(lltok::rbrace, "expected end of packed struct")) ||
1964         ParseToken(lltok::greater, "expected end of constant"))
1965       return true;
1966
1967     if (isPackedStruct) {
1968       ID.ConstantVal =
1969         ConstantStruct::get(Context, Elts.data(), Elts.size(), true);
1970       ID.Kind = ValID::t_Constant;
1971       return false;
1972     }
1973
1974     if (Elts.empty())
1975       return Error(ID.Loc, "constant vector must not be empty");
1976
1977     if (!Elts[0]->getType()->isInteger() &&
1978         !Elts[0]->getType()->isFloatingPoint())
1979       return Error(FirstEltLoc,
1980                    "vector elements must have integer or floating point type");
1981
1982     // Verify that all the vector elements have the same type.
1983     for (unsigned i = 1, e = Elts.size(); i != e; ++i)
1984       if (Elts[i]->getType() != Elts[0]->getType())
1985         return Error(FirstEltLoc,
1986                      "vector element #" + utostr(i) +
1987                     " is not of type '" + Elts[0]->getType()->getDescription());
1988
1989     ID.ConstantVal = ConstantVector::get(Elts.data(), Elts.size());
1990     ID.Kind = ValID::t_Constant;
1991     return false;
1992   }
1993   case lltok::lsquare: {   // Array Constant
1994     Lex.Lex();
1995     SmallVector<Constant*, 16> Elts;
1996     LocTy FirstEltLoc = Lex.getLoc();
1997     if (ParseGlobalValueVector(Elts) ||
1998         ParseToken(lltok::rsquare, "expected end of array constant"))
1999       return true;
2000
2001     // Handle empty element.
2002     if (Elts.empty()) {
2003       // Use undef instead of an array because it's inconvenient to determine
2004       // the element type at this point, there being no elements to examine.
2005       ID.Kind = ValID::t_EmptyArray;
2006       return false;
2007     }
2008
2009     if (!Elts[0]->getType()->isFirstClassType())
2010       return Error(FirstEltLoc, "invalid array element type: " +
2011                    Elts[0]->getType()->getDescription());
2012
2013     ArrayType *ATy = ArrayType::get(Elts[0]->getType(), Elts.size());
2014
2015     // Verify all elements are correct type!
2016     for (unsigned i = 0, e = Elts.size(); i != e; ++i) {
2017       if (Elts[i]->getType() != Elts[0]->getType())
2018         return Error(FirstEltLoc,
2019                      "array element #" + utostr(i) +
2020                      " is not of type '" +Elts[0]->getType()->getDescription());
2021     }
2022
2023     ID.ConstantVal = ConstantArray::get(ATy, Elts.data(), Elts.size());
2024     ID.Kind = ValID::t_Constant;
2025     return false;
2026   }
2027   case lltok::kw_c:  // c "foo"
2028     Lex.Lex();
2029     ID.ConstantVal = ConstantArray::get(Context, Lex.getStrVal(), false);
2030     if (ParseToken(lltok::StringConstant, "expected string")) return true;
2031     ID.Kind = ValID::t_Constant;
2032     return false;
2033
2034   case lltok::kw_asm: {
2035     // ValID ::= 'asm' SideEffect? AlignStack? STRINGCONSTANT ',' STRINGCONSTANT
2036     bool HasSideEffect, AlignStack;
2037     Lex.Lex();
2038     if (ParseOptionalToken(lltok::kw_sideeffect, HasSideEffect) ||
2039         ParseOptionalToken(lltok::kw_alignstack, AlignStack) ||
2040         ParseStringConstant(ID.StrVal) ||
2041         ParseToken(lltok::comma, "expected comma in inline asm expression") ||
2042         ParseToken(lltok::StringConstant, "expected constraint string"))
2043       return true;
2044     ID.StrVal2 = Lex.getStrVal();
2045     ID.UIntVal = unsigned(HasSideEffect) | (unsigned(AlignStack)<<1);
2046     ID.Kind = ValID::t_InlineAsm;
2047     return false;
2048   }
2049
2050   case lltok::kw_blockaddress: {
2051     // ValID ::= 'blockaddress' '(' @foo ',' %bar ')'
2052     Lex.Lex();
2053
2054     ValID Fn, Label;
2055     LocTy FnLoc, LabelLoc;
2056     
2057     if (ParseToken(lltok::lparen, "expected '(' in block address expression") ||
2058         ParseValID(Fn) ||
2059         ParseToken(lltok::comma, "expected comma in block address expression")||
2060         ParseValID(Label) ||
2061         ParseToken(lltok::rparen, "expected ')' in block address expression"))
2062       return true;
2063     
2064     if (Fn.Kind != ValID::t_GlobalID && Fn.Kind != ValID::t_GlobalName)
2065       return Error(Fn.Loc, "expected function name in blockaddress");
2066     if (Label.Kind != ValID::t_LocalID && Label.Kind != ValID::t_LocalName)
2067       return Error(Label.Loc, "expected basic block name in blockaddress");
2068     
2069     // Make a global variable as a placeholder for this reference.
2070     GlobalVariable *FwdRef = new GlobalVariable(*M, Type::getInt8Ty(Context),
2071                                            false, GlobalValue::InternalLinkage,
2072                                                 0, "");
2073     ForwardRefBlockAddresses[Fn].push_back(std::make_pair(Label, FwdRef));
2074     ID.ConstantVal = FwdRef;
2075     ID.Kind = ValID::t_Constant;
2076     return false;
2077   }
2078       
2079   case lltok::kw_trunc:
2080   case lltok::kw_zext:
2081   case lltok::kw_sext:
2082   case lltok::kw_fptrunc:
2083   case lltok::kw_fpext:
2084   case lltok::kw_bitcast:
2085   case lltok::kw_uitofp:
2086   case lltok::kw_sitofp:
2087   case lltok::kw_fptoui:
2088   case lltok::kw_fptosi:
2089   case lltok::kw_inttoptr:
2090   case lltok::kw_ptrtoint: {
2091     unsigned Opc = Lex.getUIntVal();
2092     PATypeHolder DestTy(Type::getVoidTy(Context));
2093     Constant *SrcVal;
2094     Lex.Lex();
2095     if (ParseToken(lltok::lparen, "expected '(' after constantexpr cast") ||
2096         ParseGlobalTypeAndValue(SrcVal) ||
2097         ParseToken(lltok::kw_to, "expected 'to' in constantexpr cast") ||
2098         ParseType(DestTy) ||
2099         ParseToken(lltok::rparen, "expected ')' at end of constantexpr cast"))
2100       return true;
2101     if (!CastInst::castIsValid((Instruction::CastOps)Opc, SrcVal, DestTy))
2102       return Error(ID.Loc, "invalid cast opcode for cast from '" +
2103                    SrcVal->getType()->getDescription() + "' to '" +
2104                    DestTy->getDescription() + "'");
2105     ID.ConstantVal = ConstantExpr::getCast((Instruction::CastOps)Opc,
2106                                                  SrcVal, DestTy);
2107     ID.Kind = ValID::t_Constant;
2108     return false;
2109   }
2110   case lltok::kw_extractvalue: {
2111     Lex.Lex();
2112     Constant *Val;
2113     SmallVector<unsigned, 4> Indices;
2114     if (ParseToken(lltok::lparen, "expected '(' in extractvalue constantexpr")||
2115         ParseGlobalTypeAndValue(Val) ||
2116         ParseIndexList(Indices) ||
2117         ParseToken(lltok::rparen, "expected ')' in extractvalue constantexpr"))
2118       return true;
2119     // FIXME: THIS ISN'T RIGHT?  WHERE IS THE COMMA?
2120     if (Lex.getKind() == lltok::MetadataVar)
2121       if (ParseOptionalCustomMetadata()) return true;
2122
2123     if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
2124       return Error(ID.Loc, "extractvalue operand must be array or struct");
2125     if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
2126                                           Indices.end()))
2127       return Error(ID.Loc, "invalid indices for extractvalue");
2128     ID.ConstantVal =
2129       ConstantExpr::getExtractValue(Val, Indices.data(), Indices.size());
2130     ID.Kind = ValID::t_Constant;
2131     return false;
2132   }
2133   case lltok::kw_insertvalue: {
2134     Lex.Lex();
2135     Constant *Val0, *Val1;
2136     SmallVector<unsigned, 4> Indices;
2137     if (ParseToken(lltok::lparen, "expected '(' in insertvalue constantexpr")||
2138         ParseGlobalTypeAndValue(Val0) ||
2139         ParseToken(lltok::comma, "expected comma in insertvalue constantexpr")||
2140         ParseGlobalTypeAndValue(Val1) ||
2141         ParseIndexList(Indices) ||
2142         ParseToken(lltok::rparen, "expected ')' in insertvalue constantexpr"))
2143       return true;
2144     if (Lex.getKind() == lltok::MetadataVar)
2145       if (ParseOptionalCustomMetadata()) return true;
2146     if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
2147       return Error(ID.Loc, "extractvalue operand must be array or struct");
2148     if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
2149                                           Indices.end()))
2150       return Error(ID.Loc, "invalid indices for insertvalue");
2151     ID.ConstantVal = ConstantExpr::getInsertValue(Val0, Val1,
2152                        Indices.data(), Indices.size());
2153     ID.Kind = ValID::t_Constant;
2154     return false;
2155   }
2156   case lltok::kw_icmp:
2157   case lltok::kw_fcmp: {
2158     unsigned PredVal, Opc = Lex.getUIntVal();
2159     Constant *Val0, *Val1;
2160     Lex.Lex();
2161     if (ParseCmpPredicate(PredVal, Opc) ||
2162         ParseToken(lltok::lparen, "expected '(' in compare constantexpr") ||
2163         ParseGlobalTypeAndValue(Val0) ||
2164         ParseToken(lltok::comma, "expected comma in compare constantexpr") ||
2165         ParseGlobalTypeAndValue(Val1) ||
2166         ParseToken(lltok::rparen, "expected ')' in compare constantexpr"))
2167       return true;
2168
2169     if (Val0->getType() != Val1->getType())
2170       return Error(ID.Loc, "compare operands must have the same type");
2171
2172     CmpInst::Predicate Pred = (CmpInst::Predicate)PredVal;
2173
2174     if (Opc == Instruction::FCmp) {
2175       if (!Val0->getType()->isFPOrFPVector())
2176         return Error(ID.Loc, "fcmp requires floating point operands");
2177       ID.ConstantVal = ConstantExpr::getFCmp(Pred, Val0, Val1);
2178     } else {
2179       assert(Opc == Instruction::ICmp && "Unexpected opcode for CmpInst!");
2180       if (!Val0->getType()->isIntOrIntVector() &&
2181           !isa<PointerType>(Val0->getType()))
2182         return Error(ID.Loc, "icmp requires pointer or integer operands");
2183       ID.ConstantVal = ConstantExpr::getICmp(Pred, Val0, Val1);
2184     }
2185     ID.Kind = ValID::t_Constant;
2186     return false;
2187   }
2188
2189   // Binary Operators.
2190   case lltok::kw_add:
2191   case lltok::kw_fadd:
2192   case lltok::kw_sub:
2193   case lltok::kw_fsub:
2194   case lltok::kw_mul:
2195   case lltok::kw_fmul:
2196   case lltok::kw_udiv:
2197   case lltok::kw_sdiv:
2198   case lltok::kw_fdiv:
2199   case lltok::kw_urem:
2200   case lltok::kw_srem:
2201   case lltok::kw_frem: {
2202     bool NUW = false;
2203     bool NSW = false;
2204     bool Exact = false;
2205     unsigned Opc = Lex.getUIntVal();
2206     Constant *Val0, *Val1;
2207     Lex.Lex();
2208     LocTy ModifierLoc = Lex.getLoc();
2209     if (Opc == Instruction::Add ||
2210         Opc == Instruction::Sub ||
2211         Opc == Instruction::Mul) {
2212       if (EatIfPresent(lltok::kw_nuw))
2213         NUW = true;
2214       if (EatIfPresent(lltok::kw_nsw)) {
2215         NSW = true;
2216         if (EatIfPresent(lltok::kw_nuw))
2217           NUW = true;
2218       }
2219     } else if (Opc == Instruction::SDiv) {
2220       if (EatIfPresent(lltok::kw_exact))
2221         Exact = true;
2222     }
2223     if (ParseToken(lltok::lparen, "expected '(' in binary constantexpr") ||
2224         ParseGlobalTypeAndValue(Val0) ||
2225         ParseToken(lltok::comma, "expected comma in binary constantexpr") ||
2226         ParseGlobalTypeAndValue(Val1) ||
2227         ParseToken(lltok::rparen, "expected ')' in binary constantexpr"))
2228       return true;
2229     if (Val0->getType() != Val1->getType())
2230       return Error(ID.Loc, "operands of constexpr must have same type");
2231     if (!Val0->getType()->isIntOrIntVector()) {
2232       if (NUW)
2233         return Error(ModifierLoc, "nuw only applies to integer operations");
2234       if (NSW)
2235         return Error(ModifierLoc, "nsw only applies to integer operations");
2236     }
2237     // API compatibility: Accept either integer or floating-point types with
2238     // add, sub, and mul.
2239     if (!Val0->getType()->isIntOrIntVector() &&
2240         !Val0->getType()->isFPOrFPVector())
2241       return Error(ID.Loc,"constexpr requires integer, fp, or vector operands");
2242     unsigned Flags = 0;
2243     if (NUW)   Flags |= OverflowingBinaryOperator::NoUnsignedWrap;
2244     if (NSW)   Flags |= OverflowingBinaryOperator::NoSignedWrap;
2245     if (Exact) Flags |= SDivOperator::IsExact;
2246     Constant *C = ConstantExpr::get(Opc, Val0, Val1, Flags);
2247     ID.ConstantVal = C;
2248     ID.Kind = ValID::t_Constant;
2249     return false;
2250   }
2251
2252   // Logical Operations
2253   case lltok::kw_shl:
2254   case lltok::kw_lshr:
2255   case lltok::kw_ashr:
2256   case lltok::kw_and:
2257   case lltok::kw_or:
2258   case lltok::kw_xor: {
2259     unsigned Opc = Lex.getUIntVal();
2260     Constant *Val0, *Val1;
2261     Lex.Lex();
2262     if (ParseToken(lltok::lparen, "expected '(' in logical constantexpr") ||
2263         ParseGlobalTypeAndValue(Val0) ||
2264         ParseToken(lltok::comma, "expected comma in logical constantexpr") ||
2265         ParseGlobalTypeAndValue(Val1) ||
2266         ParseToken(lltok::rparen, "expected ')' in logical constantexpr"))
2267       return true;
2268     if (Val0->getType() != Val1->getType())
2269       return Error(ID.Loc, "operands of constexpr must have same type");
2270     if (!Val0->getType()->isIntOrIntVector())
2271       return Error(ID.Loc,
2272                    "constexpr requires integer or integer vector operands");
2273     ID.ConstantVal = ConstantExpr::get(Opc, Val0, Val1);
2274     ID.Kind = ValID::t_Constant;
2275     return false;
2276   }
2277
2278   case lltok::kw_getelementptr:
2279   case lltok::kw_shufflevector:
2280   case lltok::kw_insertelement:
2281   case lltok::kw_extractelement:
2282   case lltok::kw_select: {
2283     unsigned Opc = Lex.getUIntVal();
2284     SmallVector<Constant*, 16> Elts;
2285     bool InBounds = false;
2286     Lex.Lex();
2287     if (Opc == Instruction::GetElementPtr)
2288       InBounds = EatIfPresent(lltok::kw_inbounds);
2289     if (ParseToken(lltok::lparen, "expected '(' in constantexpr") ||
2290         ParseGlobalValueVector(Elts) ||
2291         ParseToken(lltok::rparen, "expected ')' in constantexpr"))
2292       return true;
2293
2294     if (Opc == Instruction::GetElementPtr) {
2295       if (Elts.size() == 0 || !isa<PointerType>(Elts[0]->getType()))
2296         return Error(ID.Loc, "getelementptr requires pointer operand");
2297
2298       if (!GetElementPtrInst::getIndexedType(Elts[0]->getType(),
2299                                              (Value**)(Elts.data() + 1),
2300                                              Elts.size() - 1))
2301         return Error(ID.Loc, "invalid indices for getelementptr");
2302       ID.ConstantVal = InBounds ?
2303         ConstantExpr::getInBoundsGetElementPtr(Elts[0],
2304                                                Elts.data() + 1,
2305                                                Elts.size() - 1) :
2306         ConstantExpr::getGetElementPtr(Elts[0],
2307                                        Elts.data() + 1, Elts.size() - 1);
2308     } else if (Opc == Instruction::Select) {
2309       if (Elts.size() != 3)
2310         return Error(ID.Loc, "expected three operands to select");
2311       if (const char *Reason = SelectInst::areInvalidOperands(Elts[0], Elts[1],
2312                                                               Elts[2]))
2313         return Error(ID.Loc, Reason);
2314       ID.ConstantVal = ConstantExpr::getSelect(Elts[0], Elts[1], Elts[2]);
2315     } else if (Opc == Instruction::ShuffleVector) {
2316       if (Elts.size() != 3)
2317         return Error(ID.Loc, "expected three operands to shufflevector");
2318       if (!ShuffleVectorInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2319         return Error(ID.Loc, "invalid operands to shufflevector");
2320       ID.ConstantVal =
2321                  ConstantExpr::getShuffleVector(Elts[0], Elts[1],Elts[2]);
2322     } else if (Opc == Instruction::ExtractElement) {
2323       if (Elts.size() != 2)
2324         return Error(ID.Loc, "expected two operands to extractelement");
2325       if (!ExtractElementInst::isValidOperands(Elts[0], Elts[1]))
2326         return Error(ID.Loc, "invalid extractelement operands");
2327       ID.ConstantVal = ConstantExpr::getExtractElement(Elts[0], Elts[1]);
2328     } else {
2329       assert(Opc == Instruction::InsertElement && "Unknown opcode");
2330       if (Elts.size() != 3)
2331       return Error(ID.Loc, "expected three operands to insertelement");
2332       if (!InsertElementInst::isValidOperands(Elts[0], Elts[1], Elts[2]))
2333         return Error(ID.Loc, "invalid insertelement operands");
2334       ID.ConstantVal =
2335                  ConstantExpr::getInsertElement(Elts[0], Elts[1],Elts[2]);
2336     }
2337
2338     ID.Kind = ValID::t_Constant;
2339     return false;
2340   }
2341   }
2342
2343   Lex.Lex();
2344   return false;
2345 }
2346
2347 /// ParseGlobalValue - Parse a global value with the specified type.
2348 bool LLParser::ParseGlobalValue(const Type *Ty, Constant *&V) {
2349   V = 0;
2350   ValID ID;
2351   return ParseValID(ID) ||
2352          ConvertGlobalValIDToValue(Ty, ID, V);
2353 }
2354
2355 /// ConvertGlobalValIDToValue - Apply a type to a ValID to get a fully resolved
2356 /// constant.
2357 bool LLParser::ConvertGlobalValIDToValue(const Type *Ty, ValID &ID,
2358                                          Constant *&V) {
2359   if (isa<FunctionType>(Ty))
2360     return Error(ID.Loc, "functions are not values, refer to them as pointers");
2361
2362   switch (ID.Kind) {
2363   default: llvm_unreachable("Unknown ValID!");
2364   case ValID::t_MDNode:
2365   case ValID::t_MDString:
2366     return Error(ID.Loc, "invalid use of metadata");
2367   case ValID::t_LocalID:
2368   case ValID::t_LocalName:
2369     return Error(ID.Loc, "invalid use of function-local name");
2370   case ValID::t_InlineAsm:
2371     return Error(ID.Loc, "inline asm can only be an operand of call/invoke");
2372   case ValID::t_GlobalName:
2373     V = GetGlobalVal(ID.StrVal, Ty, ID.Loc);
2374     return V == 0;
2375   case ValID::t_GlobalID:
2376     V = GetGlobalVal(ID.UIntVal, Ty, ID.Loc);
2377     return V == 0;
2378   case ValID::t_APSInt:
2379     if (!isa<IntegerType>(Ty))
2380       return Error(ID.Loc, "integer constant must have integer type");
2381     ID.APSIntVal.extOrTrunc(Ty->getPrimitiveSizeInBits());
2382     V = ConstantInt::get(Context, ID.APSIntVal);
2383     return false;
2384   case ValID::t_APFloat:
2385     if (!Ty->isFloatingPoint() ||
2386         !ConstantFP::isValueValidForType(Ty, ID.APFloatVal))
2387       return Error(ID.Loc, "floating point constant invalid for type");
2388
2389     // The lexer has no type info, so builds all float and double FP constants
2390     // as double.  Fix this here.  Long double does not need this.
2391     if (&ID.APFloatVal.getSemantics() == &APFloat::IEEEdouble &&
2392         Ty->isFloatTy()) {
2393       bool Ignored;
2394       ID.APFloatVal.convert(APFloat::IEEEsingle, APFloat::rmNearestTiesToEven,
2395                             &Ignored);
2396     }
2397     V = ConstantFP::get(Context, ID.APFloatVal);
2398
2399     if (V->getType() != Ty)
2400       return Error(ID.Loc, "floating point constant does not have type '" +
2401                    Ty->getDescription() + "'");
2402
2403     return false;
2404   case ValID::t_Null:
2405     if (!isa<PointerType>(Ty))
2406       return Error(ID.Loc, "null must be a pointer type");
2407     V = ConstantPointerNull::get(cast<PointerType>(Ty));
2408     return false;
2409   case ValID::t_Undef:
2410     // FIXME: LabelTy should not be a first-class type.
2411     if ((!Ty->isFirstClassType() || Ty->isLabelTy()) &&
2412         !isa<OpaqueType>(Ty))
2413       return Error(ID.Loc, "invalid type for undef constant");
2414     V = UndefValue::get(Ty);
2415     return false;
2416   case ValID::t_EmptyArray:
2417     if (!isa<ArrayType>(Ty) || cast<ArrayType>(Ty)->getNumElements() != 0)
2418       return Error(ID.Loc, "invalid empty array initializer");
2419     V = UndefValue::get(Ty);
2420     return false;
2421   case ValID::t_Zero:
2422     // FIXME: LabelTy should not be a first-class type.
2423     if (!Ty->isFirstClassType() || Ty->isLabelTy())
2424       return Error(ID.Loc, "invalid type for null constant");
2425     V = Constant::getNullValue(Ty);
2426     return false;
2427   case ValID::t_Constant:
2428     if (ID.ConstantVal->getType() != Ty)
2429       return Error(ID.Loc, "constant expression type mismatch");
2430     V = ID.ConstantVal;
2431     return false;
2432   }
2433 }
2434
2435 /// ConvertGlobalOrMetadataValIDToValue - Apply a type to a ValID to get a fully
2436 /// resolved constant or metadata value.
2437 bool LLParser::ConvertGlobalOrMetadataValIDToValue(const Type *Ty, ValID &ID,
2438                                                    Value *&V) {
2439   switch (ID.Kind) {
2440   case ValID::t_MDNode:
2441     if (!Ty->isMetadataTy())
2442       return Error(ID.Loc, "metadata value must have metadata type");
2443     V = ID.MDNodeVal;
2444     return false;
2445   case ValID::t_MDString:
2446     if (!Ty->isMetadataTy())
2447       return Error(ID.Loc, "metadata value must have metadata type");
2448     V = ID.MDStringVal;
2449     return false;
2450   default:
2451     Constant *C;
2452     if (ConvertGlobalValIDToValue(Ty, ID, C)) return true;
2453     V = C;
2454     return false;
2455   }
2456 }
2457   
2458
2459 bool LLParser::ParseGlobalTypeAndValue(Constant *&V) {
2460   PATypeHolder Type(Type::getVoidTy(Context));
2461   return ParseType(Type) ||
2462          ParseGlobalValue(Type, V);
2463 }
2464
2465 /// ParseGlobalValueVector
2466 ///   ::= /*empty*/
2467 ///   ::= TypeAndValue (',' TypeAndValue)*
2468 bool LLParser::ParseGlobalValueVector(SmallVectorImpl<Constant*> &Elts) {
2469   // Empty list.
2470   if (Lex.getKind() == lltok::rbrace ||
2471       Lex.getKind() == lltok::rsquare ||
2472       Lex.getKind() == lltok::greater ||
2473       Lex.getKind() == lltok::rparen)
2474     return false;
2475
2476   Constant *C;
2477   if (ParseGlobalTypeAndValue(C)) return true;
2478   Elts.push_back(C);
2479
2480   while (EatIfPresent(lltok::comma)) {
2481     if (ParseGlobalTypeAndValue(C)) return true;
2482     Elts.push_back(C);
2483   }
2484
2485   return false;
2486 }
2487
2488
2489 //===----------------------------------------------------------------------===//
2490 // Function Parsing.
2491 //===----------------------------------------------------------------------===//
2492
2493 bool LLParser::ConvertValIDToValue(const Type *Ty, ValID &ID, Value *&V,
2494                                    PerFunctionState &PFS) {
2495   switch (ID.Kind) {
2496   case ValID::t_LocalID: V = PFS.GetVal(ID.UIntVal, Ty, ID.Loc); break;
2497   case ValID::t_LocalName: V = PFS.GetVal(ID.StrVal, Ty, ID.Loc); break;
2498   case ValID::t_InlineAsm: {
2499     const PointerType *PTy = dyn_cast<PointerType>(Ty);
2500     const FunctionType *FTy = 
2501       PTy ? dyn_cast<FunctionType>(PTy->getElementType()) : 0;
2502     if (!FTy || !InlineAsm::Verify(FTy, ID.StrVal2))
2503       return Error(ID.Loc, "invalid type for inline asm constraint string");
2504     V = InlineAsm::get(FTy, ID.StrVal, ID.StrVal2, ID.UIntVal&1, ID.UIntVal>>1);
2505     return false;
2506   }
2507   default:
2508     return ConvertGlobalOrMetadataValIDToValue(Ty, ID, V);
2509   }
2510
2511   return V == 0;
2512 }
2513
2514 bool LLParser::ParseValue(const Type *Ty, Value *&V, PerFunctionState &PFS) {
2515   V = 0;
2516   ValID ID;
2517   return ParseValID(ID) ||
2518          ConvertValIDToValue(Ty, ID, V, PFS);
2519 }
2520
2521 bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState &PFS) {
2522   PATypeHolder T(Type::getVoidTy(Context));
2523   return ParseType(T) ||
2524          ParseValue(T, V, PFS);
2525 }
2526
2527 bool LLParser::ParseTypeAndBasicBlock(BasicBlock *&BB, LocTy &Loc,
2528                                       PerFunctionState &PFS) {
2529   Value *V;
2530   Loc = Lex.getLoc();
2531   if (ParseTypeAndValue(V, PFS)) return true;
2532   if (!isa<BasicBlock>(V))
2533     return Error(Loc, "expected a basic block");
2534   BB = cast<BasicBlock>(V);
2535   return false;
2536 }
2537
2538
2539 /// FunctionHeader
2540 ///   ::= OptionalLinkage OptionalVisibility OptionalCallingConv OptRetAttrs
2541 ///       Type GlobalName '(' ArgList ')' OptFuncAttrs OptSection
2542 ///       OptionalAlign OptGC
2543 bool LLParser::ParseFunctionHeader(Function *&Fn, bool isDefine) {
2544   // Parse the linkage.
2545   LocTy LinkageLoc = Lex.getLoc();
2546   unsigned Linkage;
2547
2548   unsigned Visibility, RetAttrs;
2549   CallingConv::ID CC;
2550   PATypeHolder RetType(Type::getVoidTy(Context));
2551   LocTy RetTypeLoc = Lex.getLoc();
2552   if (ParseOptionalLinkage(Linkage) ||
2553       ParseOptionalVisibility(Visibility) ||
2554       ParseOptionalCallingConv(CC) ||
2555       ParseOptionalAttrs(RetAttrs, 1) ||
2556       ParseType(RetType, RetTypeLoc, true /*void allowed*/))
2557     return true;
2558
2559   // Verify that the linkage is ok.
2560   switch ((GlobalValue::LinkageTypes)Linkage) {
2561   case GlobalValue::ExternalLinkage:
2562     break; // always ok.
2563   case GlobalValue::DLLImportLinkage:
2564   case GlobalValue::ExternalWeakLinkage:
2565     if (isDefine)
2566       return Error(LinkageLoc, "invalid linkage for function definition");
2567     break;
2568   case GlobalValue::PrivateLinkage:
2569   case GlobalValue::LinkerPrivateLinkage:
2570   case GlobalValue::InternalLinkage:
2571   case GlobalValue::AvailableExternallyLinkage:
2572   case GlobalValue::LinkOnceAnyLinkage:
2573   case GlobalValue::LinkOnceODRLinkage:
2574   case GlobalValue::WeakAnyLinkage:
2575   case GlobalValue::WeakODRLinkage:
2576   case GlobalValue::DLLExportLinkage:
2577     if (!isDefine)
2578       return Error(LinkageLoc, "invalid linkage for function declaration");
2579     break;
2580   case GlobalValue::AppendingLinkage:
2581   case GlobalValue::GhostLinkage:
2582   case GlobalValue::CommonLinkage:
2583     return Error(LinkageLoc, "invalid function linkage type");
2584   }
2585
2586   if (!FunctionType::isValidReturnType(RetType) ||
2587       isa<OpaqueType>(RetType))
2588     return Error(RetTypeLoc, "invalid function return type");
2589
2590   LocTy NameLoc = Lex.getLoc();
2591
2592   std::string FunctionName;
2593   if (Lex.getKind() == lltok::GlobalVar) {
2594     FunctionName = Lex.getStrVal();
2595   } else if (Lex.getKind() == lltok::GlobalID) {     // @42 is ok.
2596     unsigned NameID = Lex.getUIntVal();
2597
2598     if (NameID != NumberedVals.size())
2599       return TokError("function expected to be numbered '%" +
2600                       utostr(NumberedVals.size()) + "'");
2601   } else {
2602     return TokError("expected function name");
2603   }
2604
2605   Lex.Lex();
2606
2607   if (Lex.getKind() != lltok::lparen)
2608     return TokError("expected '(' in function argument list");
2609
2610   std::vector<ArgInfo> ArgList;
2611   bool isVarArg;
2612   unsigned FuncAttrs;
2613   std::string Section;
2614   unsigned Alignment;
2615   std::string GC;
2616
2617   if (ParseArgumentList(ArgList, isVarArg, false) ||
2618       ParseOptionalAttrs(FuncAttrs, 2) ||
2619       (EatIfPresent(lltok::kw_section) &&
2620        ParseStringConstant(Section)) ||
2621       ParseOptionalAlignment(Alignment) ||
2622       (EatIfPresent(lltok::kw_gc) &&
2623        ParseStringConstant(GC)))
2624     return true;
2625
2626   // If the alignment was parsed as an attribute, move to the alignment field.
2627   if (FuncAttrs & Attribute::Alignment) {
2628     Alignment = Attribute::getAlignmentFromAttrs(FuncAttrs);
2629     FuncAttrs &= ~Attribute::Alignment;
2630   }
2631
2632   // Okay, if we got here, the function is syntactically valid.  Convert types
2633   // and do semantic checks.
2634   std::vector<const Type*> ParamTypeList;
2635   SmallVector<AttributeWithIndex, 8> Attrs;
2636   // FIXME : In 3.0, stop accepting zext, sext and inreg as optional function
2637   // attributes.
2638   unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
2639   if (FuncAttrs & ObsoleteFuncAttrs) {
2640     RetAttrs |= FuncAttrs & ObsoleteFuncAttrs;
2641     FuncAttrs &= ~ObsoleteFuncAttrs;
2642   }
2643
2644   if (RetAttrs != Attribute::None)
2645     Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
2646
2647   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
2648     ParamTypeList.push_back(ArgList[i].Type);
2649     if (ArgList[i].Attrs != Attribute::None)
2650       Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
2651   }
2652
2653   if (FuncAttrs != Attribute::None)
2654     Attrs.push_back(AttributeWithIndex::get(~0, FuncAttrs));
2655
2656   AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
2657
2658   if (PAL.paramHasAttr(1, Attribute::StructRet) &&
2659       RetType != Type::getVoidTy(Context))
2660     return Error(RetTypeLoc, "functions with 'sret' argument must return void");
2661
2662   const FunctionType *FT =
2663     FunctionType::get(RetType, ParamTypeList, isVarArg);
2664   const PointerType *PFT = PointerType::getUnqual(FT);
2665
2666   Fn = 0;
2667   if (!FunctionName.empty()) {
2668     // If this was a definition of a forward reference, remove the definition
2669     // from the forward reference table and fill in the forward ref.
2670     std::map<std::string, std::pair<GlobalValue*, LocTy> >::iterator FRVI =
2671       ForwardRefVals.find(FunctionName);
2672     if (FRVI != ForwardRefVals.end()) {
2673       Fn = M->getFunction(FunctionName);
2674       ForwardRefVals.erase(FRVI);
2675     } else if ((Fn = M->getFunction(FunctionName))) {
2676       // If this function already exists in the symbol table, then it is
2677       // multiply defined.  We accept a few cases for old backwards compat.
2678       // FIXME: Remove this stuff for LLVM 3.0.
2679       if (Fn->getType() != PFT || Fn->getAttributes() != PAL ||
2680           (!Fn->isDeclaration() && isDefine)) {
2681         // If the redefinition has different type or different attributes,
2682         // reject it.  If both have bodies, reject it.
2683         return Error(NameLoc, "invalid redefinition of function '" +
2684                      FunctionName + "'");
2685       } else if (Fn->isDeclaration()) {
2686         // Make sure to strip off any argument names so we can't get conflicts.
2687         for (Function::arg_iterator AI = Fn->arg_begin(), AE = Fn->arg_end();
2688              AI != AE; ++AI)
2689           AI->setName("");
2690       }
2691     } else if (M->getNamedValue(FunctionName)) {
2692       return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
2693     }
2694
2695   } else {
2696     // If this is a definition of a forward referenced function, make sure the
2697     // types agree.
2698     std::map<unsigned, std::pair<GlobalValue*, LocTy> >::iterator I
2699       = ForwardRefValIDs.find(NumberedVals.size());
2700     if (I != ForwardRefValIDs.end()) {
2701       Fn = cast<Function>(I->second.first);
2702       if (Fn->getType() != PFT)
2703         return Error(NameLoc, "type of definition and forward reference of '@" +
2704                      utostr(NumberedVals.size()) +"' disagree");
2705       ForwardRefValIDs.erase(I);
2706     }
2707   }
2708
2709   if (Fn == 0)
2710     Fn = Function::Create(FT, GlobalValue::ExternalLinkage, FunctionName, M);
2711   else // Move the forward-reference to the correct spot in the module.
2712     M->getFunctionList().splice(M->end(), M->getFunctionList(), Fn);
2713
2714   if (FunctionName.empty())
2715     NumberedVals.push_back(Fn);
2716
2717   Fn->setLinkage((GlobalValue::LinkageTypes)Linkage);
2718   Fn->setVisibility((GlobalValue::VisibilityTypes)Visibility);
2719   Fn->setCallingConv(CC);
2720   Fn->setAttributes(PAL);
2721   Fn->setAlignment(Alignment);
2722   Fn->setSection(Section);
2723   if (!GC.empty()) Fn->setGC(GC.c_str());
2724
2725   // Add all of the arguments we parsed to the function.
2726   Function::arg_iterator ArgIt = Fn->arg_begin();
2727   for (unsigned i = 0, e = ArgList.size(); i != e; ++i, ++ArgIt) {
2728     // If we run out of arguments in the Function prototype, exit early.
2729     // FIXME: REMOVE THIS IN LLVM 3.0, this is just for the mismatch case above.
2730     if (ArgIt == Fn->arg_end()) break;
2731     
2732     // If the argument has a name, insert it into the argument symbol table.
2733     if (ArgList[i].Name.empty()) continue;
2734
2735     // Set the name, if it conflicted, it will be auto-renamed.
2736     ArgIt->setName(ArgList[i].Name);
2737
2738     if (ArgIt->getNameStr() != ArgList[i].Name)
2739       return Error(ArgList[i].Loc, "redefinition of argument '%" +
2740                    ArgList[i].Name + "'");
2741   }
2742
2743   return false;
2744 }
2745
2746
2747 /// ParseFunctionBody
2748 ///   ::= '{' BasicBlock+ '}'
2749 ///   ::= 'begin' BasicBlock+ 'end'  // FIXME: remove in LLVM 3.0
2750 ///
2751 bool LLParser::ParseFunctionBody(Function &Fn) {
2752   if (Lex.getKind() != lltok::lbrace && Lex.getKind() != lltok::kw_begin)
2753     return TokError("expected '{' in function body");
2754   Lex.Lex();  // eat the {.
2755
2756   int FunctionNumber = -1;
2757   if (!Fn.hasName()) FunctionNumber = NumberedVals.size()-1;
2758   
2759   PerFunctionState PFS(*this, Fn, FunctionNumber);
2760
2761   while (Lex.getKind() != lltok::rbrace && Lex.getKind() != lltok::kw_end)
2762     if (ParseBasicBlock(PFS)) return true;
2763
2764   // Eat the }.
2765   Lex.Lex();
2766
2767   // Verify function is ok.
2768   return PFS.FinishFunction();
2769 }
2770
2771 /// ParseBasicBlock
2772 ///   ::= LabelStr? Instruction*
2773 bool LLParser::ParseBasicBlock(PerFunctionState &PFS) {
2774   // If this basic block starts out with a name, remember it.
2775   std::string Name;
2776   LocTy NameLoc = Lex.getLoc();
2777   if (Lex.getKind() == lltok::LabelStr) {
2778     Name = Lex.getStrVal();
2779     Lex.Lex();
2780   }
2781
2782   BasicBlock *BB = PFS.DefineBB(Name, NameLoc);
2783   if (BB == 0) return true;
2784
2785   std::string NameStr;
2786
2787   // Parse the instructions in this block until we get a terminator.
2788   Instruction *Inst;
2789   do {
2790     // This instruction may have three possibilities for a name: a) none
2791     // specified, b) name specified "%foo =", c) number specified: "%4 =".
2792     LocTy NameLoc = Lex.getLoc();
2793     int NameID = -1;
2794     NameStr = "";
2795
2796     if (Lex.getKind() == lltok::LocalVarID) {
2797       NameID = Lex.getUIntVal();
2798       Lex.Lex();
2799       if (ParseToken(lltok::equal, "expected '=' after instruction id"))
2800         return true;
2801     } else if (Lex.getKind() == lltok::LocalVar ||
2802                // FIXME: REMOVE IN LLVM 3.0
2803                Lex.getKind() == lltok::StringConstant) {
2804       NameStr = Lex.getStrVal();
2805       Lex.Lex();
2806       if (ParseToken(lltok::equal, "expected '=' after instruction name"))
2807         return true;
2808     }
2809
2810     if (ParseInstruction(Inst, BB, PFS)) return true;
2811     if (EatIfPresent(lltok::comma))
2812       ParseOptionalCustomMetadata();
2813
2814     // Set metadata attached with this instruction.
2815     for (SmallVector<std::pair<unsigned, MDNode *>, 2>::iterator
2816            MDI = MDsOnInst.begin(), MDE = MDsOnInst.end(); MDI != MDE; ++MDI)
2817       Inst->setMetadata(MDI->first, MDI->second);
2818     MDsOnInst.clear();
2819
2820     BB->getInstList().push_back(Inst);
2821
2822     // Set the name on the instruction.
2823     if (PFS.SetInstName(NameID, NameStr, NameLoc, Inst)) return true;
2824   } while (!isa<TerminatorInst>(Inst));
2825
2826   return false;
2827 }
2828
2829 //===----------------------------------------------------------------------===//
2830 // Instruction Parsing.
2831 //===----------------------------------------------------------------------===//
2832
2833 /// ParseInstruction - Parse one of the many different instructions.
2834 ///
2835 bool LLParser::ParseInstruction(Instruction *&Inst, BasicBlock *BB,
2836                                 PerFunctionState &PFS) {
2837   lltok::Kind Token = Lex.getKind();
2838   if (Token == lltok::Eof)
2839     return TokError("found end of file when expecting more instructions");
2840   LocTy Loc = Lex.getLoc();
2841   unsigned KeywordVal = Lex.getUIntVal();
2842   Lex.Lex();  // Eat the keyword.
2843
2844   switch (Token) {
2845   default:                    return Error(Loc, "expected instruction opcode");
2846   // Terminator Instructions.
2847   case lltok::kw_unwind:      Inst = new UnwindInst(Context); return false;
2848   case lltok::kw_unreachable: Inst = new UnreachableInst(Context); return false;
2849   case lltok::kw_ret:         return ParseRet(Inst, BB, PFS);
2850   case lltok::kw_br:          return ParseBr(Inst, PFS);
2851   case lltok::kw_switch:      return ParseSwitch(Inst, PFS);
2852   case lltok::kw_indirectbr:  return ParseIndirectBr(Inst, PFS);
2853   case lltok::kw_invoke:      return ParseInvoke(Inst, PFS);
2854   // Binary Operators.
2855   case lltok::kw_add:
2856   case lltok::kw_sub:
2857   case lltok::kw_mul: {
2858     bool NUW = false;
2859     bool NSW = false;
2860     LocTy ModifierLoc = Lex.getLoc();
2861     if (EatIfPresent(lltok::kw_nuw))
2862       NUW = true;
2863     if (EatIfPresent(lltok::kw_nsw)) {
2864       NSW = true;
2865       if (EatIfPresent(lltok::kw_nuw))
2866         NUW = true;
2867     }
2868     // API compatibility: Accept either integer or floating-point types.
2869     bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 0);
2870     if (!Result) {
2871       if (!Inst->getType()->isIntOrIntVector()) {
2872         if (NUW)
2873           return Error(ModifierLoc, "nuw only applies to integer operations");
2874         if (NSW)
2875           return Error(ModifierLoc, "nsw only applies to integer operations");
2876       }
2877       if (NUW)
2878         cast<BinaryOperator>(Inst)->setHasNoUnsignedWrap(true);
2879       if (NSW)
2880         cast<BinaryOperator>(Inst)->setHasNoSignedWrap(true);
2881     }
2882     return Result;
2883   }
2884   case lltok::kw_fadd:
2885   case lltok::kw_fsub:
2886   case lltok::kw_fmul:    return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2887
2888   case lltok::kw_sdiv: {
2889     bool Exact = false;
2890     if (EatIfPresent(lltok::kw_exact))
2891       Exact = true;
2892     bool Result = ParseArithmetic(Inst, PFS, KeywordVal, 1);
2893     if (!Result)
2894       if (Exact)
2895         cast<BinaryOperator>(Inst)->setIsExact(true);
2896     return Result;
2897   }
2898
2899   case lltok::kw_udiv:
2900   case lltok::kw_urem:
2901   case lltok::kw_srem:   return ParseArithmetic(Inst, PFS, KeywordVal, 1);
2902   case lltok::kw_fdiv:
2903   case lltok::kw_frem:   return ParseArithmetic(Inst, PFS, KeywordVal, 2);
2904   case lltok::kw_shl:
2905   case lltok::kw_lshr:
2906   case lltok::kw_ashr:
2907   case lltok::kw_and:
2908   case lltok::kw_or:
2909   case lltok::kw_xor:    return ParseLogical(Inst, PFS, KeywordVal);
2910   case lltok::kw_icmp:
2911   case lltok::kw_fcmp:   return ParseCompare(Inst, PFS, KeywordVal);
2912   // Casts.
2913   case lltok::kw_trunc:
2914   case lltok::kw_zext:
2915   case lltok::kw_sext:
2916   case lltok::kw_fptrunc:
2917   case lltok::kw_fpext:
2918   case lltok::kw_bitcast:
2919   case lltok::kw_uitofp:
2920   case lltok::kw_sitofp:
2921   case lltok::kw_fptoui:
2922   case lltok::kw_fptosi:
2923   case lltok::kw_inttoptr:
2924   case lltok::kw_ptrtoint:       return ParseCast(Inst, PFS, KeywordVal);
2925   // Other.
2926   case lltok::kw_select:         return ParseSelect(Inst, PFS);
2927   case lltok::kw_va_arg:         return ParseVA_Arg(Inst, PFS);
2928   case lltok::kw_extractelement: return ParseExtractElement(Inst, PFS);
2929   case lltok::kw_insertelement:  return ParseInsertElement(Inst, PFS);
2930   case lltok::kw_shufflevector:  return ParseShuffleVector(Inst, PFS);
2931   case lltok::kw_phi:            return ParsePHI(Inst, PFS);
2932   case lltok::kw_call:           return ParseCall(Inst, PFS, false);
2933   case lltok::kw_tail:           return ParseCall(Inst, PFS, true);
2934   // Memory.
2935   case lltok::kw_alloca:         return ParseAlloc(Inst, PFS);
2936   case lltok::kw_malloc:         return ParseAlloc(Inst, PFS, BB, false);
2937   case lltok::kw_free:           return ParseFree(Inst, PFS, BB);
2938   case lltok::kw_load:           return ParseLoad(Inst, PFS, false);
2939   case lltok::kw_store:          return ParseStore(Inst, PFS, false);
2940   case lltok::kw_volatile:
2941     if (EatIfPresent(lltok::kw_load))
2942       return ParseLoad(Inst, PFS, true);
2943     else if (EatIfPresent(lltok::kw_store))
2944       return ParseStore(Inst, PFS, true);
2945     else
2946       return TokError("expected 'load' or 'store'");
2947   case lltok::kw_getresult:     return ParseGetResult(Inst, PFS);
2948   case lltok::kw_getelementptr: return ParseGetElementPtr(Inst, PFS);
2949   case lltok::kw_extractvalue:  return ParseExtractValue(Inst, PFS);
2950   case lltok::kw_insertvalue:   return ParseInsertValue(Inst, PFS);
2951   }
2952 }
2953
2954 /// ParseCmpPredicate - Parse an integer or fp predicate, based on Kind.
2955 bool LLParser::ParseCmpPredicate(unsigned &P, unsigned Opc) {
2956   if (Opc == Instruction::FCmp) {
2957     switch (Lex.getKind()) {
2958     default: TokError("expected fcmp predicate (e.g. 'oeq')");
2959     case lltok::kw_oeq: P = CmpInst::FCMP_OEQ; break;
2960     case lltok::kw_one: P = CmpInst::FCMP_ONE; break;
2961     case lltok::kw_olt: P = CmpInst::FCMP_OLT; break;
2962     case lltok::kw_ogt: P = CmpInst::FCMP_OGT; break;
2963     case lltok::kw_ole: P = CmpInst::FCMP_OLE; break;
2964     case lltok::kw_oge: P = CmpInst::FCMP_OGE; break;
2965     case lltok::kw_ord: P = CmpInst::FCMP_ORD; break;
2966     case lltok::kw_uno: P = CmpInst::FCMP_UNO; break;
2967     case lltok::kw_ueq: P = CmpInst::FCMP_UEQ; break;
2968     case lltok::kw_une: P = CmpInst::FCMP_UNE; break;
2969     case lltok::kw_ult: P = CmpInst::FCMP_ULT; break;
2970     case lltok::kw_ugt: P = CmpInst::FCMP_UGT; break;
2971     case lltok::kw_ule: P = CmpInst::FCMP_ULE; break;
2972     case lltok::kw_uge: P = CmpInst::FCMP_UGE; break;
2973     case lltok::kw_true: P = CmpInst::FCMP_TRUE; break;
2974     case lltok::kw_false: P = CmpInst::FCMP_FALSE; break;
2975     }
2976   } else {
2977     switch (Lex.getKind()) {
2978     default: TokError("expected icmp predicate (e.g. 'eq')");
2979     case lltok::kw_eq:  P = CmpInst::ICMP_EQ; break;
2980     case lltok::kw_ne:  P = CmpInst::ICMP_NE; break;
2981     case lltok::kw_slt: P = CmpInst::ICMP_SLT; break;
2982     case lltok::kw_sgt: P = CmpInst::ICMP_SGT; break;
2983     case lltok::kw_sle: P = CmpInst::ICMP_SLE; break;
2984     case lltok::kw_sge: P = CmpInst::ICMP_SGE; break;
2985     case lltok::kw_ult: P = CmpInst::ICMP_ULT; break;
2986     case lltok::kw_ugt: P = CmpInst::ICMP_UGT; break;
2987     case lltok::kw_ule: P = CmpInst::ICMP_ULE; break;
2988     case lltok::kw_uge: P = CmpInst::ICMP_UGE; break;
2989     }
2990   }
2991   Lex.Lex();
2992   return false;
2993 }
2994
2995 //===----------------------------------------------------------------------===//
2996 // Terminator Instructions.
2997 //===----------------------------------------------------------------------===//
2998
2999 /// ParseRet - Parse a return instruction.
3000 ///   ::= 'ret' void (',' !dbg, !1)*
3001 ///   ::= 'ret' TypeAndValue (',' !dbg, !1)*
3002 ///   ::= 'ret' TypeAndValue (',' TypeAndValue)+  (',' !dbg, !1)*
3003 ///         [[obsolete: LLVM 3.0]]
3004 bool LLParser::ParseRet(Instruction *&Inst, BasicBlock *BB,
3005                         PerFunctionState &PFS) {
3006   PATypeHolder Ty(Type::getVoidTy(Context));
3007   if (ParseType(Ty, true /*void allowed*/)) return true;
3008
3009   if (Ty->isVoidTy()) {
3010     Inst = ReturnInst::Create(Context);
3011     return false;
3012   }
3013
3014   Value *RV;
3015   if (ParseValue(Ty, RV, PFS)) return true;
3016
3017   if (EatIfPresent(lltok::comma)) {
3018     // Parse optional custom metadata, e.g. !dbg
3019     if (Lex.getKind() == lltok::MetadataVar) {
3020       if (ParseOptionalCustomMetadata()) return true;
3021     } else {
3022       // The normal case is one return value.
3023       // FIXME: LLVM 3.0 remove MRV support for 'ret i32 1, i32 2', requiring
3024       // use of 'ret {i32,i32} {i32 1, i32 2}'
3025       SmallVector<Value*, 8> RVs;
3026       RVs.push_back(RV);
3027
3028       do {
3029         // If optional custom metadata, e.g. !dbg is seen then this is the 
3030         // end of MRV.
3031         if (Lex.getKind() == lltok::MetadataVar)
3032           break;
3033         if (ParseTypeAndValue(RV, PFS)) return true;
3034         RVs.push_back(RV);
3035       } while (EatIfPresent(lltok::comma));
3036
3037       RV = UndefValue::get(PFS.getFunction().getReturnType());
3038       for (unsigned i = 0, e = RVs.size(); i != e; ++i) {
3039         Instruction *I = InsertValueInst::Create(RV, RVs[i], i, "mrv");
3040         BB->getInstList().push_back(I);
3041         RV = I;
3042       }
3043     }
3044   }
3045
3046   Inst = ReturnInst::Create(Context, RV);
3047   return false;
3048 }
3049
3050
3051 /// ParseBr
3052 ///   ::= 'br' TypeAndValue
3053 ///   ::= 'br' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3054 bool LLParser::ParseBr(Instruction *&Inst, PerFunctionState &PFS) {
3055   LocTy Loc, Loc2;
3056   Value *Op0;
3057   BasicBlock *Op1, *Op2;
3058   if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
3059
3060   if (BasicBlock *BB = dyn_cast<BasicBlock>(Op0)) {
3061     Inst = BranchInst::Create(BB);
3062     return false;
3063   }
3064
3065   if (Op0->getType() != Type::getInt1Ty(Context))
3066     return Error(Loc, "branch condition must have 'i1' type");
3067
3068   if (ParseToken(lltok::comma, "expected ',' after branch condition") ||
3069       ParseTypeAndBasicBlock(Op1, Loc, PFS) ||
3070       ParseToken(lltok::comma, "expected ',' after true destination") ||
3071       ParseTypeAndBasicBlock(Op2, Loc2, PFS))
3072     return true;
3073
3074   Inst = BranchInst::Create(Op1, Op2, Op0);
3075   return false;
3076 }
3077
3078 /// ParseSwitch
3079 ///  Instruction
3080 ///    ::= 'switch' TypeAndValue ',' TypeAndValue '[' JumpTable ']'
3081 ///  JumpTable
3082 ///    ::= (TypeAndValue ',' TypeAndValue)*
3083 bool LLParser::ParseSwitch(Instruction *&Inst, PerFunctionState &PFS) {
3084   LocTy CondLoc, BBLoc;
3085   Value *Cond;
3086   BasicBlock *DefaultBB;
3087   if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3088       ParseToken(lltok::comma, "expected ',' after switch condition") ||
3089       ParseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) ||
3090       ParseToken(lltok::lsquare, "expected '[' with switch table"))
3091     return true;
3092
3093   if (!isa<IntegerType>(Cond->getType()))
3094     return Error(CondLoc, "switch condition must have integer type");
3095
3096   // Parse the jump table pairs.
3097   SmallPtrSet<Value*, 32> SeenCases;
3098   SmallVector<std::pair<ConstantInt*, BasicBlock*>, 32> Table;
3099   while (Lex.getKind() != lltok::rsquare) {
3100     Value *Constant;
3101     BasicBlock *DestBB;
3102
3103     if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3104         ParseToken(lltok::comma, "expected ',' after case value") ||
3105         ParseTypeAndBasicBlock(DestBB, PFS))
3106       return true;
3107     
3108     if (!SeenCases.insert(Constant))
3109       return Error(CondLoc, "duplicate case value in switch");
3110     if (!isa<ConstantInt>(Constant))
3111       return Error(CondLoc, "case value is not a constant integer");
3112
3113     Table.push_back(std::make_pair(cast<ConstantInt>(Constant), DestBB));
3114   }
3115
3116   Lex.Lex();  // Eat the ']'.
3117
3118   SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size());
3119   for (unsigned i = 0, e = Table.size(); i != e; ++i)
3120     SI->addCase(Table[i].first, Table[i].second);
3121   Inst = SI;
3122   return false;
3123 }
3124
3125 /// ParseIndirectBr
3126 ///  Instruction
3127 ///    ::= 'indirectbr' TypeAndValue ',' '[' LabelList ']'
3128 bool LLParser::ParseIndirectBr(Instruction *&Inst, PerFunctionState &PFS) {
3129   LocTy AddrLoc;
3130   Value *Address;
3131   if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
3132       ParseToken(lltok::comma, "expected ',' after indirectbr address") ||
3133       ParseToken(lltok::lsquare, "expected '[' with indirectbr"))
3134     return true;
3135   
3136   if (!isa<PointerType>(Address->getType()))
3137     return Error(AddrLoc, "indirectbr address must have pointer type");
3138   
3139   // Parse the destination list.
3140   SmallVector<BasicBlock*, 16> DestList;
3141   
3142   if (Lex.getKind() != lltok::rsquare) {
3143     BasicBlock *DestBB;
3144     if (ParseTypeAndBasicBlock(DestBB, PFS))
3145       return true;
3146     DestList.push_back(DestBB);
3147     
3148     while (EatIfPresent(lltok::comma)) {
3149       if (ParseTypeAndBasicBlock(DestBB, PFS))
3150         return true;
3151       DestList.push_back(DestBB);
3152     }
3153   }
3154   
3155   if (ParseToken(lltok::rsquare, "expected ']' at end of block list"))
3156     return true;
3157
3158   IndirectBrInst *IBI = IndirectBrInst::Create(Address, DestList.size());
3159   for (unsigned i = 0, e = DestList.size(); i != e; ++i)
3160     IBI->addDestination(DestList[i]);
3161   Inst = IBI;
3162   return false;
3163 }
3164
3165
3166 /// ParseInvoke
3167 ///   ::= 'invoke' OptionalCallingConv OptionalAttrs Type Value ParamList
3168 ///       OptionalAttrs 'to' TypeAndValue 'unwind' TypeAndValue
3169 bool LLParser::ParseInvoke(Instruction *&Inst, PerFunctionState &PFS) {
3170   LocTy CallLoc = Lex.getLoc();
3171   unsigned RetAttrs, FnAttrs;
3172   CallingConv::ID CC;
3173   PATypeHolder RetType(Type::getVoidTy(Context));
3174   LocTy RetTypeLoc;
3175   ValID CalleeID;
3176   SmallVector<ParamInfo, 16> ArgList;
3177
3178   BasicBlock *NormalBB, *UnwindBB;
3179   if (ParseOptionalCallingConv(CC) ||
3180       ParseOptionalAttrs(RetAttrs, 1) ||
3181       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
3182       ParseValID(CalleeID) ||
3183       ParseParameterList(ArgList, PFS) ||
3184       ParseOptionalAttrs(FnAttrs, 2) ||
3185       ParseToken(lltok::kw_to, "expected 'to' in invoke") ||
3186       ParseTypeAndBasicBlock(NormalBB, PFS) ||
3187       ParseToken(lltok::kw_unwind, "expected 'unwind' in invoke") ||
3188       ParseTypeAndBasicBlock(UnwindBB, PFS))
3189     return true;
3190
3191   // If RetType is a non-function pointer type, then this is the short syntax
3192   // for the call, which means that RetType is just the return type.  Infer the
3193   // rest of the function argument types from the arguments that are present.
3194   const PointerType *PFTy = 0;
3195   const FunctionType *Ty = 0;
3196   if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3197       !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3198     // Pull out the types of all of the arguments...
3199     std::vector<const Type*> ParamTypes;
3200     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3201       ParamTypes.push_back(ArgList[i].V->getType());
3202
3203     if (!FunctionType::isValidReturnType(RetType))
3204       return Error(RetTypeLoc, "Invalid result type for LLVM function");
3205
3206     Ty = FunctionType::get(RetType, ParamTypes, false);
3207     PFTy = PointerType::getUnqual(Ty);
3208   }
3209
3210   // Look up the callee.
3211   Value *Callee;
3212   if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
3213
3214   // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3215   // function attributes.
3216   unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3217   if (FnAttrs & ObsoleteFuncAttrs) {
3218     RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3219     FnAttrs &= ~ObsoleteFuncAttrs;
3220   }
3221
3222   // Set up the Attributes for the function.
3223   SmallVector<AttributeWithIndex, 8> Attrs;
3224   if (RetAttrs != Attribute::None)
3225     Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
3226
3227   SmallVector<Value*, 8> Args;
3228
3229   // Loop through FunctionType's arguments and ensure they are specified
3230   // correctly.  Also, gather any parameter attributes.
3231   FunctionType::param_iterator I = Ty->param_begin();
3232   FunctionType::param_iterator E = Ty->param_end();
3233   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3234     const Type *ExpectedTy = 0;
3235     if (I != E) {
3236       ExpectedTy = *I++;
3237     } else if (!Ty->isVarArg()) {
3238       return Error(ArgList[i].Loc, "too many arguments specified");
3239     }
3240
3241     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3242       return Error(ArgList[i].Loc, "argument is not of expected type '" +
3243                    ExpectedTy->getDescription() + "'");
3244     Args.push_back(ArgList[i].V);
3245     if (ArgList[i].Attrs != Attribute::None)
3246       Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3247   }
3248
3249   if (I != E)
3250     return Error(CallLoc, "not enough parameters specified for call");
3251
3252   if (FnAttrs != Attribute::None)
3253     Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3254
3255   // Finish off the Attributes and check them
3256   AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
3257
3258   InvokeInst *II = InvokeInst::Create(Callee, NormalBB, UnwindBB,
3259                                       Args.begin(), Args.end());
3260   II->setCallingConv(CC);
3261   II->setAttributes(PAL);
3262   Inst = II;
3263   return false;
3264 }
3265
3266
3267
3268 //===----------------------------------------------------------------------===//
3269 // Binary Operators.
3270 //===----------------------------------------------------------------------===//
3271
3272 /// ParseArithmetic
3273 ///  ::= ArithmeticOps TypeAndValue ',' Value
3274 ///
3275 /// If OperandType is 0, then any FP or integer operand is allowed.  If it is 1,
3276 /// then any integer operand is allowed, if it is 2, any fp operand is allowed.
3277 bool LLParser::ParseArithmetic(Instruction *&Inst, PerFunctionState &PFS,
3278                                unsigned Opc, unsigned OperandType) {
3279   LocTy Loc; Value *LHS, *RHS;
3280   if (ParseTypeAndValue(LHS, Loc, PFS) ||
3281       ParseToken(lltok::comma, "expected ',' in arithmetic operation") ||
3282       ParseValue(LHS->getType(), RHS, PFS))
3283     return true;
3284
3285   bool Valid;
3286   switch (OperandType) {
3287   default: llvm_unreachable("Unknown operand type!");
3288   case 0: // int or FP.
3289     Valid = LHS->getType()->isIntOrIntVector() ||
3290             LHS->getType()->isFPOrFPVector();
3291     break;
3292   case 1: Valid = LHS->getType()->isIntOrIntVector(); break;
3293   case 2: Valid = LHS->getType()->isFPOrFPVector(); break;
3294   }
3295
3296   if (!Valid)
3297     return Error(Loc, "invalid operand type for instruction");
3298
3299   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3300   return false;
3301 }
3302
3303 /// ParseLogical
3304 ///  ::= ArithmeticOps TypeAndValue ',' Value {
3305 bool LLParser::ParseLogical(Instruction *&Inst, PerFunctionState &PFS,
3306                             unsigned Opc) {
3307   LocTy Loc; Value *LHS, *RHS;
3308   if (ParseTypeAndValue(LHS, Loc, PFS) ||
3309       ParseToken(lltok::comma, "expected ',' in logical operation") ||
3310       ParseValue(LHS->getType(), RHS, PFS))
3311     return true;
3312
3313   if (!LHS->getType()->isIntOrIntVector())
3314     return Error(Loc,"instruction requires integer or integer vector operands");
3315
3316   Inst = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3317   return false;
3318 }
3319
3320
3321 /// ParseCompare
3322 ///  ::= 'icmp' IPredicates TypeAndValue ',' Value
3323 ///  ::= 'fcmp' FPredicates TypeAndValue ',' Value
3324 bool LLParser::ParseCompare(Instruction *&Inst, PerFunctionState &PFS,
3325                             unsigned Opc) {
3326   // Parse the integer/fp comparison predicate.
3327   LocTy Loc;
3328   unsigned Pred;
3329   Value *LHS, *RHS;
3330   if (ParseCmpPredicate(Pred, Opc) ||
3331       ParseTypeAndValue(LHS, Loc, PFS) ||
3332       ParseToken(lltok::comma, "expected ',' after compare value") ||
3333       ParseValue(LHS->getType(), RHS, PFS))
3334     return true;
3335
3336   if (Opc == Instruction::FCmp) {
3337     if (!LHS->getType()->isFPOrFPVector())
3338       return Error(Loc, "fcmp requires floating point operands");
3339     Inst = new FCmpInst(CmpInst::Predicate(Pred), LHS, RHS);
3340   } else {
3341     assert(Opc == Instruction::ICmp && "Unknown opcode for CmpInst!");
3342     if (!LHS->getType()->isIntOrIntVector() &&
3343         !isa<PointerType>(LHS->getType()))
3344       return Error(Loc, "icmp requires integer operands");
3345     Inst = new ICmpInst(CmpInst::Predicate(Pred), LHS, RHS);
3346   }
3347   return false;
3348 }
3349
3350 //===----------------------------------------------------------------------===//
3351 // Other Instructions.
3352 //===----------------------------------------------------------------------===//
3353
3354
3355 /// ParseCast
3356 ///   ::= CastOpc TypeAndValue 'to' Type
3357 bool LLParser::ParseCast(Instruction *&Inst, PerFunctionState &PFS,
3358                          unsigned Opc) {
3359   LocTy Loc;  Value *Op;
3360   PATypeHolder DestTy(Type::getVoidTy(Context));
3361   if (ParseTypeAndValue(Op, Loc, PFS) ||
3362       ParseToken(lltok::kw_to, "expected 'to' after cast value") ||
3363       ParseType(DestTy))
3364     return true;
3365
3366   if (!CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy)) {
3367     CastInst::castIsValid((Instruction::CastOps)Opc, Op, DestTy);
3368     return Error(Loc, "invalid cast opcode for cast from '" +
3369                  Op->getType()->getDescription() + "' to '" +
3370                  DestTy->getDescription() + "'");
3371   }
3372   Inst = CastInst::Create((Instruction::CastOps)Opc, Op, DestTy);
3373   return false;
3374 }
3375
3376 /// ParseSelect
3377 ///   ::= 'select' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3378 bool LLParser::ParseSelect(Instruction *&Inst, PerFunctionState &PFS) {
3379   LocTy Loc;
3380   Value *Op0, *Op1, *Op2;
3381   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3382       ParseToken(lltok::comma, "expected ',' after select condition") ||
3383       ParseTypeAndValue(Op1, PFS) ||
3384       ParseToken(lltok::comma, "expected ',' after select value") ||
3385       ParseTypeAndValue(Op2, PFS))
3386     return true;
3387
3388   if (const char *Reason = SelectInst::areInvalidOperands(Op0, Op1, Op2))
3389     return Error(Loc, Reason);
3390
3391   Inst = SelectInst::Create(Op0, Op1, Op2);
3392   return false;
3393 }
3394
3395 /// ParseVA_Arg
3396 ///   ::= 'va_arg' TypeAndValue ',' Type
3397 bool LLParser::ParseVA_Arg(Instruction *&Inst, PerFunctionState &PFS) {
3398   Value *Op;
3399   PATypeHolder EltTy(Type::getVoidTy(Context));
3400   LocTy TypeLoc;
3401   if (ParseTypeAndValue(Op, PFS) ||
3402       ParseToken(lltok::comma, "expected ',' after vaarg operand") ||
3403       ParseType(EltTy, TypeLoc))
3404     return true;
3405
3406   if (!EltTy->isFirstClassType())
3407     return Error(TypeLoc, "va_arg requires operand with first class type");
3408
3409   Inst = new VAArgInst(Op, EltTy);
3410   return false;
3411 }
3412
3413 /// ParseExtractElement
3414 ///   ::= 'extractelement' TypeAndValue ',' TypeAndValue
3415 bool LLParser::ParseExtractElement(Instruction *&Inst, PerFunctionState &PFS) {
3416   LocTy Loc;
3417   Value *Op0, *Op1;
3418   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3419       ParseToken(lltok::comma, "expected ',' after extract value") ||
3420       ParseTypeAndValue(Op1, PFS))
3421     return true;
3422
3423   if (!ExtractElementInst::isValidOperands(Op0, Op1))
3424     return Error(Loc, "invalid extractelement operands");
3425
3426   Inst = ExtractElementInst::Create(Op0, Op1);
3427   return false;
3428 }
3429
3430 /// ParseInsertElement
3431 ///   ::= 'insertelement' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3432 bool LLParser::ParseInsertElement(Instruction *&Inst, PerFunctionState &PFS) {
3433   LocTy Loc;
3434   Value *Op0, *Op1, *Op2;
3435   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3436       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3437       ParseTypeAndValue(Op1, PFS) ||
3438       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3439       ParseTypeAndValue(Op2, PFS))
3440     return true;
3441
3442   if (!InsertElementInst::isValidOperands(Op0, Op1, Op2))
3443     return Error(Loc, "invalid insertelement operands");
3444
3445   Inst = InsertElementInst::Create(Op0, Op1, Op2);
3446   return false;
3447 }
3448
3449 /// ParseShuffleVector
3450 ///   ::= 'shufflevector' TypeAndValue ',' TypeAndValue ',' TypeAndValue
3451 bool LLParser::ParseShuffleVector(Instruction *&Inst, PerFunctionState &PFS) {
3452   LocTy Loc;
3453   Value *Op0, *Op1, *Op2;
3454   if (ParseTypeAndValue(Op0, Loc, PFS) ||
3455       ParseToken(lltok::comma, "expected ',' after shuffle mask") ||
3456       ParseTypeAndValue(Op1, PFS) ||
3457       ParseToken(lltok::comma, "expected ',' after shuffle value") ||
3458       ParseTypeAndValue(Op2, PFS))
3459     return true;
3460
3461   if (!ShuffleVectorInst::isValidOperands(Op0, Op1, Op2))
3462     return Error(Loc, "invalid extractelement operands");
3463
3464   Inst = new ShuffleVectorInst(Op0, Op1, Op2);
3465   return false;
3466 }
3467
3468 /// ParsePHI
3469 ///   ::= 'phi' Type '[' Value ',' Value ']' (',' '[' Value ',' Value ']')*
3470 bool LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
3471   PATypeHolder Ty(Type::getVoidTy(Context));
3472   Value *Op0, *Op1;
3473   LocTy TypeLoc = Lex.getLoc();
3474
3475   if (ParseType(Ty) ||
3476       ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3477       ParseValue(Ty, Op0, PFS) ||
3478       ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3479       ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
3480       ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3481     return true;
3482
3483   SmallVector<std::pair<Value*, BasicBlock*>, 16> PHIVals;
3484   while (1) {
3485     PHIVals.push_back(std::make_pair(Op0, cast<BasicBlock>(Op1)));
3486
3487     if (!EatIfPresent(lltok::comma))
3488       break;
3489
3490     if (Lex.getKind() == lltok::MetadataVar)
3491       break;
3492
3493     if (ParseToken(lltok::lsquare, "expected '[' in phi value list") ||
3494         ParseValue(Ty, Op0, PFS) ||
3495         ParseToken(lltok::comma, "expected ',' after insertelement value") ||
3496         ParseValue(Type::getLabelTy(Context), Op1, PFS) ||
3497         ParseToken(lltok::rsquare, "expected ']' in phi value list"))
3498       return true;
3499   }
3500
3501   if (Lex.getKind() == lltok::MetadataVar)
3502     if (ParseOptionalCustomMetadata()) return true;
3503
3504   if (!Ty->isFirstClassType())
3505     return Error(TypeLoc, "phi node must have first class type");
3506
3507   PHINode *PN = PHINode::Create(Ty);
3508   PN->reserveOperandSpace(PHIVals.size());
3509   for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
3510     PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
3511   Inst = PN;
3512   return false;
3513 }
3514
3515 /// ParseCall
3516 ///   ::= 'tail'? 'call' OptionalCallingConv OptionalAttrs Type Value
3517 ///       ParameterList OptionalAttrs
3518 bool LLParser::ParseCall(Instruction *&Inst, PerFunctionState &PFS,
3519                          bool isTail) {
3520   unsigned RetAttrs, FnAttrs;
3521   CallingConv::ID CC;
3522   PATypeHolder RetType(Type::getVoidTy(Context));
3523   LocTy RetTypeLoc;
3524   ValID CalleeID;
3525   SmallVector<ParamInfo, 16> ArgList;
3526   LocTy CallLoc = Lex.getLoc();
3527
3528   if ((isTail && ParseToken(lltok::kw_call, "expected 'tail call'")) ||
3529       ParseOptionalCallingConv(CC) ||
3530       ParseOptionalAttrs(RetAttrs, 1) ||
3531       ParseType(RetType, RetTypeLoc, true /*void allowed*/) ||
3532       ParseValID(CalleeID) ||
3533       ParseParameterList(ArgList, PFS) ||
3534       ParseOptionalAttrs(FnAttrs, 2))
3535     return true;
3536
3537   // If RetType is a non-function pointer type, then this is the short syntax
3538   // for the call, which means that RetType is just the return type.  Infer the
3539   // rest of the function argument types from the arguments that are present.
3540   const PointerType *PFTy = 0;
3541   const FunctionType *Ty = 0;
3542   if (!(PFTy = dyn_cast<PointerType>(RetType)) ||
3543       !(Ty = dyn_cast<FunctionType>(PFTy->getElementType()))) {
3544     // Pull out the types of all of the arguments...
3545     std::vector<const Type*> ParamTypes;
3546     for (unsigned i = 0, e = ArgList.size(); i != e; ++i)
3547       ParamTypes.push_back(ArgList[i].V->getType());
3548
3549     if (!FunctionType::isValidReturnType(RetType))
3550       return Error(RetTypeLoc, "Invalid result type for LLVM function");
3551
3552     Ty = FunctionType::get(RetType, ParamTypes, false);
3553     PFTy = PointerType::getUnqual(Ty);
3554   }
3555
3556   // Look up the callee.
3557   Value *Callee;
3558   if (ConvertValIDToValue(PFTy, CalleeID, Callee, PFS)) return true;
3559
3560   // FIXME: In LLVM 3.0, stop accepting zext, sext and inreg as optional
3561   // function attributes.
3562   unsigned ObsoleteFuncAttrs = Attribute::ZExt|Attribute::SExt|Attribute::InReg;
3563   if (FnAttrs & ObsoleteFuncAttrs) {
3564     RetAttrs |= FnAttrs & ObsoleteFuncAttrs;
3565     FnAttrs &= ~ObsoleteFuncAttrs;
3566   }
3567
3568   // Set up the Attributes for the function.
3569   SmallVector<AttributeWithIndex, 8> Attrs;
3570   if (RetAttrs != Attribute::None)
3571     Attrs.push_back(AttributeWithIndex::get(0, RetAttrs));
3572
3573   SmallVector<Value*, 8> Args;
3574
3575   // Loop through FunctionType's arguments and ensure they are specified
3576   // correctly.  Also, gather any parameter attributes.
3577   FunctionType::param_iterator I = Ty->param_begin();
3578   FunctionType::param_iterator E = Ty->param_end();
3579   for (unsigned i = 0, e = ArgList.size(); i != e; ++i) {
3580     const Type *ExpectedTy = 0;
3581     if (I != E) {
3582       ExpectedTy = *I++;
3583     } else if (!Ty->isVarArg()) {
3584       return Error(ArgList[i].Loc, "too many arguments specified");
3585     }
3586
3587     if (ExpectedTy && ExpectedTy != ArgList[i].V->getType())
3588       return Error(ArgList[i].Loc, "argument is not of expected type '" +
3589                    ExpectedTy->getDescription() + "'");
3590     Args.push_back(ArgList[i].V);
3591     if (ArgList[i].Attrs != Attribute::None)
3592       Attrs.push_back(AttributeWithIndex::get(i+1, ArgList[i].Attrs));
3593   }
3594
3595   if (I != E)
3596     return Error(CallLoc, "not enough parameters specified for call");
3597
3598   if (FnAttrs != Attribute::None)
3599     Attrs.push_back(AttributeWithIndex::get(~0, FnAttrs));
3600
3601   // Finish off the Attributes and check them
3602   AttrListPtr PAL = AttrListPtr::get(Attrs.begin(), Attrs.end());
3603
3604   CallInst *CI = CallInst::Create(Callee, Args.begin(), Args.end());
3605   CI->setTailCall(isTail);
3606   CI->setCallingConv(CC);
3607   CI->setAttributes(PAL);
3608   Inst = CI;
3609   return false;
3610 }
3611
3612 //===----------------------------------------------------------------------===//
3613 // Memory Instructions.
3614 //===----------------------------------------------------------------------===//
3615
3616 /// ParseAlloc
3617 ///   ::= 'malloc' Type (',' TypeAndValue)? (',' OptionalInfo)?
3618 ///   ::= 'alloca' Type (',' TypeAndValue)? (',' OptionalInfo)?
3619 bool LLParser::ParseAlloc(Instruction *&Inst, PerFunctionState &PFS,
3620                           BasicBlock* BB, bool isAlloca) {
3621   PATypeHolder Ty(Type::getVoidTy(Context));
3622   Value *Size = 0;
3623   LocTy SizeLoc;
3624   unsigned Alignment = 0;
3625   if (ParseType(Ty)) return true;
3626
3627   if (EatIfPresent(lltok::comma)) {
3628     if (Lex.getKind() == lltok::kw_align 
3629         || Lex.getKind() == lltok::MetadataVar) {
3630       if (ParseOptionalInfo(Alignment)) return true;
3631     } else {
3632       if (ParseTypeAndValue(Size, SizeLoc, PFS)) return true;
3633       if (EatIfPresent(lltok::comma))
3634         if (ParseOptionalInfo(Alignment)) return true;
3635     }
3636   }
3637
3638   if (Size && Size->getType() != Type::getInt32Ty(Context))
3639     return Error(SizeLoc, "element count must be i32");
3640
3641   if (isAlloca) {
3642     Inst = new AllocaInst(Ty, Size, Alignment);
3643     return false;
3644   }
3645
3646   // Autoupgrade old malloc instruction to malloc call.
3647   // FIXME: Remove in LLVM 3.0.
3648   const Type *IntPtrTy = Type::getInt32Ty(Context);
3649   Constant *AllocSize = ConstantExpr::getSizeOf(Ty);
3650   AllocSize = ConstantExpr::getTruncOrBitCast(AllocSize, IntPtrTy);
3651   if (!MallocF)
3652     // Prototype malloc as "void *(int32)".
3653     // This function is renamed as "malloc" in ValidateEndOfModule().
3654     MallocF = cast<Function>(
3655        M->getOrInsertFunction("", Type::getInt8PtrTy(Context), IntPtrTy, NULL));
3656   Inst = CallInst::CreateMalloc(BB, IntPtrTy, Ty, AllocSize, Size, MallocF);
3657   return false;
3658 }
3659
3660 /// ParseFree
3661 ///   ::= 'free' TypeAndValue
3662 bool LLParser::ParseFree(Instruction *&Inst, PerFunctionState &PFS,
3663                          BasicBlock* BB) {
3664   Value *Val; LocTy Loc;
3665   if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3666   if (!isa<PointerType>(Val->getType()))
3667     return Error(Loc, "operand to free must be a pointer");
3668   Inst = CallInst::CreateFree(Val, BB);
3669   return false;
3670 }
3671
3672 /// ParseLoad
3673 ///   ::= 'volatile'? 'load' TypeAndValue (',' OptionalInfo)?
3674 bool LLParser::ParseLoad(Instruction *&Inst, PerFunctionState &PFS,
3675                          bool isVolatile) {
3676   Value *Val; LocTy Loc;
3677   unsigned Alignment = 0;
3678   if (ParseTypeAndValue(Val, Loc, PFS)) return true;
3679
3680   if (EatIfPresent(lltok::comma))
3681     if (ParseOptionalInfo(Alignment)) return true;
3682
3683   if (!isa<PointerType>(Val->getType()) ||
3684       !cast<PointerType>(Val->getType())->getElementType()->isFirstClassType())
3685     return Error(Loc, "load operand must be a pointer to a first class type");
3686
3687   Inst = new LoadInst(Val, "", isVolatile, Alignment);
3688   return false;
3689 }
3690
3691 /// ParseStore
3692 ///   ::= 'volatile'? 'store' TypeAndValue ',' TypeAndValue (',' 'align' i32)?
3693 bool LLParser::ParseStore(Instruction *&Inst, PerFunctionState &PFS,
3694                           bool isVolatile) {
3695   Value *Val, *Ptr; LocTy Loc, PtrLoc;
3696   unsigned Alignment = 0;
3697   if (ParseTypeAndValue(Val, Loc, PFS) ||
3698       ParseToken(lltok::comma, "expected ',' after store operand") ||
3699       ParseTypeAndValue(Ptr, PtrLoc, PFS))
3700     return true;
3701
3702   if (EatIfPresent(lltok::comma))
3703     if (ParseOptionalInfo(Alignment)) return true;
3704
3705   if (!isa<PointerType>(Ptr->getType()))
3706     return Error(PtrLoc, "store operand must be a pointer");
3707   if (!Val->getType()->isFirstClassType())
3708     return Error(Loc, "store operand must be a first class value");
3709   if (cast<PointerType>(Ptr->getType())->getElementType() != Val->getType())
3710     return Error(Loc, "stored value and pointer type do not match");
3711
3712   Inst = new StoreInst(Val, Ptr, isVolatile, Alignment);
3713   return false;
3714 }
3715
3716 /// ParseGetResult
3717 ///   ::= 'getresult' TypeAndValue ',' i32
3718 /// FIXME: Remove support for getresult in LLVM 3.0
3719 bool LLParser::ParseGetResult(Instruction *&Inst, PerFunctionState &PFS) {
3720   Value *Val; LocTy ValLoc, EltLoc;
3721   unsigned Element;
3722   if (ParseTypeAndValue(Val, ValLoc, PFS) ||
3723       ParseToken(lltok::comma, "expected ',' after getresult operand") ||
3724       ParseUInt32(Element, EltLoc))
3725     return true;
3726
3727   if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3728     return Error(ValLoc, "getresult inst requires an aggregate operand");
3729   if (!ExtractValueInst::getIndexedType(Val->getType(), Element))
3730     return Error(EltLoc, "invalid getresult index for value");
3731   Inst = ExtractValueInst::Create(Val, Element);
3732   return false;
3733 }
3734
3735 /// ParseGetElementPtr
3736 ///   ::= 'getelementptr' 'inbounds'? TypeAndValue (',' TypeAndValue)*
3737 bool LLParser::ParseGetElementPtr(Instruction *&Inst, PerFunctionState &PFS) {
3738   Value *Ptr, *Val; LocTy Loc, EltLoc;
3739
3740   bool InBounds = EatIfPresent(lltok::kw_inbounds);
3741
3742   if (ParseTypeAndValue(Ptr, Loc, PFS)) return true;
3743
3744   if (!isa<PointerType>(Ptr->getType()))
3745     return Error(Loc, "base of getelementptr must be a pointer");
3746
3747   SmallVector<Value*, 16> Indices;
3748   while (EatIfPresent(lltok::comma)) {
3749     if (Lex.getKind() == lltok::MetadataVar)
3750       break;
3751     if (ParseTypeAndValue(Val, EltLoc, PFS)) return true;
3752     if (!isa<IntegerType>(Val->getType()))
3753       return Error(EltLoc, "getelementptr index must be an integer");
3754     Indices.push_back(Val);
3755   }
3756   if (Lex.getKind() == lltok::MetadataVar)
3757     if (ParseOptionalCustomMetadata()) return true;
3758
3759   if (!GetElementPtrInst::getIndexedType(Ptr->getType(),
3760                                          Indices.begin(), Indices.end()))
3761     return Error(Loc, "invalid getelementptr indices");
3762   Inst = GetElementPtrInst::Create(Ptr, Indices.begin(), Indices.end());
3763   if (InBounds)
3764     cast<GetElementPtrInst>(Inst)->setIsInBounds(true);
3765   return false;
3766 }
3767
3768 /// ParseExtractValue
3769 ///   ::= 'extractvalue' TypeAndValue (',' uint32)+
3770 bool LLParser::ParseExtractValue(Instruction *&Inst, PerFunctionState &PFS) {
3771   Value *Val; LocTy Loc;
3772   SmallVector<unsigned, 4> Indices;
3773   if (ParseTypeAndValue(Val, Loc, PFS) ||
3774       ParseIndexList(Indices))
3775     return true;
3776   if (Lex.getKind() == lltok::MetadataVar)
3777     if (ParseOptionalCustomMetadata()) return true;
3778
3779   if (!isa<StructType>(Val->getType()) && !isa<ArrayType>(Val->getType()))
3780     return Error(Loc, "extractvalue operand must be array or struct");
3781
3782   if (!ExtractValueInst::getIndexedType(Val->getType(), Indices.begin(),
3783                                         Indices.end()))
3784     return Error(Loc, "invalid indices for extractvalue");
3785   Inst = ExtractValueInst::Create(Val, Indices.begin(), Indices.end());
3786   return false;
3787 }
3788
3789 /// ParseInsertValue
3790 ///   ::= 'insertvalue' TypeAndValue ',' TypeAndValue (',' uint32)+
3791 bool LLParser::ParseInsertValue(Instruction *&Inst, PerFunctionState &PFS) {
3792   Value *Val0, *Val1; LocTy Loc0, Loc1;
3793   SmallVector<unsigned, 4> Indices;
3794   if (ParseTypeAndValue(Val0, Loc0, PFS) ||
3795       ParseToken(lltok::comma, "expected comma after insertvalue operand") ||
3796       ParseTypeAndValue(Val1, Loc1, PFS) ||
3797       ParseIndexList(Indices))
3798     return true;
3799   if (Lex.getKind() == lltok::MetadataVar)
3800     if (ParseOptionalCustomMetadata()) return true;
3801
3802   if (!isa<StructType>(Val0->getType()) && !isa<ArrayType>(Val0->getType()))
3803     return Error(Loc0, "extractvalue operand must be array or struct");
3804
3805   if (!ExtractValueInst::getIndexedType(Val0->getType(), Indices.begin(),
3806                                         Indices.end()))
3807     return Error(Loc0, "invalid indices for insertvalue");
3808   Inst = InsertValueInst::Create(Val0, Val1, Indices.begin(), Indices.end());
3809   return false;
3810 }
3811
3812 //===----------------------------------------------------------------------===//
3813 // Embedded metadata.
3814 //===----------------------------------------------------------------------===//
3815
3816 /// ParseMDNodeVector
3817 ///   ::= Element (',' Element)*
3818 /// Element
3819 ///   ::= 'null' | TypeAndValue
3820 bool LLParser::ParseMDNodeVector(SmallVectorImpl<Value*> &Elts) {
3821   do {
3822     // Null is a special case since it is typeless.
3823     if (EatIfPresent(lltok::kw_null)) {
3824       Elts.push_back(0);
3825       continue;
3826     }
3827     
3828     Value *V = 0;
3829     PATypeHolder Ty(Type::getVoidTy(Context));
3830     ValID ID;
3831     if (ParseType(Ty) || ParseValID(ID) ||
3832         ConvertGlobalOrMetadataValIDToValue(Ty, ID, V))
3833       return true;
3834     
3835     Elts.push_back(V);
3836   } while (EatIfPresent(lltok::comma));
3837
3838   return false;
3839 }