1 //===-- llvm/Value.h - Definition of the Value class ------------*- C++ -*-===//
3 // This file defines the very important Value class. This is subclassed by a
4 // bunch of other important classes, like Instruction, Function, Type, etc...
6 // This file also defines the Use<> template for users of value.
8 //===----------------------------------------------------------------------===//
13 #include "llvm/AbstractTypeUser.h"
14 #include "Support/Annotation.h"
15 #include "Support/Casting.h"
30 //===----------------------------------------------------------------------===//
32 //===----------------------------------------------------------------------===//
34 /// Value - The base class of all values computed by a program that may be used
35 /// as operands to other values.
37 struct Value : public Annotable { // Values are annotable
39 TypeVal, // This is an instance of Type
40 ConstantVal, // This is an instance of Constant
41 ArgumentVal, // This is an instance of Argument
42 InstructionVal, // This is an instance of Instruction
43 BasicBlockVal, // This is an instance of BasicBlock
44 FunctionVal, // This is an instance of Function
45 GlobalVariableVal, // This is an instance of GlobalVariable
49 std::vector<User *> Uses;
54 void operator=(const Value &); // Do not implement
55 Value(const Value &); // Do not implement
57 Value(const Type *Ty, ValueTy vty, const std::string &name = "");
60 /// dump - Support for debugging, callable in GDB: V->dump()
62 virtual void dump() const;
64 /// print - Implement operator<< on Value...
66 virtual void print(std::ostream &O) const = 0;
68 /// All values are typed, get the type of this value.
70 inline const Type *getType() const { return Ty; }
72 // All values can potentially be named...
73 inline bool hasName() const { return Name != ""; }
74 inline const std::string &getName() const { return Name; }
76 virtual void setName(const std::string &name, SymbolTable * = 0) {
80 /// getValueType - Return the immediate subclass of this Value.
82 inline ValueTy getValueType() const { return VTy; }
84 /// replaceAllUsesWith - Go through the uses list for this definition and make
85 /// each use point to "V" instead of "this". After this completes, 'this's
86 /// use list is guaranteed to be empty.
88 void replaceAllUsesWith(Value *V);
90 // uncheckedReplaceAllUsesWith - Just like replaceAllUsesWith but dangerous.
91 // Only use when in type resolution situations!
92 void uncheckedReplaceAllUsesWith(Value *V);
94 //----------------------------------------------------------------------
95 // Methods for handling the vector of uses of this Value.
97 typedef std::vector<User*>::iterator use_iterator;
98 typedef std::vector<User*>::const_iterator use_const_iterator;
100 inline unsigned use_size() const { return Uses.size(); }
101 inline bool use_empty() const { return Uses.empty(); }
102 inline use_iterator use_begin() { return Uses.begin(); }
103 inline use_const_iterator use_begin() const { return Uses.begin(); }
104 inline use_iterator use_end() { return Uses.end(); }
105 inline use_const_iterator use_end() const { return Uses.end(); }
106 inline User *use_back() { return Uses.back(); }
107 inline const User *use_back() const { return Uses.back(); }
109 /// addUse/killUse - These two methods should only be used by the Use class
111 inline void addUse(User *I) { Uses.push_back(I); }
112 void killUse(User *I);
115 inline std::ostream &operator<<(std::ostream &OS, const Value *V) {
117 OS << "<null> value!\n";
123 inline std::ostream &operator<<(std::ostream &OS, const Value &V) {
129 //===----------------------------------------------------------------------===//
131 //===----------------------------------------------------------------------===//
133 // Use is here to make keeping the "use" list of a Value up-to-date really easy.
139 inline Use(Value *v, User *user) {
141 if (Val) Val->addUse(U);
144 inline Use(const Use &user) {
149 inline ~Use() { if (Val) Val->killUse(U); }
150 inline operator Value*() const { return Val; }
152 inline Value *operator=(Value *V) {
153 if (Val) Val->killUse(U);
159 inline Value *operator->() { return Val; }
160 inline const Value *operator->() const { return Val; }
162 inline Value *get() { return Val; }
163 inline const Value *get() const { return Val; }
165 inline const Use &operator=(const Use &user) {
166 if (Val) Val->killUse(U);
173 template<> struct simplify_type<Use> {
174 typedef Value* SimpleType;
176 static SimpleType getSimplifiedValue(const Use &Val) {
177 return (SimpleType)Val.get();
180 template<> struct simplify_type<const Use> {
181 typedef Value* SimpleType;
183 static SimpleType getSimplifiedValue(const Use &Val) {
184 return (SimpleType)Val.get();
188 // isa - Provide some specializations of isa so that we don't have to include
189 // the subtype header files to test to see if the value is a subclass...
191 template <> inline bool isa_impl<Type, Value>(const Value &Val) {
192 return Val.getValueType() == Value::TypeVal;
194 template <> inline bool isa_impl<Constant, Value>(const Value &Val) {
195 return Val.getValueType() == Value::ConstantVal;
197 template <> inline bool isa_impl<Argument, Value>(const Value &Val) {
198 return Val.getValueType() == Value::ArgumentVal;
200 template <> inline bool isa_impl<Instruction, Value>(const Value &Val) {
201 return Val.getValueType() == Value::InstructionVal;
203 template <> inline bool isa_impl<BasicBlock, Value>(const Value &Val) {
204 return Val.getValueType() == Value::BasicBlockVal;
206 template <> inline bool isa_impl<Function, Value>(const Value &Val) {
207 return Val.getValueType() == Value::FunctionVal;
209 template <> inline bool isa_impl<GlobalVariable, Value>(const Value &Val) {
210 return Val.getValueType() == Value::GlobalVariableVal;
212 template <> inline bool isa_impl<GlobalValue, Value>(const Value &Val) {
213 return isa<GlobalVariable>(Val) || isa<Function>(Val);