Instancevar was renamed
[oota-llvm.git] / lib / VMCore / Value.cpp
1 //===-- Value.cpp - Implement the Value class -----------------------------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements the Value and User classes. 
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/InstrTypes.h"
15 #include "llvm/SymbolTable.h"
16 #include "llvm/DerivedTypes.h"
17 #include "llvm/Constant.h"
18 #include "Support/LeakDetector.h"
19 #include <algorithm>
20 using namespace llvm;
21
22 //===----------------------------------------------------------------------===//
23 //                                Value Class
24 //===----------------------------------------------------------------------===//
25
26 static inline const Type *checkType(const Type *Ty) {
27   assert(Ty && "Value defined with a null type: Error!");
28   return Ty;
29 }
30
31 Value::Value(const Type *ty, unsigned scid, const std::string &name)
32   : SubclassID(scid), Ty(checkType(ty)), Name(name) {
33 }
34
35 Value::~Value() {
36 #ifndef NDEBUG      // Only in -g mode...
37   // Check to make sure that there are no uses of this value that are still
38   // around when the value is destroyed.  If there are, then we have a dangling
39   // reference and something is wrong.  This code is here to print out what is
40   // still being referenced.  The value in question should be printed as 
41   // a <badref>
42   //
43   if (Uses.begin() != Uses.end()) {
44     std::cerr << "While deleting: " << *Ty << "%" << Name << "\n";
45     for (use_const_iterator I = Uses.begin(), E = Uses.end(); I != E; ++I)
46       std::cerr << "Use still stuck around after Def is destroyed:"
47                 << **I << "\n";
48   }
49 #endif
50   assert(Uses.begin() == Uses.end() &&"Uses remain when a value is destroyed!");
51
52   // There should be no uses of this object anymore, remove it.
53   LeakDetector::removeGarbageObject(this);
54 }
55
56
57 // uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
58 // except that it doesn't have all of the asserts.  The asserts fail because we
59 // are half-way done resolving types, which causes some types to exist as two
60 // different Type*'s at the same time.  This is a sledgehammer to work around
61 // this problem.
62 //
63 void Value::uncheckedReplaceAllUsesWith(Value *New) {
64   while (!Uses.empty()) {
65     Use &U = Uses.back();
66     // Must handle Constants specially, we cannot call replaceUsesOfWith on a
67     // constant!
68     if (Constant *C = dyn_cast<Constant>(U.getUser())) {
69       C->replaceUsesOfWithOnConstant(this, New, true);
70     } else {
71       U.set(New);
72     }
73   }
74 }
75
76 void Value::replaceAllUsesWith(Value *New) {
77   assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
78   assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
79   assert(New->getType() == getType() &&
80          "replaceAllUses of value with new value of different type!");
81
82   uncheckedReplaceAllUsesWith(New);
83 }
84
85 //===----------------------------------------------------------------------===//
86 //                                 User Class
87 //===----------------------------------------------------------------------===//
88
89 User::User(const Type *Ty, ValueTy vty, const std::string &name) 
90   : Value(Ty, vty, name) {
91 }
92
93 // replaceUsesOfWith - Replaces all references to the "From" definition with
94 // references to the "To" definition.
95 //
96 void User::replaceUsesOfWith(Value *From, Value *To) {
97   if (From == To) return;   // Duh what?
98
99   assert(!isa<Constant>(this) &&
100          "Cannot call User::replaceUsesofWith on a constant!");
101
102   for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
103     if (getOperand(i) == From) {  // Is This operand is pointing to oldval?
104       // The side effects of this setOperand call include linking to
105       // "To", adding "this" to the uses list of To, and
106       // most importantly, removing "this" from the use list of "From".
107       setOperand(i, To); // Fix it now...
108     }
109 }