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