blob: a14b690313658d4c817b78d4d3c061c3f28f0375 [file] [log] [blame]
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001//===-- Constants.cpp - Implement Constant nodes --------------------------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// 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.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
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 Lattner5a945e32004-01-12 21:13:12 +000015#include "ConstantFolding.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000016#include "llvm/DerivedTypes.h"
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000017#include "llvm/GlobalValue.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000018#include "llvm/Instructions.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000019#include "llvm/SymbolTable.h"
Chris Lattnerd7a73302001-10-13 06:57:33 +000020#include "llvm/Module.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000021#include "llvm/ADT/StringExtras.h"
Jim Laskeyb74c6662005-08-17 19:34:49 +000022#include "llvm/Support/MathExtras.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000023#include <algorithm>
Reid Spencercf394bf2004-07-04 11:51:24 +000024#include <iostream>
Chris Lattner189d19f2003-11-21 20:23:48 +000025using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000026
Chris Lattner3462ae32001-12-03 22:26:30 +000027ConstantBool *ConstantBool::True = new ConstantBool(true);
28ConstantBool *ConstantBool::False = new ConstantBool(false);
Chris Lattner2f7c9632001-06-06 20:29:01 +000029
Chris Lattner9655e542001-07-20 19:16:02 +000030
Chris Lattner2f7c9632001-06-06 20:29:01 +000031//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000032// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000033//===----------------------------------------------------------------------===//
34
Chris Lattner3462ae32001-12-03 22:26:30 +000035void Constant::destroyConstantImpl() {
36 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000037 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +000038 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000039 // but they don't know that. Because we only find out when the CPV is
40 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000041 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000042 //
43 while (!use_empty()) {
44 Value *V = use_back();
45#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000046 if (!isa<Constant>(V))
47 std::cerr << "While deleting: " << *this
48 << "\n\nUse still stuck around after Def is destroyed: "
49 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000050#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000051 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000052 Constant *CV = cast<Constant>(V);
53 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +000054
55 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000056 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000057 }
58
59 // Value has no outstanding references it is safe to delete it now...
60 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000061}
Chris Lattner2f7c9632001-06-06 20:29:01 +000062
Chris Lattnerb1585a92002-08-13 17:50:20 +000063// Static constructor to create a '0' constant of arbitrary type...
64Constant *Constant::getNullValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +000065 switch (Ty->getTypeID()) {
Chris Lattner3e88ef92003-10-03 19:34:51 +000066 case Type::BoolTyID: {
67 static Constant *NullBool = ConstantBool::get(false);
68 return NullBool;
69 }
70 case Type::SByteTyID: {
71 static Constant *NullSByte = ConstantSInt::get(Type::SByteTy, 0);
72 return NullSByte;
73 }
74 case Type::UByteTyID: {
75 static Constant *NullUByte = ConstantUInt::get(Type::UByteTy, 0);
76 return NullUByte;
77 }
78 case Type::ShortTyID: {
79 static Constant *NullShort = ConstantSInt::get(Type::ShortTy, 0);
80 return NullShort;
81 }
82 case Type::UShortTyID: {
83 static Constant *NullUShort = ConstantUInt::get(Type::UShortTy, 0);
84 return NullUShort;
85 }
86 case Type::IntTyID: {
87 static Constant *NullInt = ConstantSInt::get(Type::IntTy, 0);
88 return NullInt;
89 }
90 case Type::UIntTyID: {
91 static Constant *NullUInt = ConstantUInt::get(Type::UIntTy, 0);
92 return NullUInt;
93 }
94 case Type::LongTyID: {
95 static Constant *NullLong = ConstantSInt::get(Type::LongTy, 0);
96 return NullLong;
97 }
98 case Type::ULongTyID: {
99 static Constant *NullULong = ConstantUInt::get(Type::ULongTy, 0);
100 return NullULong;
101 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000102
Chris Lattner3e88ef92003-10-03 19:34:51 +0000103 case Type::FloatTyID: {
104 static Constant *NullFloat = ConstantFP::get(Type::FloatTy, 0);
105 return NullFloat;
106 }
107 case Type::DoubleTyID: {
108 static Constant *NullDouble = ConstantFP::get(Type::DoubleTy, 0);
109 return NullDouble;
110 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000111
Misha Brukmanb1c93172005-04-21 23:48:37 +0000112 case Type::PointerTyID:
Chris Lattnerb1585a92002-08-13 17:50:20 +0000113 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner3e88ef92003-10-03 19:34:51 +0000114
Chris Lattner9fba3da2004-02-15 05:53:04 +0000115 case Type::StructTyID:
116 case Type::ArrayTyID:
Brian Gaeke02209042004-08-20 06:00:58 +0000117 case Type::PackedTyID:
Chris Lattner9fba3da2004-02-15 05:53:04 +0000118 return ConstantAggregateZero::get(Ty);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000119 default:
Reid Spencercf394bf2004-07-04 11:51:24 +0000120 // Function, Label, or Opaque type?
121 assert(!"Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000122 return 0;
123 }
124}
125
126// Static constructor to create the maximum constant of an integral type...
127ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000128 switch (Ty->getTypeID()) {
Chris Lattnerb1585a92002-08-13 17:50:20 +0000129 case Type::BoolTyID: return ConstantBool::True;
130 case Type::SByteTyID:
131 case Type::ShortTyID:
132 case Type::IntTyID:
133 case Type::LongTyID: {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000134 // Calculate 011111111111111...
Chris Lattnerb1585a92002-08-13 17:50:20 +0000135 unsigned TypeBits = Ty->getPrimitiveSize()*8;
136 int64_t Val = INT64_MAX; // All ones
137 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
138 return ConstantSInt::get(Ty, Val);
139 }
140
141 case Type::UByteTyID:
142 case Type::UShortTyID:
143 case Type::UIntTyID:
144 case Type::ULongTyID: return getAllOnesValue(Ty);
145
Chris Lattner31408f72002-08-14 17:12:13 +0000146 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000147 }
148}
149
150// Static constructor to create the minimum constant for an integral type...
151ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000152 switch (Ty->getTypeID()) {
Chris Lattnerb1585a92002-08-13 17:50:20 +0000153 case Type::BoolTyID: return ConstantBool::False;
154 case Type::SByteTyID:
155 case Type::ShortTyID:
156 case Type::IntTyID:
157 case Type::LongTyID: {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000158 // Calculate 1111111111000000000000
Chris Lattnerb1585a92002-08-13 17:50:20 +0000159 unsigned TypeBits = Ty->getPrimitiveSize()*8;
160 int64_t Val = -1; // All ones
161 Val <<= TypeBits-1; // Shift over to the right spot
162 return ConstantSInt::get(Ty, Val);
163 }
164
165 case Type::UByteTyID:
166 case Type::UShortTyID:
167 case Type::UIntTyID:
168 case Type::ULongTyID: return ConstantUInt::get(Ty, 0);
169
Chris Lattner31408f72002-08-14 17:12:13 +0000170 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000171 }
172}
173
174// Static constructor to create an integral constant with all bits set
175ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000176 switch (Ty->getTypeID()) {
Chris Lattnerb1585a92002-08-13 17:50:20 +0000177 case Type::BoolTyID: return ConstantBool::True;
178 case Type::SByteTyID:
179 case Type::ShortTyID:
180 case Type::IntTyID:
181 case Type::LongTyID: return ConstantSInt::get(Ty, -1);
182
183 case Type::UByteTyID:
184 case Type::UShortTyID:
185 case Type::UIntTyID:
186 case Type::ULongTyID: {
187 // Calculate ~0 of the right type...
188 unsigned TypeBits = Ty->getPrimitiveSize()*8;
189 uint64_t Val = ~0ULL; // All ones
190 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
191 return ConstantUInt::get(Ty, Val);
192 }
Chris Lattner31408f72002-08-14 17:12:13 +0000193 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000194 }
195}
196
Chris Lattner83e5d392003-03-10 22:39:02 +0000197bool ConstantUInt::isAllOnesValue() const {
198 unsigned TypeBits = getType()->getPrimitiveSize()*8;
199 uint64_t Val = ~0ULL; // All ones
200 Val >>= 64-TypeBits; // Shift out inappropriate bits
201 return getValue() == Val;
202}
203
Chris Lattnerb1585a92002-08-13 17:50:20 +0000204
Chris Lattner2f7c9632001-06-06 20:29:01 +0000205//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000206// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000207//===----------------------------------------------------------------------===//
208
209//===----------------------------------------------------------------------===//
210// Normal Constructors
211
Chris Lattner265eb642004-06-21 12:12:12 +0000212ConstantIntegral::ConstantIntegral(const Type *Ty, uint64_t V)
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000213 : Constant(Ty, SimpleConstantVal, 0, 0) {
Chris Lattner265eb642004-06-21 12:12:12 +0000214 Val.Unsigned = V;
Chris Lattner2f7c9632001-06-06 20:29:01 +0000215}
Chris Lattner49d855c2001-09-07 16:46:31 +0000216
Chris Lattner265eb642004-06-21 12:12:12 +0000217ConstantBool::ConstantBool(bool V) : ConstantIntegral(Type::BoolTy, V) {
218}
219
220ConstantInt::ConstantInt(const Type *Ty, uint64_t V) : ConstantIntegral(Ty, V) {
Chris Lattner7309d662001-07-21 19:16:08 +0000221}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000222
Chris Lattner3462ae32001-12-03 22:26:30 +0000223ConstantSInt::ConstantSInt(const Type *Ty, int64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000224 assert(Ty->isInteger() && Ty->isSigned() &&
Reid Spencerf064bb22005-03-09 15:19:41 +0000225 "Illegal type for signed integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000226 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000227}
228
Chris Lattner3462ae32001-12-03 22:26:30 +0000229ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V) : ConstantInt(Ty, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000230 assert(Ty->isInteger() && Ty->isUnsigned() &&
231 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000232 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000233}
234
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000235ConstantFP::ConstantFP(const Type *Ty, double V)
236 : Constant(Ty, SimpleConstantVal, 0, 0) {
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 Val = V;
239}
240
Chris Lattner3462ae32001-12-03 22:26:30 +0000241ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000242 const std::vector<Constant*> &V)
243 : Constant(T, SimpleConstantVal, new Use[V.size()], V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000244 assert(V.size() == T->getNumElements() &&
245 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000246 Use *OL = OperandList;
Chris Lattner0d779712002-10-08 23:33:52 +0000247 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000248 assert((V[i]->getType() == T->getElementType() ||
249 (T->isAbstract() &&
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000250 V[i]->getType()->getTypeID()==T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000251 "Initializer for array element doesn't match array element type!");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000252 OL[i].init(V[i], this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000253 }
254}
255
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000256ConstantArray::~ConstantArray() {
257 delete [] OperandList;
258}
259
Chris Lattner3462ae32001-12-03 22:26:30 +0000260ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000261 const std::vector<Constant*> &V)
262 : Constant(T, SimpleConstantVal, new Use[V.size()], V.size()) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000263 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000264 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000265 Use *OL = OperandList;
Chris Lattner0d779712002-10-08 23:33:52 +0000266 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000267 assert((V[i]->getType() == T->getElementType(i) ||
268 ((T->getElementType(i)->isAbstract() ||
269 V[i]->getType()->isAbstract()) &&
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000270 T->getElementType(i)->getTypeID()==V[i]->getType()->getTypeID()))&&
Chris Lattner93c8f142003-06-02 17:42:47 +0000271 "Initializer for struct element doesn't match struct element type!");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000272 OL[i].init(V[i], this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000273 }
274}
275
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000276ConstantStruct::~ConstantStruct() {
277 delete [] OperandList;
278}
279
280
Brian Gaeke02209042004-08-20 06:00:58 +0000281ConstantPacked::ConstantPacked(const PackedType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000282 const std::vector<Constant*> &V)
283 : Constant(T, SimpleConstantVal, new Use[V.size()], V.size()) {
284 Use *OL = OperandList;
Brian Gaeke02209042004-08-20 06:00:58 +0000285 for (unsigned i = 0, e = V.size(); i != e; ++i) {
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000286 assert((V[i]->getType() == T->getElementType() ||
287 (T->isAbstract() &&
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000288 V[i]->getType()->getTypeID()==T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000289 "Initializer for packed element doesn't match packed element type!");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000290 OL[i].init(V[i], this);
Brian Gaeke02209042004-08-20 06:00:58 +0000291 }
292}
293
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000294ConstantPacked::~ConstantPacked() {
295 delete [] OperandList;
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000296}
297
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000298/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
299/// behind the scenes to implement unary constant exprs.
300class UnaryConstantExpr : public ConstantExpr {
301 Use Op;
302public:
303 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
304 : ConstantExpr(Ty, Opcode, &Op, 1), Op(C, this) {}
305};
Chris Lattner6e415c02004-03-12 05:54:04 +0000306
Chris Lattner22ced562003-06-22 20:48:30 +0000307static bool isSetCC(unsigned Opcode) {
308 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
309 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
310 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
311}
312
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000313/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
314/// behind the scenes to implement binary constant exprs.
315class BinaryConstantExpr : public ConstantExpr {
316 Use Ops[2];
317public:
318 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
319 : ConstantExpr(isSetCC(Opcode) ? Type::BoolTy : C1->getType(),
320 Opcode, Ops, 2) {
321 Ops[0].init(C1, this);
322 Ops[1].init(C2, this);
323 }
324};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000325
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000326/// SelectConstantExpr - This class is private to Constants.cpp, and is used
327/// behind the scenes to implement select constant exprs.
328class SelectConstantExpr : public ConstantExpr {
329 Use Ops[3];
330public:
331 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
332 : ConstantExpr(C2->getType(), Instruction::Select, Ops, 3) {
333 Ops[0].init(C1, this);
334 Ops[1].init(C2, this);
335 Ops[2].init(C3, this);
336 }
337};
338
339/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
340/// used behind the scenes to implement getelementpr constant exprs.
341struct GetElementPtrConstantExpr : public ConstantExpr {
342 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
343 const Type *DestTy)
344 : ConstantExpr(DestTy, Instruction::GetElementPtr,
345 new Use[IdxList.size()+1], IdxList.size()+1) {
346 OperandList[0].init(C, this);
347 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
348 OperandList[i+1].init(IdxList[i], this);
349 }
350 ~GetElementPtrConstantExpr() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000351 delete [] OperandList;
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000352 }
353};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000354
Chris Lattner817175f2004-03-29 02:37:53 +0000355/// ConstantExpr::get* - Return some common constants without having to
356/// specify the full Instruction::OPCODE identifier.
357///
358Constant *ConstantExpr::getNeg(Constant *C) {
Chris Lattner3cdc27c2004-03-29 19:51:24 +0000359 if (!C->getType()->isFloatingPoint())
360 return get(Instruction::Sub, getNullValue(C->getType()), C);
361 else
362 return get(Instruction::Sub, ConstantFP::get(C->getType(), -0.0), C);
Chris Lattner817175f2004-03-29 02:37:53 +0000363}
364Constant *ConstantExpr::getNot(Constant *C) {
365 assert(isa<ConstantIntegral>(C) && "Cannot NOT a nonintegral type!");
366 return get(Instruction::Xor, C,
367 ConstantIntegral::getAllOnesValue(C->getType()));
368}
369Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2) {
370 return get(Instruction::Add, C1, C2);
371}
372Constant *ConstantExpr::getSub(Constant *C1, Constant *C2) {
373 return get(Instruction::Sub, C1, C2);
374}
375Constant *ConstantExpr::getMul(Constant *C1, Constant *C2) {
376 return get(Instruction::Mul, C1, C2);
377}
378Constant *ConstantExpr::getDiv(Constant *C1, Constant *C2) {
379 return get(Instruction::Div, C1, C2);
380}
381Constant *ConstantExpr::getRem(Constant *C1, Constant *C2) {
382 return get(Instruction::Rem, C1, C2);
383}
384Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
385 return get(Instruction::And, C1, C2);
386}
387Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
388 return get(Instruction::Or, C1, C2);
389}
390Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
391 return get(Instruction::Xor, C1, C2);
392}
393Constant *ConstantExpr::getSetEQ(Constant *C1, Constant *C2) {
394 return get(Instruction::SetEQ, C1, C2);
395}
396Constant *ConstantExpr::getSetNE(Constant *C1, Constant *C2) {
397 return get(Instruction::SetNE, C1, C2);
398}
399Constant *ConstantExpr::getSetLT(Constant *C1, Constant *C2) {
400 return get(Instruction::SetLT, C1, C2);
401}
402Constant *ConstantExpr::getSetGT(Constant *C1, Constant *C2) {
403 return get(Instruction::SetGT, C1, C2);
404}
405Constant *ConstantExpr::getSetLE(Constant *C1, Constant *C2) {
406 return get(Instruction::SetLE, C1, C2);
407}
408Constant *ConstantExpr::getSetGE(Constant *C1, Constant *C2) {
409 return get(Instruction::SetGE, C1, C2);
410}
411Constant *ConstantExpr::getShl(Constant *C1, Constant *C2) {
412 return get(Instruction::Shl, C1, C2);
413}
414Constant *ConstantExpr::getShr(Constant *C1, Constant *C2) {
415 return get(Instruction::Shr, C1, C2);
416}
417
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000418Constant *ConstantExpr::getUShr(Constant *C1, Constant *C2) {
419 if (C1->getType()->isUnsigned()) return getShr(C1, C2);
420 return getCast(getShr(getCast(C1,
421 C1->getType()->getUnsignedVersion()), C2), C1->getType());
422}
Chris Lattner817175f2004-03-29 02:37:53 +0000423
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000424Constant *ConstantExpr::getSShr(Constant *C1, Constant *C2) {
425 if (C1->getType()->isSigned()) return getShr(C1, C2);
426 return getCast(getShr(getCast(C1,
427 C1->getType()->getSignedVersion()), C2), C1->getType());
428}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000429
Chris Lattner2f7c9632001-06-06 20:29:01 +0000430
431//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000432// isValueValidForType implementations
433
Chris Lattner3462ae32001-12-03 22:26:30 +0000434bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000435 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000436 default:
437 return false; // These can't be represented as integers!!!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000438 // Signed types...
439 case Type::SByteTyID:
440 return (Val <= INT8_MAX && Val >= INT8_MIN);
441 case Type::ShortTyID:
442 return (Val <= INT16_MAX && Val >= INT16_MIN);
443 case Type::IntTyID:
Chris Lattner74248512004-06-08 23:21:39 +0000444 return (Val <= int(INT32_MAX) && Val >= int(INT32_MIN));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000445 case Type::LongTyID:
446 return true; // This is the largest type...
447 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000448}
449
Chris Lattner3462ae32001-12-03 22:26:30 +0000450bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000451 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000452 default:
453 return false; // These can't be represented as integers!!!
454
455 // Unsigned types...
456 case Type::UByteTyID:
457 return (Val <= UINT8_MAX);
458 case Type::UShortTyID:
459 return (Val <= UINT16_MAX);
460 case Type::UIntTyID:
461 return (Val <= UINT32_MAX);
462 case Type::ULongTyID:
463 return true; // This is the largest type...
464 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000465}
466
Chris Lattner3462ae32001-12-03 22:26:30 +0000467bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000468 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000469 default:
470 return false; // These can't be represented as floating point!
471
Reid Spencerb95f8ab2004-12-07 07:38:08 +0000472 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000473 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000474 case Type::DoubleTyID:
475 return true; // This is the largest type...
476 }
477};
Chris Lattner9655e542001-07-20 19:16:02 +0000478
Chris Lattner49d855c2001-09-07 16:46:31 +0000479//===----------------------------------------------------------------------===//
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000480// replaceUsesOfWithOnConstant implementations
481
Chris Lattnerc27038d2003-08-29 05:36:46 +0000482void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
483 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000484 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
485
486 std::vector<Constant*> Values;
Alkis Evlogimenosf0cc8142004-08-04 08:02:59 +0000487 Values.reserve(getNumOperands()); // Build replacement array...
488 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
489 Constant *Val = getOperand(i);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000490 if (Val == From) Val = cast<Constant>(To);
491 Values.push_back(Val);
492 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000493
Chris Lattnerc75bf522004-02-15 04:05:58 +0000494 Constant *Replacement = ConstantArray::get(getType(), Values);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000495 assert(Replacement != this && "I didn't contain From!");
496
497 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000498 if (DisableChecking)
499 uncheckedReplaceAllUsesWith(Replacement);
500 else
501 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000502
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000503 // Delete the old constant!
Misha Brukmanb1c93172005-04-21 23:48:37 +0000504 destroyConstant();
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000505}
506
Chris Lattnerc27038d2003-08-29 05:36:46 +0000507void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
508 bool DisableChecking) {
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000509 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
510
511 std::vector<Constant*> Values;
Alkis Evlogimenosf0cc8142004-08-04 08:02:59 +0000512 Values.reserve(getNumOperands()); // Build replacement array...
513 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
514 Constant *Val = getOperand(i);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000515 if (Val == From) Val = cast<Constant>(To);
516 Values.push_back(Val);
517 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000518
Chris Lattner37a716f2004-02-15 04:07:32 +0000519 Constant *Replacement = ConstantStruct::get(getType(), Values);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000520 assert(Replacement != this && "I didn't contain From!");
521
522 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000523 if (DisableChecking)
524 uncheckedReplaceAllUsesWith(Replacement);
525 else
526 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000527
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000528 // Delete the old constant!
529 destroyConstant();
530}
531
Brian Gaeke02209042004-08-20 06:00:58 +0000532void ConstantPacked::replaceUsesOfWithOnConstant(Value *From, Value *To,
533 bool DisableChecking) {
534 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
535
536 std::vector<Constant*> Values;
537 Values.reserve(getNumOperands()); // Build replacement array...
538 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
539 Constant *Val = getOperand(i);
540 if (Val == From) Val = cast<Constant>(To);
541 Values.push_back(Val);
542 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000543
Brian Gaeke02209042004-08-20 06:00:58 +0000544 Constant *Replacement = ConstantPacked::get(getType(), Values);
545 assert(Replacement != this && "I didn't contain From!");
546
547 // Everyone using this now uses the replacement...
548 if (DisableChecking)
549 uncheckedReplaceAllUsesWith(Replacement);
550 else
551 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000552
Brian Gaeke02209042004-08-20 06:00:58 +0000553 // Delete the old constant!
Misha Brukmanb1c93172005-04-21 23:48:37 +0000554 destroyConstant();
Brian Gaeke02209042004-08-20 06:00:58 +0000555}
556
Chris Lattnerc27038d2003-08-29 05:36:46 +0000557void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
558 bool DisableChecking) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000559 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
560 Constant *To = cast<Constant>(ToV);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000561
Chris Lattner46b3d302003-04-16 22:40:51 +0000562 Constant *Replacement = 0;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000563 if (getOpcode() == Instruction::GetElementPtr) {
564 std::vector<Constant*> Indices;
Chris Lattner55ed6562003-05-14 17:51:05 +0000565 Constant *Pointer = getOperand(0);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000566 Indices.reserve(getNumOperands()-1);
Chris Lattner55ed6562003-05-14 17:51:05 +0000567 if (Pointer == From) Pointer = To;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000568
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000569 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000570 Constant *Val = getOperand(i);
571 if (Val == From) Val = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000572 Indices.push_back(Val);
573 }
574 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
575 } else if (getOpcode() == Instruction::Cast) {
576 assert(getOperand(0) == From && "Cast only has one use!");
Chris Lattner55ed6562003-05-14 17:51:05 +0000577 Replacement = ConstantExpr::getCast(To, getType());
Chris Lattner467cb2b2004-03-31 02:56:11 +0000578 } else if (getOpcode() == Instruction::Select) {
579 Constant *C1 = getOperand(0);
580 Constant *C2 = getOperand(1);
581 Constant *C3 = getOperand(2);
582 if (C1 == From) C1 = To;
583 if (C2 == From) C2 = To;
584 if (C3 == From) C3 = To;
585 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000586 } else if (getNumOperands() == 2) {
Chris Lattner55ed6562003-05-14 17:51:05 +0000587 Constant *C1 = getOperand(0);
588 Constant *C2 = getOperand(1);
589 if (C1 == From) C1 = To;
590 if (C2 == From) C2 = To;
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000591 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
592 } else {
593 assert(0 && "Unknown ConstantExpr type!");
594 return;
595 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000596
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000597 assert(Replacement != this && "I didn't contain From!");
598
599 // Everyone using this now uses the replacement...
Chris Lattnerc27038d2003-08-29 05:36:46 +0000600 if (DisableChecking)
601 uncheckedReplaceAllUsesWith(Replacement);
602 else
603 replaceAllUsesWith(Replacement);
Misha Brukmanb1c93172005-04-21 23:48:37 +0000604
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000605 // Delete the old constant!
606 destroyConstant();
607}
608
Chris Lattnerb1dd9bb2002-10-09 23:12:25 +0000609//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000610// Factory Function Implementation
611
Chris Lattner98fa07b2003-05-23 20:03:32 +0000612// ConstantCreator - A class that is used to create constants by
613// ValueMap*. This class should be partially specialized if there is
614// something strange that needs to be done to interface to the ctor for the
615// constant.
616//
Chris Lattner189d19f2003-11-21 20:23:48 +0000617namespace llvm {
618 template<class ConstantClass, class TypeClass, class ValType>
619 struct ConstantCreator {
620 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
621 return new ConstantClass(Ty, V);
622 }
623 };
Misha Brukmanb1c93172005-04-21 23:48:37 +0000624
Chris Lattner189d19f2003-11-21 20:23:48 +0000625 template<class ConstantClass, class TypeClass>
626 struct ConvertConstantType {
627 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
628 assert(0 && "This type cannot be converted!\n");
629 abort();
630 }
631 };
632}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000633
Chris Lattner98fa07b2003-05-23 20:03:32 +0000634namespace {
635 template<class ValType, class TypeClass, class ConstantClass>
Chris Lattnerb50d1352003-10-05 00:17:43 +0000636 class ValueMap : public AbstractTypeUser {
637 typedef std::pair<const TypeClass*, ValType> MapKey;
638 typedef std::map<MapKey, ConstantClass *> MapTy;
639 typedef typename MapTy::iterator MapIterator;
640 MapTy Map;
641
642 typedef std::map<const TypeClass*, MapIterator> AbstractTypeMapTy;
643 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner99a669b2004-11-19 16:39:44 +0000644
645 friend void Constant::clearAllValueMaps();
646 private:
647 void clear(std::vector<Constant *> &Constants) {
648 for(MapIterator I = Map.begin(); I != Map.end(); ++I)
649 Constants.push_back(I->second);
650 Map.clear();
651 AbstractTypeMap.clear();
652 }
653
Chris Lattner98fa07b2003-05-23 20:03:32 +0000654 public:
655 // getOrCreate - Return the specified constant from the map, creating it if
656 // necessary.
657 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000658 MapKey Lookup(Ty, V);
659 MapIterator I = Map.lower_bound(Lookup);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000660 if (I != Map.end() && I->first == Lookup)
661 return I->second; // Is it in the map?
662
663 // If no preexisting value, create one now...
664 ConstantClass *Result =
665 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
666
Chris Lattnerb50d1352003-10-05 00:17:43 +0000667
668 /// FIXME: why does this assert fail when loading 176.gcc?
669 //assert(Result->getType() == Ty && "Type specified is not correct!");
670 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
671
672 // If the type of the constant is abstract, make sure that an entry exists
673 // for it in the AbstractTypeMap.
674 if (Ty->isAbstract()) {
675 typename AbstractTypeMapTy::iterator TI =
676 AbstractTypeMap.lower_bound(Ty);
677
678 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
679 // Add ourselves to the ATU list of the type.
680 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
681
682 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
683 }
684 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000685 return Result;
686 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000687
Chris Lattner98fa07b2003-05-23 20:03:32 +0000688 void remove(ConstantClass *CP) {
Chris Lattner3e650af2004-08-04 04:48:01 +0000689 MapIterator I = Map.find(MapKey((TypeClass*)CP->getRawType(),
690 getValType(CP)));
Chris Lattner20a4dab2004-08-04 22:26:13 +0000691 if (I == Map.end() || I->second != CP) {
692 // FIXME: This should not use a linear scan. If this gets to be a
693 // performance problem, someone should look at this.
694 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
695 /* empty */;
696 }
697
Chris Lattnerb50d1352003-10-05 00:17:43 +0000698 assert(I != Map.end() && "Constant not found in constant table!");
Chris Lattner3e650af2004-08-04 04:48:01 +0000699 assert(I->second == CP && "Didn't find correct element?");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000700
701 // Now that we found the entry, make sure this isn't the entry that
702 // the AbstractTypeMap points to.
703 const TypeClass *Ty = I->first.first;
704 if (Ty->isAbstract()) {
705 assert(AbstractTypeMap.count(Ty) &&
706 "Abstract type not in AbstractTypeMap?");
707 MapIterator &ATMEntryIt = AbstractTypeMap[Ty];
708 if (ATMEntryIt == I) {
709 // Yes, we are removing the representative entry for this type.
710 // See if there are any other entries of the same type.
711 MapIterator TmpIt = ATMEntryIt;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000712
Chris Lattnerb50d1352003-10-05 00:17:43 +0000713 // First check the entry before this one...
714 if (TmpIt != Map.begin()) {
715 --TmpIt;
716 if (TmpIt->first.first != Ty) // Not the same type, move back...
717 ++TmpIt;
718 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000719
Chris Lattnerb50d1352003-10-05 00:17:43 +0000720 // If we didn't find the same type, try to move forward...
721 if (TmpIt == ATMEntryIt) {
722 ++TmpIt;
723 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
724 --TmpIt; // No entry afterwards with the same type
725 }
726
727 // If there is another entry in the map of the same abstract type,
728 // update the AbstractTypeMap entry now.
729 if (TmpIt != ATMEntryIt) {
730 ATMEntryIt = TmpIt;
731 } else {
732 // Otherwise, we are removing the last instance of this type
733 // from the table. Remove from the ATM, and from user list.
734 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
735 AbstractTypeMap.erase(Ty);
736 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000737 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000738 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000739
Chris Lattnerb50d1352003-10-05 00:17:43 +0000740 Map.erase(I);
741 }
742
743 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000744 typename AbstractTypeMapTy::iterator I =
Chris Lattnerb50d1352003-10-05 00:17:43 +0000745 AbstractTypeMap.find(cast<TypeClass>(OldTy));
746
747 assert(I != AbstractTypeMap.end() &&
748 "Abstract type not in AbstractTypeMap?");
749
750 // Convert a constant at a time until the last one is gone. The last one
751 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
752 // eliminated eventually.
753 do {
754 ConvertConstantType<ConstantClass,
755 TypeClass>::convert(I->second->second,
756 cast<TypeClass>(NewTy));
757
758 I = AbstractTypeMap.find(cast<TypeClass>(OldTy));
759 } while (I != AbstractTypeMap.end());
760 }
761
762 // If the type became concrete without being refined to any other existing
763 // type, we just remove ourselves from the ATU list.
764 void typeBecameConcrete(const DerivedType *AbsTy) {
765 AbsTy->removeAbstractTypeUser(this);
766 }
767
768 void dump() const {
769 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000770 }
771 };
772}
773
Chris Lattner3462ae32001-12-03 22:26:30 +0000774//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000775//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000776static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
777static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000778
Chris Lattner3462ae32001-12-03 22:26:30 +0000779ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000780 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000781}
782
Chris Lattner3462ae32001-12-03 22:26:30 +0000783ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000784 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000785}
786
Chris Lattner3462ae32001-12-03 22:26:30 +0000787ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000788 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000789 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
790 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000791}
792
Chris Lattner3462ae32001-12-03 22:26:30 +0000793//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000794//
Chris Lattnerac80ea42004-02-01 22:49:04 +0000795namespace llvm {
796 template<>
797 struct ConstantCreator<ConstantFP, Type, uint64_t> {
798 static ConstantFP *create(const Type *Ty, uint64_t V) {
799 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000800 return new ConstantFP(Ty, BitsToDouble(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000801 }
802 };
803 template<>
804 struct ConstantCreator<ConstantFP, Type, uint32_t> {
805 static ConstantFP *create(const Type *Ty, uint32_t V) {
806 assert(Ty == Type::FloatTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000807 return new ConstantFP(Ty, BitsToFloat(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000808 }
809 };
810}
811
812static ValueMap<uint64_t, Type, ConstantFP> DoubleConstants;
813static ValueMap<uint32_t, Type, ConstantFP> FloatConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000814
Chris Lattner3462ae32001-12-03 22:26:30 +0000815ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner241ed4c2004-01-23 00:55:21 +0000816 if (Ty == Type::FloatTy) {
817 // Force the value through memory to normalize it.
Jim Laskeyb74c6662005-08-17 19:34:49 +0000818 return FloatConstants.getOrCreate(Ty, FloatToBits(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000819 } else {
820 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000821 return DoubleConstants.getOrCreate(Ty, DoubleToBits(V));
Chris Lattner241ed4c2004-01-23 00:55:21 +0000822 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000823}
824
Chris Lattner9fba3da2004-02-15 05:53:04 +0000825//---- ConstantAggregateZero::get() implementation...
826//
827namespace llvm {
828 // ConstantAggregateZero does not take extra "value" argument...
829 template<class ValType>
830 struct ConstantCreator<ConstantAggregateZero, Type, ValType> {
831 static ConstantAggregateZero *create(const Type *Ty, const ValType &V){
832 return new ConstantAggregateZero(Ty);
833 }
834 };
835
836 template<>
837 struct ConvertConstantType<ConstantAggregateZero, Type> {
838 static void convert(ConstantAggregateZero *OldC, const Type *NewTy) {
839 // Make everyone now use a constant of the new type...
840 Constant *New = ConstantAggregateZero::get(NewTy);
841 assert(New != OldC && "Didn't replace constant??");
842 OldC->uncheckedReplaceAllUsesWith(New);
843 OldC->destroyConstant(); // This constant is now dead, destroy it.
844 }
845 };
846}
847
848static ValueMap<char, Type, ConstantAggregateZero> AggZeroConstants;
849
Chris Lattner3e650af2004-08-04 04:48:01 +0000850static char getValType(ConstantAggregateZero *CPZ) { return 0; }
851
Chris Lattner9fba3da2004-02-15 05:53:04 +0000852Constant *ConstantAggregateZero::get(const Type *Ty) {
853 return AggZeroConstants.getOrCreate(Ty, 0);
854}
855
856// destroyConstant - Remove the constant from the constant table...
857//
858void ConstantAggregateZero::destroyConstant() {
859 AggZeroConstants.remove(this);
860 destroyConstantImpl();
861}
862
863void ConstantAggregateZero::replaceUsesOfWithOnConstant(Value *From, Value *To,
864 bool DisableChecking) {
865 assert(0 && "No uses!");
866 abort();
867}
868
869
870
Chris Lattner3462ae32001-12-03 22:26:30 +0000871//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000872//
Chris Lattner189d19f2003-11-21 20:23:48 +0000873namespace llvm {
874 template<>
875 struct ConvertConstantType<ConstantArray, ArrayType> {
876 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
877 // Make everyone now use a constant of the new type...
878 std::vector<Constant*> C;
879 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
880 C.push_back(cast<Constant>(OldC->getOperand(i)));
881 Constant *New = ConstantArray::get(NewTy, C);
882 assert(New != OldC && "Didn't replace constant??");
883 OldC->uncheckedReplaceAllUsesWith(New);
884 OldC->destroyConstant(); // This constant is now dead, destroy it.
885 }
886 };
887}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000888
Chris Lattner3e650af2004-08-04 04:48:01 +0000889static std::vector<Constant*> getValType(ConstantArray *CA) {
890 std::vector<Constant*> Elements;
891 Elements.reserve(CA->getNumOperands());
892 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
893 Elements.push_back(cast<Constant>(CA->getOperand(i)));
894 return Elements;
895}
896
Chris Lattner98fa07b2003-05-23 20:03:32 +0000897static ValueMap<std::vector<Constant*>, ArrayType,
898 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000899
Chris Lattner015e8212004-02-15 04:14:47 +0000900Constant *ConstantArray::get(const ArrayType *Ty,
Chris Lattner9fba3da2004-02-15 05:53:04 +0000901 const std::vector<Constant*> &V) {
902 // If this is an all-zero array, return a ConstantAggregateZero object
903 if (!V.empty()) {
904 Constant *C = V[0];
905 if (!C->isNullValue())
906 return ArrayConstants.getOrCreate(Ty, V);
907 for (unsigned i = 1, e = V.size(); i != e; ++i)
908 if (V[i] != C)
909 return ArrayConstants.getOrCreate(Ty, V);
910 }
911 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +0000912}
913
Chris Lattner98fa07b2003-05-23 20:03:32 +0000914// destroyConstant - Remove the constant from the constant table...
915//
916void ConstantArray::destroyConstant() {
917 ArrayConstants.remove(this);
918 destroyConstantImpl();
919}
920
Chris Lattner3462ae32001-12-03 22:26:30 +0000921// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000922// contain the specified string. A null terminator is added to the specified
923// string so that it may be used in a natural way...
924//
Chris Lattner015e8212004-02-15 04:14:47 +0000925Constant *ConstantArray::get(const std::string &Str) {
Chris Lattner7f74a562002-01-20 22:54:45 +0000926 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000927
928 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000929 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000930
931 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000932 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000933
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000934 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000935 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000936}
937
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000938/// isString - This method returns true if the array is an array of sbyte or
939/// ubyte, and if the elements of the array are all ConstantInt's.
940bool ConstantArray::isString() const {
941 // Check the element type for sbyte or ubyte...
Chris Lattnere8701f62004-01-14 17:51:53 +0000942 if (getType()->getElementType() != Type::UByteTy &&
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000943 getType()->getElementType() != Type::SByteTy)
944 return false;
945 // Check the elements to make sure they are all integers, not constant
946 // expressions.
947 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
948 if (!isa<ConstantInt>(getOperand(i)))
949 return false;
950 return true;
951}
952
Chris Lattner81fabb02002-08-26 17:53:56 +0000953// getAsString - If the sub-element type of this array is either sbyte or ubyte,
954// then this method converts the array to an std::string and returns it.
955// Otherwise, it asserts out.
956//
957std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000958 assert(isString() && "Not a string!");
Chris Lattner81fabb02002-08-26 17:53:56 +0000959 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +0000960 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
961 Result += (char)cast<ConstantInt>(getOperand(i))->getRawValue();
Chris Lattner81fabb02002-08-26 17:53:56 +0000962 return Result;
963}
964
965
Chris Lattner3462ae32001-12-03 22:26:30 +0000966//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000967//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000968
Chris Lattner189d19f2003-11-21 20:23:48 +0000969namespace llvm {
970 template<>
971 struct ConvertConstantType<ConstantStruct, StructType> {
972 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
973 // Make everyone now use a constant of the new type...
974 std::vector<Constant*> C;
975 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
976 C.push_back(cast<Constant>(OldC->getOperand(i)));
977 Constant *New = ConstantStruct::get(NewTy, C);
978 assert(New != OldC && "Didn't replace constant??");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000979
Chris Lattner189d19f2003-11-21 20:23:48 +0000980 OldC->uncheckedReplaceAllUsesWith(New);
981 OldC->destroyConstant(); // This constant is now dead, destroy it.
982 }
983 };
984}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000985
Misha Brukmanb1c93172005-04-21 23:48:37 +0000986static ValueMap<std::vector<Constant*>, StructType,
Chris Lattner98fa07b2003-05-23 20:03:32 +0000987 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000988
Chris Lattner3e650af2004-08-04 04:48:01 +0000989static std::vector<Constant*> getValType(ConstantStruct *CS) {
990 std::vector<Constant*> Elements;
991 Elements.reserve(CS->getNumOperands());
992 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
993 Elements.push_back(cast<Constant>(CS->getOperand(i)));
994 return Elements;
995}
996
Chris Lattner015e8212004-02-15 04:14:47 +0000997Constant *ConstantStruct::get(const StructType *Ty,
998 const std::vector<Constant*> &V) {
Chris Lattner9fba3da2004-02-15 05:53:04 +0000999 // Create a ConstantAggregateZero value if all elements are zeros...
1000 for (unsigned i = 0, e = V.size(); i != e; ++i)
1001 if (!V[i]->isNullValue())
1002 return StructConstants.getOrCreate(Ty, V);
1003
1004 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001005}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001006
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001007Constant *ConstantStruct::get(const std::vector<Constant*> &V) {
1008 std::vector<const Type*> StructEls;
1009 StructEls.reserve(V.size());
1010 for (unsigned i = 0, e = V.size(); i != e; ++i)
1011 StructEls.push_back(V[i]->getType());
1012 return get(StructType::get(StructEls), V);
1013}
1014
Chris Lattnerd7a73302001-10-13 06:57:33 +00001015// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001016//
Chris Lattner3462ae32001-12-03 22:26:30 +00001017void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +00001018 StructConstants.remove(this);
1019 destroyConstantImpl();
1020}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001021
Brian Gaeke02209042004-08-20 06:00:58 +00001022//---- ConstantPacked::get() implementation...
1023//
1024namespace llvm {
1025 template<>
1026 struct ConvertConstantType<ConstantPacked, PackedType> {
1027 static void convert(ConstantPacked *OldC, const PackedType *NewTy) {
1028 // Make everyone now use a constant of the new type...
1029 std::vector<Constant*> C;
1030 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1031 C.push_back(cast<Constant>(OldC->getOperand(i)));
1032 Constant *New = ConstantPacked::get(NewTy, C);
1033 assert(New != OldC && "Didn't replace constant??");
1034 OldC->uncheckedReplaceAllUsesWith(New);
1035 OldC->destroyConstant(); // This constant is now dead, destroy it.
1036 }
1037 };
1038}
1039
1040static std::vector<Constant*> getValType(ConstantPacked *CP) {
1041 std::vector<Constant*> Elements;
1042 Elements.reserve(CP->getNumOperands());
1043 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1044 Elements.push_back(CP->getOperand(i));
1045 return Elements;
1046}
1047
1048static ValueMap<std::vector<Constant*>, PackedType,
1049 ConstantPacked> PackedConstants;
1050
1051Constant *ConstantPacked::get(const PackedType *Ty,
1052 const std::vector<Constant*> &V) {
1053 // If this is an all-zero packed, return a ConstantAggregateZero object
1054 if (!V.empty()) {
1055 Constant *C = V[0];
1056 if (!C->isNullValue())
1057 return PackedConstants.getOrCreate(Ty, V);
1058 for (unsigned i = 1, e = V.size(); i != e; ++i)
1059 if (V[i] != C)
1060 return PackedConstants.getOrCreate(Ty, V);
1061 }
1062 return ConstantAggregateZero::get(Ty);
1063}
1064
1065Constant *ConstantPacked::get(const std::vector<Constant*> &V) {
1066 assert(!V.empty() && "Cannot infer type if V is empty");
1067 return get(PackedType::get(V.front()->getType(),V.size()), V);
1068}
1069
1070// destroyConstant - Remove the constant from the constant table...
1071//
1072void ConstantPacked::destroyConstant() {
1073 PackedConstants.remove(this);
1074 destroyConstantImpl();
1075}
1076
Chris Lattner3462ae32001-12-03 22:26:30 +00001077//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +00001078//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001079
Chris Lattner189d19f2003-11-21 20:23:48 +00001080namespace llvm {
1081 // ConstantPointerNull does not take extra "value" argument...
1082 template<class ValType>
1083 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
1084 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
1085 return new ConstantPointerNull(Ty);
1086 }
1087 };
Chris Lattner98fa07b2003-05-23 20:03:32 +00001088
Chris Lattner189d19f2003-11-21 20:23:48 +00001089 template<>
1090 struct ConvertConstantType<ConstantPointerNull, PointerType> {
1091 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
1092 // Make everyone now use a constant of the new type...
1093 Constant *New = ConstantPointerNull::get(NewTy);
1094 assert(New != OldC && "Didn't replace constant??");
1095 OldC->uncheckedReplaceAllUsesWith(New);
1096 OldC->destroyConstant(); // This constant is now dead, destroy it.
1097 }
1098 };
1099}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001100
Chris Lattner98fa07b2003-05-23 20:03:32 +00001101static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +00001102
Chris Lattner3e650af2004-08-04 04:48:01 +00001103static char getValType(ConstantPointerNull *) {
1104 return 0;
1105}
1106
1107
Chris Lattner3462ae32001-12-03 22:26:30 +00001108ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +00001109 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001110}
1111
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001112// destroyConstant - Remove the constant from the constant table...
1113//
1114void ConstantPointerNull::destroyConstant() {
1115 NullPtrConstants.remove(this);
1116 destroyConstantImpl();
1117}
1118
1119
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001120//---- UndefValue::get() implementation...
1121//
1122
1123namespace llvm {
1124 // UndefValue does not take extra "value" argument...
1125 template<class ValType>
1126 struct ConstantCreator<UndefValue, Type, ValType> {
1127 static UndefValue *create(const Type *Ty, const ValType &V) {
1128 return new UndefValue(Ty);
1129 }
1130 };
1131
1132 template<>
1133 struct ConvertConstantType<UndefValue, Type> {
1134 static void convert(UndefValue *OldC, const Type *NewTy) {
1135 // Make everyone now use a constant of the new type.
1136 Constant *New = UndefValue::get(NewTy);
1137 assert(New != OldC && "Didn't replace constant??");
1138 OldC->uncheckedReplaceAllUsesWith(New);
1139 OldC->destroyConstant(); // This constant is now dead, destroy it.
1140 }
1141 };
1142}
1143
1144static ValueMap<char, Type, UndefValue> UndefValueConstants;
1145
1146static char getValType(UndefValue *) {
1147 return 0;
1148}
1149
1150
1151UndefValue *UndefValue::get(const Type *Ty) {
1152 return UndefValueConstants.getOrCreate(Ty, 0);
1153}
1154
1155// destroyConstant - Remove the constant from the constant table.
1156//
1157void UndefValue::destroyConstant() {
1158 UndefValueConstants.remove(this);
1159 destroyConstantImpl();
1160}
1161
1162
1163
1164
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001165//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001166//
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001167typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +00001168
Chris Lattner189d19f2003-11-21 20:23:48 +00001169namespace llvm {
1170 template<>
1171 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
1172 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
1173 if (V.first == Instruction::Cast)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001174 return new UnaryConstantExpr(Instruction::Cast, V.second[0], Ty);
Chris Lattner189d19f2003-11-21 20:23:48 +00001175 if ((V.first >= Instruction::BinaryOpsBegin &&
1176 V.first < Instruction::BinaryOpsEnd) ||
1177 V.first == Instruction::Shl || V.first == Instruction::Shr)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001178 return new BinaryConstantExpr(V.first, V.second[0], V.second[1]);
Chris Lattnerb7897ce2004-03-30 22:51:03 +00001179 if (V.first == Instruction::Select)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001180 return new SelectConstantExpr(V.second[0], V.second[1], V.second[2]);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001181
Chris Lattner189d19f2003-11-21 20:23:48 +00001182 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001183
Chris Lattner189d19f2003-11-21 20:23:48 +00001184 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001185 return new GetElementPtrConstantExpr(V.second[0], IdxList, Ty);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001186 }
Chris Lattner189d19f2003-11-21 20:23:48 +00001187 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001188
Chris Lattner189d19f2003-11-21 20:23:48 +00001189 template<>
1190 struct ConvertConstantType<ConstantExpr, Type> {
1191 static void convert(ConstantExpr *OldC, const Type *NewTy) {
1192 Constant *New;
1193 switch (OldC->getOpcode()) {
1194 case Instruction::Cast:
1195 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
1196 break;
Chris Lattner6e415c02004-03-12 05:54:04 +00001197 case Instruction::Select:
1198 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
1199 OldC->getOperand(1),
1200 OldC->getOperand(2));
1201 break;
Chris Lattner189d19f2003-11-21 20:23:48 +00001202 case Instruction::Shl:
1203 case Instruction::Shr:
1204 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
1205 OldC->getOperand(0), OldC->getOperand(1));
1206 break;
1207 default:
1208 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
1209 OldC->getOpcode() < Instruction::BinaryOpsEnd);
1210 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
1211 OldC->getOperand(1));
1212 break;
1213 case Instruction::GetElementPtr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00001214 // Make everyone now use a constant of the new type...
Chris Lattner13128ab2004-10-11 22:52:25 +00001215 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
1216 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), Idx);
Chris Lattner189d19f2003-11-21 20:23:48 +00001217 break;
1218 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001219
Chris Lattner189d19f2003-11-21 20:23:48 +00001220 assert(New != OldC && "Didn't replace constant??");
1221 OldC->uncheckedReplaceAllUsesWith(New);
1222 OldC->destroyConstant(); // This constant is now dead, destroy it.
1223 }
1224 };
1225} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +00001226
1227
Chris Lattner3e650af2004-08-04 04:48:01 +00001228static ExprMapKeyType getValType(ConstantExpr *CE) {
1229 std::vector<Constant*> Operands;
1230 Operands.reserve(CE->getNumOperands());
1231 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
1232 Operands.push_back(cast<Constant>(CE->getOperand(i)));
1233 return ExprMapKeyType(CE->getOpcode(), Operands);
1234}
1235
Chris Lattner98fa07b2003-05-23 20:03:32 +00001236static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +00001237
Chris Lattner46b3d302003-04-16 22:40:51 +00001238Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001239 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1240
Chris Lattneracdbe712003-04-17 19:24:48 +00001241 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
1242 return FC; // Fold a few common cases...
1243
Vikram S. Adve4c485332002-07-15 18:19:33 +00001244 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001245 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001246 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
1247 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001248}
Chris Lattnerd7a73302001-10-13 06:57:33 +00001249
Chris Lattnerdd284742004-04-04 23:20:30 +00001250Constant *ConstantExpr::getSignExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001251 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001252 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1253 "This is an illegal sign extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001254 if (C->getType() != Type::BoolTy) {
1255 C = ConstantExpr::getCast(C, C->getType()->getSignedVersion());
1256 return ConstantExpr::getCast(C, Ty);
1257 } else {
1258 if (C == ConstantBool::True)
1259 return ConstantIntegral::getAllOnesValue(Ty);
1260 else
1261 return ConstantIntegral::getNullValue(Ty);
1262 }
Chris Lattnerdd284742004-04-04 23:20:30 +00001263}
1264
1265Constant *ConstantExpr::getZeroExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001266 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001267 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1268 "This is an illegal zero extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001269 if (C->getType() != Type::BoolTy)
1270 C = ConstantExpr::getCast(C, C->getType()->getUnsignedVersion());
Chris Lattnerdd284742004-04-04 23:20:30 +00001271 return ConstantExpr::getCast(C, Ty);
1272}
1273
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001274Constant *ConstantExpr::getSizeOf(const Type *Ty) {
Chris Lattneracc4e542004-12-13 19:48:51 +00001275 // sizeof is implemented as: (ulong) gep (Ty*)null, 1
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001276 return getCast(
Chris Lattneracc4e542004-12-13 19:48:51 +00001277 getGetElementPtr(getNullValue(PointerType::get(Ty)),
1278 std::vector<Constant*>(1, ConstantInt::get(Type::UIntTy, 1))),
1279 Type::ULongTy);
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001280}
1281
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00001282Constant *ConstantExpr::getPtrPtrFromArrayPtr(Constant *C) {
1283 // pointer from array is implemented as: getelementptr arr ptr, 0, 0
1284 static std::vector<Constant*> Indices(2, ConstantUInt::get(Type::UIntTy, 0));
1285
1286 return ConstantExpr::getGetElementPtr(C, Indices);
1287}
1288
Chris Lattnerb50d1352003-10-05 00:17:43 +00001289Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
1290 Constant *C1, Constant *C2) {
Chris Lattner5645e8a2004-01-12 19:04:55 +00001291 if (Opcode == Instruction::Shl || Opcode == Instruction::Shr)
1292 return getShiftTy(ReqTy, Opcode, C1, C2);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001293 // Check the operands for consistency first
1294 assert((Opcode >= Instruction::BinaryOpsBegin &&
1295 Opcode < Instruction::BinaryOpsEnd) &&
1296 "Invalid opcode in binary constant expression");
1297 assert(C1->getType() == C2->getType() &&
1298 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001299
Chris Lattner29ca2c62004-08-04 18:50:09 +00001300 if (ReqTy == C1->getType() || (Instruction::isRelational(Opcode) &&
1301 ReqTy == Type::BoolTy))
Chris Lattnerb50d1352003-10-05 00:17:43 +00001302 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1303 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +00001304
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001305 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001306 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001307 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001308}
1309
Chris Lattner29ca2c62004-08-04 18:50:09 +00001310Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001311#ifndef NDEBUG
1312 switch (Opcode) {
1313 case Instruction::Add: case Instruction::Sub:
1314 case Instruction::Mul: case Instruction::Div:
1315 case Instruction::Rem:
1316 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001317 assert((C1->getType()->isInteger() || C1->getType()->isFloatingPoint()) &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001318 "Tried to create an arithmetic operation on a non-arithmetic type!");
1319 break;
1320 case Instruction::And:
1321 case Instruction::Or:
1322 case Instruction::Xor:
1323 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1324 assert(C1->getType()->isIntegral() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001325 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001326 break;
1327 case Instruction::SetLT: case Instruction::SetGT: case Instruction::SetLE:
1328 case Instruction::SetGE: case Instruction::SetEQ: case Instruction::SetNE:
1329 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1330 break;
1331 case Instruction::Shl:
1332 case Instruction::Shr:
1333 assert(C2->getType() == Type::UByteTy && "Shift should be by ubyte!");
1334 assert(C1->getType()->isInteger() &&
1335 "Tried to create a shift operation on a non-integer type!");
1336 break;
1337 default:
1338 break;
1339 }
1340#endif
1341
Chris Lattner29ca2c62004-08-04 18:50:09 +00001342 if (Instruction::isRelational(Opcode))
1343 return getTy(Type::BoolTy, Opcode, C1, C2);
1344 else
1345 return getTy(C1->getType(), Opcode, C1, C2);
1346}
1347
Chris Lattner6e415c02004-03-12 05:54:04 +00001348Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
1349 Constant *V1, Constant *V2) {
1350 assert(C->getType() == Type::BoolTy && "Select condition must be bool!");
1351 assert(V1->getType() == V2->getType() && "Select value types must match!");
1352 assert(V1->getType()->isFirstClassType() && "Cannot select aggregate type!");
1353
1354 if (ReqTy == V1->getType())
1355 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1356 return SC; // Fold common cases
1357
1358 std::vector<Constant*> argVec(3, C);
1359 argVec[1] = V1;
1360 argVec[2] = V2;
1361 ExprMapKeyType Key = std::make_pair(Instruction::Select, argVec);
1362 return ExprConstants.getOrCreate(ReqTy, Key);
1363}
1364
Chris Lattner9eb2b522004-01-12 19:12:58 +00001365/// getShiftTy - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +00001366Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
1367 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001368 // Check the operands for consistency first
1369 assert((Opcode == Instruction::Shl ||
1370 Opcode == Instruction::Shr) &&
1371 "Invalid opcode in binary constant expression");
1372 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
1373 "Invalid operand types for Shift constant expr!");
1374
Chris Lattner0bba7712004-01-12 20:40:42 +00001375 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001376 return FC; // Fold a few common cases...
1377
1378 // Look up the constant in the table first to ensure uniqueness
1379 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001380 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001381 return ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001382}
1383
1384
Chris Lattnerb50d1352003-10-05 00:17:43 +00001385Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner13128ab2004-10-11 22:52:25 +00001386 const std::vector<Value*> &IdxList) {
1387 assert(GetElementPtrInst::getIndexedType(C->getType(), IdxList, true) &&
Chris Lattner04b60fe2004-02-16 20:46:13 +00001388 "GEP indices invalid!");
1389
Chris Lattneracdbe712003-04-17 19:24:48 +00001390 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
1391 return FC; // Fold a few common cases...
Chris Lattner04b60fe2004-02-16 20:46:13 +00001392
Chris Lattnerb50d1352003-10-05 00:17:43 +00001393 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +00001394 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +00001395 // Look up the constant in the table first to ensure uniqueness
Chris Lattner13128ab2004-10-11 22:52:25 +00001396 std::vector<Constant*> ArgVec;
1397 ArgVec.reserve(IdxList.size()+1);
1398 ArgVec.push_back(C);
1399 for (unsigned i = 0, e = IdxList.size(); i != e; ++i)
1400 ArgVec.push_back(cast<Constant>(IdxList[i]));
1401 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,ArgVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001402 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001403}
1404
Chris Lattnerb50d1352003-10-05 00:17:43 +00001405Constant *ConstantExpr::getGetElementPtr(Constant *C,
1406 const std::vector<Constant*> &IdxList){
1407 // Get the result type of the getelementptr!
1408 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
1409
1410 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
1411 true);
1412 assert(Ty && "GEP indices invalid!");
Chris Lattner13128ab2004-10-11 22:52:25 +00001413 return getGetElementPtrTy(PointerType::get(Ty), C, VIdxList);
1414}
1415
1416Constant *ConstantExpr::getGetElementPtr(Constant *C,
1417 const std::vector<Value*> &IdxList) {
1418 // Get the result type of the getelementptr!
1419 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), IdxList,
1420 true);
1421 assert(Ty && "GEP indices invalid!");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001422 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
1423}
1424
1425
Vikram S. Adve4c485332002-07-15 18:19:33 +00001426// destroyConstant - Remove the constant from the constant table...
1427//
1428void ConstantExpr::destroyConstant() {
1429 ExprConstants.remove(this);
1430 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001431}
1432
Chris Lattner3cd8c562002-07-30 18:54:25 +00001433const char *ConstantExpr::getOpcodeName() const {
1434 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001435}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001436
Chris Lattner99a669b2004-11-19 16:39:44 +00001437/// clearAllValueMaps - This method frees all internal memory used by the
1438/// constant subsystem, which can be used in environments where this memory
1439/// is otherwise reported as a leak.
1440void Constant::clearAllValueMaps() {
1441 std::vector<Constant *> Constants;
1442
1443 DoubleConstants.clear(Constants);
1444 FloatConstants.clear(Constants);
1445 SIntConstants.clear(Constants);
1446 UIntConstants.clear(Constants);
1447 AggZeroConstants.clear(Constants);
1448 ArrayConstants.clear(Constants);
1449 StructConstants.clear(Constants);
1450 PackedConstants.clear(Constants);
1451 NullPtrConstants.clear(Constants);
1452 UndefValueConstants.clear(Constants);
1453 ExprConstants.clear(Constants);
1454
Misha Brukmanb1c93172005-04-21 23:48:37 +00001455 for (std::vector<Constant *>::iterator I = Constants.begin(),
Chris Lattner99a669b2004-11-19 16:39:44 +00001456 E = Constants.end(); I != E; ++I)
1457 (*I)->dropAllReferences();
1458 for (std::vector<Constant *>::iterator I = Constants.begin(),
1459 E = Constants.end(); I != E; ++I)
1460 (*I)->destroyConstantImpl();
1461 Constants.clear();
1462}