blob: 3e481fd0481e236b1b8e9ecd7db32f3dcae5779d [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
Misha Brukmanbe372b92003-08-21 22:14:26 +000034 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000035 // 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()) {
Chris Lattner3e88ef92003-10-03 19:34:51 +000062 case Type::BoolTyID: {
63 static Constant *NullBool = ConstantBool::get(false);
64 return NullBool;
65 }
66 case Type::SByteTyID: {
67 static Constant *NullSByte = ConstantSInt::get(Type::SByteTy, 0);
68 return NullSByte;
69 }
70 case Type::UByteTyID: {
71 static Constant *NullUByte = ConstantUInt::get(Type::UByteTy, 0);
72 return NullUByte;
73 }
74 case Type::ShortTyID: {
75 static Constant *NullShort = ConstantSInt::get(Type::ShortTy, 0);
76 return NullShort;
77 }
78 case Type::UShortTyID: {
79 static Constant *NullUShort = ConstantUInt::get(Type::UShortTy, 0);
80 return NullUShort;
81 }
82 case Type::IntTyID: {
83 static Constant *NullInt = ConstantSInt::get(Type::IntTy, 0);
84 return NullInt;
85 }
86 case Type::UIntTyID: {
87 static Constant *NullUInt = ConstantUInt::get(Type::UIntTy, 0);
88 return NullUInt;
89 }
90 case Type::LongTyID: {
91 static Constant *NullLong = ConstantSInt::get(Type::LongTy, 0);
92 return NullLong;
93 }
94 case Type::ULongTyID: {
95 static Constant *NullULong = ConstantUInt::get(Type::ULongTy, 0);
96 return NullULong;
97 }
Chris Lattnerb1585a92002-08-13 17:50:20 +000098
Chris Lattner3e88ef92003-10-03 19:34:51 +000099 case Type::FloatTyID: {
100 static Constant *NullFloat = ConstantFP::get(Type::FloatTy, 0);
101 return NullFloat;
102 }
103 case Type::DoubleTyID: {
104 static Constant *NullDouble = ConstantFP::get(Type::DoubleTy, 0);
105 return NullDouble;
106 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000107
108 case Type::PointerTyID:
109 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner3e88ef92003-10-03 19:34:51 +0000110
Chris Lattnerc33ae672003-03-06 21:02:18 +0000111 case Type::StructTyID: {
112 const StructType *ST = cast<StructType>(Ty);
Chris Lattnerc33ae672003-03-06 21:02:18 +0000113 const StructType::ElementTypes &ETs = ST->getElementTypes();
114 std::vector<Constant*> Elements;
115 Elements.resize(ETs.size());
116 for (unsigned i = 0, e = ETs.size(); i != e; ++i)
117 Elements[i] = Constant::getNullValue(ETs[i]);
118 return ConstantStruct::get(ST, Elements);
119 }
120 case Type::ArrayTyID: {
121 const ArrayType *AT = cast<ArrayType>(Ty);
122 Constant *El = Constant::getNullValue(AT->getElementType());
123 unsigned NumElements = AT->getNumElements();
124 return ConstantArray::get(AT, std::vector<Constant*>(NumElements, El));
125 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000126 default:
Chris Lattnerc33ae672003-03-06 21:02:18 +0000127 // Function, Type, Label, or Opaque type?
128 assert(0 && "Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000129 return 0;
130 }
131}
132
133// Static constructor to create the maximum constant of an integral type...
134ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
135 switch (Ty->getPrimitiveID()) {
136 case Type::BoolTyID: return ConstantBool::True;
137 case Type::SByteTyID:
138 case Type::ShortTyID:
139 case Type::IntTyID:
140 case Type::LongTyID: {
141 // Calculate 011111111111111...
142 unsigned TypeBits = Ty->getPrimitiveSize()*8;
143 int64_t Val = INT64_MAX; // All ones
144 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
145 return ConstantSInt::get(Ty, Val);
146 }
147
148 case Type::UByteTyID:
149 case Type::UShortTyID:
150 case Type::UIntTyID:
151 case Type::ULongTyID: return getAllOnesValue(Ty);
152
Chris Lattner31408f72002-08-14 17:12:13 +0000153 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000154 }
155}
156
157// Static constructor to create the minimum constant for an integral type...
158ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
159 switch (Ty->getPrimitiveID()) {
160 case Type::BoolTyID: return ConstantBool::False;
161 case Type::SByteTyID:
162 case Type::ShortTyID:
163 case Type::IntTyID:
164 case Type::LongTyID: {
165 // Calculate 1111111111000000000000
166 unsigned TypeBits = Ty->getPrimitiveSize()*8;
167 int64_t Val = -1; // All ones
168 Val <<= TypeBits-1; // Shift over to the right spot
169 return ConstantSInt::get(Ty, Val);
170 }
171
172 case Type::UByteTyID:
173 case Type::UShortTyID:
174 case Type::UIntTyID:
175 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
176
Chris Lattner31408f72002-08-14 17:12:13 +0000177 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000178 }
179}
180
181// Static constructor to create an integral constant with all bits set
182ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
183 switch (Ty->getPrimitiveID()) {
184 case Type::BoolTyID: return ConstantBool::True;
185 case Type::SByteTyID:
186 case Type::ShortTyID:
187 case Type::IntTyID:
188 case Type::LongTyID: return ConstantSInt::get(Ty, -1);
189
190 case Type::UByteTyID:
191 case Type::UShortTyID:
192 case Type::UIntTyID:
193 case Type::ULongTyID: {
194 // Calculate ~0 of the right type...
195 unsigned TypeBits = Ty->getPrimitiveSize()*8;
196 uint64_t Val = ~0ULL; // All ones
197 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
198 return ConstantUInt::get(Ty, Val);
199 }
Chris Lattner31408f72002-08-14 17:12:13 +0000200 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000201 }
202}
203
Chris Lattner83e5d392003-03-10 22:39:02 +0000204bool ConstantUInt::isAllOnesValue() const {
205 unsigned TypeBits = getType()->getPrimitiveSize()*8;
206 uint64_t Val = ~0ULL; // All ones
207 Val >>= 64-TypeBits; // Shift out inappropriate bits
208 return getValue() == Val;
209}
210
Chris Lattnerb1585a92002-08-13 17:50:20 +0000211
Chris Lattner2f7c9632001-06-06 20:29:01 +0000212//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000213// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000214//===----------------------------------------------------------------------===//
215
216//===----------------------------------------------------------------------===//
217// Normal Constructors
218
Chris Lattnerb1585a92002-08-13 17:50:20 +0000219ConstantBool::ConstantBool(bool V) : ConstantIntegral(Type::BoolTy) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000220 Val = V;
221}
Chris Lattner49d855c2001-09-07 16:46:31 +0000222
Chris Lattnerb1585a92002-08-13 17:50:20 +0000223ConstantInt::ConstantInt(const Type *Ty, uint64_t V) : ConstantIntegral(Ty) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000224 Val.Unsigned = V;
Chris Lattner7309d662001-07-21 19:16:08 +0000225}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000226
Chris Lattner3462ae32001-12-03 22:26:30 +0000227ConstantSInt::ConstantSInt(const Type *Ty, int64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000228 assert(Ty->isInteger() && Ty->isSigned() &&
229 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000230 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000231}
232
Chris Lattner3462ae32001-12-03 22:26:30 +0000233ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000234 assert(Ty->isInteger() && Ty->isUnsigned() &&
235 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000236 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000237}
238
Chris Lattner3462ae32001-12-03 22:26:30 +0000239ConstantFP::ConstantFP(const Type *Ty, double V) : Constant(Ty) {
Chris Lattner9655e542001-07-20 19:16:02 +0000240 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000241 Val = V;
242}
243
Chris Lattner3462ae32001-12-03 22:26:30 +0000244ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000245 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner0d779712002-10-08 23:33:52 +0000246 Operands.reserve(V.size());
247 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnerab69ecc2003-08-18 16:54:48 +0000248 assert(V[i]->getType() == T->getElementType() ||
249 (T->isAbstract() &&
250 V[i]->getType()->getPrimitiveID() ==
251 T->getElementType()->getPrimitiveID()));
Chris Lattnera073acb2001-07-07 08:36:50 +0000252 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000253 }
254}
255
Chris Lattner3462ae32001-12-03 22:26:30 +0000256ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000257 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000258 const StructType::ElementTypes &ETypes = T->getElementTypes();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000259 assert(V.size() == ETypes.size() &&
260 "Invalid initializer vector for constant structure");
Chris Lattner0d779712002-10-08 23:33:52 +0000261 Operands.reserve(V.size());
262 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnercc7d6ff2003-06-16 12:11:33 +0000263 assert((V[i]->getType() == ETypes[i] ||
264 (ETypes[i]->isAbstract() &&
265 ETypes[i]->getPrimitiveID()==V[i]->getType()->getPrimitiveID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000266 "Initializer for struct element doesn't match struct element type!");
Chris Lattnera073acb2001-07-07 08:36:50 +0000267 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000268 }
269}
270
Chris Lattner3462ae32001-12-03 22:26:30 +0000271ConstantPointerRef::ConstantPointerRef(GlobalValue *GV)
272 : ConstantPointer(GV->getType()) {
Chris Lattner60e0dd72001-10-03 06:12:09 +0000273 Operands.push_back(Use(GV, this));
274}
275
Chris Lattner3cd8c562002-07-30 18:54:25 +0000276ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
277 : Constant(Ty), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000278 Operands.push_back(Use(C, this));
279}
280
Chris Lattner22ced562003-06-22 20:48:30 +0000281static bool isSetCC(unsigned Opcode) {
282 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
283 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
284 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
285}
286
Chris Lattner3cd8c562002-07-30 18:54:25 +0000287ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
Chris Lattner22ced562003-06-22 20:48:30 +0000288 : Constant(isSetCC(Opcode) ? Type::BoolTy : C1->getType()), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000289 Operands.push_back(Use(C1, this));
290 Operands.push_back(Use(C2, this));
291}
292
Chris Lattner3cd8c562002-07-30 18:54:25 +0000293ConstantExpr::ConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
294 const Type *DestTy)
295 : Constant(DestTy), iType(Instruction::GetElementPtr) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000296 Operands.reserve(1+IdxList.size());
297 Operands.push_back(Use(C, this));
298 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
299 Operands.push_back(Use(IdxList[i], this));
300}
301
Chris Lattner60e0dd72001-10-03 06:12:09 +0000302
Chris Lattner2f7c9632001-06-06 20:29:01 +0000303
304//===----------------------------------------------------------------------===//
Chris Lattnerd7a73302001-10-13 06:57:33 +0000305// classof implementations
306
Chris Lattnerb1585a92002-08-13 17:50:20 +0000307bool ConstantIntegral::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000308 return CPV->getType()->isIntegral() && !isa<ConstantExpr>(CPV);
Chris Lattner41e99a02002-08-12 21:21:21 +0000309}
310
Chris Lattner3462ae32001-12-03 22:26:30 +0000311bool ConstantInt::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000312 return CPV->getType()->isInteger() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000313}
Chris Lattner3462ae32001-12-03 22:26:30 +0000314bool ConstantSInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000315 return CPV->getType()->isSigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000316}
Chris Lattner3462ae32001-12-03 22:26:30 +0000317bool ConstantUInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000318 return CPV->getType()->isUnsigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000319}
Chris Lattner3462ae32001-12-03 22:26:30 +0000320bool ConstantFP::classof(const Constant *CPV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000321 const Type *Ty = CPV->getType();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000322 return ((Ty == Type::FloatTy || Ty == Type::DoubleTy) &&
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000323 !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000324}
Chris Lattner3462ae32001-12-03 22:26:30 +0000325bool ConstantArray::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000326 return isa<ArrayType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000327}
Chris Lattner3462ae32001-12-03 22:26:30 +0000328bool ConstantStruct::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000329 return isa<StructType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000330}
Chris Lattner3462ae32001-12-03 22:26:30 +0000331bool ConstantPointer::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000332 return (isa<PointerType>(CPV->getType()) && !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000333}
334
335
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000336
Chris Lattner2f7c9632001-06-06 20:29:01 +0000337//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000338// isValueValidForType implementations
339
Chris Lattner3462ae32001-12-03 22:26:30 +0000340bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000341 switch (Ty->getPrimitiveID()) {
342 default:
343 return false; // These can't be represented as integers!!!
344
345 // Signed types...
346 case Type::SByteTyID:
347 return (Val <= INT8_MAX && Val >= INT8_MIN);
348 case Type::ShortTyID:
349 return (Val <= INT16_MAX && Val >= INT16_MIN);
350 case Type::IntTyID:
351 return (Val <= INT32_MAX && Val >= INT32_MIN);
352 case Type::LongTyID:
353 return true; // This is the largest type...
354 }
355 assert(0 && "WTF?");
356 return false;
357}
358
Chris Lattner3462ae32001-12-03 22:26:30 +0000359bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000360 switch (Ty->getPrimitiveID()) {
361 default:
362 return false; // These can't be represented as integers!!!
363
364 // Unsigned types...
365 case Type::UByteTyID:
366 return (Val <= UINT8_MAX);
367 case Type::UShortTyID:
368 return (Val <= UINT16_MAX);
369 case Type::UIntTyID:
370 return (Val <= UINT32_MAX);
371 case Type::ULongTyID:
372 return true; // This is the largest type...
373 }
374 assert(0 && "WTF?");
375 return false;
376}
377
Chris Lattner3462ae32001-12-03 22:26:30 +0000378bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000379 switch (Ty->getPrimitiveID()) {
380 default:
381 return false; // These can't be represented as floating point!
382
383 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000384 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000385 case Type::DoubleTyID:
386 return true; // This is the largest type...
387 }
388};
Chris Lattner9655e542001-07-20 19:16:02 +0000389
Chris Lattner49d855c2001-09-07 16:46:31 +0000390//===----------------------------------------------------------------------===//
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000391// replaceUsesOfWithOnConstant implementations
392
Chris Lattnerc27038d2003-08-29 05:36:46 +0000393void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
394 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000395 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
396
397 std::vector<Constant*> Values;
398 Values.reserve(getValues().size()); // Build replacement array...
399 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
400 Constant *Val = cast<Constant>(getValues()[i]);
401 if (Val == From) Val = cast<Constant>(To);
402 Values.push_back(Val);
403 }
404
405 ConstantArray *Replacement = ConstantArray::get(getType(), Values);
406 assert(Replacement != this && "I didn't contain From!");
407
408 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000409 if (DisableChecking)
410 uncheckedReplaceAllUsesWith(Replacement);
411 else
412 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000413
414 // Delete the old constant!
415 destroyConstant();
416}
417
Chris Lattnerc27038d2003-08-29 05:36:46 +0000418void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
419 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000420 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
421
422 std::vector<Constant*> Values;
423 Values.reserve(getValues().size());
424 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
425 Constant *Val = cast<Constant>(getValues()[i]);
426 if (Val == From) Val = cast<Constant>(To);
427 Values.push_back(Val);
428 }
429
430 ConstantStruct *Replacement = ConstantStruct::get(getType(), Values);
431 assert(Replacement != this && "I didn't contain From!");
432
433 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000434 if (DisableChecking)
435 uncheckedReplaceAllUsesWith(Replacement);
436 else
437 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000438
439 // Delete the old constant!
440 destroyConstant();
441}
442
Chris Lattnerc27038d2003-08-29 05:36:46 +0000443void ConstantPointerRef::replaceUsesOfWithOnConstant(Value *From, Value *To,
444 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000445 if (isa<GlobalValue>(To)) {
446 assert(From == getOperand(0) && "Doesn't contain from!");
447 ConstantPointerRef *Replacement =
448 ConstantPointerRef::get(cast<GlobalValue>(To));
449
450 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000451 if (DisableChecking)
452 uncheckedReplaceAllUsesWith(Replacement);
453 else
454 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000455
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000456 } else {
457 // Just replace ourselves with the To value specified.
Chris Lattnerc27038d2003-08-29 05:36:46 +0000458 if (DisableChecking)
459 uncheckedReplaceAllUsesWith(To);
460 else
461 replaceAllUsesWith(To);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000462 }
Chris Lattnerc27038d2003-08-29 05:36:46 +0000463
464 // Delete the old constant!
465 destroyConstant();
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000466}
467
Chris Lattnerc27038d2003-08-29 05:36:46 +0000468void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
469 bool DisableChecking) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000470 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
471 Constant *To = cast<Constant>(ToV);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000472
Chris Lattner46b3d302003-04-16 22:40:51 +0000473 Constant *Replacement = 0;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000474 if (getOpcode() == Instruction::GetElementPtr) {
475 std::vector<Constant*> Indices;
Chris Lattner55ed6562003-05-14 17:51:05 +0000476 Constant *Pointer = getOperand(0);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000477 Indices.reserve(getNumOperands()-1);
Chris Lattner55ed6562003-05-14 17:51:05 +0000478 if (Pointer == From) Pointer = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000479
480 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000481 Constant *Val = getOperand(i);
482 if (Val == From) Val = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000483 Indices.push_back(Val);
484 }
485 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
486 } else if (getOpcode() == Instruction::Cast) {
487 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner55ed6562003-05-14 17:51:05 +0000488 Replacement = ConstantExpr::getCast(To, getType());
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000489 } else if (getNumOperands() == 2) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000490 Constant *C1 = getOperand(0);
491 Constant *C2 = getOperand(1);
492 if (C1 == From) C1 = To;
493 if (C2 == From) C2 = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000494 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
495 } else {
496 assert(0 && "Unknown ConstantExpr type!");
497 return;
498 }
499
500 assert(Replacement != this && "I didn't contain From!");
501
502 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000503 if (DisableChecking)
504 uncheckedReplaceAllUsesWith(Replacement);
505 else
506 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000507
508 // Delete the old constant!
509 destroyConstant();
510}
511
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000512//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000513// Factory Function Implementation
514
Chris Lattner98fa07b2003-05-23 20:03:32 +0000515// ConstantCreator - A class that is used to create constants by
516// ValueMap*. This class should be partially specialized if there is
517// something strange that needs to be done to interface to the ctor for the
518// constant.
519//
520template<class ConstantClass, class TypeClass, class ValType>
521struct ConstantCreator {
522 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
523 return new ConstantClass(Ty, V);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000524 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000525};
526
Chris Lattnerb50d1352003-10-05 00:17:43 +0000527template<class ConstantClass, class TypeClass>
528struct ConvertConstantType {
529 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
530 assert(0 && "This type cannot be converted!\n");
531 abort();
532 }
533};
534
Chris Lattner98fa07b2003-05-23 20:03:32 +0000535namespace {
536 template<class ValType, class TypeClass, class ConstantClass>
Chris Lattnerb50d1352003-10-05 00:17:43 +0000537 class ValueMap : public AbstractTypeUser {
538 typedef std::pair<const TypeClass*, ValType> MapKey;
539 typedef std::map<MapKey, ConstantClass *> MapTy;
540 typedef typename MapTy::iterator MapIterator;
541 MapTy Map;
542
543 typedef std::map<const TypeClass*, MapIterator> AbstractTypeMapTy;
544 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000545 public:
546 // getOrCreate - Return the specified constant from the map, creating it if
547 // necessary.
548 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000549 MapKey Lookup(Ty, V);
550 MapIterator I = Map.lower_bound(Lookup);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000551 if (I != Map.end() && I->first == Lookup)
552 return I->second; // Is it in the map?
553
554 // If no preexisting value, create one now...
555 ConstantClass *Result =
556 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
557
Chris Lattnerb50d1352003-10-05 00:17:43 +0000558
559 /// FIXME: why does this assert fail when loading 176.gcc?
560 //assert(Result->getType() == Ty && "Type specified is not correct!");
561 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
562
563 // If the type of the constant is abstract, make sure that an entry exists
564 // for it in the AbstractTypeMap.
565 if (Ty->isAbstract()) {
566 typename AbstractTypeMapTy::iterator TI =
567 AbstractTypeMap.lower_bound(Ty);
568
569 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
570 // Add ourselves to the ATU list of the type.
571 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
572
573 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
574 }
575 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000576 return Result;
577 }
578
579 void remove(ConstantClass *CP) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000580 // FIXME: This should not use a linear scan. If this gets to be a
581 // performance problem, someone should look at this.
582 MapIterator I = Map.begin();
583 for (MapIterator E = Map.end(); I != E && I->second != CP; ++I)
584 /* empty */;
585
586 assert(I != Map.end() && "Constant not found in constant table!");
587
588 // Now that we found the entry, make sure this isn't the entry that
589 // the AbstractTypeMap points to.
590 const TypeClass *Ty = I->first.first;
591 if (Ty->isAbstract()) {
592 assert(AbstractTypeMap.count(Ty) &&
593 "Abstract type not in AbstractTypeMap?");
594 MapIterator &ATMEntryIt = AbstractTypeMap[Ty];
595 if (ATMEntryIt == I) {
596 // Yes, we are removing the representative entry for this type.
597 // See if there are any other entries of the same type.
598 MapIterator TmpIt = ATMEntryIt;
599
600 // First check the entry before this one...
601 if (TmpIt != Map.begin()) {
602 --TmpIt;
603 if (TmpIt->first.first != Ty) // Not the same type, move back...
604 ++TmpIt;
605 }
606
607 // If we didn't find the same type, try to move forward...
608 if (TmpIt == ATMEntryIt) {
609 ++TmpIt;
610 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
611 --TmpIt; // No entry afterwards with the same type
612 }
613
614 // If there is another entry in the map of the same abstract type,
615 // update the AbstractTypeMap entry now.
616 if (TmpIt != ATMEntryIt) {
617 ATMEntryIt = TmpIt;
618 } else {
619 // Otherwise, we are removing the last instance of this type
620 // from the table. Remove from the ATM, and from user list.
621 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
622 AbstractTypeMap.erase(Ty);
623 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000624 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000625 }
626
627 Map.erase(I);
628 }
629
630 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
631 typename AbstractTypeMapTy::iterator I =
632 AbstractTypeMap.find(cast<TypeClass>(OldTy));
633
634 assert(I != AbstractTypeMap.end() &&
635 "Abstract type not in AbstractTypeMap?");
636
637 // Convert a constant at a time until the last one is gone. The last one
638 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
639 // eliminated eventually.
640 do {
641 ConvertConstantType<ConstantClass,
642 TypeClass>::convert(I->second->second,
643 cast<TypeClass>(NewTy));
644
645 I = AbstractTypeMap.find(cast<TypeClass>(OldTy));
646 } while (I != AbstractTypeMap.end());
647 }
648
649 // If the type became concrete without being refined to any other existing
650 // type, we just remove ourselves from the ATU list.
651 void typeBecameConcrete(const DerivedType *AbsTy) {
652 AbsTy->removeAbstractTypeUser(this);
653 }
654
655 void dump() const {
656 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000657 }
658 };
659}
660
661
662
Chris Lattner3462ae32001-12-03 22:26:30 +0000663//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000664//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000665static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
666static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000667
Chris Lattner3462ae32001-12-03 22:26:30 +0000668ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000669 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000670}
671
Chris Lattner3462ae32001-12-03 22:26:30 +0000672ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000673 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000674}
675
Chris Lattner3462ae32001-12-03 22:26:30 +0000676ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000677 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000678 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
679 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000680}
681
Chris Lattner3462ae32001-12-03 22:26:30 +0000682//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000683//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000684static ValueMap<double, Type, ConstantFP> FPConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000685
Chris Lattner3462ae32001-12-03 22:26:30 +0000686ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000687 return FPConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000688}
689
Chris Lattner3462ae32001-12-03 22:26:30 +0000690//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000691//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000692
693template<>
694struct ConvertConstantType<ConstantArray, ArrayType> {
695 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
696 // Make everyone now use a constant of the new type...
697 std::vector<Constant*> C;
698 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
699 C.push_back(cast<Constant>(OldC->getOperand(i)));
700 Constant *New = ConstantArray::get(NewTy, C);
701 assert(New != OldC && "Didn't replace constant??");
702 OldC->uncheckedReplaceAllUsesWith(New);
703 OldC->destroyConstant(); // This constant is now dead, destroy it.
704 }
705};
706
707
Chris Lattner98fa07b2003-05-23 20:03:32 +0000708static ValueMap<std::vector<Constant*>, ArrayType,
709 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000710
Chris Lattner3462ae32001-12-03 22:26:30 +0000711ConstantArray *ConstantArray::get(const ArrayType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000712 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000713 return ArrayConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000714}
715
Chris Lattner98fa07b2003-05-23 20:03:32 +0000716// destroyConstant - Remove the constant from the constant table...
717//
718void ConstantArray::destroyConstant() {
719 ArrayConstants.remove(this);
720 destroyConstantImpl();
721}
722
Chris Lattner3462ae32001-12-03 22:26:30 +0000723// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000724// contain the specified string. A null terminator is added to the specified
725// string so that it may be used in a natural way...
726//
Chris Lattner7f74a562002-01-20 22:54:45 +0000727ConstantArray *ConstantArray::get(const std::string &Str) {
728 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000729
730 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000731 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000732
733 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000734 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000735
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000736 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000737 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000738}
739
Chris Lattner81fabb02002-08-26 17:53:56 +0000740// getAsString - If the sub-element type of this array is either sbyte or ubyte,
741// then this method converts the array to an std::string and returns it.
742// Otherwise, it asserts out.
743//
744std::string ConstantArray::getAsString() const {
Chris Lattner6077c312003-07-23 15:22:26 +0000745 assert((getType()->getElementType() == Type::UByteTy ||
746 getType()->getElementType() == Type::SByteTy) && "Not a string!");
747
Chris Lattner81fabb02002-08-26 17:53:56 +0000748 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +0000749 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
750 Result += (char)cast<ConstantInt>(getOperand(i))->getRawValue();
Chris Lattner81fabb02002-08-26 17:53:56 +0000751 return Result;
752}
753
754
Chris Lattner3462ae32001-12-03 22:26:30 +0000755//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000756//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000757
758template<>
759struct ConvertConstantType<ConstantStruct, StructType> {
760 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
761 // Make everyone now use a constant of the new type...
762 std::vector<Constant*> C;
763 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
764 C.push_back(cast<Constant>(OldC->getOperand(i)));
765 Constant *New = ConstantStruct::get(NewTy, C);
766 assert(New != OldC && "Didn't replace constant??");
767
768 OldC->uncheckedReplaceAllUsesWith(New);
769 OldC->destroyConstant(); // This constant is now dead, destroy it.
770 }
771};
772
Chris Lattner98fa07b2003-05-23 20:03:32 +0000773static ValueMap<std::vector<Constant*>, StructType,
774 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000775
Chris Lattner3462ae32001-12-03 22:26:30 +0000776ConstantStruct *ConstantStruct::get(const StructType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000777 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000778 return StructConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000779}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000780
Chris Lattnerd7a73302001-10-13 06:57:33 +0000781// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +0000782//
Chris Lattner3462ae32001-12-03 22:26:30 +0000783void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000784 StructConstants.remove(this);
785 destroyConstantImpl();
786}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000787
Chris Lattner3462ae32001-12-03 22:26:30 +0000788//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +0000789//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000790
791// ConstantPointerNull does not take extra "value" argument...
792template<class ValType>
793struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
794 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
795 return new ConstantPointerNull(Ty);
796 }
797};
798
Chris Lattnerb50d1352003-10-05 00:17:43 +0000799template<>
800struct ConvertConstantType<ConstantPointerNull, PointerType> {
801 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
802 // Make everyone now use a constant of the new type...
803 Constant *New = ConstantPointerNull::get(NewTy);
804 assert(New != OldC && "Didn't replace constant??");
805 OldC->uncheckedReplaceAllUsesWith(New);
806 OldC->destroyConstant(); // This constant is now dead, destroy it.
807 }
808};
809
Chris Lattner98fa07b2003-05-23 20:03:32 +0000810static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +0000811
Chris Lattner3462ae32001-12-03 22:26:30 +0000812ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000813 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +0000814}
815
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000816// destroyConstant - Remove the constant from the constant table...
817//
818void ConstantPointerNull::destroyConstant() {
819 NullPtrConstants.remove(this);
820 destroyConstantImpl();
821}
822
823
Chris Lattner3462ae32001-12-03 22:26:30 +0000824//---- ConstantPointerRef::get() implementation...
Chris Lattner25033252001-10-03 19:28:15 +0000825//
Chris Lattner3462ae32001-12-03 22:26:30 +0000826ConstantPointerRef *ConstantPointerRef::get(GlobalValue *GV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000827 assert(GV->getParent() && "Global Value must be attached to a module!");
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000828
Chris Lattnerd7a73302001-10-13 06:57:33 +0000829 // The Module handles the pointer reference sharing...
Chris Lattner3462ae32001-12-03 22:26:30 +0000830 return GV->getParent()->getConstantPointerRef(GV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000831}
832
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000833// destroyConstant - Remove the constant from the constant table...
834//
835void ConstantPointerRef::destroyConstant() {
836 getValue()->getParent()->destroyConstantPointerRef(this);
837 destroyConstantImpl();
838}
839
840
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000841//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000842//
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000843typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000844
845template<>
846struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
847 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
848 if (V.first == Instruction::Cast)
849 return new ConstantExpr(Instruction::Cast, V.second[0], Ty);
850 if ((V.first >= Instruction::BinaryOpsBegin &&
851 V.first < Instruction::BinaryOpsEnd) ||
852 V.first == Instruction::Shl || V.first == Instruction::Shr)
853 return new ConstantExpr(V.first, V.second[0], V.second[1]);
854
855 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
856
Chris Lattner98fa07b2003-05-23 20:03:32 +0000857 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
Chris Lattnerb50d1352003-10-05 00:17:43 +0000858 return new ConstantExpr(V.second[0], IdxList, Ty);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000859 }
860};
861
Chris Lattnerb50d1352003-10-05 00:17:43 +0000862template<>
863struct ConvertConstantType<ConstantExpr, Type> {
864 static void convert(ConstantExpr *OldC, const Type *NewTy) {
865 Constant *New;
866 switch (OldC->getOpcode()) {
867 case Instruction::Cast:
868 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
869 break;
870 case Instruction::Shl:
871 case Instruction::Shr:
872 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
873 OldC->getOperand(0), OldC->getOperand(1));
874 break;
875 default:
876 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
877 OldC->getOpcode() < Instruction::BinaryOpsEnd);
878 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
879 OldC->getOperand(1));
880 break;
881 case Instruction::GetElementPtr:
882 // Make everyone now use a constant of the new type...
883 std::vector<Constant*> C;
884 for (unsigned i = 1, e = OldC->getNumOperands(); i != e; ++i)
885 C.push_back(cast<Constant>(OldC->getOperand(i)));
886 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), C);
887 break;
888 }
889
890 assert(New != OldC && "Didn't replace constant??");
891 OldC->uncheckedReplaceAllUsesWith(New);
892 OldC->destroyConstant(); // This constant is now dead, destroy it.
893 }
894};
895
896
Chris Lattner98fa07b2003-05-23 20:03:32 +0000897static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +0000898
Chris Lattner46b3d302003-04-16 22:40:51 +0000899Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattneracdbe712003-04-17 19:24:48 +0000900 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
901 return FC; // Fold a few common cases...
902
Vikram S. Adve4c485332002-07-15 18:19:33 +0000903 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000904 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000905 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
906 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000907}
Chris Lattnerd7a73302001-10-13 06:57:33 +0000908
Chris Lattnerb50d1352003-10-05 00:17:43 +0000909Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
910 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000911 // Check the operands for consistency first
912 assert((Opcode >= Instruction::BinaryOpsBegin &&
913 Opcode < Instruction::BinaryOpsEnd) &&
914 "Invalid opcode in binary constant expression");
915 assert(C1->getType() == C2->getType() &&
916 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000917
918 if (ReqTy == C1->getType())
919 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
920 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +0000921
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000922 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000923 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000924 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000925}
926
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000927/// getShift - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +0000928Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
929 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000930 // Check the operands for consistency first
931 assert((Opcode == Instruction::Shl ||
932 Opcode == Instruction::Shr) &&
933 "Invalid opcode in binary constant expression");
934 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
935 "Invalid operand types for Shift constant expr!");
936
937 if (Constant *FC = ConstantFoldShiftInstruction(Opcode, C1, C2))
938 return FC; // Fold a few common cases...
939
940 // Look up the constant in the table first to ensure uniqueness
941 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000942 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000943 return ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000944}
945
946
Chris Lattnerb50d1352003-10-05 00:17:43 +0000947Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
948 const std::vector<Constant*> &IdxList) {
Chris Lattneracdbe712003-04-17 19:24:48 +0000949 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
950 return FC; // Fold a few common cases...
Chris Lattnerb50d1352003-10-05 00:17:43 +0000951 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +0000952 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +0000953
954 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000955 std::vector<Constant*> argVec(1, C);
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000956 argVec.insert(argVec.end(), IdxList.begin(), IdxList.end());
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000957 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000958 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +0000959}
960
Chris Lattnerb50d1352003-10-05 00:17:43 +0000961Constant *ConstantExpr::getGetElementPtr(Constant *C,
962 const std::vector<Constant*> &IdxList){
963 // Get the result type of the getelementptr!
964 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
965
966 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
967 true);
968 assert(Ty && "GEP indices invalid!");
969 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
970}
971
972
Vikram S. Adve4c485332002-07-15 18:19:33 +0000973// destroyConstant - Remove the constant from the constant table...
974//
975void ConstantExpr::destroyConstant() {
976 ExprConstants.remove(this);
977 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000978}
979
Chris Lattner3cd8c562002-07-30 18:54:25 +0000980const char *ConstantExpr::getOpcodeName() const {
981 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000982}
983
Chris Lattner163b8902002-10-14 03:30:23 +0000984unsigned Constant::mutateReferences(Value *OldV, Value *NewV) {
985 // Uses of constant pointer refs are global values, not constants!
986 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
987 GlobalValue *NewGV = cast<GlobalValue>(NewV);
988 GlobalValue *OldGV = CPR->getValue();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000989
Chris Lattner163b8902002-10-14 03:30:23 +0000990 assert(OldGV == OldV && "Cannot mutate old value if I'm not using it!");
Chris Lattner163b8902002-10-14 03:30:23 +0000991 Operands[0] = NewGV;
Chris Lattnercb4d26f2003-05-15 19:37:21 +0000992 OldGV->getParent()->mutateConstantPointerRef(OldGV, NewGV);
Chris Lattner163b8902002-10-14 03:30:23 +0000993 return 1;
994 } else {
995 Constant *NewC = cast<Constant>(NewV);
996 unsigned NumReplaced = 0;
997 for (unsigned i = 0, N = getNumOperands(); i != N; ++i)
998 if (Operands[i] == OldV) {
999 ++NumReplaced;
1000 Operands[i] = NewC;
1001 }
1002 return NumReplaced;
1003 }
Chris Lattner25033252001-10-03 19:28:15 +00001004}