blob: b755c6f913a9699dc4203349823e12f81233b716 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
John Criswell482202a2003-10-20 19:43:21 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +00009//
Chris Lattner3462ae32001-12-03 22:26:30 +000010// This file implements the Constant* classes...
Chris Lattner2f7c9632001-06-06 20:29:01 +000011//
12//===----------------------------------------------------------------------===//
13
Chris Lattnerca142372002-04-28 19:55:58 +000014#include "llvm/Constants.h"
Chris Lattneracdbe712003-04-17 19:24:48 +000015#include "llvm/ConstantHandling.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000016#include "llvm/DerivedTypes.h"
Vikram S. Adve4e537b22002-07-14 23:13:17 +000017#include "llvm/iMemory.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000018#include "llvm/SymbolTable.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000019#include "llvm/Module.h"
Chris Lattner5de22042001-11-27 00:03:19 +000020#include "Support/StringExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000021#include <algorithm>
Chris Lattner2f7c9632001-06-06 20:29:01 +000022
Chris Lattner3462ae32001-12-03 22:26:30 +000023ConstantBool *ConstantBool::True = new ConstantBool(true);
24ConstantBool *ConstantBool::False = new ConstantBool(false);
Chris Lattner2f7c9632001-06-06 20:29:01 +000025
Chris Lattner9655e542001-07-20 19:16:02 +000026
Chris Lattner2f7c9632001-06-06 20:29:01 +000027//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000028// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000029//===----------------------------------------------------------------------===//
30
31// Specialize setName to take care of symbol table majik
Chris Lattner7f74a562002-01-20 22:54:45 +000032void Constant::setName(const std::string &Name, SymbolTable *ST) {
Chris Lattner49d855c2001-09-07 16:46:31 +000033 assert(ST && "Type::setName - Must provide symbol table argument!");
34
35 if (Name.size()) ST->insert(Name, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000036}
37
Chris Lattner3462ae32001-12-03 22:26:30 +000038void Constant::destroyConstantImpl() {
39 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000040 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +000041 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000042 // but they don't know that. Because we only find out when the CPV is
43 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000044 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000045 //
46 while (!use_empty()) {
47 Value *V = use_back();
48#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000049 if (!isa<Constant>(V))
50 std::cerr << "While deleting: " << *this
51 << "\n\nUse still stuck around after Def is destroyed: "
52 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000053#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000054 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner3462ae32001-12-03 22:26:30 +000055 Constant *CPV = cast<Constant>(V);
Chris Lattnerd7a73302001-10-13 06:57:33 +000056 CPV->destroyConstant();
57
58 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000059 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000060 }
61
62 // Value has no outstanding references it is safe to delete it now...
63 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000064}
Chris Lattner2f7c9632001-06-06 20:29:01 +000065
Chris Lattnerb1585a92002-08-13 17:50:20 +000066// Static constructor to create a '0' constant of arbitrary type...
67Constant *Constant::getNullValue(const Type *Ty) {
68 switch (Ty->getPrimitiveID()) {
Chris Lattner3e88ef92003-10-03 19:34:51 +000069 case Type::BoolTyID: {
70 static Constant *NullBool = ConstantBool::get(false);
71 return NullBool;
72 }
73 case Type::SByteTyID: {
74 static Constant *NullSByte = ConstantSInt::get(Type::SByteTy, 0);
75 return NullSByte;
76 }
77 case Type::UByteTyID: {
78 static Constant *NullUByte = ConstantUInt::get(Type::UByteTy, 0);
79 return NullUByte;
80 }
81 case Type::ShortTyID: {
82 static Constant *NullShort = ConstantSInt::get(Type::ShortTy, 0);
83 return NullShort;
84 }
85 case Type::UShortTyID: {
86 static Constant *NullUShort = ConstantUInt::get(Type::UShortTy, 0);
87 return NullUShort;
88 }
89 case Type::IntTyID: {
90 static Constant *NullInt = ConstantSInt::get(Type::IntTy, 0);
91 return NullInt;
92 }
93 case Type::UIntTyID: {
94 static Constant *NullUInt = ConstantUInt::get(Type::UIntTy, 0);
95 return NullUInt;
96 }
97 case Type::LongTyID: {
98 static Constant *NullLong = ConstantSInt::get(Type::LongTy, 0);
99 return NullLong;
100 }
101 case Type::ULongTyID: {
102 static Constant *NullULong = ConstantUInt::get(Type::ULongTy, 0);
103 return NullULong;
104 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000105
Chris Lattner3e88ef92003-10-03 19:34:51 +0000106 case Type::FloatTyID: {
107 static Constant *NullFloat = ConstantFP::get(Type::FloatTy, 0);
108 return NullFloat;
109 }
110 case Type::DoubleTyID: {
111 static Constant *NullDouble = ConstantFP::get(Type::DoubleTy, 0);
112 return NullDouble;
113 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000114
115 case Type::PointerTyID:
116 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner3e88ef92003-10-03 19:34:51 +0000117
Chris Lattnerc33ae672003-03-06 21:02:18 +0000118 case Type::StructTyID: {
119 const StructType *ST = cast<StructType>(Ty);
Chris Lattnerc33ae672003-03-06 21:02:18 +0000120 const StructType::ElementTypes &ETs = ST->getElementTypes();
121 std::vector<Constant*> Elements;
122 Elements.resize(ETs.size());
123 for (unsigned i = 0, e = ETs.size(); i != e; ++i)
124 Elements[i] = Constant::getNullValue(ETs[i]);
125 return ConstantStruct::get(ST, Elements);
126 }
127 case Type::ArrayTyID: {
128 const ArrayType *AT = cast<ArrayType>(Ty);
129 Constant *El = Constant::getNullValue(AT->getElementType());
130 unsigned NumElements = AT->getNumElements();
131 return ConstantArray::get(AT, std::vector<Constant*>(NumElements, El));
132 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000133 default:
Chris Lattnerc33ae672003-03-06 21:02:18 +0000134 // Function, Type, Label, or Opaque type?
135 assert(0 && "Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000136 return 0;
137 }
138}
139
140// Static constructor to create the maximum constant of an integral type...
141ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
142 switch (Ty->getPrimitiveID()) {
143 case Type::BoolTyID: return ConstantBool::True;
144 case Type::SByteTyID:
145 case Type::ShortTyID:
146 case Type::IntTyID:
147 case Type::LongTyID: {
148 // Calculate 011111111111111...
149 unsigned TypeBits = Ty->getPrimitiveSize()*8;
150 int64_t Val = INT64_MAX; // All ones
151 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
152 return ConstantSInt::get(Ty, Val);
153 }
154
155 case Type::UByteTyID:
156 case Type::UShortTyID:
157 case Type::UIntTyID:
158 case Type::ULongTyID: return getAllOnesValue(Ty);
159
Chris Lattner31408f72002-08-14 17:12:13 +0000160 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000161 }
162}
163
164// Static constructor to create the minimum constant for an integral type...
165ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
166 switch (Ty->getPrimitiveID()) {
167 case Type::BoolTyID: return ConstantBool::False;
168 case Type::SByteTyID:
169 case Type::ShortTyID:
170 case Type::IntTyID:
171 case Type::LongTyID: {
172 // Calculate 1111111111000000000000
173 unsigned TypeBits = Ty->getPrimitiveSize()*8;
174 int64_t Val = -1; // All ones
175 Val <<= TypeBits-1; // Shift over to the right spot
176 return ConstantSInt::get(Ty, Val);
177 }
178
179 case Type::UByteTyID:
180 case Type::UShortTyID:
181 case Type::UIntTyID:
182 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
183
Chris Lattner31408f72002-08-14 17:12:13 +0000184 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000185 }
186}
187
188// Static constructor to create an integral constant with all bits set
189ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
190 switch (Ty->getPrimitiveID()) {
191 case Type::BoolTyID: return ConstantBool::True;
192 case Type::SByteTyID:
193 case Type::ShortTyID:
194 case Type::IntTyID:
195 case Type::LongTyID: return ConstantSInt::get(Ty, -1);
196
197 case Type::UByteTyID:
198 case Type::UShortTyID:
199 case Type::UIntTyID:
200 case Type::ULongTyID: {
201 // Calculate ~0 of the right type...
202 unsigned TypeBits = Ty->getPrimitiveSize()*8;
203 uint64_t Val = ~0ULL; // All ones
204 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
205 return ConstantUInt::get(Ty, Val);
206 }
Chris Lattner31408f72002-08-14 17:12:13 +0000207 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000208 }
209}
210
Chris Lattner83e5d392003-03-10 22:39:02 +0000211bool ConstantUInt::isAllOnesValue() const {
212 unsigned TypeBits = getType()->getPrimitiveSize()*8;
213 uint64_t Val = ~0ULL; // All ones
214 Val >>= 64-TypeBits; // Shift out inappropriate bits
215 return getValue() == Val;
216}
217
Chris Lattnerb1585a92002-08-13 17:50:20 +0000218
Chris Lattner2f7c9632001-06-06 20:29:01 +0000219//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000220// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000221//===----------------------------------------------------------------------===//
222
223//===----------------------------------------------------------------------===//
224// Normal Constructors
225
Chris Lattnerb1585a92002-08-13 17:50:20 +0000226ConstantBool::ConstantBool(bool V) : ConstantIntegral(Type::BoolTy) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000227 Val = V;
228}
Chris Lattner49d855c2001-09-07 16:46:31 +0000229
Chris Lattnerb1585a92002-08-13 17:50:20 +0000230ConstantInt::ConstantInt(const Type *Ty, uint64_t V) : ConstantIntegral(Ty) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000231 Val.Unsigned = V;
Chris Lattner7309d662001-07-21 19:16:08 +0000232}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000233
Chris Lattner3462ae32001-12-03 22:26:30 +0000234ConstantSInt::ConstantSInt(const Type *Ty, int64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000235 assert(Ty->isInteger() && Ty->isSigned() &&
236 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000237 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000238}
239
Chris Lattner3462ae32001-12-03 22:26:30 +0000240ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000241 assert(Ty->isInteger() && Ty->isUnsigned() &&
242 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000243 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000244}
245
Chris Lattner3462ae32001-12-03 22:26:30 +0000246ConstantFP::ConstantFP(const Type *Ty, double V) : Constant(Ty) {
Chris Lattner9655e542001-07-20 19:16:02 +0000247 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000248 Val = V;
249}
250
Chris Lattner3462ae32001-12-03 22:26:30 +0000251ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000252 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner0d779712002-10-08 23:33:52 +0000253 Operands.reserve(V.size());
254 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnerab69ecc2003-08-18 16:54:48 +0000255 assert(V[i]->getType() == T->getElementType() ||
256 (T->isAbstract() &&
257 V[i]->getType()->getPrimitiveID() ==
258 T->getElementType()->getPrimitiveID()));
Chris Lattnera073acb2001-07-07 08:36:50 +0000259 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000260 }
261}
262
Chris Lattner3462ae32001-12-03 22:26:30 +0000263ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000264 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000265 const StructType::ElementTypes &ETypes = T->getElementTypes();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000266 assert(V.size() == ETypes.size() &&
267 "Invalid initializer vector for constant structure");
Chris Lattner0d779712002-10-08 23:33:52 +0000268 Operands.reserve(V.size());
269 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnercc7d6ff2003-06-16 12:11:33 +0000270 assert((V[i]->getType() == ETypes[i] ||
Chris Lattner7267b352003-10-21 17:39:59 +0000271 ((ETypes[i]->isAbstract() || V[i]->getType()->isAbstract()) &&
Chris Lattnercc7d6ff2003-06-16 12:11:33 +0000272 ETypes[i]->getPrimitiveID()==V[i]->getType()->getPrimitiveID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000273 "Initializer for struct element doesn't match struct element type!");
Chris Lattnera073acb2001-07-07 08:36:50 +0000274 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000275 }
276}
277
Chris Lattner3462ae32001-12-03 22:26:30 +0000278ConstantPointerRef::ConstantPointerRef(GlobalValue *GV)
279 : ConstantPointer(GV->getType()) {
Chris Lattner60e0dd72001-10-03 06:12:09 +0000280 Operands.push_back(Use(GV, this));
281}
282
Chris Lattner3cd8c562002-07-30 18:54:25 +0000283ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
284 : Constant(Ty), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000285 Operands.push_back(Use(C, this));
286}
287
Chris Lattner22ced562003-06-22 20:48:30 +0000288static bool isSetCC(unsigned Opcode) {
289 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
290 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
291 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
292}
293
Chris Lattner3cd8c562002-07-30 18:54:25 +0000294ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
Chris Lattner22ced562003-06-22 20:48:30 +0000295 : Constant(isSetCC(Opcode) ? Type::BoolTy : C1->getType()), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000296 Operands.push_back(Use(C1, this));
297 Operands.push_back(Use(C2, this));
298}
299
Chris Lattner3cd8c562002-07-30 18:54:25 +0000300ConstantExpr::ConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
301 const Type *DestTy)
302 : Constant(DestTy), iType(Instruction::GetElementPtr) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000303 Operands.reserve(1+IdxList.size());
304 Operands.push_back(Use(C, this));
305 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
306 Operands.push_back(Use(IdxList[i], this));
307}
308
Chris Lattner60e0dd72001-10-03 06:12:09 +0000309
Chris Lattner2f7c9632001-06-06 20:29:01 +0000310
311//===----------------------------------------------------------------------===//
Chris Lattnerd7a73302001-10-13 06:57:33 +0000312// classof implementations
313
Chris Lattnerb1585a92002-08-13 17:50:20 +0000314bool ConstantIntegral::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000315 return CPV->getType()->isIntegral() && !isa<ConstantExpr>(CPV);
Chris Lattner41e99a02002-08-12 21:21:21 +0000316}
317
Chris Lattner3462ae32001-12-03 22:26:30 +0000318bool ConstantInt::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000319 return CPV->getType()->isInteger() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000320}
Chris Lattner3462ae32001-12-03 22:26:30 +0000321bool ConstantSInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000322 return CPV->getType()->isSigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000323}
Chris Lattner3462ae32001-12-03 22:26:30 +0000324bool ConstantUInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000325 return CPV->getType()->isUnsigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000326}
Chris Lattner3462ae32001-12-03 22:26:30 +0000327bool ConstantFP::classof(const Constant *CPV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000328 const Type *Ty = CPV->getType();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000329 return ((Ty == Type::FloatTy || Ty == Type::DoubleTy) &&
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000330 !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000331}
Chris Lattner3462ae32001-12-03 22:26:30 +0000332bool ConstantArray::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000333 return isa<ArrayType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000334}
Chris Lattner3462ae32001-12-03 22:26:30 +0000335bool ConstantStruct::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000336 return isa<StructType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000337}
Chris Lattner3462ae32001-12-03 22:26:30 +0000338bool ConstantPointer::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000339 return (isa<PointerType>(CPV->getType()) && !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000340}
341
342
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000343
Chris Lattner2f7c9632001-06-06 20:29:01 +0000344//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000345// isValueValidForType implementations
346
Chris Lattner3462ae32001-12-03 22:26:30 +0000347bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000348 switch (Ty->getPrimitiveID()) {
349 default:
350 return false; // These can't be represented as integers!!!
351
352 // Signed types...
353 case Type::SByteTyID:
354 return (Val <= INT8_MAX && Val >= INT8_MIN);
355 case Type::ShortTyID:
356 return (Val <= INT16_MAX && Val >= INT16_MIN);
357 case Type::IntTyID:
358 return (Val <= INT32_MAX && Val >= INT32_MIN);
359 case Type::LongTyID:
360 return true; // This is the largest type...
361 }
362 assert(0 && "WTF?");
363 return false;
364}
365
Chris Lattner3462ae32001-12-03 22:26:30 +0000366bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000367 switch (Ty->getPrimitiveID()) {
368 default:
369 return false; // These can't be represented as integers!!!
370
371 // Unsigned types...
372 case Type::UByteTyID:
373 return (Val <= UINT8_MAX);
374 case Type::UShortTyID:
375 return (Val <= UINT16_MAX);
376 case Type::UIntTyID:
377 return (Val <= UINT32_MAX);
378 case Type::ULongTyID:
379 return true; // This is the largest type...
380 }
381 assert(0 && "WTF?");
382 return false;
383}
384
Chris Lattner3462ae32001-12-03 22:26:30 +0000385bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000386 switch (Ty->getPrimitiveID()) {
387 default:
388 return false; // These can't be represented as floating point!
389
390 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000391 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000392 case Type::DoubleTyID:
393 return true; // This is the largest type...
394 }
395};
Chris Lattner9655e542001-07-20 19:16:02 +0000396
Chris Lattner49d855c2001-09-07 16:46:31 +0000397//===----------------------------------------------------------------------===//
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000398// replaceUsesOfWithOnConstant implementations
399
Chris Lattnerc27038d2003-08-29 05:36:46 +0000400void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
401 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000402 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
403
404 std::vector<Constant*> Values;
405 Values.reserve(getValues().size()); // Build replacement array...
406 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
407 Constant *Val = cast<Constant>(getValues()[i]);
408 if (Val == From) Val = cast<Constant>(To);
409 Values.push_back(Val);
410 }
411
412 ConstantArray *Replacement = ConstantArray::get(getType(), Values);
413 assert(Replacement != this && "I didn't contain From!");
414
415 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000416 if (DisableChecking)
417 uncheckedReplaceAllUsesWith(Replacement);
418 else
419 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000420
421 // Delete the old constant!
422 destroyConstant();
423}
424
Chris Lattnerc27038d2003-08-29 05:36:46 +0000425void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
426 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000427 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
428
429 std::vector<Constant*> Values;
430 Values.reserve(getValues().size());
431 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
432 Constant *Val = cast<Constant>(getValues()[i]);
433 if (Val == From) Val = cast<Constant>(To);
434 Values.push_back(Val);
435 }
436
437 ConstantStruct *Replacement = ConstantStruct::get(getType(), Values);
438 assert(Replacement != this && "I didn't contain From!");
439
440 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000441 if (DisableChecking)
442 uncheckedReplaceAllUsesWith(Replacement);
443 else
444 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000445
446 // Delete the old constant!
447 destroyConstant();
448}
449
Chris Lattnerc27038d2003-08-29 05:36:46 +0000450void ConstantPointerRef::replaceUsesOfWithOnConstant(Value *From, Value *To,
451 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000452 if (isa<GlobalValue>(To)) {
453 assert(From == getOperand(0) && "Doesn't contain from!");
454 ConstantPointerRef *Replacement =
455 ConstantPointerRef::get(cast<GlobalValue>(To));
456
457 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000458 if (DisableChecking)
459 uncheckedReplaceAllUsesWith(Replacement);
460 else
461 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000462
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000463 } else {
464 // Just replace ourselves with the To value specified.
Chris Lattnerc27038d2003-08-29 05:36:46 +0000465 if (DisableChecking)
466 uncheckedReplaceAllUsesWith(To);
467 else
468 replaceAllUsesWith(To);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000469 }
Chris Lattnerc27038d2003-08-29 05:36:46 +0000470
471 // Delete the old constant!
472 destroyConstant();
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000473}
474
Chris Lattnerc27038d2003-08-29 05:36:46 +0000475void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
476 bool DisableChecking) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000477 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
478 Constant *To = cast<Constant>(ToV);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000479
Chris Lattner46b3d302003-04-16 22:40:51 +0000480 Constant *Replacement = 0;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000481 if (getOpcode() == Instruction::GetElementPtr) {
482 std::vector<Constant*> Indices;
Chris Lattner55ed6562003-05-14 17:51:05 +0000483 Constant *Pointer = getOperand(0);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000484 Indices.reserve(getNumOperands()-1);
Chris Lattner55ed6562003-05-14 17:51:05 +0000485 if (Pointer == From) Pointer = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000486
487 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000488 Constant *Val = getOperand(i);
489 if (Val == From) Val = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000490 Indices.push_back(Val);
491 }
492 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
493 } else if (getOpcode() == Instruction::Cast) {
494 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner55ed6562003-05-14 17:51:05 +0000495 Replacement = ConstantExpr::getCast(To, getType());
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000496 } else if (getNumOperands() == 2) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000497 Constant *C1 = getOperand(0);
498 Constant *C2 = getOperand(1);
499 if (C1 == From) C1 = To;
500 if (C2 == From) C2 = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000501 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
502 } else {
503 assert(0 && "Unknown ConstantExpr type!");
504 return;
505 }
506
507 assert(Replacement != this && "I didn't contain From!");
508
509 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000510 if (DisableChecking)
511 uncheckedReplaceAllUsesWith(Replacement);
512 else
513 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000514
515 // Delete the old constant!
516 destroyConstant();
517}
518
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000519//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000520// Factory Function Implementation
521
Chris Lattner98fa07b2003-05-23 20:03:32 +0000522// ConstantCreator - A class that is used to create constants by
523// ValueMap*. This class should be partially specialized if there is
524// something strange that needs to be done to interface to the ctor for the
525// constant.
526//
527template<class ConstantClass, class TypeClass, class ValType>
528struct ConstantCreator {
529 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
530 return new ConstantClass(Ty, V);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000531 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000532};
533
Chris Lattnerb50d1352003-10-05 00:17:43 +0000534template<class ConstantClass, class TypeClass>
535struct ConvertConstantType {
536 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
537 assert(0 && "This type cannot be converted!\n");
538 abort();
539 }
540};
541
Chris Lattner98fa07b2003-05-23 20:03:32 +0000542namespace {
543 template<class ValType, class TypeClass, class ConstantClass>
Chris Lattnerb50d1352003-10-05 00:17:43 +0000544 class ValueMap : public AbstractTypeUser {
545 typedef std::pair<const TypeClass*, ValType> MapKey;
546 typedef std::map<MapKey, ConstantClass *> MapTy;
547 typedef typename MapTy::iterator MapIterator;
548 MapTy Map;
549
550 typedef std::map<const TypeClass*, MapIterator> AbstractTypeMapTy;
551 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000552 public:
553 // getOrCreate - Return the specified constant from the map, creating it if
554 // necessary.
555 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000556 MapKey Lookup(Ty, V);
557 MapIterator I = Map.lower_bound(Lookup);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000558 if (I != Map.end() && I->first == Lookup)
559 return I->second; // Is it in the map?
560
561 // If no preexisting value, create one now...
562 ConstantClass *Result =
563 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
564
Chris Lattnerb50d1352003-10-05 00:17:43 +0000565
566 /// FIXME: why does this assert fail when loading 176.gcc?
567 //assert(Result->getType() == Ty && "Type specified is not correct!");
568 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
569
570 // If the type of the constant is abstract, make sure that an entry exists
571 // for it in the AbstractTypeMap.
572 if (Ty->isAbstract()) {
573 typename AbstractTypeMapTy::iterator TI =
574 AbstractTypeMap.lower_bound(Ty);
575
576 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
577 // Add ourselves to the ATU list of the type.
578 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
579
580 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
581 }
582 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000583 return Result;
584 }
585
586 void remove(ConstantClass *CP) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000587 // FIXME: This should not use a linear scan. If this gets to be a
588 // performance problem, someone should look at this.
589 MapIterator I = Map.begin();
590 for (MapIterator E = Map.end(); I != E && I->second != CP; ++I)
591 /* empty */;
592
593 assert(I != Map.end() && "Constant not found in constant table!");
594
595 // Now that we found the entry, make sure this isn't the entry that
596 // the AbstractTypeMap points to.
597 const TypeClass *Ty = I->first.first;
598 if (Ty->isAbstract()) {
599 assert(AbstractTypeMap.count(Ty) &&
600 "Abstract type not in AbstractTypeMap?");
601 MapIterator &ATMEntryIt = AbstractTypeMap[Ty];
602 if (ATMEntryIt == I) {
603 // Yes, we are removing the representative entry for this type.
604 // See if there are any other entries of the same type.
605 MapIterator TmpIt = ATMEntryIt;
606
607 // First check the entry before this one...
608 if (TmpIt != Map.begin()) {
609 --TmpIt;
610 if (TmpIt->first.first != Ty) // Not the same type, move back...
611 ++TmpIt;
612 }
613
614 // If we didn't find the same type, try to move forward...
615 if (TmpIt == ATMEntryIt) {
616 ++TmpIt;
617 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
618 --TmpIt; // No entry afterwards with the same type
619 }
620
621 // If there is another entry in the map of the same abstract type,
622 // update the AbstractTypeMap entry now.
623 if (TmpIt != ATMEntryIt) {
624 ATMEntryIt = TmpIt;
625 } else {
626 // Otherwise, we are removing the last instance of this type
627 // from the table. Remove from the ATM, and from user list.
628 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
629 AbstractTypeMap.erase(Ty);
630 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000631 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000632 }
633
634 Map.erase(I);
635 }
636
637 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
638 typename AbstractTypeMapTy::iterator I =
639 AbstractTypeMap.find(cast<TypeClass>(OldTy));
640
641 assert(I != AbstractTypeMap.end() &&
642 "Abstract type not in AbstractTypeMap?");
643
644 // Convert a constant at a time until the last one is gone. The last one
645 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
646 // eliminated eventually.
647 do {
648 ConvertConstantType<ConstantClass,
649 TypeClass>::convert(I->second->second,
650 cast<TypeClass>(NewTy));
651
652 I = AbstractTypeMap.find(cast<TypeClass>(OldTy));
653 } while (I != AbstractTypeMap.end());
654 }
655
656 // If the type became concrete without being refined to any other existing
657 // type, we just remove ourselves from the ATU list.
658 void typeBecameConcrete(const DerivedType *AbsTy) {
659 AbsTy->removeAbstractTypeUser(this);
660 }
661
662 void dump() const {
663 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000664 }
665 };
666}
667
668
669
Chris Lattner3462ae32001-12-03 22:26:30 +0000670//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000671//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000672static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
673static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000674
Chris Lattner3462ae32001-12-03 22:26:30 +0000675ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000676 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000677}
678
Chris Lattner3462ae32001-12-03 22:26:30 +0000679ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000680 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000681}
682
Chris Lattner3462ae32001-12-03 22:26:30 +0000683ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000684 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000685 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
686 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000687}
688
Chris Lattner3462ae32001-12-03 22:26:30 +0000689//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000690//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000691static ValueMap<double, Type, ConstantFP> FPConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000692
Chris Lattner3462ae32001-12-03 22:26:30 +0000693ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000694 return FPConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000695}
696
Chris Lattner3462ae32001-12-03 22:26:30 +0000697//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000698//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000699
700template<>
701struct ConvertConstantType<ConstantArray, ArrayType> {
702 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
703 // Make everyone now use a constant of the new type...
704 std::vector<Constant*> C;
705 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
706 C.push_back(cast<Constant>(OldC->getOperand(i)));
707 Constant *New = ConstantArray::get(NewTy, C);
708 assert(New != OldC && "Didn't replace constant??");
709 OldC->uncheckedReplaceAllUsesWith(New);
710 OldC->destroyConstant(); // This constant is now dead, destroy it.
711 }
712};
713
714
Chris Lattner98fa07b2003-05-23 20:03:32 +0000715static ValueMap<std::vector<Constant*>, ArrayType,
716 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000717
Chris Lattner3462ae32001-12-03 22:26:30 +0000718ConstantArray *ConstantArray::get(const ArrayType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000719 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000720 return ArrayConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000721}
722
Chris Lattner98fa07b2003-05-23 20:03:32 +0000723// destroyConstant - Remove the constant from the constant table...
724//
725void ConstantArray::destroyConstant() {
726 ArrayConstants.remove(this);
727 destroyConstantImpl();
728}
729
Chris Lattner3462ae32001-12-03 22:26:30 +0000730// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000731// contain the specified string. A null terminator is added to the specified
732// string so that it may be used in a natural way...
733//
Chris Lattner7f74a562002-01-20 22:54:45 +0000734ConstantArray *ConstantArray::get(const std::string &Str) {
735 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000736
737 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000738 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000739
740 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000741 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000742
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000743 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000744 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000745}
746
Chris Lattner81fabb02002-08-26 17:53:56 +0000747// getAsString - If the sub-element type of this array is either sbyte or ubyte,
748// then this method converts the array to an std::string and returns it.
749// Otherwise, it asserts out.
750//
751std::string ConstantArray::getAsString() const {
Chris Lattner6077c312003-07-23 15:22:26 +0000752 assert((getType()->getElementType() == Type::UByteTy ||
753 getType()->getElementType() == Type::SByteTy) && "Not a string!");
754
Chris Lattner81fabb02002-08-26 17:53:56 +0000755 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +0000756 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
757 Result += (char)cast<ConstantInt>(getOperand(i))->getRawValue();
Chris Lattner81fabb02002-08-26 17:53:56 +0000758 return Result;
759}
760
761
Chris Lattner3462ae32001-12-03 22:26:30 +0000762//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000763//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000764
765template<>
766struct ConvertConstantType<ConstantStruct, StructType> {
767 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
768 // Make everyone now use a constant of the new type...
769 std::vector<Constant*> C;
770 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
771 C.push_back(cast<Constant>(OldC->getOperand(i)));
772 Constant *New = ConstantStruct::get(NewTy, C);
773 assert(New != OldC && "Didn't replace constant??");
774
775 OldC->uncheckedReplaceAllUsesWith(New);
776 OldC->destroyConstant(); // This constant is now dead, destroy it.
777 }
778};
779
Chris Lattner98fa07b2003-05-23 20:03:32 +0000780static ValueMap<std::vector<Constant*>, StructType,
781 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000782
Chris Lattner3462ae32001-12-03 22:26:30 +0000783ConstantStruct *ConstantStruct::get(const StructType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000784 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000785 return StructConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000786}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000787
Chris Lattnerd7a73302001-10-13 06:57:33 +0000788// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +0000789//
Chris Lattner3462ae32001-12-03 22:26:30 +0000790void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000791 StructConstants.remove(this);
792 destroyConstantImpl();
793}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000794
Chris Lattner3462ae32001-12-03 22:26:30 +0000795//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +0000796//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000797
798// ConstantPointerNull does not take extra "value" argument...
799template<class ValType>
800struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
801 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
802 return new ConstantPointerNull(Ty);
803 }
804};
805
Chris Lattnerb50d1352003-10-05 00:17:43 +0000806template<>
807struct ConvertConstantType<ConstantPointerNull, PointerType> {
808 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
809 // Make everyone now use a constant of the new type...
810 Constant *New = ConstantPointerNull::get(NewTy);
811 assert(New != OldC && "Didn't replace constant??");
812 OldC->uncheckedReplaceAllUsesWith(New);
813 OldC->destroyConstant(); // This constant is now dead, destroy it.
814 }
815};
816
Chris Lattner98fa07b2003-05-23 20:03:32 +0000817static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +0000818
Chris Lattner3462ae32001-12-03 22:26:30 +0000819ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000820 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +0000821}
822
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000823// destroyConstant - Remove the constant from the constant table...
824//
825void ConstantPointerNull::destroyConstant() {
826 NullPtrConstants.remove(this);
827 destroyConstantImpl();
828}
829
830
Chris Lattner3462ae32001-12-03 22:26:30 +0000831//---- ConstantPointerRef::get() implementation...
Chris Lattner25033252001-10-03 19:28:15 +0000832//
Chris Lattner3462ae32001-12-03 22:26:30 +0000833ConstantPointerRef *ConstantPointerRef::get(GlobalValue *GV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000834 assert(GV->getParent() && "Global Value must be attached to a module!");
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000835
Chris Lattnerd7a73302001-10-13 06:57:33 +0000836 // The Module handles the pointer reference sharing...
Chris Lattner3462ae32001-12-03 22:26:30 +0000837 return GV->getParent()->getConstantPointerRef(GV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000838}
839
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000840// destroyConstant - Remove the constant from the constant table...
841//
842void ConstantPointerRef::destroyConstant() {
843 getValue()->getParent()->destroyConstantPointerRef(this);
844 destroyConstantImpl();
845}
846
847
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000848//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000849//
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000850typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000851
852template<>
853struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
854 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
855 if (V.first == Instruction::Cast)
856 return new ConstantExpr(Instruction::Cast, V.second[0], Ty);
857 if ((V.first >= Instruction::BinaryOpsBegin &&
858 V.first < Instruction::BinaryOpsEnd) ||
859 V.first == Instruction::Shl || V.first == Instruction::Shr)
860 return new ConstantExpr(V.first, V.second[0], V.second[1]);
861
862 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
863
Chris Lattner98fa07b2003-05-23 20:03:32 +0000864 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
Chris Lattnerb50d1352003-10-05 00:17:43 +0000865 return new ConstantExpr(V.second[0], IdxList, Ty);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000866 }
867};
868
Chris Lattnerb50d1352003-10-05 00:17:43 +0000869template<>
870struct ConvertConstantType<ConstantExpr, Type> {
871 static void convert(ConstantExpr *OldC, const Type *NewTy) {
872 Constant *New;
873 switch (OldC->getOpcode()) {
874 case Instruction::Cast:
875 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
876 break;
877 case Instruction::Shl:
878 case Instruction::Shr:
879 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
880 OldC->getOperand(0), OldC->getOperand(1));
881 break;
882 default:
883 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
884 OldC->getOpcode() < Instruction::BinaryOpsEnd);
885 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
886 OldC->getOperand(1));
887 break;
888 case Instruction::GetElementPtr:
889 // Make everyone now use a constant of the new type...
890 std::vector<Constant*> C;
891 for (unsigned i = 1, e = OldC->getNumOperands(); i != e; ++i)
892 C.push_back(cast<Constant>(OldC->getOperand(i)));
893 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), C);
894 break;
895 }
896
897 assert(New != OldC && "Didn't replace constant??");
898 OldC->uncheckedReplaceAllUsesWith(New);
899 OldC->destroyConstant(); // This constant is now dead, destroy it.
900 }
901};
902
903
Chris Lattner98fa07b2003-05-23 20:03:32 +0000904static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +0000905
Chris Lattner46b3d302003-04-16 22:40:51 +0000906Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +0000907 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
908
Chris Lattneracdbe712003-04-17 19:24:48 +0000909 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
910 return FC; // Fold a few common cases...
911
Vikram S. Adve4c485332002-07-15 18:19:33 +0000912 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000913 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000914 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
915 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000916}
Chris Lattnerd7a73302001-10-13 06:57:33 +0000917
Chris Lattnerb50d1352003-10-05 00:17:43 +0000918Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
919 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000920 // Check the operands for consistency first
921 assert((Opcode >= Instruction::BinaryOpsBegin &&
922 Opcode < Instruction::BinaryOpsEnd) &&
923 "Invalid opcode in binary constant expression");
924 assert(C1->getType() == C2->getType() &&
925 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000926
927 if (ReqTy == C1->getType())
928 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
929 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +0000930
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000931 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000932 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000933 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000934}
935
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000936/// getShift - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +0000937Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
938 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000939 // Check the operands for consistency first
940 assert((Opcode == Instruction::Shl ||
941 Opcode == Instruction::Shr) &&
942 "Invalid opcode in binary constant expression");
943 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
944 "Invalid operand types for Shift constant expr!");
945
946 if (Constant *FC = ConstantFoldShiftInstruction(Opcode, C1, C2))
947 return FC; // Fold a few common cases...
948
949 // Look up the constant in the table first to ensure uniqueness
950 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000951 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000952 return ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000953}
954
955
Chris Lattnerb50d1352003-10-05 00:17:43 +0000956Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
957 const std::vector<Constant*> &IdxList) {
Chris Lattneracdbe712003-04-17 19:24:48 +0000958 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
959 return FC; // Fold a few common cases...
Chris Lattnerb50d1352003-10-05 00:17:43 +0000960 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +0000961 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +0000962
963 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000964 std::vector<Constant*> argVec(1, C);
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000965 argVec.insert(argVec.end(), IdxList.begin(), IdxList.end());
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000966 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000967 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +0000968}
969
Chris Lattnerb50d1352003-10-05 00:17:43 +0000970Constant *ConstantExpr::getGetElementPtr(Constant *C,
971 const std::vector<Constant*> &IdxList){
972 // Get the result type of the getelementptr!
973 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
974
975 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
976 true);
977 assert(Ty && "GEP indices invalid!");
978 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
979}
980
981
Vikram S. Adve4c485332002-07-15 18:19:33 +0000982// destroyConstant - Remove the constant from the constant table...
983//
984void ConstantExpr::destroyConstant() {
985 ExprConstants.remove(this);
986 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000987}
988
Chris Lattner3cd8c562002-07-30 18:54:25 +0000989const char *ConstantExpr::getOpcodeName() const {
990 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000991}
992
Chris Lattner163b8902002-10-14 03:30:23 +0000993unsigned Constant::mutateReferences(Value *OldV, Value *NewV) {
994 // Uses of constant pointer refs are global values, not constants!
995 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
996 GlobalValue *NewGV = cast<GlobalValue>(NewV);
997 GlobalValue *OldGV = CPR->getValue();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000998
Chris Lattner163b8902002-10-14 03:30:23 +0000999 assert(OldGV == OldV && "Cannot mutate old value if I'm not using it!");
Chris Lattner163b8902002-10-14 03:30:23 +00001000 Operands[0] = NewGV;
Chris Lattnercb4d26f2003-05-15 19:37:21 +00001001 OldGV->getParent()->mutateConstantPointerRef(OldGV, NewGV);
Chris Lattner163b8902002-10-14 03:30:23 +00001002 return 1;
1003 } else {
1004 Constant *NewC = cast<Constant>(NewV);
1005 unsigned NumReplaced = 0;
1006 for (unsigned i = 0, N = getNumOperands(); i != N; ++i)
1007 if (Operands[i] == OldV) {
1008 ++NumReplaced;
1009 Operands[i] = NewC;
1010 }
1011 return NumReplaced;
1012 }
Chris Lattner25033252001-10-03 19:28:15 +00001013}