Finegrainify namespacification
[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, ValueTy vty, const std::string &name)
32   : Name(name), Ty(checkType(ty)) {
33   VTy = vty;
34 }
35
36 Value::~Value() {
37 #ifndef NDEBUG      // Only in -g mode...
38   // Check to make sure that there are no uses of this value that are still
39   // around when the value is destroyed.  If there are, then we have a dangling
40   // reference and something is wrong.  This code is here to print out what is
41   // still being referenced.  The value in question should be printed as 
42   // a <badref>
43   //
44   if (Uses.begin() != Uses.end()) {
45     std::cerr << "While deleting: " << *Ty << "%" << Name << "\n";
46     for (use_const_iterator I = Uses.begin(), E = Uses.end(); I != E; ++I)
47       std::cerr << "Use still stuck around after Def is destroyed:"
48                 << **I << "\n";
49   }
50 #endif
51   assert(Uses.begin() == Uses.end() &&"Uses remain when a value is destroyed!");
52
53   // There should be no uses of this object anymore, remove it.
54   LeakDetector::removeGarbageObject(this);
55 }
56
57
58 // uncheckedReplaceAllUsesWith - This is exactly the same as replaceAllUsesWith,
59 // except that it doesn't have all of the asserts.  The asserts fail because we
60 // are half-way done resolving types, which causes some types to exist as two
61 // different Type*'s at the same time.  This is a sledgehammer to work around
62 // this problem.
63 //
64 void Value::uncheckedReplaceAllUsesWith(Value *New) {
65   while (!Uses.empty()) {
66     Use &U = Uses.back();
67     // Must handle Constants specially, we cannot call replaceUsesOfWith on a
68     // constant!
69     if (Constant *C = dyn_cast<Constant>(U.getUser())) {
70       C->replaceUsesOfWithOnConstant(this, New, true);
71     } else {
72       U.set(New);
73     }
74   }
75 }
76
77 void Value::replaceAllUsesWith(Value *New) {
78   assert(New && "Value::replaceAllUsesWith(<null>) is invalid!");
79   assert(New != this && "this->replaceAllUsesWith(this) is NOT valid!");
80   assert(New->getType() == getType() &&
81          "replaceAllUses of value with new value of different type!");
82
83   uncheckedReplaceAllUsesWith(New);
84 }
85
86 //===----------------------------------------------------------------------===//
87 //                                 User Class
88 //===----------------------------------------------------------------------===//
89
90 User::User(const Type *Ty, ValueTy vty, const std::string &name) 
91   : Value(Ty, vty, name) {
92 }
93
94 // replaceUsesOfWith - Replaces all references to the "From" definition with
95 // references to the "To" definition.
96 //
97 void User::replaceUsesOfWith(Value *From, Value *To) {
98   if (From == To) return;   // Duh what?
99
100   assert(!isa<Constant>(this) &&
101          "Cannot call User::replaceUsesofWith on a constant!");
102
103   for (unsigned i = 0, E = getNumOperands(); i != E; ++i)
104     if (getOperand(i) == From) {  // Is This operand is pointing to oldval?
105       // The side effects of this setOperand call include linking to
106       // "To", adding "this" to the uses list of To, and
107       // most importantly, removing "this" from the use list of "From".
108       setOperand(i, To); // Fix it now...
109     }
110 }