blob: 2a9af77ef6adbef39f758a63c8bc2dced5af85ac [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 Lattner189d19f2003-11-21 20:23:48 +000022using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000023
Chris Lattner3462ae32001-12-03 22:26:30 +000024ConstantBool *ConstantBool::True = new ConstantBool(true);
25ConstantBool *ConstantBool::False = new ConstantBool(false);
Chris Lattner2f7c9632001-06-06 20:29:01 +000026
Chris Lattner9655e542001-07-20 19:16:02 +000027
Chris Lattner2f7c9632001-06-06 20:29:01 +000028//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000029// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000030//===----------------------------------------------------------------------===//
31
32// Specialize setName to take care of symbol table majik
Chris Lattner7f74a562002-01-20 22:54:45 +000033void Constant::setName(const std::string &Name, SymbolTable *ST) {
Chris Lattner49d855c2001-09-07 16:46:31 +000034 assert(ST && "Type::setName - Must provide symbol table argument!");
35
36 if (Name.size()) ST->insert(Name, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +000037}
38
Chris Lattner3462ae32001-12-03 22:26:30 +000039void Constant::destroyConstantImpl() {
40 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000041 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +000042 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000043 // but they don't know that. Because we only find out when the CPV is
44 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000045 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000046 //
47 while (!use_empty()) {
48 Value *V = use_back();
49#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000050 if (!isa<Constant>(V))
51 std::cerr << "While deleting: " << *this
52 << "\n\nUse still stuck around after Def is destroyed: "
53 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000054#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000055 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Chris Lattner3462ae32001-12-03 22:26:30 +000056 Constant *CPV = cast<Constant>(V);
Chris Lattnerd7a73302001-10-13 06:57:33 +000057 CPV->destroyConstant();
58
59 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000060 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000061 }
62
63 // Value has no outstanding references it is safe to delete it now...
64 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000065}
Chris Lattner2f7c9632001-06-06 20:29:01 +000066
Chris Lattnerb1585a92002-08-13 17:50:20 +000067// Static constructor to create a '0' constant of arbitrary type...
68Constant *Constant::getNullValue(const Type *Ty) {
69 switch (Ty->getPrimitiveID()) {
Chris Lattner3e88ef92003-10-03 19:34:51 +000070 case Type::BoolTyID: {
71 static Constant *NullBool = ConstantBool::get(false);
72 return NullBool;
73 }
74 case Type::SByteTyID: {
75 static Constant *NullSByte = ConstantSInt::get(Type::SByteTy, 0);
76 return NullSByte;
77 }
78 case Type::UByteTyID: {
79 static Constant *NullUByte = ConstantUInt::get(Type::UByteTy, 0);
80 return NullUByte;
81 }
82 case Type::ShortTyID: {
83 static Constant *NullShort = ConstantSInt::get(Type::ShortTy, 0);
84 return NullShort;
85 }
86 case Type::UShortTyID: {
87 static Constant *NullUShort = ConstantUInt::get(Type::UShortTy, 0);
88 return NullUShort;
89 }
90 case Type::IntTyID: {
91 static Constant *NullInt = ConstantSInt::get(Type::IntTy, 0);
92 return NullInt;
93 }
94 case Type::UIntTyID: {
95 static Constant *NullUInt = ConstantUInt::get(Type::UIntTy, 0);
96 return NullUInt;
97 }
98 case Type::LongTyID: {
99 static Constant *NullLong = ConstantSInt::get(Type::LongTy, 0);
100 return NullLong;
101 }
102 case Type::ULongTyID: {
103 static Constant *NullULong = ConstantUInt::get(Type::ULongTy, 0);
104 return NullULong;
105 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000106
Chris Lattner3e88ef92003-10-03 19:34:51 +0000107 case Type::FloatTyID: {
108 static Constant *NullFloat = ConstantFP::get(Type::FloatTy, 0);
109 return NullFloat;
110 }
111 case Type::DoubleTyID: {
112 static Constant *NullDouble = ConstantFP::get(Type::DoubleTy, 0);
113 return NullDouble;
114 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000115
116 case Type::PointerTyID:
117 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner3e88ef92003-10-03 19:34:51 +0000118
Chris Lattnerc33ae672003-03-06 21:02:18 +0000119 case Type::StructTyID: {
120 const StructType *ST = cast<StructType>(Ty);
Chris Lattnerc33ae672003-03-06 21:02:18 +0000121 const StructType::ElementTypes &ETs = ST->getElementTypes();
122 std::vector<Constant*> Elements;
123 Elements.resize(ETs.size());
124 for (unsigned i = 0, e = ETs.size(); i != e; ++i)
125 Elements[i] = Constant::getNullValue(ETs[i]);
126 return ConstantStruct::get(ST, Elements);
127 }
128 case Type::ArrayTyID: {
129 const ArrayType *AT = cast<ArrayType>(Ty);
130 Constant *El = Constant::getNullValue(AT->getElementType());
131 unsigned NumElements = AT->getNumElements();
132 return ConstantArray::get(AT, std::vector<Constant*>(NumElements, El));
133 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000134 default:
Chris Lattnerc33ae672003-03-06 21:02:18 +0000135 // Function, Type, Label, or Opaque type?
136 assert(0 && "Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000137 return 0;
138 }
139}
140
141// Static constructor to create the maximum constant of an integral type...
142ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
143 switch (Ty->getPrimitiveID()) {
144 case Type::BoolTyID: return ConstantBool::True;
145 case Type::SByteTyID:
146 case Type::ShortTyID:
147 case Type::IntTyID:
148 case Type::LongTyID: {
149 // Calculate 011111111111111...
150 unsigned TypeBits = Ty->getPrimitiveSize()*8;
151 int64_t Val = INT64_MAX; // All ones
152 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
153 return ConstantSInt::get(Ty, Val);
154 }
155
156 case Type::UByteTyID:
157 case Type::UShortTyID:
158 case Type::UIntTyID:
159 case Type::ULongTyID: return getAllOnesValue(Ty);
160
Chris Lattner31408f72002-08-14 17:12:13 +0000161 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000162 }
163}
164
165// Static constructor to create the minimum constant for an integral type...
166ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
167 switch (Ty->getPrimitiveID()) {
168 case Type::BoolTyID: return ConstantBool::False;
169 case Type::SByteTyID:
170 case Type::ShortTyID:
171 case Type::IntTyID:
172 case Type::LongTyID: {
173 // Calculate 1111111111000000000000
174 unsigned TypeBits = Ty->getPrimitiveSize()*8;
175 int64_t Val = -1; // All ones
176 Val <<= TypeBits-1; // Shift over to the right spot
177 return ConstantSInt::get(Ty, Val);
178 }
179
180 case Type::UByteTyID:
181 case Type::UShortTyID:
182 case Type::UIntTyID:
183 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
184
Chris Lattner31408f72002-08-14 17:12:13 +0000185 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000186 }
187}
188
189// Static constructor to create an integral constant with all bits set
190ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
191 switch (Ty->getPrimitiveID()) {
192 case Type::BoolTyID: return ConstantBool::True;
193 case Type::SByteTyID:
194 case Type::ShortTyID:
195 case Type::IntTyID:
196 case Type::LongTyID: return ConstantSInt::get(Ty, -1);
197
198 case Type::UByteTyID:
199 case Type::UShortTyID:
200 case Type::UIntTyID:
201 case Type::ULongTyID: {
202 // Calculate ~0 of the right type...
203 unsigned TypeBits = Ty->getPrimitiveSize()*8;
204 uint64_t Val = ~0ULL; // All ones
205 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
206 return ConstantUInt::get(Ty, Val);
207 }
Chris Lattner31408f72002-08-14 17:12:13 +0000208 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000209 }
210}
211
Chris Lattner83e5d392003-03-10 22:39:02 +0000212bool ConstantUInt::isAllOnesValue() const {
213 unsigned TypeBits = getType()->getPrimitiveSize()*8;
214 uint64_t Val = ~0ULL; // All ones
215 Val >>= 64-TypeBits; // Shift out inappropriate bits
216 return getValue() == Val;
217}
218
Chris Lattnerb1585a92002-08-13 17:50:20 +0000219
Chris Lattner2f7c9632001-06-06 20:29:01 +0000220//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000221// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000222//===----------------------------------------------------------------------===//
223
224//===----------------------------------------------------------------------===//
225// Normal Constructors
226
Chris Lattnerb1585a92002-08-13 17:50:20 +0000227ConstantBool::ConstantBool(bool V) : ConstantIntegral(Type::BoolTy) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000228 Val = V;
229}
Chris Lattner49d855c2001-09-07 16:46:31 +0000230
Chris Lattnerb1585a92002-08-13 17:50:20 +0000231ConstantInt::ConstantInt(const Type *Ty, uint64_t V) : ConstantIntegral(Ty) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000232 Val.Unsigned = V;
Chris Lattner7309d662001-07-21 19:16:08 +0000233}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000234
Chris Lattner3462ae32001-12-03 22:26:30 +0000235ConstantSInt::ConstantSInt(const Type *Ty, int64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000236 assert(Ty->isInteger() && Ty->isSigned() &&
237 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000238 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000239}
240
Chris Lattner3462ae32001-12-03 22:26:30 +0000241ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000242 assert(Ty->isInteger() && Ty->isUnsigned() &&
243 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000244 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000245}
246
Chris Lattner3462ae32001-12-03 22:26:30 +0000247ConstantFP::ConstantFP(const Type *Ty, double V) : Constant(Ty) {
Chris Lattner9655e542001-07-20 19:16:02 +0000248 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000249 Val = V;
250}
251
Chris Lattner3462ae32001-12-03 22:26:30 +0000252ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000253 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner0d779712002-10-08 23:33:52 +0000254 Operands.reserve(V.size());
255 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnerab69ecc2003-08-18 16:54:48 +0000256 assert(V[i]->getType() == T->getElementType() ||
257 (T->isAbstract() &&
258 V[i]->getType()->getPrimitiveID() ==
259 T->getElementType()->getPrimitiveID()));
Chris Lattnera073acb2001-07-07 08:36:50 +0000260 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000261 }
262}
263
Chris Lattner3462ae32001-12-03 22:26:30 +0000264ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattner7f74a562002-01-20 22:54:45 +0000265 const std::vector<Constant*> &V) : Constant(T) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000266 const StructType::ElementTypes &ETypes = T->getElementTypes();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000267 assert(V.size() == ETypes.size() &&
268 "Invalid initializer vector for constant structure");
Chris Lattner0d779712002-10-08 23:33:52 +0000269 Operands.reserve(V.size());
270 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnercc7d6ff2003-06-16 12:11:33 +0000271 assert((V[i]->getType() == ETypes[i] ||
Chris Lattner7267b352003-10-21 17:39:59 +0000272 ((ETypes[i]->isAbstract() || V[i]->getType()->isAbstract()) &&
Chris Lattnercc7d6ff2003-06-16 12:11:33 +0000273 ETypes[i]->getPrimitiveID()==V[i]->getType()->getPrimitiveID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000274 "Initializer for struct element doesn't match struct element type!");
Chris Lattnera073acb2001-07-07 08:36:50 +0000275 Operands.push_back(Use(V[i], this));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000276 }
277}
278
Chris Lattner3462ae32001-12-03 22:26:30 +0000279ConstantPointerRef::ConstantPointerRef(GlobalValue *GV)
Chris Lattnere120a732003-11-17 19:47:21 +0000280 : Constant(GV->getType()) {
Chris Lattner60e0dd72001-10-03 06:12:09 +0000281 Operands.push_back(Use(GV, this));
282}
283
Chris Lattner3cd8c562002-07-30 18:54:25 +0000284ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
285 : Constant(Ty), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000286 Operands.push_back(Use(C, this));
287}
288
Chris Lattner22ced562003-06-22 20:48:30 +0000289static bool isSetCC(unsigned Opcode) {
290 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
291 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
292 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
293}
294
Chris Lattner3cd8c562002-07-30 18:54:25 +0000295ConstantExpr::ConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
Chris Lattner22ced562003-06-22 20:48:30 +0000296 : Constant(isSetCC(Opcode) ? Type::BoolTy : C1->getType()), iType(Opcode) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000297 Operands.push_back(Use(C1, this));
298 Operands.push_back(Use(C2, this));
299}
300
Chris Lattner3cd8c562002-07-30 18:54:25 +0000301ConstantExpr::ConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
302 const Type *DestTy)
303 : Constant(DestTy), iType(Instruction::GetElementPtr) {
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000304 Operands.reserve(1+IdxList.size());
305 Operands.push_back(Use(C, this));
306 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
307 Operands.push_back(Use(IdxList[i], this));
308}
309
Chris Lattner60e0dd72001-10-03 06:12:09 +0000310
Chris Lattner2f7c9632001-06-06 20:29:01 +0000311
312//===----------------------------------------------------------------------===//
Chris Lattnerd7a73302001-10-13 06:57:33 +0000313// classof implementations
314
Chris Lattnerb1585a92002-08-13 17:50:20 +0000315bool ConstantIntegral::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000316 return CPV->getType()->isIntegral() && !isa<ConstantExpr>(CPV);
Chris Lattner41e99a02002-08-12 21:21:21 +0000317}
318
Chris Lattner3462ae32001-12-03 22:26:30 +0000319bool ConstantInt::classof(const Constant *CPV) {
Chris Lattnerb0b412e2002-09-03 01:08:28 +0000320 return CPV->getType()->isInteger() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000321}
Chris Lattner3462ae32001-12-03 22:26:30 +0000322bool ConstantSInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000323 return CPV->getType()->isSigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000324}
Chris Lattner3462ae32001-12-03 22:26:30 +0000325bool ConstantUInt::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000326 return CPV->getType()->isUnsigned() && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000327}
Chris Lattner3462ae32001-12-03 22:26:30 +0000328bool ConstantFP::classof(const Constant *CPV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000329 const Type *Ty = CPV->getType();
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000330 return ((Ty == Type::FloatTy || Ty == Type::DoubleTy) &&
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000331 !isa<ConstantExpr>(CPV));
Chris Lattnerd7a73302001-10-13 06:57:33 +0000332}
Chris Lattner3462ae32001-12-03 22:26:30 +0000333bool ConstantArray::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000334 return isa<ArrayType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000335}
Chris Lattner3462ae32001-12-03 22:26:30 +0000336bool ConstantStruct::classof(const Constant *CPV) {
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000337 return isa<StructType>(CPV->getType()) && !isa<ConstantExpr>(CPV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000338}
Chris Lattnere120a732003-11-17 19:47:21 +0000339
340bool ConstantPointerNull::classof(const Constant *CPV) {
341 return isa<PointerType>(CPV->getType()) && !isa<ConstantExpr>(CPV) &&
342 CPV->getNumOperands() == 0;
343}
344
345bool ConstantPointerRef::classof(const Constant *CPV) {
346 return isa<PointerType>(CPV->getType()) && !isa<ConstantExpr>(CPV) &&
347 CPV->getNumOperands() == 1;
Chris Lattnerd7a73302001-10-13 06:57:33 +0000348}
349
350
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000351
Chris Lattner2f7c9632001-06-06 20:29:01 +0000352//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000353// isValueValidForType implementations
354
Chris Lattner3462ae32001-12-03 22:26:30 +0000355bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000356 switch (Ty->getPrimitiveID()) {
357 default:
358 return false; // These can't be represented as integers!!!
359
360 // Signed types...
361 case Type::SByteTyID:
362 return (Val <= INT8_MAX && Val >= INT8_MIN);
363 case Type::ShortTyID:
364 return (Val <= INT16_MAX && Val >= INT16_MIN);
365 case Type::IntTyID:
366 return (Val <= INT32_MAX && Val >= INT32_MIN);
367 case Type::LongTyID:
368 return true; // This is the largest type...
369 }
370 assert(0 && "WTF?");
371 return false;
372}
373
Chris Lattner3462ae32001-12-03 22:26:30 +0000374bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000375 switch (Ty->getPrimitiveID()) {
376 default:
377 return false; // These can't be represented as integers!!!
378
379 // Unsigned types...
380 case Type::UByteTyID:
381 return (Val <= UINT8_MAX);
382 case Type::UShortTyID:
383 return (Val <= UINT16_MAX);
384 case Type::UIntTyID:
385 return (Val <= UINT32_MAX);
386 case Type::ULongTyID:
387 return true; // This is the largest type...
388 }
389 assert(0 && "WTF?");
390 return false;
391}
392
Chris Lattner3462ae32001-12-03 22:26:30 +0000393bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000394 switch (Ty->getPrimitiveID()) {
395 default:
396 return false; // These can't be represented as floating point!
397
398 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000399 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000400 case Type::DoubleTyID:
401 return true; // This is the largest type...
402 }
403};
Chris Lattner9655e542001-07-20 19:16:02 +0000404
Chris Lattner49d855c2001-09-07 16:46:31 +0000405//===----------------------------------------------------------------------===//
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000406// replaceUsesOfWithOnConstant implementations
407
Chris Lattnerc27038d2003-08-29 05:36:46 +0000408void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
409 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000410 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
411
412 std::vector<Constant*> Values;
413 Values.reserve(getValues().size()); // Build replacement array...
414 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
415 Constant *Val = cast<Constant>(getValues()[i]);
416 if (Val == From) Val = cast<Constant>(To);
417 Values.push_back(Val);
418 }
419
420 ConstantArray *Replacement = ConstantArray::get(getType(), Values);
421 assert(Replacement != this && "I didn't contain From!");
422
423 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000424 if (DisableChecking)
425 uncheckedReplaceAllUsesWith(Replacement);
426 else
427 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000428
429 // Delete the old constant!
430 destroyConstant();
431}
432
Chris Lattnerc27038d2003-08-29 05:36:46 +0000433void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
434 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000435 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
436
437 std::vector<Constant*> Values;
438 Values.reserve(getValues().size());
439 for (unsigned i = 0, e = getValues().size(); i != e; ++i) {
440 Constant *Val = cast<Constant>(getValues()[i]);
441 if (Val == From) Val = cast<Constant>(To);
442 Values.push_back(Val);
443 }
444
445 ConstantStruct *Replacement = ConstantStruct::get(getType(), Values);
446 assert(Replacement != this && "I didn't contain From!");
447
448 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000449 if (DisableChecking)
450 uncheckedReplaceAllUsesWith(Replacement);
451 else
452 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000453
454 // Delete the old constant!
455 destroyConstant();
456}
457
Chris Lattnerc27038d2003-08-29 05:36:46 +0000458void ConstantPointerRef::replaceUsesOfWithOnConstant(Value *From, Value *To,
459 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000460 if (isa<GlobalValue>(To)) {
461 assert(From == getOperand(0) && "Doesn't contain from!");
462 ConstantPointerRef *Replacement =
463 ConstantPointerRef::get(cast<GlobalValue>(To));
464
465 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000466 if (DisableChecking)
467 uncheckedReplaceAllUsesWith(Replacement);
468 else
469 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000470
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000471 } else {
472 // Just replace ourselves with the To value specified.
Chris Lattnerc27038d2003-08-29 05:36:46 +0000473 if (DisableChecking)
474 uncheckedReplaceAllUsesWith(To);
475 else
476 replaceAllUsesWith(To);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000477 }
Chris Lattnerc27038d2003-08-29 05:36:46 +0000478
479 // Delete the old constant!
480 destroyConstant();
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000481}
482
Chris Lattnerc27038d2003-08-29 05:36:46 +0000483void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
484 bool DisableChecking) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000485 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
486 Constant *To = cast<Constant>(ToV);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000487
Chris Lattner46b3d302003-04-16 22:40:51 +0000488 Constant *Replacement = 0;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000489 if (getOpcode() == Instruction::GetElementPtr) {
490 std::vector<Constant*> Indices;
Chris Lattner55ed6562003-05-14 17:51:05 +0000491 Constant *Pointer = getOperand(0);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000492 Indices.reserve(getNumOperands()-1);
Chris Lattner55ed6562003-05-14 17:51:05 +0000493 if (Pointer == From) Pointer = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000494
495 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000496 Constant *Val = getOperand(i);
497 if (Val == From) Val = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000498 Indices.push_back(Val);
499 }
500 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
501 } else if (getOpcode() == Instruction::Cast) {
502 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner55ed6562003-05-14 17:51:05 +0000503 Replacement = ConstantExpr::getCast(To, getType());
Chris Lattnerb36e8a12003-11-05 19:53:03 +0000504 } else if (getOpcode() == Instruction::Shl ||
505 getOpcode() == Instruction::Shr) {
506 Constant *C1 = getOperand(0);
507 Constant *C2 = getOperand(1);
508 if (C1 == From) C1 = To;
509 if (C2 == From) C2 = To;
510 Replacement = ConstantExpr::getShift(getOpcode(), C1, C2);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000511 } else if (getNumOperands() == 2) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000512 Constant *C1 = getOperand(0);
513 Constant *C2 = getOperand(1);
514 if (C1 == From) C1 = To;
515 if (C2 == From) C2 = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000516 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
517 } else {
518 assert(0 && "Unknown ConstantExpr type!");
519 return;
520 }
521
522 assert(Replacement != this && "I didn't contain From!");
523
524 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000525 if (DisableChecking)
526 uncheckedReplaceAllUsesWith(Replacement);
527 else
528 replaceAllUsesWith(Replacement);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000529
530 // Delete the old constant!
531 destroyConstant();
532}
533
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000534//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000535// Factory Function Implementation
536
Chris Lattner98fa07b2003-05-23 20:03:32 +0000537// ConstantCreator - A class that is used to create constants by
538// ValueMap*. This class should be partially specialized if there is
539// something strange that needs to be done to interface to the ctor for the
540// constant.
541//
Chris Lattner189d19f2003-11-21 20:23:48 +0000542namespace llvm {
543 template<class ConstantClass, class TypeClass, class ValType>
544 struct ConstantCreator {
545 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
546 return new ConstantClass(Ty, V);
547 }
548 };
549
550 template<class ConstantClass, class TypeClass>
551 struct ConvertConstantType {
552 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
553 assert(0 && "This type cannot be converted!\n");
554 abort();
555 }
556 };
557}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000558
Chris Lattner98fa07b2003-05-23 20:03:32 +0000559namespace {
560 template<class ValType, class TypeClass, class ConstantClass>
Chris Lattnerb50d1352003-10-05 00:17:43 +0000561 class ValueMap : public AbstractTypeUser {
562 typedef std::pair<const TypeClass*, ValType> MapKey;
563 typedef std::map<MapKey, ConstantClass *> MapTy;
564 typedef typename MapTy::iterator MapIterator;
565 MapTy Map;
566
567 typedef std::map<const TypeClass*, MapIterator> AbstractTypeMapTy;
568 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000569 public:
570 // getOrCreate - Return the specified constant from the map, creating it if
571 // necessary.
572 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000573 MapKey Lookup(Ty, V);
574 MapIterator I = Map.lower_bound(Lookup);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000575 if (I != Map.end() && I->first == Lookup)
576 return I->second; // Is it in the map?
577
578 // If no preexisting value, create one now...
579 ConstantClass *Result =
580 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
581
Chris Lattnerb50d1352003-10-05 00:17:43 +0000582
583 /// FIXME: why does this assert fail when loading 176.gcc?
584 //assert(Result->getType() == Ty && "Type specified is not correct!");
585 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
586
587 // If the type of the constant is abstract, make sure that an entry exists
588 // for it in the AbstractTypeMap.
589 if (Ty->isAbstract()) {
590 typename AbstractTypeMapTy::iterator TI =
591 AbstractTypeMap.lower_bound(Ty);
592
593 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
594 // Add ourselves to the ATU list of the type.
595 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
596
597 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
598 }
599 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000600 return Result;
601 }
602
603 void remove(ConstantClass *CP) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000604 // FIXME: This should not use a linear scan. If this gets to be a
605 // performance problem, someone should look at this.
606 MapIterator I = Map.begin();
607 for (MapIterator E = Map.end(); I != E && I->second != CP; ++I)
608 /* empty */;
609
610 assert(I != Map.end() && "Constant not found in constant table!");
611
612 // Now that we found the entry, make sure this isn't the entry that
613 // the AbstractTypeMap points to.
614 const TypeClass *Ty = I->first.first;
615 if (Ty->isAbstract()) {
616 assert(AbstractTypeMap.count(Ty) &&
617 "Abstract type not in AbstractTypeMap?");
618 MapIterator &ATMEntryIt = AbstractTypeMap[Ty];
619 if (ATMEntryIt == I) {
620 // Yes, we are removing the representative entry for this type.
621 // See if there are any other entries of the same type.
622 MapIterator TmpIt = ATMEntryIt;
623
624 // First check the entry before this one...
625 if (TmpIt != Map.begin()) {
626 --TmpIt;
627 if (TmpIt->first.first != Ty) // Not the same type, move back...
628 ++TmpIt;
629 }
630
631 // If we didn't find the same type, try to move forward...
632 if (TmpIt == ATMEntryIt) {
633 ++TmpIt;
634 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
635 --TmpIt; // No entry afterwards with the same type
636 }
637
638 // If there is another entry in the map of the same abstract type,
639 // update the AbstractTypeMap entry now.
640 if (TmpIt != ATMEntryIt) {
641 ATMEntryIt = TmpIt;
642 } else {
643 // Otherwise, we are removing the last instance of this type
644 // from the table. Remove from the ATM, and from user list.
645 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
646 AbstractTypeMap.erase(Ty);
647 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000648 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000649 }
650
651 Map.erase(I);
652 }
653
654 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
655 typename AbstractTypeMapTy::iterator I =
656 AbstractTypeMap.find(cast<TypeClass>(OldTy));
657
658 assert(I != AbstractTypeMap.end() &&
659 "Abstract type not in AbstractTypeMap?");
660
661 // Convert a constant at a time until the last one is gone. The last one
662 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
663 // eliminated eventually.
664 do {
665 ConvertConstantType<ConstantClass,
666 TypeClass>::convert(I->second->second,
667 cast<TypeClass>(NewTy));
668
669 I = AbstractTypeMap.find(cast<TypeClass>(OldTy));
670 } while (I != AbstractTypeMap.end());
671 }
672
673 // If the type became concrete without being refined to any other existing
674 // type, we just remove ourselves from the ATU list.
675 void typeBecameConcrete(const DerivedType *AbsTy) {
676 AbsTy->removeAbstractTypeUser(this);
677 }
678
679 void dump() const {
680 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000681 }
682 };
683}
684
685
686
Chris Lattner3462ae32001-12-03 22:26:30 +0000687//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000688//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000689static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
690static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000691
Chris Lattner3462ae32001-12-03 22:26:30 +0000692ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000693 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000694}
695
Chris Lattner3462ae32001-12-03 22:26:30 +0000696ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000697 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000698}
699
Chris Lattner3462ae32001-12-03 22:26:30 +0000700ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000701 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000702 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
703 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000704}
705
Chris Lattner3462ae32001-12-03 22:26:30 +0000706//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000707//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000708static ValueMap<double, Type, ConstantFP> FPConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000709
Chris Lattner3462ae32001-12-03 22:26:30 +0000710ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000711 return FPConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000712}
713
Chris Lattner3462ae32001-12-03 22:26:30 +0000714//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000715//
Chris Lattner189d19f2003-11-21 20:23:48 +0000716namespace llvm {
717 template<>
718 struct ConvertConstantType<ConstantArray, ArrayType> {
719 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
720 // Make everyone now use a constant of the new type...
721 std::vector<Constant*> C;
722 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
723 C.push_back(cast<Constant>(OldC->getOperand(i)));
724 Constant *New = ConstantArray::get(NewTy, C);
725 assert(New != OldC && "Didn't replace constant??");
726 OldC->uncheckedReplaceAllUsesWith(New);
727 OldC->destroyConstant(); // This constant is now dead, destroy it.
728 }
729 };
730}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000731
Chris Lattner98fa07b2003-05-23 20:03:32 +0000732static ValueMap<std::vector<Constant*>, ArrayType,
733 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000734
Chris Lattner3462ae32001-12-03 22:26:30 +0000735ConstantArray *ConstantArray::get(const ArrayType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000736 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000737 return ArrayConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000738}
739
Chris Lattner98fa07b2003-05-23 20:03:32 +0000740// destroyConstant - Remove the constant from the constant table...
741//
742void ConstantArray::destroyConstant() {
743 ArrayConstants.remove(this);
744 destroyConstantImpl();
745}
746
Chris Lattner3462ae32001-12-03 22:26:30 +0000747// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000748// contain the specified string. A null terminator is added to the specified
749// string so that it may be used in a natural way...
750//
Chris Lattner7f74a562002-01-20 22:54:45 +0000751ConstantArray *ConstantArray::get(const std::string &Str) {
752 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000753
754 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000755 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000756
757 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000758 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000759
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000760 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000761 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000762}
763
Chris Lattner81fabb02002-08-26 17:53:56 +0000764// getAsString - If the sub-element type of this array is either sbyte or ubyte,
765// then this method converts the array to an std::string and returns it.
766// Otherwise, it asserts out.
767//
768std::string ConstantArray::getAsString() const {
Chris Lattner6077c312003-07-23 15:22:26 +0000769 assert((getType()->getElementType() == Type::UByteTy ||
770 getType()->getElementType() == Type::SByteTy) && "Not a string!");
771
Chris Lattner81fabb02002-08-26 17:53:56 +0000772 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +0000773 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
774 Result += (char)cast<ConstantInt>(getOperand(i))->getRawValue();
Chris Lattner81fabb02002-08-26 17:53:56 +0000775 return Result;
776}
777
778
Chris Lattner3462ae32001-12-03 22:26:30 +0000779//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000780//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000781
Chris Lattner189d19f2003-11-21 20:23:48 +0000782namespace llvm {
783 template<>
784 struct ConvertConstantType<ConstantStruct, StructType> {
785 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
786 // Make everyone now use a constant of the new type...
787 std::vector<Constant*> C;
788 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
789 C.push_back(cast<Constant>(OldC->getOperand(i)));
790 Constant *New = ConstantStruct::get(NewTy, C);
791 assert(New != OldC && "Didn't replace constant??");
792
793 OldC->uncheckedReplaceAllUsesWith(New);
794 OldC->destroyConstant(); // This constant is now dead, destroy it.
795 }
796 };
797}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000798
Chris Lattner98fa07b2003-05-23 20:03:32 +0000799static ValueMap<std::vector<Constant*>, StructType,
800 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000801
Chris Lattner3462ae32001-12-03 22:26:30 +0000802ConstantStruct *ConstantStruct::get(const StructType *Ty,
Chris Lattner7f74a562002-01-20 22:54:45 +0000803 const std::vector<Constant*> &V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000804 return StructConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000805}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000806
Chris Lattnerd7a73302001-10-13 06:57:33 +0000807// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +0000808//
Chris Lattner3462ae32001-12-03 22:26:30 +0000809void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000810 StructConstants.remove(this);
811 destroyConstantImpl();
812}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000813
Chris Lattner3462ae32001-12-03 22:26:30 +0000814//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +0000815//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000816
Chris Lattner189d19f2003-11-21 20:23:48 +0000817namespace llvm {
818 // ConstantPointerNull does not take extra "value" argument...
819 template<class ValType>
820 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
821 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
822 return new ConstantPointerNull(Ty);
823 }
824 };
Chris Lattner98fa07b2003-05-23 20:03:32 +0000825
Chris Lattner189d19f2003-11-21 20:23:48 +0000826 template<>
827 struct ConvertConstantType<ConstantPointerNull, PointerType> {
828 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
829 // Make everyone now use a constant of the new type...
830 Constant *New = ConstantPointerNull::get(NewTy);
831 assert(New != OldC && "Didn't replace constant??");
832 OldC->uncheckedReplaceAllUsesWith(New);
833 OldC->destroyConstant(); // This constant is now dead, destroy it.
834 }
835 };
836}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000837
Chris Lattner98fa07b2003-05-23 20:03:32 +0000838static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +0000839
Chris Lattner3462ae32001-12-03 22:26:30 +0000840ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000841 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +0000842}
843
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000844// destroyConstant - Remove the constant from the constant table...
845//
846void ConstantPointerNull::destroyConstant() {
847 NullPtrConstants.remove(this);
848 destroyConstantImpl();
849}
850
851
Chris Lattner3462ae32001-12-03 22:26:30 +0000852//---- ConstantPointerRef::get() implementation...
Chris Lattner25033252001-10-03 19:28:15 +0000853//
Chris Lattner3462ae32001-12-03 22:26:30 +0000854ConstantPointerRef *ConstantPointerRef::get(GlobalValue *GV) {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000855 assert(GV->getParent() && "Global Value must be attached to a module!");
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000856
Chris Lattnerd7a73302001-10-13 06:57:33 +0000857 // The Module handles the pointer reference sharing...
Chris Lattner3462ae32001-12-03 22:26:30 +0000858 return GV->getParent()->getConstantPointerRef(GV);
Chris Lattnerd7a73302001-10-13 06:57:33 +0000859}
860
Chris Lattner0c6e0b92002-08-18 00:40:04 +0000861// destroyConstant - Remove the constant from the constant table...
862//
863void ConstantPointerRef::destroyConstant() {
864 getValue()->getParent()->destroyConstantPointerRef(this);
865 destroyConstantImpl();
866}
867
868
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000869//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000870//
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000871typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +0000872
Chris Lattner189d19f2003-11-21 20:23:48 +0000873namespace llvm {
874 template<>
875 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
876 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
877 if (V.first == Instruction::Cast)
878 return new ConstantExpr(Instruction::Cast, V.second[0], Ty);
879 if ((V.first >= Instruction::BinaryOpsBegin &&
880 V.first < Instruction::BinaryOpsEnd) ||
881 V.first == Instruction::Shl || V.first == Instruction::Shr)
882 return new ConstantExpr(V.first, V.second[0], V.second[1]);
883
884 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
885
886 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
887 return new ConstantExpr(V.second[0], IdxList, Ty);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000888 }
Chris Lattner189d19f2003-11-21 20:23:48 +0000889 };
Chris Lattnerb50d1352003-10-05 00:17:43 +0000890
Chris Lattner189d19f2003-11-21 20:23:48 +0000891 template<>
892 struct ConvertConstantType<ConstantExpr, Type> {
893 static void convert(ConstantExpr *OldC, const Type *NewTy) {
894 Constant *New;
895 switch (OldC->getOpcode()) {
896 case Instruction::Cast:
897 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
898 break;
899 case Instruction::Shl:
900 case Instruction::Shr:
901 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
902 OldC->getOperand(0), OldC->getOperand(1));
903 break;
904 default:
905 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
906 OldC->getOpcode() < Instruction::BinaryOpsEnd);
907 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
908 OldC->getOperand(1));
909 break;
910 case Instruction::GetElementPtr:
911 // Make everyone now use a constant of the new type...
912 std::vector<Constant*> C;
913 for (unsigned i = 1, e = OldC->getNumOperands(); i != e; ++i)
914 C.push_back(cast<Constant>(OldC->getOperand(i)));
915 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), C);
916 break;
917 }
918
919 assert(New != OldC && "Didn't replace constant??");
920 OldC->uncheckedReplaceAllUsesWith(New);
921 OldC->destroyConstant(); // This constant is now dead, destroy it.
922 }
923 };
924} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +0000925
926
Chris Lattner98fa07b2003-05-23 20:03:32 +0000927static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +0000928
Chris Lattner46b3d302003-04-16 22:40:51 +0000929Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +0000930 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
931
Chris Lattneracdbe712003-04-17 19:24:48 +0000932 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
933 return FC; // Fold a few common cases...
934
Vikram S. Adve4c485332002-07-15 18:19:33 +0000935 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000936 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000937 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
938 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000939}
Chris Lattnerd7a73302001-10-13 06:57:33 +0000940
Chris Lattnerb50d1352003-10-05 00:17:43 +0000941Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
942 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000943 // Check the operands for consistency first
944 assert((Opcode >= Instruction::BinaryOpsBegin &&
945 Opcode < Instruction::BinaryOpsEnd) &&
946 "Invalid opcode in binary constant expression");
947 assert(C1->getType() == C2->getType() &&
948 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000949
950 if (ReqTy == C1->getType())
951 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
952 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +0000953
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000954 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000955 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000956 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000957}
958
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000959/// getShift - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +0000960Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
961 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000962 // Check the operands for consistency first
963 assert((Opcode == Instruction::Shl ||
964 Opcode == Instruction::Shr) &&
965 "Invalid opcode in binary constant expression");
966 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
967 "Invalid operand types for Shift constant expr!");
968
969 if (Constant *FC = ConstantFoldShiftInstruction(Opcode, C1, C2))
970 return FC; // Fold a few common cases...
971
972 // Look up the constant in the table first to ensure uniqueness
973 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000974 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000975 return ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +0000976}
977
978
Chris Lattnerb50d1352003-10-05 00:17:43 +0000979Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
980 const std::vector<Constant*> &IdxList) {
Chris Lattneracdbe712003-04-17 19:24:48 +0000981 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
982 return FC; // Fold a few common cases...
Chris Lattnerb50d1352003-10-05 00:17:43 +0000983 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +0000984 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +0000985
986 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000987 std::vector<Constant*> argVec(1, C);
Chris Lattnerd9f4ac662002-07-18 00:14:50 +0000988 argVec.insert(argVec.end(), IdxList.begin(), IdxList.end());
Chris Lattner2b383d2e2003-05-13 21:37:02 +0000989 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000990 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +0000991}
992
Chris Lattnerb50d1352003-10-05 00:17:43 +0000993Constant *ConstantExpr::getGetElementPtr(Constant *C,
994 const std::vector<Constant*> &IdxList){
995 // Get the result type of the getelementptr!
996 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
997
998 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
999 true);
1000 assert(Ty && "GEP indices invalid!");
Chris Lattner8a552622003-10-23 05:21:48 +00001001
1002 if (C->isNullValue()) {
1003 bool isNull = true;
1004 for (unsigned i = 0, e = IdxList.size(); i != e; ++i)
1005 if (!IdxList[i]->isNullValue()) {
1006 isNull = false;
1007 break;
1008 }
1009 if (isNull) return ConstantPointerNull::get(PointerType::get(Ty));
1010 }
1011
Chris Lattnerb50d1352003-10-05 00:17:43 +00001012 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
1013}
1014
1015
Vikram S. Adve4c485332002-07-15 18:19:33 +00001016// destroyConstant - Remove the constant from the constant table...
1017//
1018void ConstantExpr::destroyConstant() {
1019 ExprConstants.remove(this);
1020 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001021}
1022
Chris Lattner3cd8c562002-07-30 18:54:25 +00001023const char *ConstantExpr::getOpcodeName() const {
1024 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001025}
1026
Chris Lattner163b8902002-10-14 03:30:23 +00001027unsigned Constant::mutateReferences(Value *OldV, Value *NewV) {
1028 // Uses of constant pointer refs are global values, not constants!
1029 if (ConstantPointerRef *CPR = dyn_cast<ConstantPointerRef>(this)) {
1030 GlobalValue *NewGV = cast<GlobalValue>(NewV);
1031 GlobalValue *OldGV = CPR->getValue();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001032
Chris Lattner163b8902002-10-14 03:30:23 +00001033 assert(OldGV == OldV && "Cannot mutate old value if I'm not using it!");
Chris Lattner163b8902002-10-14 03:30:23 +00001034 Operands[0] = NewGV;
Chris Lattnercb4d26f2003-05-15 19:37:21 +00001035 OldGV->getParent()->mutateConstantPointerRef(OldGV, NewGV);
Chris Lattner163b8902002-10-14 03:30:23 +00001036 return 1;
1037 } else {
1038 Constant *NewC = cast<Constant>(NewV);
1039 unsigned NumReplaced = 0;
1040 for (unsigned i = 0, N = getNumOperands(); i != N; ++i)
1041 if (Operands[i] == OldV) {
1042 ++NumReplaced;
1043 Operands[i] = NewC;
1044 }
1045 return NumReplaced;
1046 }
Chris Lattner25033252001-10-03 19:28:15 +00001047}
Brian Gaeke960707c2003-11-11 22:41:34 +00001048