blob: fa3c0f60fb4fe773fd44e085113b9805b33c1882 [file] [log] [blame]
Chris Lattner2f7c9632001-06-06 20:29:01 +00001//===-- Value.cpp - Implement the Value class -----------------------------===//
2//
3// This file implements the Value class.
4//
5//===----------------------------------------------------------------------===//
6
7#include "llvm/ValueHolderImpl.h"
8#include "llvm/InstrTypes.h"
9#include "llvm/SymbolTable.h"
10#include "llvm/SymTabValue.h"
11#include "llvm/ConstantPool.h"
12#include "llvm/ConstPoolVals.h"
13#include "llvm/Type.h"
14#ifndef NDEBUG // Only in -g mode...
15#include "llvm/Assembly/Writer.h"
16#endif
17#include <algorithm>
18
19//===----------------------------------------------------------------------===//
20// Value Class
21//===----------------------------------------------------------------------===//
22
23Value::Value(const Type *ty, ValueTy vty, const string &name = "") : Name(name){
24 Ty = ty;
25 VTy = vty;
26}
27
28Value::~Value() {
29#ifndef NDEBUG // Only in -g mode...
Chris Lattner874ddad2001-06-11 15:04:40 +000030 // Check to make sure that there are no uses of this value that are still
31 // around when the value is destroyed. If there are, then we have a dangling
32 // reference and something is wrong. This code is here to print out what is
33 // still being referenced. The value in question should be printed as
34 // a <badref>
35 //
Chris Lattner2f7c9632001-06-06 20:29:01 +000036 if (Uses.begin() != Uses.end()) {
Chris Lattner4cee8d82001-06-27 23:41:11 +000037 for (use_const_iterator I = Uses.begin(); I != Uses.end(); ++I)
Chris Lattner2f7c9632001-06-06 20:29:01 +000038 cerr << "Use still stuck around after Def is destroyed:" << *I << endl;
39 }
40#endif
41 assert(Uses.begin() == Uses.end());
42}
43
44void Value::replaceAllUsesWith(Value *D) {
45 assert(D && "Value::replaceAllUsesWith(<null>) is invalid!");
Chris Lattner2dd58ae2001-06-29 05:25:51 +000046 assert(D != this && "V->replaceAllUsesWith(V) is NOT valid!");
Chris Lattner2f7c9632001-06-06 20:29:01 +000047 while (!Uses.empty()) {
48 User *Use = Uses.front();
49#ifndef NDEBUG
50 unsigned NumUses = Uses.size();
51#endif
52 Use->replaceUsesOfWith(this, D);
53
54#ifndef NDEBUG // only in -g mode...
55 if (Uses.size() == NumUses)
56 cerr << "Use: " << Use << "replace with: " << D;
57#endif
58 assert(Uses.size() != NumUses && "Didn't remove definition!");
59 }
60}
61
62void Value::killUse(User *i) {
63 if (i == 0) return;
64 use_iterator I = find(Uses.begin(), Uses.end(), i);
65
66 assert(I != Uses.end() && "Use not in uses list!!");
67 Uses.erase(I);
68}
69
70User *Value::use_remove(use_iterator &I) {
71 assert(I != Uses.end() && "Trying to remove the end of the use list!!!");
72 User *i = *I;
73 I = Uses.erase(I);
74 return i;
75}
76
77
78//===----------------------------------------------------------------------===//
79// User Class
80//===----------------------------------------------------------------------===//
81
82User::User(const Type *Ty, ValueTy vty, const string &name)
83 : Value(Ty, vty, name) {
84}
85
86// replaceUsesOfWith - Replaces all references to the "From" definition with
87// references to the "To" definition.
88//
89void User::replaceUsesOfWith(Value *From, Value *To) {
90 if (From == To) return; // Duh what?
91
Chris Lattner4cee8d82001-06-27 23:41:11 +000092 for (unsigned OpNum = 0; Value *D = getOperand(OpNum); ++OpNum) {
Chris Lattner2f7c9632001-06-06 20:29:01 +000093 if (D == From) { // Okay, this operand is pointing to our fake def.
94 // The side effects of this setOperand call include linking to
95 // "To", adding "this" to the uses list of To, and
96 // most importantly, removing "this" from the use list of "From".
97 setOperand(OpNum, To); // Fix it now...
98 }
99 }
100}
101
102
103//===----------------------------------------------------------------------===//
104// SymTabValue Class
105//===----------------------------------------------------------------------===//
106
107// Instantiate Templates - This ugliness is the price we have to pay
108// for having a ValueHolderImpl.h file seperate from ValueHolder.h! :(
109//
110template class ValueHolder<ConstPoolVal, SymTabValue>;
111
112SymTabValue::SymTabValue(const Type *Ty, ValueTy dty, const string &name = "")
113 : Value(Ty, dty, name), ConstPool(this) {
114 ParentSymTab = SymTab = 0;
115}
116
117
118SymTabValue::~SymTabValue() {
119 ConstPool.dropAllReferences();
120 ConstPool.delete_all();
121 ConstPool.setParent(0);
122
123 delete SymTab;
124}
125
126void SymTabValue::setParentSymTab(SymbolTable *ST) {
127 ParentSymTab = ST;
128 if (SymTab)
129 SymTab->setParentSymTab(ST);
130}
131
132SymbolTable *SymTabValue::getSymbolTableSure() {
133 if (!SymTab) SymTab = new SymbolTable(ParentSymTab);
134 return SymTab;
135}
136
137// hasSymbolTable() - Returns true if there is a symbol table allocated to
138// this object AND if there is at least one name in it!
139//
140bool SymTabValue::hasSymbolTable() const {
141 if (!SymTab) return false;
142
143 for (SymbolTable::const_iterator I = SymTab->begin();
Chris Lattner4cee8d82001-06-27 23:41:11 +0000144 I != SymTab->end(); ++I) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000145 if (I->second.begin() != I->second.end())
146 return true; // Found nonempty type plane!
147 }
148
149 return false;
150}