blob: 7ae04e491d25fd20e16c09bc8c1c85b382dc0eae [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00002//
Chris Lattner3462ae32001-12-03 22:26:30 +00003// This file implements the Constant* classes...
Chris Lattner2f7c9632001-06-06 20:29:01 +00004//
5//===----------------------------------------------------------------------===//
6
Chris Lattnerca142372002-04-28 19:55:58 +00007#include "llvm/Constants.h"
Chris Lattneracdbe712003-04-17 19:24:48 +00008#include "llvm/ConstantHandling.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +00009#include "llvm/DerivedTypes.h"
Vikram S. Adve4e537b22002-07-14 23:13:17 +000010#include "llvm/iMemory.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000011#include "llvm/SymbolTable.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000012#include "llvm/Module.h"
Chris Lattner5de22042001-11-27 00:03:19 +000013#include "Support/StringExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000014#include <algorithm>
Chris Lattner2f7c9632001-06-06 20:29:01 +000015
Chris Lattner3462ae32001-12-03 22:26:30 +000016ConstantBool *ConstantBool::True = new ConstantBool(true);
17ConstantBool *ConstantBool::False = new ConstantBool(false);
Chris Lattner2f7c9632001-06-06 20:29:01 +000018
Chris Lattner9655e542001-07-20 19:16:02 +000019
Chris Lattner2f7c9632001-06-06 20:29:01 +000020//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000021// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000022//===----------------------------------------------------------------------===//
23
24// Specialize setName to take care of symbol table majik
Chris Lattner7f74a562002-01-20 22:54:45 +000025void Constant::setName(const std::string &Name, SymbolTable *ST) {
Chris Lattner49d855c2001-09-07 16:46:31 +000026 assert(ST && "Type::setName - Must provide symbol table argument!");
27
28 if (Name.size()) ST->insert(Name, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000029}
30
Chris Lattner3462ae32001-12-03 22:26:30 +000031void Constant::destroyConstantImpl() {
32 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000033 // references to the constant by other constants in the constant pool. These
34 // constants are implicitly dependant on the module that is being deleted,
35 // but they don't know that. Because we only find out when the CPV is
36 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000037 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000038 //
39 while (!use_empty()) {
40 Value *V = use_back();
41#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000042 if (!isa<Constant>(V))
43 std::cerr << "While deleting: " << *this
44 << "\n\nUse still stuck around after Def is destroyed: "
45 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000046#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000047 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner3462ae32001-12-03 22:26:30 +000048 Constant *CPV = cast<Constant>(V);
Chris Lattnerd7a73302001-10-13 06:57:33 +000049 CPV->destroyConstant();
50
51 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000052 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000053 }
54
55 // Value has no outstanding references it is safe to delete it now...
56 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000057}
Chris Lattner2f7c9632001-06-06 20:29:01 +000058
Chris Lattnerb1585a92002-08-13 17:50:20 +000059// Static constructor to create a '0' constant of arbitrary type...
60Constant *Constant::getNullValue(const Type *Ty) {
61 switch (Ty->getPrimitiveID()) {
62 case Type::BoolTyID: return ConstantBool::get(false);
63 case Type::SByteTyID:
64 case Type::ShortTyID:
65 case Type::IntTyID:
66 case Type::LongTyID: return ConstantSInt::get(Ty, 0);
67
68 case Type::UByteTyID:
69 case Type::UShortTyID:
70 case Type::UIntTyID:
71 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
72
73 case Type::FloatTyID:
74 case Type::DoubleTyID: return ConstantFP::get(Ty, 0);
75
76 case Type::PointerTyID:
77 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattnerc33ae672003-03-06 21:02:18 +000078 case Type::StructTyID: {
79 const StructType *ST = cast<StructType>(Ty);
80
81 const StructType::ElementTypes &ETs = ST->getElementTypes();
82 std::vector<Constant*> Elements;
83 Elements.resize(ETs.size());
84 for (unsigned i = 0, e = ETs.size(); i != e; ++i)
85 Elements[i] = Constant::getNullValue(ETs[i]);
86 return ConstantStruct::get(ST, Elements);
87 }
88 case Type::ArrayTyID: {
89 const ArrayType *AT = cast<ArrayType>(Ty);
90 Constant *El = Constant::getNullValue(AT->getElementType());
91 unsigned NumElements = AT->getNumElements();
92 return ConstantArray::get(AT, std::vector<Constant*>(NumElements, El));
93 }
Chris Lattnerb1585a92002-08-13 17:50:20 +000094 default:
Chris Lattnerc33ae672003-03-06 21:02:18 +000095 // Function, Type, Label, or Opaque type?
96 assert(0 && "Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +000097 return 0;
98 }
99}
100
101// Static constructor to create the maximum constant of an integral type...
102ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
103 switch (Ty->getPrimitiveID()) {
104 case Type::BoolTyID: return ConstantBool::True;
105 case Type::SByteTyID:
106 case Type::ShortTyID:
107 case Type::IntTyID:
108 case Type::LongTyID: {
109 // Calculate 011111111111111...
110 unsigned TypeBits = Ty->getPrimitiveSize()*8;
111 int64_t Val = INT64_MAX; // All ones
112 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
113 return ConstantSInt::get(Ty, Val);
114 }
115
116 case Type::UByteTyID:
117 case Type::UShortTyID:
118 case Type::UIntTyID:
119 case Type::ULongTyID: return getAllOnesValue(Ty);
120
Chris Lattner31408f72002-08-14 17:12:13 +0000121 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000122 }
123}
124
125// Static constructor to create the minimum constant for an integral type...
126ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
127 switch (Ty->getPrimitiveID()) {
128 case Type::BoolTyID: return ConstantBool::False;
129 case Type::SByteTyID:
130 case Type::ShortTyID:
131 case Type::IntTyID:
132 case Type::LongTyID: {
133 // Calculate 1111111111000000000000
134 unsigned TypeBits = Ty->getPrimitiveSize()*8;
135 int64_t Val = -1; // All ones
136 Val <<= TypeBits-1; // Shift over to the right spot
137 return ConstantSInt::get(Ty, Val);
138 }
139
140 case Type::UByteTyID:
141 case Type::UShortTyID:
142 case Type::UIntTyID:
143 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
144
Chris Lattner31408f72002-08-14 17:12:13 +0000145 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000146 }
147}
148
149// Static constructor to create an integral constant with all bits set
150ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
151 switch (Ty->getPrimitiveID()) {
152 case Type::BoolTyID: return ConstantBool::True;
153 case Type::SByteTyID:
154 case Type::ShortTyID:
155 case Type::IntTyID:
156 case Type::LongTyID: return ConstantSInt::get(Ty, -1);
157
158 case Type::UByteTyID:
159 case Type::UShortTyID:
160 case Type::UIntTyID:
161 case Type::ULongTyID: {
162 // Calculate ~0 of the right type...
163 unsigned TypeBits = Ty->getPrimitiveSize()*8;
164 uint64_t Val = ~0ULL; // All ones
165 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
166 return ConstantUInt::get(Ty, Val);
167 }
Chris Lattner31408f72002-08-14 17:12:13 +0000168 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000169 }
170}
171
Chris Lattner83e5d392003-03-10 22:39:02 +0000172bool ConstantUInt::isAllOnesValue() const {
173 unsigned TypeBits = getType()->getPrimitiveSize()*8;
174 uint64_t Val = ~0ULL; // All ones
175 Val >>= 64-TypeBits; // Shift out inappropriate bits
176 return getValue() == Val;
177}
178
Chris Lattnerb1585a92002-08-13 17:50:20 +0000179
Chris Lattner2f7c9632001-06-06 20:29:01 +0000180//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000181// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000182//===----------------------------------------------------------------------===//
183
184//===----------------------------------------------------------------------===//
185// Normal Constructors
186
Chris Lattnerb1585a92002-08-13 17:50:20 +0000187ConstantBool::ConstantBool(bool V) : ConstantIntegral(Type::BoolTy) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000188 Val = V;
189}
Chris Lattner49d855c2001-09-07 16:46:31 +0000190
Chris Lattnerb1585a92002-08-13 17:50:20 +0000191ConstantInt::ConstantInt(const Type *Ty, uint64_t V) : ConstantIntegral(Ty) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000192 Val.Unsigned = V;
Chris Lattner7309d662001-07-21 19:16:08 +0000193}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000194
Chris Lattner3462ae32001-12-03 22:26:30 +0000195ConstantSInt::ConstantSInt(const Type *Ty, int64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000196 assert(Ty->isInteger() && Ty->isSigned() &&
197 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000198 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000199}
200
Chris Lattner3462ae32001-12-03 22:26:30 +0000201ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000202 assert(Ty->isInteger() && Ty->isUnsigned() &&
203 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000204 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000205}
206
Chris Lattner3462ae32001-12-03 22:26:30 +0000207ConstantFP::ConstantFP(const Type *Ty, double V) : Constant(Ty) {
Chris Lattner9655e542001-07-20 19:16:02 +0000208 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000209 Val = V;
210}
211
Chris Lattner3462ae32001-12-03 22:26:30 +0000212ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000213 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner0d779712002-10-08 23:33:52 +0000214 Operands.reserve(V.size());
215 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000216 assert(V[i]->getType() == T->getElementType());
Chris Lattnera073acb2001-07-07 08:36:50 +0000217 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000218 }
219}
220
Chris Lattner3462ae32001-12-03 22:26:30 +0000221ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000222 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000223 const StructType::ElementTypes &ETypes = T->getElementTypes();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000224 assert(V.size() == ETypes.size() &&
225 "Invalid initializer vector for constant structure");
Chris Lattner0d779712002-10-08 23:33:52 +0000226 Operands.reserve(V.size());
227 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattner93c8f142003-06-02 17:42:47 +0000228 assert(V[i]->getType() == ETypes[i] &&
229 "Initializer for struct element doesn't match struct element type!");
Chris Lattnera073acb2001-07-07 08:36:50 +0000230 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000231 }
232}
233
Chris Lattner3462ae32001-12-03 22:26:30 +0000234ConstantPointerRef::ConstantPointerRef(GlobalValue *GV)
235 : ConstantPointer(GV->getType()) {
Chris Lattner60e0dd72001-10-03 06:12:09 +0000236 Operands.push_back(Use(GV, this));
237}
238
Chris Lattner3cd8c562002-07-30 18:54:25 +0000239ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
240 : Constant(Ty), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000241 Operands.push_back(Use(C, this));
242}
243
Chris Lattner3cd8c562002-07-30 18:54:25 +0000244ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
245 : Constant(C1->getType()), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000246 Operands.push_back(Use(C1, this));
247 Operands.push_back(Use(C2, this));
248}
249
Chris Lattner3cd8c562002-07-30 18:54:25 +0000250ConstantExpr::ConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
251 const Type *DestTy)
252 : Constant(DestTy), iType(Instruction::GetElementPtr) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000253 Operands.reserve(1+IdxList.size());
254 Operands.push_back(Use(C, this));
255 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
256 Operands.push_back(Use(IdxList[i], this));
257}
258
Chris Lattner60e0dd72001-10-03 06:12:09 +0000259
Chris Lattner2f7c9632001-06-06 20:29:01 +0000260
261//===----------------------------------------------------------------------===//
Chris Lattnerd7a73302001-10-13 06:57:33 +0000262// classof implementations
263
Chris Lattnerb1585a92002-08-13 17:50:20 +0000264bool ConstantIntegral::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000265 return CPV->getType()->isIntegral() && !isa<ConstantExpr>(CPV);
Chris Lattner41e99a02002-08-12 21:21:21 +0000266}
267
Chris Lattner3462ae32001-12-03 22:26:30 +0000268bool ConstantInt::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000269 return CPV->getType()->isInteger() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000270}
Chris Lattner3462ae32001-12-03 22:26:30 +0000271bool ConstantSInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000272 return CPV->getType()->isSigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000273}
Chris Lattner3462ae32001-12-03 22:26:30 +0000274bool ConstantUInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000275 return CPV->getType()->isUnsigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000276}
Chris Lattner3462ae32001-12-03 22:26:30 +0000277bool ConstantFP::classof(const Constant *CPV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000278 const Type *Ty = CPV->getType();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000279 return ((Ty == Type::FloatTy || Ty == Type::DoubleTy) &&
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000280 !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000281}
Chris Lattner3462ae32001-12-03 22:26:30 +0000282bool ConstantArray::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000283 return isa<ArrayType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000284}
Chris Lattner3462ae32001-12-03 22:26:30 +0000285bool ConstantStruct::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000286 return isa<StructType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000287}
Chris Lattner3462ae32001-12-03 22:26:30 +0000288bool ConstantPointer::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000289 return (isa<PointerType>(CPV->getType()) && !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000290}
291
292
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000293
Chris Lattner2f7c9632001-06-06 20:29:01 +0000294//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000295// isValueValidForType implementations
296
Chris Lattner3462ae32001-12-03 22:26:30 +0000297bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000298 switch (Ty->getPrimitiveID()) {
299 default:
300 return false; // These can't be represented as integers!!!
301
302 // Signed types...
303 case Type::SByteTyID:
304 return (Val <= INT8_MAX && Val >= INT8_MIN);
305 case Type::ShortTyID:
306 return (Val <= INT16_MAX && Val >= INT16_MIN);
307 case Type::IntTyID:
308 return (Val <= INT32_MAX && Val >= INT32_MIN);
309 case Type::LongTyID:
310 return true; // This is the largest type...
311 }
312 assert(0 && "WTF?");
313 return false;
314}
315
Chris Lattner3462ae32001-12-03 22:26:30 +0000316bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000317 switch (Ty->getPrimitiveID()) {
318 default:
319 return false; // These can't be represented as integers!!!
320
321 // Unsigned types...
322 case Type::UByteTyID:
323 return (Val <= UINT8_MAX);
324 case Type::UShortTyID:
325 return (Val <= UINT16_MAX);
326 case Type::UIntTyID:
327 return (Val <= UINT32_MAX);
328 case Type::ULongTyID:
329 return true; // This is the largest type...
330 }
331 assert(0 && "WTF?");
332 return false;
333}
334
Chris Lattner3462ae32001-12-03 22:26:30 +0000335bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000336 switch (Ty->getPrimitiveID()) {
337 default:
338 return false; // These can't be represented as floating point!
339
340 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000341 case Type::FloatTyID:
Chris Lattnerd06dd692001-07-15 00:18:39 +0000342 /*
Chris Lattner2f7c9632001-06-06 20:29:01 +0000343 return (Val <= UINT8_MAX);
344 */
345 case Type::DoubleTyID:
346 return true; // This is the largest type...
347 }
348};
Chris Lattner9655e542001-07-20 19:16:02 +0000349
Chris Lattner49d855c2001-09-07 16:46:31 +0000350//===----------------------------------------------------------------------===//
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000351// replaceUsesOfWithOnConstant implementations
352
353void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To) {
354 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
355
356 std::vector<Constant*> Values;
357 Values.reserve(getValues().size()); // Build replacement array...
358 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
359 Constant *Val = cast<Constant>(getValues()[i]);
360 if (Val == From) Val = cast<Constant>(To);
361 Values.push_back(Val);
362 }
363
364 ConstantArray *Replacement = ConstantArray::get(getType(), Values);
365 assert(Replacement != this && "I didn't contain From!");
366
367 // Everyone using this now uses the replacement...
368 replaceAllUsesWith(Replacement);
369
370 // Delete the old constant!
371 destroyConstant();
372}
373
374void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To) {
375 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
376
377 std::vector<Constant*> Values;
378 Values.reserve(getValues().size());
379 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
380 Constant *Val = cast<Constant>(getValues()[i]);
381 if (Val == From) Val = cast<Constant>(To);
382 Values.push_back(Val);
383 }
384
385 ConstantStruct *Replacement = ConstantStruct::get(getType(), Values);
386 assert(Replacement != this && "I didn't contain From!");
387
388 // Everyone using this now uses the replacement...
389 replaceAllUsesWith(Replacement);
390
391 // Delete the old constant!
392 destroyConstant();
393}
394
395void ConstantPointerRef::replaceUsesOfWithOnConstant(Value *From, Value *To) {
396 if (isa<GlobalValue>(To)) {
397 assert(From == getOperand(0) && "Doesn't contain from!");
398 ConstantPointerRef *Replacement =
399 ConstantPointerRef::get(cast<GlobalValue>(To));
400
401 // Everyone using this now uses the replacement...
402 replaceAllUsesWith(Replacement);
403
404 // Delete the old constant!
405 destroyConstant();
406 } else {
407 // Just replace ourselves with the To value specified.
408 replaceAllUsesWith(To);
409
410 // Delete the old constant!
411 destroyConstant();
412 }
413}
414
Chris Lattner55ed6562003-05-14 17:51:05 +0000415void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV) {
416 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
417 Constant *To = cast<Constant>(ToV);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000418
Chris Lattner46b3d302003-04-16 22:40:51 +0000419 Constant *Replacement = 0;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000420 if (getOpcode() == Instruction::GetElementPtr) {
421 std::vector<Constant*> Indices;
Chris Lattner55ed6562003-05-14 17:51:05 +0000422 Constant *Pointer = getOperand(0);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000423 Indices.reserve(getNumOperands()-1);
Chris Lattner55ed6562003-05-14 17:51:05 +0000424 if (Pointer == From) Pointer = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000425
426 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000427 Constant *Val = getOperand(i);
428 if (Val == From) Val = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000429 Indices.push_back(Val);
430 }
431 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
432 } else if (getOpcode() == Instruction::Cast) {
433 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner55ed6562003-05-14 17:51:05 +0000434 Replacement = ConstantExpr::getCast(To, getType());
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000435 } else if (getNumOperands() == 2) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000436 Constant *C1 = getOperand(0);
437 Constant *C2 = getOperand(1);
438 if (C1 == From) C1 = To;
439 if (C2 == From) C2 = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000440 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
441 } else {
442 assert(0 && "Unknown ConstantExpr type!");
443 return;
444 }
445
446 assert(Replacement != this && "I didn't contain From!");
447
448 // Everyone using this now uses the replacement...
449 replaceAllUsesWith(Replacement);
450
451 // Delete the old constant!
452 destroyConstant();
453}
454
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000455//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000456// Factory Function Implementation
457
Chris Lattner98fa07b2003-05-23 20:03:32 +0000458// ConstantCreator - A class that is used to create constants by
459// ValueMap*. This class should be partially specialized if there is
460// something strange that needs to be done to interface to the ctor for the
461// constant.
462//
463template<class ConstantClass, class TypeClass, class ValType>
464struct ConstantCreator {
465 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
466 return new ConstantClass(Ty, V);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000467 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000468};
469
Chris Lattner98fa07b2003-05-23 20:03:32 +0000470namespace {
471 template<class ValType, class TypeClass, class ConstantClass>
472 class ValueMap {
473 protected:
474 typedef std::pair<const TypeClass*, ValType> ConstHashKey;
475 std::map<ConstHashKey, ConstantClass *> Map;
476 public:
477 // getOrCreate - Return the specified constant from the map, creating it if
478 // necessary.
479 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
480 ConstHashKey Lookup(Ty, V);
481 typename std::map<ConstHashKey,ConstantClass *>::iterator I =
482 Map.lower_bound(Lookup);
483 if (I != Map.end() && I->first == Lookup)
484 return I->second; // Is it in the map?
485
486 // If no preexisting value, create one now...
487 ConstantClass *Result =
488 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
489
490 Map.insert(I, std::make_pair(ConstHashKey(Ty, V), Result));
491 return Result;
492 }
493
494 void remove(ConstantClass *CP) {
495 // FIXME: This could be sped up a LOT. If this gets to be a performance
496 // problem, someone should look at this.
497 for (typename std::map<ConstHashKey, ConstantClass*>::iterator
498 I = Map.begin(), E = Map.end(); I != E; ++I)
499 if (I->second == CP) {
500 Map.erase(I);
501 return;
502 }
503 assert(0 && "Constant not found in constant table!");
504 }
505 };
506}
507
508
509
Chris Lattner3462ae32001-12-03 22:26:30 +0000510//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000511//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000512static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
513static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000514
Chris Lattner3462ae32001-12-03 22:26:30 +0000515ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000516 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000517}
518
Chris Lattner3462ae32001-12-03 22:26:30 +0000519ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000520 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000521}
522
Chris Lattner3462ae32001-12-03 22:26:30 +0000523ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000524 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000525 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
526 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000527}
528
Chris Lattner3462ae32001-12-03 22:26:30 +0000529//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000530//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000531static ValueMap<double, Type, ConstantFP> FPConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000532
Chris Lattner3462ae32001-12-03 22:26:30 +0000533ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000534 return FPConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000535}
536
Chris Lattner3462ae32001-12-03 22:26:30 +0000537//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000538//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000539static ValueMap<std::vector<Constant*>, ArrayType,
540 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000541
Chris Lattner3462ae32001-12-03 22:26:30 +0000542ConstantArray *ConstantArray::get(const ArrayType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000543 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000544 return ArrayConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000545}
546
Chris Lattner98fa07b2003-05-23 20:03:32 +0000547// destroyConstant - Remove the constant from the constant table...
548//
549void ConstantArray::destroyConstant() {
550 ArrayConstants.remove(this);
551 destroyConstantImpl();
552}
553
554/// refineAbstractType - If this callback is invoked, then this constant is of a
555/// derived type, change all users to use a concrete constant of the new type.
556///
557void ConstantArray::refineAbstractType(const DerivedType *OldTy,
558 const Type *NewTy) {
559 Value::refineAbstractType(OldTy, NewTy);
Chris Lattner7fa67832003-06-02 17:25:46 +0000560 if (OldTy == NewTy) return;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000561
562 // Make everyone now use a constant of the new type...
563 std::vector<Constant*> C;
564 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
565 C.push_back(cast<Constant>(getOperand(i)));
566 replaceAllUsesWith(ConstantArray::get(cast<ArrayType>(NewTy),
567 C));
568 destroyConstant(); // This constant is now dead, destroy it.
569}
570
571
Chris Lattner3462ae32001-12-03 22:26:30 +0000572// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000573// contain the specified string. A null terminator is added to the specified
574// string so that it may be used in a natural way...
575//
Chris Lattner7f74a562002-01-20 22:54:45 +0000576ConstantArray *ConstantArray::get(const std::string &Str) {
577 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000578
579 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000580 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000581
582 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000583 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000584
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000585 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000586 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000587}
588
Chris Lattner81fabb02002-08-26 17:53:56 +0000589// getAsString - If the sub-element type of this array is either sbyte or ubyte,
590// then this method converts the array to an std::string and returns it.
591// Otherwise, it asserts out.
592//
593std::string ConstantArray::getAsString() const {
594 std::string Result;
595 if (getType()->getElementType() == Type::SByteTy)
596 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
597 Result += (char)cast<ConstantSInt>(getOperand(i))->getValue();
598 else {
599 assert(getType()->getElementType() == Type::UByteTy && "Not a string!");
600 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
601 Result += (char)cast<ConstantUInt>(getOperand(i))->getValue();
602 }
603 return Result;
604}
605
606
Chris Lattner3462ae32001-12-03 22:26:30 +0000607//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000608//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000609static ValueMap<std::vector<Constant*>, StructType,
610 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000611
Chris Lattner3462ae32001-12-03 22:26:30 +0000612ConstantStruct *ConstantStruct::get(const StructType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000613 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000614 return StructConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000615}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000616
Chris Lattnerd7a73302001-10-13 06:57:33 +0000617// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +0000618//
Chris Lattner3462ae32001-12-03 22:26:30 +0000619void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000620 StructConstants.remove(this);
621 destroyConstantImpl();
622}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000623
Chris Lattner98fa07b2003-05-23 20:03:32 +0000624/// refineAbstractType - If this callback is invoked, then this constant is of a
625/// derived type, change all users to use a concrete constant of the new type.
626///
627void ConstantStruct::refineAbstractType(const DerivedType *OldTy,
628 const Type *NewTy) {
629 Value::refineAbstractType(OldTy, NewTy);
Chris Lattner7fa67832003-06-02 17:25:46 +0000630 if (OldTy == NewTy) return;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000631
632 // Make everyone now use a constant of the new type...
633 std::vector<Constant*> C;
634 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
635 C.push_back(cast<Constant>(getOperand(i)));
636 replaceAllUsesWith(ConstantStruct::get(cast<StructType>(NewTy),
637 C));
638 destroyConstant(); // This constant is now dead, destroy it.
639}
640
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000641
Chris Lattner3462ae32001-12-03 22:26:30 +0000642//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +0000643//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000644
645// ConstantPointerNull does not take extra "value" argument...
646template<class ValType>
647struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
648 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
649 return new ConstantPointerNull(Ty);
650 }
651};
652
653static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +0000654
Chris Lattner3462ae32001-12-03 22:26:30 +0000655ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000656 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +0000657}
658
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000659// destroyConstant - Remove the constant from the constant table...
660//
661void ConstantPointerNull::destroyConstant() {
662 NullPtrConstants.remove(this);
663 destroyConstantImpl();
664}
665
Chris Lattner98fa07b2003-05-23 20:03:32 +0000666/// refineAbstractType - If this callback is invoked, then this constant is of a
667/// derived type, change all users to use a concrete constant of the new type.
668///
669void ConstantPointerNull::refineAbstractType(const DerivedType *OldTy,
670 const Type *NewTy) {
671 Value::refineAbstractType(OldTy, NewTy);
Chris Lattner7fa67832003-06-02 17:25:46 +0000672 if (OldTy == NewTy) return;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000673
674 // Make everyone now use a constant of the new type...
Chris Lattner93c8f142003-06-02 17:42:47 +0000675 replaceAllUsesWith(ConstantPointerNull::get(cast<PointerType>(NewTy)));
Chris Lattner20ec7bc2003-05-25 16:15:32 +0000676
Chris Lattner93c8f142003-06-02 17:42:47 +0000677 // This constant is now dead, destroy it.
678 destroyConstant();
Chris Lattner98fa07b2003-05-23 20:03:32 +0000679}
680
681
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000682
Chris Lattner3462ae32001-12-03 22:26:30 +0000683//---- ConstantPointerRef::get() implementation...
Chris Lattner25033252001-10-03 19:28:15 +0000684//
Chris Lattner3462ae32001-12-03 22:26:30 +0000685ConstantPointerRef *ConstantPointerRef::get(GlobalValue *GV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000686 assert(GV->getParent() && "Global Value must be attached to a module!");
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000687
Chris Lattnerd7a73302001-10-13 06:57:33 +0000688 // The Module handles the pointer reference sharing...
Chris Lattner3462ae32001-12-03 22:26:30 +0000689 return GV->getParent()->getConstantPointerRef(GV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000690}
691
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000692// destroyConstant - Remove the constant from the constant table...
693//
694void ConstantPointerRef::destroyConstant() {
695 getValue()->getParent()->destroyConstantPointerRef(this);
696 destroyConstantImpl();
697}
698
699
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000700//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000701//
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000702typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000703
704template<>
705struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
706 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
707 if (V.first == Instruction::Cast)
708 return new ConstantExpr(Instruction::Cast, V.second[0], Ty);
709 if ((V.first >= Instruction::BinaryOpsBegin &&
710 V.first < Instruction::BinaryOpsEnd) ||
711 V.first == Instruction::Shl || V.first == Instruction::Shr)
712 return new ConstantExpr(V.first, V.second[0], V.second[1]);
713
714 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
715
716 // Check that the indices list is valid...
717 std::vector<Value*> ValIdxList(V.second.begin()+1, V.second.end());
718 const Type *DestTy = GetElementPtrInst::getIndexedType(Ty, ValIdxList,
719 true);
720 assert(DestTy && "Invalid index list for GetElementPtr expression");
721
722 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
723 return new ConstantExpr(V.second[0], IdxList, PointerType::get(DestTy));
724 }
725};
726
727static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +0000728
Chris Lattner46b3d302003-04-16 22:40:51 +0000729Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattneracdbe712003-04-17 19:24:48 +0000730 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
731 return FC; // Fold a few common cases...
732
Vikram S. Adve4c485332002-07-15 18:19:33 +0000733 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000734 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000735 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
736 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000737}
Chris Lattnerd7a73302001-10-13 06:57:33 +0000738
Chris Lattner46b3d302003-04-16 22:40:51 +0000739Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000740 // Check the operands for consistency first
741 assert((Opcode >= Instruction::BinaryOpsBegin &&
742 Opcode < Instruction::BinaryOpsEnd) &&
743 "Invalid opcode in binary constant expression");
744 assert(C1->getType() == C2->getType() &&
745 "Operand types in binary constant expression should match");
Chris Lattneracdbe712003-04-17 19:24:48 +0000746
747 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
748 return FC; // Fold a few common cases...
749
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000750 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000751 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
752 return ExprConstants.getOrCreate(C1->getType(), Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000753}
754
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000755/// getShift - Return a shift left or shift right constant expr
756Constant *ConstantExpr::getShift(unsigned Opcode, Constant *C1, Constant *C2) {
757 // Check the operands for consistency first
758 assert((Opcode == Instruction::Shl ||
759 Opcode == Instruction::Shr) &&
760 "Invalid opcode in binary constant expression");
761 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
762 "Invalid operand types for Shift constant expr!");
763
764 if (Constant *FC = ConstantFoldShiftInstruction(Opcode, C1, C2))
765 return FC; // Fold a few common cases...
766
767 // Look up the constant in the table first to ensure uniqueness
768 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000769 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
770 return ExprConstants.getOrCreate(C1->getType(), Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000771}
772
773
Chris Lattner46b3d302003-04-16 22:40:51 +0000774Constant *ConstantExpr::getGetElementPtr(Constant *C,
775 const std::vector<Constant*> &IdxList){
Chris Lattneracdbe712003-04-17 19:24:48 +0000776 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
777 return FC; // Fold a few common cases...
Chris Lattner3cd8c562002-07-30 18:54:25 +0000778 const Type *Ty = C->getType();
Chris Lattner98fa07b2003-05-23 20:03:32 +0000779 assert(isa<PointerType>(Ty) &&
780 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +0000781
782 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000783 std::vector<Constant*> argVec(1, C);
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000784 argVec.insert(argVec.end(), IdxList.begin(), IdxList.end());
Vikram S. Adve4c485332002-07-15 18:19:33 +0000785
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000786 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,argVec);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000787 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +0000788}
789
790// destroyConstant - Remove the constant from the constant table...
791//
792void ConstantExpr::destroyConstant() {
793 ExprConstants.remove(this);
794 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000795}
796
Chris Lattner98fa07b2003-05-23 20:03:32 +0000797/// refineAbstractType - If this callback is invoked, then this constant is of a
798/// derived type, change all users to use a concrete constant of the new type.
799///
800void ConstantExpr::refineAbstractType(const DerivedType *OldTy,
801 const Type *NewTy) {
802 Value::refineAbstractType(OldTy, NewTy);
Chris Lattner7fa67832003-06-02 17:25:46 +0000803 if (OldTy == NewTy) return;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000804
805 // FIXME: These need to use a lower-level implementation method, because the
806 // ::get methods intuit the type of the result based on the types of the
807 // operands. The operand types may not have had their types resolved yet.
808 //
809 if (getOpcode() == Instruction::Cast) {
810 replaceAllUsesWith(getCast(getOperand(0), NewTy));
811 } else if (getOpcode() >= Instruction::BinaryOpsBegin &&
812 getOpcode() < Instruction::BinaryOpsEnd) {
813 replaceAllUsesWith(get(getOpcode(), getOperand(0), getOperand(0)));
814 } else if (getOpcode() == Instruction::Shl || getOpcode() ==Instruction::Shr){
815 replaceAllUsesWith(getShift(getOpcode(), getOperand(0), getOperand(0)));
816 } else {
817 assert(getOpcode() == Instruction::GetElementPtr);
818
819 // Make everyone now use a constant of the new type...
820 std::vector<Constant*> C;
821 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
822 C.push_back(cast<Constant>(getOperand(i)));
823 replaceAllUsesWith(ConstantExpr::getGetElementPtr(getOperand(0),
824 C));
825 }
826 destroyConstant(); // This constant is now dead, destroy it.
827}
828
829
830
831
Chris Lattner3cd8c562002-07-30 18:54:25 +0000832const char *ConstantExpr::getOpcodeName() const {
833 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000834}
835
Chris Lattner163b8902002-10-14 03:30:23 +0000836unsigned Constant::mutateReferences(Value *OldV, Value *NewV) {
837 // Uses of constant pointer refs are global values, not constants!
838 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
839 GlobalValue *NewGV = cast<GlobalValue>(NewV);
840 GlobalValue *OldGV = CPR->getValue();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000841
Chris Lattner163b8902002-10-14 03:30:23 +0000842 assert(OldGV == OldV && "Cannot mutate old value if I'm not using it!");
Chris Lattner163b8902002-10-14 03:30:23 +0000843 Operands[0] = NewGV;
Chris Lattnercb4d26f2003-05-15 19:37:21 +0000844 OldGV->getParent()->mutateConstantPointerRef(OldGV, NewGV);
Chris Lattner163b8902002-10-14 03:30:23 +0000845 return 1;
846 } else {
847 Constant *NewC = cast<Constant>(NewV);
848 unsigned NumReplaced = 0;
849 for (unsigned i = 0, N = getNumOperands(); i != N; ++i)
850 if (Operands[i] == OldV) {
851 ++NumReplaced;
852 Operands[i] = NewC;
853 }
854 return NumReplaced;
855 }
Chris Lattner25033252001-10-03 19:28:15 +0000856}