blob: 7471a60cb60b23930cc42beb68979700480f9e70 [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 Lattnere7e139e2005-09-27 06:09:08 +0000212ConstantIntegral::ConstantIntegral(const Type *Ty, ValueTy VT, uint64_t V)
213 : Constant(Ty, VT, 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 Lattnere7e139e2005-09-27 06:09:08 +0000217ConstantBool::ConstantBool(bool V)
218 : ConstantIntegral(Type::BoolTy, ConstantBoolVal, V) {
Chris Lattner265eb642004-06-21 12:12:12 +0000219}
220
Chris Lattnere7e139e2005-09-27 06:09:08 +0000221ConstantInt::ConstantInt(const Type *Ty, ValueTy VT, uint64_t V)
222 : ConstantIntegral(Ty, VT, V) {
Chris Lattner7309d662001-07-21 19:16:08 +0000223}
Chris Lattner2f7c9632001-06-06 20:29:01 +0000224
Chris Lattnere7e139e2005-09-27 06:09:08 +0000225ConstantSInt::ConstantSInt(const Type *Ty, int64_t V)
226 : ConstantInt(Ty, ConstantSIntVal, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000227 assert(Ty->isInteger() && Ty->isSigned() &&
Reid Spencerf064bb22005-03-09 15:19:41 +0000228 "Illegal type for signed integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000229 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000230}
231
Chris Lattnere7e139e2005-09-27 06:09:08 +0000232ConstantUInt::ConstantUInt(const Type *Ty, uint64_t V)
233 : ConstantInt(Ty, ConstantUIntVal, V) {
Chris Lattner236c1292002-09-11 01:21:04 +0000234 assert(Ty->isInteger() && Ty->isUnsigned() &&
235 "Illegal type for unsigned integer constant!");
Chris Lattner9655e542001-07-20 19:16:02 +0000236 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000237}
238
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000239ConstantFP::ConstantFP(const Type *Ty, double V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000240 : Constant(Ty, ConstantFPVal, 0, 0) {
Chris Lattner9655e542001-07-20 19:16:02 +0000241 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000242 Val = V;
243}
244
Chris Lattner3462ae32001-12-03 22:26:30 +0000245ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000246 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000247 : Constant(T, ConstantArrayVal, new Use[V.size()], V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000248 assert(V.size() == T->getNumElements() &&
249 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000250 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000251 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
252 I != E; ++I, ++OL) {
253 Constant *E = *I;
254 assert((E->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000255 (T->isAbstract() &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000256 E->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000257 "Initializer for array element doesn't match array element type!");
Chris Lattner0144fad2005-10-03 21:56:24 +0000258 OL->init(E, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000259 }
260}
261
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000262ConstantArray::~ConstantArray() {
263 delete [] OperandList;
264}
265
Chris Lattner3462ae32001-12-03 22:26:30 +0000266ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000267 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000268 : Constant(T, ConstantStructVal, new Use[V.size()], V.size()) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000269 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000270 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000271 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000272 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
273 I != E; ++I, ++OL) {
274 Constant *E = *I;
275 assert((E->getType() == T->getElementType(I-V.begin()) ||
276 ((T->getElementType(I-V.begin())->isAbstract() ||
277 E->getType()->isAbstract()) &&
278 T->getElementType(I-V.begin())->getTypeID() ==
279 E->getType()->getTypeID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000280 "Initializer for struct element doesn't match struct element type!");
Chris Lattner0144fad2005-10-03 21:56:24 +0000281 OL->init(E, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000282 }
283}
284
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000285ConstantStruct::~ConstantStruct() {
286 delete [] OperandList;
287}
288
289
Brian Gaeke02209042004-08-20 06:00:58 +0000290ConstantPacked::ConstantPacked(const PackedType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000291 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000292 : Constant(T, ConstantPackedVal, new Use[V.size()], V.size()) {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000293 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000294 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
295 I != E; ++I, ++OL) {
296 Constant *E = *I;
297 assert((E->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000298 (T->isAbstract() &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000299 E->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000300 "Initializer for packed element doesn't match packed element type!");
Chris Lattner0144fad2005-10-03 21:56:24 +0000301 OL->init(E, this);
Brian Gaeke02209042004-08-20 06:00:58 +0000302 }
303}
304
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000305ConstantPacked::~ConstantPacked() {
306 delete [] OperandList;
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000307}
308
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000309/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
310/// behind the scenes to implement unary constant exprs.
311class UnaryConstantExpr : public ConstantExpr {
312 Use Op;
313public:
314 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
315 : ConstantExpr(Ty, Opcode, &Op, 1), Op(C, this) {}
316};
Chris Lattner6e415c02004-03-12 05:54:04 +0000317
Chris Lattner22ced562003-06-22 20:48:30 +0000318static bool isSetCC(unsigned Opcode) {
319 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
320 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
321 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
322}
323
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000324/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
325/// behind the scenes to implement binary constant exprs.
326class BinaryConstantExpr : public ConstantExpr {
327 Use Ops[2];
328public:
329 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
330 : ConstantExpr(isSetCC(Opcode) ? Type::BoolTy : C1->getType(),
331 Opcode, Ops, 2) {
332 Ops[0].init(C1, this);
333 Ops[1].init(C2, this);
334 }
335};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000336
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000337/// SelectConstantExpr - This class is private to Constants.cpp, and is used
338/// behind the scenes to implement select constant exprs.
339class SelectConstantExpr : public ConstantExpr {
340 Use Ops[3];
341public:
342 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
343 : ConstantExpr(C2->getType(), Instruction::Select, Ops, 3) {
344 Ops[0].init(C1, this);
345 Ops[1].init(C2, this);
346 Ops[2].init(C3, this);
347 }
348};
349
350/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
351/// used behind the scenes to implement getelementpr constant exprs.
352struct GetElementPtrConstantExpr : public ConstantExpr {
353 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
354 const Type *DestTy)
355 : ConstantExpr(DestTy, Instruction::GetElementPtr,
356 new Use[IdxList.size()+1], IdxList.size()+1) {
357 OperandList[0].init(C, this);
358 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
359 OperandList[i+1].init(IdxList[i], this);
360 }
361 ~GetElementPtrConstantExpr() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000362 delete [] OperandList;
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000363 }
364};
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000365
Chris Lattner817175f2004-03-29 02:37:53 +0000366/// ConstantExpr::get* - Return some common constants without having to
367/// specify the full Instruction::OPCODE identifier.
368///
369Constant *ConstantExpr::getNeg(Constant *C) {
Chris Lattner3cdc27c2004-03-29 19:51:24 +0000370 if (!C->getType()->isFloatingPoint())
371 return get(Instruction::Sub, getNullValue(C->getType()), C);
372 else
373 return get(Instruction::Sub, ConstantFP::get(C->getType(), -0.0), C);
Chris Lattner817175f2004-03-29 02:37:53 +0000374}
375Constant *ConstantExpr::getNot(Constant *C) {
376 assert(isa<ConstantIntegral>(C) && "Cannot NOT a nonintegral type!");
377 return get(Instruction::Xor, C,
378 ConstantIntegral::getAllOnesValue(C->getType()));
379}
380Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2) {
381 return get(Instruction::Add, C1, C2);
382}
383Constant *ConstantExpr::getSub(Constant *C1, Constant *C2) {
384 return get(Instruction::Sub, C1, C2);
385}
386Constant *ConstantExpr::getMul(Constant *C1, Constant *C2) {
387 return get(Instruction::Mul, C1, C2);
388}
389Constant *ConstantExpr::getDiv(Constant *C1, Constant *C2) {
390 return get(Instruction::Div, C1, C2);
391}
392Constant *ConstantExpr::getRem(Constant *C1, Constant *C2) {
393 return get(Instruction::Rem, C1, C2);
394}
395Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
396 return get(Instruction::And, C1, C2);
397}
398Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
399 return get(Instruction::Or, C1, C2);
400}
401Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
402 return get(Instruction::Xor, C1, C2);
403}
404Constant *ConstantExpr::getSetEQ(Constant *C1, Constant *C2) {
405 return get(Instruction::SetEQ, C1, C2);
406}
407Constant *ConstantExpr::getSetNE(Constant *C1, Constant *C2) {
408 return get(Instruction::SetNE, C1, C2);
409}
410Constant *ConstantExpr::getSetLT(Constant *C1, Constant *C2) {
411 return get(Instruction::SetLT, C1, C2);
412}
413Constant *ConstantExpr::getSetGT(Constant *C1, Constant *C2) {
414 return get(Instruction::SetGT, C1, C2);
415}
416Constant *ConstantExpr::getSetLE(Constant *C1, Constant *C2) {
417 return get(Instruction::SetLE, C1, C2);
418}
419Constant *ConstantExpr::getSetGE(Constant *C1, Constant *C2) {
420 return get(Instruction::SetGE, C1, C2);
421}
422Constant *ConstantExpr::getShl(Constant *C1, Constant *C2) {
423 return get(Instruction::Shl, C1, C2);
424}
425Constant *ConstantExpr::getShr(Constant *C1, Constant *C2) {
426 return get(Instruction::Shr, C1, C2);
427}
428
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000429Constant *ConstantExpr::getUShr(Constant *C1, Constant *C2) {
430 if (C1->getType()->isUnsigned()) return getShr(C1, C2);
431 return getCast(getShr(getCast(C1,
432 C1->getType()->getUnsignedVersion()), C2), C1->getType());
433}
Chris Lattner817175f2004-03-29 02:37:53 +0000434
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000435Constant *ConstantExpr::getSShr(Constant *C1, Constant *C2) {
436 if (C1->getType()->isSigned()) return getShr(C1, C2);
437 return getCast(getShr(getCast(C1,
438 C1->getType()->getSignedVersion()), C2), C1->getType());
439}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000440
Chris Lattner2f7c9632001-06-06 20:29:01 +0000441
442//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000443// isValueValidForType implementations
444
Chris Lattner3462ae32001-12-03 22:26:30 +0000445bool ConstantSInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000446 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000447 default:
448 return false; // These can't be represented as integers!!!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000449 // Signed types...
450 case Type::SByteTyID:
451 return (Val <= INT8_MAX && Val >= INT8_MIN);
452 case Type::ShortTyID:
453 return (Val <= INT16_MAX && Val >= INT16_MIN);
454 case Type::IntTyID:
Chris Lattner74248512004-06-08 23:21:39 +0000455 return (Val <= int(INT32_MAX) && Val >= int(INT32_MIN));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000456 case Type::LongTyID:
457 return true; // This is the largest type...
458 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000459}
460
Chris Lattner3462ae32001-12-03 22:26:30 +0000461bool ConstantUInt::isValueValidForType(const Type *Ty, uint64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000462 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000463 default:
464 return false; // These can't be represented as integers!!!
465
466 // Unsigned types...
467 case Type::UByteTyID:
468 return (Val <= UINT8_MAX);
469 case Type::UShortTyID:
470 return (Val <= UINT16_MAX);
471 case Type::UIntTyID:
472 return (Val <= UINT32_MAX);
473 case Type::ULongTyID:
474 return true; // This is the largest type...
475 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000476}
477
Chris Lattner3462ae32001-12-03 22:26:30 +0000478bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000479 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000480 default:
481 return false; // These can't be represented as floating point!
482
Reid Spencerb95f8ab2004-12-07 07:38:08 +0000483 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000484 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000485 case Type::DoubleTyID:
486 return true; // This is the largest type...
487 }
488};
Chris Lattner9655e542001-07-20 19:16:02 +0000489
Chris Lattner49d855c2001-09-07 16:46:31 +0000490//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000491// Factory Function Implementation
492
Chris Lattner98fa07b2003-05-23 20:03:32 +0000493// ConstantCreator - A class that is used to create constants by
494// ValueMap*. This class should be partially specialized if there is
495// something strange that needs to be done to interface to the ctor for the
496// constant.
497//
Chris Lattner189d19f2003-11-21 20:23:48 +0000498namespace llvm {
499 template<class ConstantClass, class TypeClass, class ValType>
500 struct ConstantCreator {
501 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
502 return new ConstantClass(Ty, V);
503 }
504 };
Misha Brukmanb1c93172005-04-21 23:48:37 +0000505
Chris Lattner189d19f2003-11-21 20:23:48 +0000506 template<class ConstantClass, class TypeClass>
507 struct ConvertConstantType {
508 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
509 assert(0 && "This type cannot be converted!\n");
510 abort();
511 }
512 };
513}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000514
Chris Lattner98fa07b2003-05-23 20:03:32 +0000515namespace {
516 template<class ValType, class TypeClass, class ConstantClass>
Chris Lattnerb50d1352003-10-05 00:17:43 +0000517 class ValueMap : public AbstractTypeUser {
518 typedef std::pair<const TypeClass*, ValType> MapKey;
519 typedef std::map<MapKey, ConstantClass *> MapTy;
520 typedef typename MapTy::iterator MapIterator;
521 MapTy Map;
522
523 typedef std::map<const TypeClass*, MapIterator> AbstractTypeMapTy;
524 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner99a669b2004-11-19 16:39:44 +0000525
526 friend void Constant::clearAllValueMaps();
527 private:
528 void clear(std::vector<Constant *> &Constants) {
529 for(MapIterator I = Map.begin(); I != Map.end(); ++I)
530 Constants.push_back(I->second);
531 Map.clear();
532 AbstractTypeMap.clear();
533 }
534
Chris Lattner98fa07b2003-05-23 20:03:32 +0000535 public:
536 // getOrCreate - Return the specified constant from the map, creating it if
537 // necessary.
538 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000539 MapKey Lookup(Ty, V);
540 MapIterator I = Map.lower_bound(Lookup);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000541 if (I != Map.end() && I->first == Lookup)
542 return I->second; // Is it in the map?
543
544 // If no preexisting value, create one now...
545 ConstantClass *Result =
546 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
547
Chris Lattnerb50d1352003-10-05 00:17:43 +0000548
549 /// FIXME: why does this assert fail when loading 176.gcc?
550 //assert(Result->getType() == Ty && "Type specified is not correct!");
551 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
552
553 // If the type of the constant is abstract, make sure that an entry exists
554 // for it in the AbstractTypeMap.
555 if (Ty->isAbstract()) {
556 typename AbstractTypeMapTy::iterator TI =
557 AbstractTypeMap.lower_bound(Ty);
558
559 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
560 // Add ourselves to the ATU list of the type.
561 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
562
563 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
564 }
565 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000566 return Result;
567 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000568
Chris Lattner98fa07b2003-05-23 20:03:32 +0000569 void remove(ConstantClass *CP) {
Chris Lattner3e650af2004-08-04 04:48:01 +0000570 MapIterator I = Map.find(MapKey((TypeClass*)CP->getRawType(),
571 getValType(CP)));
Chris Lattner20a4dab2004-08-04 22:26:13 +0000572 if (I == Map.end() || I->second != CP) {
573 // FIXME: This should not use a linear scan. If this gets to be a
574 // performance problem, someone should look at this.
575 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
576 /* empty */;
577 }
578
Chris Lattnerb50d1352003-10-05 00:17:43 +0000579 assert(I != Map.end() && "Constant not found in constant table!");
Chris Lattner3e650af2004-08-04 04:48:01 +0000580 assert(I->second == CP && "Didn't find correct element?");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000581
582 // Now that we found the entry, make sure this isn't the entry that
583 // the AbstractTypeMap points to.
584 const TypeClass *Ty = I->first.first;
585 if (Ty->isAbstract()) {
586 assert(AbstractTypeMap.count(Ty) &&
587 "Abstract type not in AbstractTypeMap?");
588 MapIterator &ATMEntryIt = AbstractTypeMap[Ty];
589 if (ATMEntryIt == I) {
590 // Yes, we are removing the representative entry for this type.
591 // See if there are any other entries of the same type.
592 MapIterator TmpIt = ATMEntryIt;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000593
Chris Lattnerb50d1352003-10-05 00:17:43 +0000594 // First check the entry before this one...
595 if (TmpIt != Map.begin()) {
596 --TmpIt;
597 if (TmpIt->first.first != Ty) // Not the same type, move back...
598 ++TmpIt;
599 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000600
Chris Lattnerb50d1352003-10-05 00:17:43 +0000601 // If we didn't find the same type, try to move forward...
602 if (TmpIt == ATMEntryIt) {
603 ++TmpIt;
604 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
605 --TmpIt; // No entry afterwards with the same type
606 }
607
608 // If there is another entry in the map of the same abstract type,
609 // update the AbstractTypeMap entry now.
610 if (TmpIt != ATMEntryIt) {
611 ATMEntryIt = TmpIt;
612 } else {
613 // Otherwise, we are removing the last instance of this type
614 // from the table. Remove from the ATM, and from user list.
615 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
616 AbstractTypeMap.erase(Ty);
617 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000618 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000619 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000620
Chris Lattnerb50d1352003-10-05 00:17:43 +0000621 Map.erase(I);
622 }
623
624 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000625 typename AbstractTypeMapTy::iterator I =
Chris Lattnerb50d1352003-10-05 00:17:43 +0000626 AbstractTypeMap.find(cast<TypeClass>(OldTy));
627
628 assert(I != AbstractTypeMap.end() &&
629 "Abstract type not in AbstractTypeMap?");
630
631 // Convert a constant at a time until the last one is gone. The last one
632 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
633 // eliminated eventually.
634 do {
635 ConvertConstantType<ConstantClass,
636 TypeClass>::convert(I->second->second,
637 cast<TypeClass>(NewTy));
638
639 I = AbstractTypeMap.find(cast<TypeClass>(OldTy));
640 } while (I != AbstractTypeMap.end());
641 }
642
643 // If the type became concrete without being refined to any other existing
644 // type, we just remove ourselves from the ATU list.
645 void typeBecameConcrete(const DerivedType *AbsTy) {
646 AbsTy->removeAbstractTypeUser(this);
647 }
648
649 void dump() const {
650 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000651 }
652 };
653}
654
Chris Lattner3462ae32001-12-03 22:26:30 +0000655//---- ConstantUInt::get() and ConstantSInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000656//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000657static ValueMap< int64_t, Type, ConstantSInt> SIntConstants;
658static ValueMap<uint64_t, Type, ConstantUInt> UIntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000659
Chris Lattner3462ae32001-12-03 22:26:30 +0000660ConstantSInt *ConstantSInt::get(const Type *Ty, int64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000661 return SIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000662}
663
Chris Lattner3462ae32001-12-03 22:26:30 +0000664ConstantUInt *ConstantUInt::get(const Type *Ty, uint64_t V) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000665 return UIntConstants.getOrCreate(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000666}
667
Chris Lattner3462ae32001-12-03 22:26:30 +0000668ConstantInt *ConstantInt::get(const Type *Ty, unsigned char V) {
Chris Lattner49d855c2001-09-07 16:46:31 +0000669 assert(V <= 127 && "Can only be used with very small positive constants!");
Chris Lattner3462ae32001-12-03 22:26:30 +0000670 if (Ty->isSigned()) return ConstantSInt::get(Ty, V);
671 return ConstantUInt::get(Ty, V);
Chris Lattner49d855c2001-09-07 16:46:31 +0000672}
673
Chris Lattner3462ae32001-12-03 22:26:30 +0000674//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000675//
Chris Lattnerac80ea42004-02-01 22:49:04 +0000676namespace llvm {
677 template<>
678 struct ConstantCreator<ConstantFP, Type, uint64_t> {
679 static ConstantFP *create(const Type *Ty, uint64_t V) {
680 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000681 return new ConstantFP(Ty, BitsToDouble(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000682 }
683 };
684 template<>
685 struct ConstantCreator<ConstantFP, Type, uint32_t> {
686 static ConstantFP *create(const Type *Ty, uint32_t V) {
687 assert(Ty == Type::FloatTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000688 return new ConstantFP(Ty, BitsToFloat(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000689 }
690 };
691}
692
693static ValueMap<uint64_t, Type, ConstantFP> DoubleConstants;
694static ValueMap<uint32_t, Type, ConstantFP> FloatConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000695
Jim Laskey8ad8f712005-08-17 20:06:22 +0000696bool ConstantFP::isNullValue() const {
697 return DoubleToBits(Val) == 0;
698}
699
700bool ConstantFP::isExactlyValue(double V) const {
701 return DoubleToBits(V) == DoubleToBits(Val);
702}
703
704
Chris Lattner3462ae32001-12-03 22:26:30 +0000705ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner241ed4c2004-01-23 00:55:21 +0000706 if (Ty == Type::FloatTy) {
707 // Force the value through memory to normalize it.
Jim Laskeyb74c6662005-08-17 19:34:49 +0000708 return FloatConstants.getOrCreate(Ty, FloatToBits(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000709 } else {
710 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000711 return DoubleConstants.getOrCreate(Ty, DoubleToBits(V));
Chris Lattner241ed4c2004-01-23 00:55:21 +0000712 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000713}
714
Chris Lattner9fba3da2004-02-15 05:53:04 +0000715//---- ConstantAggregateZero::get() implementation...
716//
717namespace llvm {
718 // ConstantAggregateZero does not take extra "value" argument...
719 template<class ValType>
720 struct ConstantCreator<ConstantAggregateZero, Type, ValType> {
721 static ConstantAggregateZero *create(const Type *Ty, const ValType &V){
722 return new ConstantAggregateZero(Ty);
723 }
724 };
725
726 template<>
727 struct ConvertConstantType<ConstantAggregateZero, Type> {
728 static void convert(ConstantAggregateZero *OldC, const Type *NewTy) {
729 // Make everyone now use a constant of the new type...
730 Constant *New = ConstantAggregateZero::get(NewTy);
731 assert(New != OldC && "Didn't replace constant??");
732 OldC->uncheckedReplaceAllUsesWith(New);
733 OldC->destroyConstant(); // This constant is now dead, destroy it.
734 }
735 };
736}
737
738static ValueMap<char, Type, ConstantAggregateZero> AggZeroConstants;
739
Chris Lattner3e650af2004-08-04 04:48:01 +0000740static char getValType(ConstantAggregateZero *CPZ) { return 0; }
741
Chris Lattner9fba3da2004-02-15 05:53:04 +0000742Constant *ConstantAggregateZero::get(const Type *Ty) {
743 return AggZeroConstants.getOrCreate(Ty, 0);
744}
745
746// destroyConstant - Remove the constant from the constant table...
747//
748void ConstantAggregateZero::destroyConstant() {
749 AggZeroConstants.remove(this);
750 destroyConstantImpl();
751}
752
753void ConstantAggregateZero::replaceUsesOfWithOnConstant(Value *From, Value *To,
754 bool DisableChecking) {
755 assert(0 && "No uses!");
756 abort();
757}
758
759
760
Chris Lattner3462ae32001-12-03 22:26:30 +0000761//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000762//
Chris Lattner189d19f2003-11-21 20:23:48 +0000763namespace llvm {
764 template<>
765 struct ConvertConstantType<ConstantArray, ArrayType> {
766 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
767 // Make everyone now use a constant of the new type...
768 std::vector<Constant*> C;
769 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
770 C.push_back(cast<Constant>(OldC->getOperand(i)));
771 Constant *New = ConstantArray::get(NewTy, C);
772 assert(New != OldC && "Didn't replace constant??");
773 OldC->uncheckedReplaceAllUsesWith(New);
774 OldC->destroyConstant(); // This constant is now dead, destroy it.
775 }
776 };
777}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000778
Chris Lattner3e650af2004-08-04 04:48:01 +0000779static std::vector<Constant*> getValType(ConstantArray *CA) {
780 std::vector<Constant*> Elements;
781 Elements.reserve(CA->getNumOperands());
782 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
783 Elements.push_back(cast<Constant>(CA->getOperand(i)));
784 return Elements;
785}
786
Chris Lattner98fa07b2003-05-23 20:03:32 +0000787static ValueMap<std::vector<Constant*>, ArrayType,
788 ConstantArray> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000789
Chris Lattner015e8212004-02-15 04:14:47 +0000790Constant *ConstantArray::get(const ArrayType *Ty,
Chris Lattner9fba3da2004-02-15 05:53:04 +0000791 const std::vector<Constant*> &V) {
792 // If this is an all-zero array, return a ConstantAggregateZero object
793 if (!V.empty()) {
794 Constant *C = V[0];
795 if (!C->isNullValue())
796 return ArrayConstants.getOrCreate(Ty, V);
797 for (unsigned i = 1, e = V.size(); i != e; ++i)
798 if (V[i] != C)
799 return ArrayConstants.getOrCreate(Ty, V);
800 }
801 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +0000802}
803
Chris Lattner98fa07b2003-05-23 20:03:32 +0000804// destroyConstant - Remove the constant from the constant table...
805//
806void ConstantArray::destroyConstant() {
807 ArrayConstants.remove(this);
808 destroyConstantImpl();
809}
810
Chris Lattner3462ae32001-12-03 22:26:30 +0000811// ConstantArray::get(const string&) - Return an array that is initialized to
Chris Lattner8f80fe02001-10-14 23:54:12 +0000812// contain the specified string. A null terminator is added to the specified
813// string so that it may be used in a natural way...
814//
Chris Lattner015e8212004-02-15 04:14:47 +0000815Constant *ConstantArray::get(const std::string &Str) {
Chris Lattner7f74a562002-01-20 22:54:45 +0000816 std::vector<Constant*> ElementVals;
Chris Lattner8f80fe02001-10-14 23:54:12 +0000817
818 for (unsigned i = 0; i < Str.length(); ++i)
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000819 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000820
821 // Add a null terminator to the string...
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000822 ElementVals.push_back(ConstantSInt::get(Type::SByteTy, 0));
Chris Lattner8f80fe02001-10-14 23:54:12 +0000823
Chris Lattnerbec9b0b2001-12-14 16:41:18 +0000824 ArrayType *ATy = ArrayType::get(Type::SByteTy, Str.length()+1);
Chris Lattner3462ae32001-12-03 22:26:30 +0000825 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +0000826}
827
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000828/// isString - This method returns true if the array is an array of sbyte or
829/// ubyte, and if the elements of the array are all ConstantInt's.
830bool ConstantArray::isString() const {
831 // Check the element type for sbyte or ubyte...
Chris Lattnere8701f62004-01-14 17:51:53 +0000832 if (getType()->getElementType() != Type::UByteTy &&
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000833 getType()->getElementType() != Type::SByteTy)
834 return false;
835 // Check the elements to make sure they are all integers, not constant
836 // expressions.
837 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
838 if (!isa<ConstantInt>(getOperand(i)))
839 return false;
840 return true;
841}
842
Chris Lattner81fabb02002-08-26 17:53:56 +0000843// getAsString - If the sub-element type of this array is either sbyte or ubyte,
844// then this method converts the array to an std::string and returns it.
845// Otherwise, it asserts out.
846//
847std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +0000848 assert(isString() && "Not a string!");
Chris Lattner81fabb02002-08-26 17:53:56 +0000849 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +0000850 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
851 Result += (char)cast<ConstantInt>(getOperand(i))->getRawValue();
Chris Lattner81fabb02002-08-26 17:53:56 +0000852 return Result;
853}
854
855
Chris Lattner3462ae32001-12-03 22:26:30 +0000856//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000857//
Chris Lattnerb50d1352003-10-05 00:17:43 +0000858
Chris Lattner189d19f2003-11-21 20:23:48 +0000859namespace llvm {
860 template<>
861 struct ConvertConstantType<ConstantStruct, StructType> {
862 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
863 // Make everyone now use a constant of the new type...
864 std::vector<Constant*> C;
865 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
866 C.push_back(cast<Constant>(OldC->getOperand(i)));
867 Constant *New = ConstantStruct::get(NewTy, C);
868 assert(New != OldC && "Didn't replace constant??");
Misha Brukmanb1c93172005-04-21 23:48:37 +0000869
Chris Lattner189d19f2003-11-21 20:23:48 +0000870 OldC->uncheckedReplaceAllUsesWith(New);
871 OldC->destroyConstant(); // This constant is now dead, destroy it.
872 }
873 };
874}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000875
Misha Brukmanb1c93172005-04-21 23:48:37 +0000876static ValueMap<std::vector<Constant*>, StructType,
Chris Lattner98fa07b2003-05-23 20:03:32 +0000877 ConstantStruct> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000878
Chris Lattner3e650af2004-08-04 04:48:01 +0000879static std::vector<Constant*> getValType(ConstantStruct *CS) {
880 std::vector<Constant*> Elements;
881 Elements.reserve(CS->getNumOperands());
882 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
883 Elements.push_back(cast<Constant>(CS->getOperand(i)));
884 return Elements;
885}
886
Chris Lattner015e8212004-02-15 04:14:47 +0000887Constant *ConstantStruct::get(const StructType *Ty,
888 const std::vector<Constant*> &V) {
Chris Lattner9fba3da2004-02-15 05:53:04 +0000889 // Create a ConstantAggregateZero value if all elements are zeros...
890 for (unsigned i = 0, e = V.size(); i != e; ++i)
891 if (!V[i]->isNullValue())
892 return StructConstants.getOrCreate(Ty, V);
893
894 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +0000895}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000896
Chris Lattnerd6108ca2004-07-12 20:35:11 +0000897Constant *ConstantStruct::get(const std::vector<Constant*> &V) {
898 std::vector<const Type*> StructEls;
899 StructEls.reserve(V.size());
900 for (unsigned i = 0, e = V.size(); i != e; ++i)
901 StructEls.push_back(V[i]->getType());
902 return get(StructType::get(StructEls), V);
903}
904
Chris Lattnerd7a73302001-10-13 06:57:33 +0000905// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +0000906//
Chris Lattner3462ae32001-12-03 22:26:30 +0000907void ConstantStruct::destroyConstant() {
Chris Lattnerd7a73302001-10-13 06:57:33 +0000908 StructConstants.remove(this);
909 destroyConstantImpl();
910}
Chris Lattner883ad0b2001-10-03 15:39:36 +0000911
Brian Gaeke02209042004-08-20 06:00:58 +0000912//---- ConstantPacked::get() implementation...
913//
914namespace llvm {
915 template<>
916 struct ConvertConstantType<ConstantPacked, PackedType> {
917 static void convert(ConstantPacked *OldC, const PackedType *NewTy) {
918 // Make everyone now use a constant of the new type...
919 std::vector<Constant*> C;
920 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
921 C.push_back(cast<Constant>(OldC->getOperand(i)));
922 Constant *New = ConstantPacked::get(NewTy, C);
923 assert(New != OldC && "Didn't replace constant??");
924 OldC->uncheckedReplaceAllUsesWith(New);
925 OldC->destroyConstant(); // This constant is now dead, destroy it.
926 }
927 };
928}
929
930static std::vector<Constant*> getValType(ConstantPacked *CP) {
931 std::vector<Constant*> Elements;
932 Elements.reserve(CP->getNumOperands());
933 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
934 Elements.push_back(CP->getOperand(i));
935 return Elements;
936}
937
938static ValueMap<std::vector<Constant*>, PackedType,
939 ConstantPacked> PackedConstants;
940
941Constant *ConstantPacked::get(const PackedType *Ty,
942 const std::vector<Constant*> &V) {
943 // If this is an all-zero packed, return a ConstantAggregateZero object
944 if (!V.empty()) {
945 Constant *C = V[0];
946 if (!C->isNullValue())
947 return PackedConstants.getOrCreate(Ty, V);
948 for (unsigned i = 1, e = V.size(); i != e; ++i)
949 if (V[i] != C)
950 return PackedConstants.getOrCreate(Ty, V);
951 }
952 return ConstantAggregateZero::get(Ty);
953}
954
955Constant *ConstantPacked::get(const std::vector<Constant*> &V) {
956 assert(!V.empty() && "Cannot infer type if V is empty");
957 return get(PackedType::get(V.front()->getType(),V.size()), V);
958}
959
960// destroyConstant - Remove the constant from the constant table...
961//
962void ConstantPacked::destroyConstant() {
963 PackedConstants.remove(this);
964 destroyConstantImpl();
965}
966
Chris Lattner3462ae32001-12-03 22:26:30 +0000967//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +0000968//
Chris Lattner98fa07b2003-05-23 20:03:32 +0000969
Chris Lattner189d19f2003-11-21 20:23:48 +0000970namespace llvm {
971 // ConstantPointerNull does not take extra "value" argument...
972 template<class ValType>
973 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
974 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
975 return new ConstantPointerNull(Ty);
976 }
977 };
Chris Lattner98fa07b2003-05-23 20:03:32 +0000978
Chris Lattner189d19f2003-11-21 20:23:48 +0000979 template<>
980 struct ConvertConstantType<ConstantPointerNull, PointerType> {
981 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
982 // Make everyone now use a constant of the new type...
983 Constant *New = ConstantPointerNull::get(NewTy);
984 assert(New != OldC && "Didn't replace constant??");
985 OldC->uncheckedReplaceAllUsesWith(New);
986 OldC->destroyConstant(); // This constant is now dead, destroy it.
987 }
988 };
989}
Chris Lattnerb50d1352003-10-05 00:17:43 +0000990
Chris Lattner98fa07b2003-05-23 20:03:32 +0000991static ValueMap<char, PointerType, ConstantPointerNull> NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +0000992
Chris Lattner3e650af2004-08-04 04:48:01 +0000993static char getValType(ConstantPointerNull *) {
994 return 0;
995}
996
997
Chris Lattner3462ae32001-12-03 22:26:30 +0000998ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner98fa07b2003-05-23 20:03:32 +0000999 return NullPtrConstants.getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001000}
1001
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001002// destroyConstant - Remove the constant from the constant table...
1003//
1004void ConstantPointerNull::destroyConstant() {
1005 NullPtrConstants.remove(this);
1006 destroyConstantImpl();
1007}
1008
1009
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001010//---- UndefValue::get() implementation...
1011//
1012
1013namespace llvm {
1014 // UndefValue does not take extra "value" argument...
1015 template<class ValType>
1016 struct ConstantCreator<UndefValue, Type, ValType> {
1017 static UndefValue *create(const Type *Ty, const ValType &V) {
1018 return new UndefValue(Ty);
1019 }
1020 };
1021
1022 template<>
1023 struct ConvertConstantType<UndefValue, Type> {
1024 static void convert(UndefValue *OldC, const Type *NewTy) {
1025 // Make everyone now use a constant of the new type.
1026 Constant *New = UndefValue::get(NewTy);
1027 assert(New != OldC && "Didn't replace constant??");
1028 OldC->uncheckedReplaceAllUsesWith(New);
1029 OldC->destroyConstant(); // This constant is now dead, destroy it.
1030 }
1031 };
1032}
1033
1034static ValueMap<char, Type, UndefValue> UndefValueConstants;
1035
1036static char getValType(UndefValue *) {
1037 return 0;
1038}
1039
1040
1041UndefValue *UndefValue::get(const Type *Ty) {
1042 return UndefValueConstants.getOrCreate(Ty, 0);
1043}
1044
1045// destroyConstant - Remove the constant from the constant table.
1046//
1047void UndefValue::destroyConstant() {
1048 UndefValueConstants.remove(this);
1049 destroyConstantImpl();
1050}
1051
1052
1053
1054
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001055//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001056//
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001057typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +00001058
Chris Lattner189d19f2003-11-21 20:23:48 +00001059namespace llvm {
1060 template<>
1061 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
1062 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
1063 if (V.first == Instruction::Cast)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001064 return new UnaryConstantExpr(Instruction::Cast, V.second[0], Ty);
Chris Lattner189d19f2003-11-21 20:23:48 +00001065 if ((V.first >= Instruction::BinaryOpsBegin &&
1066 V.first < Instruction::BinaryOpsEnd) ||
1067 V.first == Instruction::Shl || V.first == Instruction::Shr)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001068 return new BinaryConstantExpr(V.first, V.second[0], V.second[1]);
Chris Lattnerb7897ce2004-03-30 22:51:03 +00001069 if (V.first == Instruction::Select)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001070 return new SelectConstantExpr(V.second[0], V.second[1], V.second[2]);
Misha Brukmanb1c93172005-04-21 23:48:37 +00001071
Chris Lattner189d19f2003-11-21 20:23:48 +00001072 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001073
Chris Lattner189d19f2003-11-21 20:23:48 +00001074 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001075 return new GetElementPtrConstantExpr(V.second[0], IdxList, Ty);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001076 }
Chris Lattner189d19f2003-11-21 20:23:48 +00001077 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001078
Chris Lattner189d19f2003-11-21 20:23:48 +00001079 template<>
1080 struct ConvertConstantType<ConstantExpr, Type> {
1081 static void convert(ConstantExpr *OldC, const Type *NewTy) {
1082 Constant *New;
1083 switch (OldC->getOpcode()) {
1084 case Instruction::Cast:
1085 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
1086 break;
Chris Lattner6e415c02004-03-12 05:54:04 +00001087 case Instruction::Select:
1088 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
1089 OldC->getOperand(1),
1090 OldC->getOperand(2));
1091 break;
Chris Lattner189d19f2003-11-21 20:23:48 +00001092 case Instruction::Shl:
1093 case Instruction::Shr:
1094 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
1095 OldC->getOperand(0), OldC->getOperand(1));
1096 break;
1097 default:
1098 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
1099 OldC->getOpcode() < Instruction::BinaryOpsEnd);
1100 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
1101 OldC->getOperand(1));
1102 break;
1103 case Instruction::GetElementPtr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00001104 // Make everyone now use a constant of the new type...
Chris Lattner13128ab2004-10-11 22:52:25 +00001105 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
1106 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), Idx);
Chris Lattner189d19f2003-11-21 20:23:48 +00001107 break;
1108 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001109
Chris Lattner189d19f2003-11-21 20:23:48 +00001110 assert(New != OldC && "Didn't replace constant??");
1111 OldC->uncheckedReplaceAllUsesWith(New);
1112 OldC->destroyConstant(); // This constant is now dead, destroy it.
1113 }
1114 };
1115} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +00001116
1117
Chris Lattner3e650af2004-08-04 04:48:01 +00001118static ExprMapKeyType getValType(ConstantExpr *CE) {
1119 std::vector<Constant*> Operands;
1120 Operands.reserve(CE->getNumOperands());
1121 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
1122 Operands.push_back(cast<Constant>(CE->getOperand(i)));
1123 return ExprMapKeyType(CE->getOpcode(), Operands);
1124}
1125
Chris Lattner98fa07b2003-05-23 20:03:32 +00001126static ValueMap<ExprMapKeyType, Type, ConstantExpr> ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +00001127
Chris Lattner46b3d302003-04-16 22:40:51 +00001128Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001129 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1130
Chris Lattneracdbe712003-04-17 19:24:48 +00001131 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
1132 return FC; // Fold a few common cases...
1133
Vikram S. Adve4c485332002-07-15 18:19:33 +00001134 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001135 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001136 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
1137 return ExprConstants.getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001138}
Chris Lattnerd7a73302001-10-13 06:57:33 +00001139
Chris Lattnerdd284742004-04-04 23:20:30 +00001140Constant *ConstantExpr::getSignExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001141 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001142 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1143 "This is an illegal sign extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001144 if (C->getType() != Type::BoolTy) {
1145 C = ConstantExpr::getCast(C, C->getType()->getSignedVersion());
1146 return ConstantExpr::getCast(C, Ty);
1147 } else {
1148 if (C == ConstantBool::True)
1149 return ConstantIntegral::getAllOnesValue(Ty);
1150 else
1151 return ConstantIntegral::getNullValue(Ty);
1152 }
Chris Lattnerdd284742004-04-04 23:20:30 +00001153}
1154
1155Constant *ConstantExpr::getZeroExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001156 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001157 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1158 "This is an illegal zero extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001159 if (C->getType() != Type::BoolTy)
1160 C = ConstantExpr::getCast(C, C->getType()->getUnsignedVersion());
Chris Lattnerdd284742004-04-04 23:20:30 +00001161 return ConstantExpr::getCast(C, Ty);
1162}
1163
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001164Constant *ConstantExpr::getSizeOf(const Type *Ty) {
Chris Lattneracc4e542004-12-13 19:48:51 +00001165 // sizeof is implemented as: (ulong) gep (Ty*)null, 1
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001166 return getCast(
Chris Lattneracc4e542004-12-13 19:48:51 +00001167 getGetElementPtr(getNullValue(PointerType::get(Ty)),
1168 std::vector<Constant*>(1, ConstantInt::get(Type::UIntTy, 1))),
1169 Type::ULongTy);
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001170}
1171
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00001172Constant *ConstantExpr::getPtrPtrFromArrayPtr(Constant *C) {
1173 // pointer from array is implemented as: getelementptr arr ptr, 0, 0
1174 static std::vector<Constant*> Indices(2, ConstantUInt::get(Type::UIntTy, 0));
1175
1176 return ConstantExpr::getGetElementPtr(C, Indices);
1177}
1178
Chris Lattnerb50d1352003-10-05 00:17:43 +00001179Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
1180 Constant *C1, Constant *C2) {
Chris Lattner5645e8a2004-01-12 19:04:55 +00001181 if (Opcode == Instruction::Shl || Opcode == Instruction::Shr)
1182 return getShiftTy(ReqTy, Opcode, C1, C2);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001183 // Check the operands for consistency first
1184 assert((Opcode >= Instruction::BinaryOpsBegin &&
1185 Opcode < Instruction::BinaryOpsEnd) &&
1186 "Invalid opcode in binary constant expression");
1187 assert(C1->getType() == C2->getType() &&
1188 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001189
Chris Lattner29ca2c62004-08-04 18:50:09 +00001190 if (ReqTy == C1->getType() || (Instruction::isRelational(Opcode) &&
1191 ReqTy == Type::BoolTy))
Chris Lattnerb50d1352003-10-05 00:17:43 +00001192 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1193 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +00001194
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001195 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001196 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001197 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001198}
1199
Chris Lattner29ca2c62004-08-04 18:50:09 +00001200Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001201#ifndef NDEBUG
1202 switch (Opcode) {
1203 case Instruction::Add: case Instruction::Sub:
1204 case Instruction::Mul: case Instruction::Div:
1205 case Instruction::Rem:
1206 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001207 assert((C1->getType()->isInteger() || C1->getType()->isFloatingPoint()) &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001208 "Tried to create an arithmetic operation on a non-arithmetic type!");
1209 break;
1210 case Instruction::And:
1211 case Instruction::Or:
1212 case Instruction::Xor:
1213 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1214 assert(C1->getType()->isIntegral() &&
Misha Brukman3852f652005-01-27 06:46:38 +00001215 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001216 break;
1217 case Instruction::SetLT: case Instruction::SetGT: case Instruction::SetLE:
1218 case Instruction::SetGE: case Instruction::SetEQ: case Instruction::SetNE:
1219 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1220 break;
1221 case Instruction::Shl:
1222 case Instruction::Shr:
1223 assert(C2->getType() == Type::UByteTy && "Shift should be by ubyte!");
1224 assert(C1->getType()->isInteger() &&
1225 "Tried to create a shift operation on a non-integer type!");
1226 break;
1227 default:
1228 break;
1229 }
1230#endif
1231
Chris Lattner29ca2c62004-08-04 18:50:09 +00001232 if (Instruction::isRelational(Opcode))
1233 return getTy(Type::BoolTy, Opcode, C1, C2);
1234 else
1235 return getTy(C1->getType(), Opcode, C1, C2);
1236}
1237
Chris Lattner6e415c02004-03-12 05:54:04 +00001238Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
1239 Constant *V1, Constant *V2) {
1240 assert(C->getType() == Type::BoolTy && "Select condition must be bool!");
1241 assert(V1->getType() == V2->getType() && "Select value types must match!");
1242 assert(V1->getType()->isFirstClassType() && "Cannot select aggregate type!");
1243
1244 if (ReqTy == V1->getType())
1245 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1246 return SC; // Fold common cases
1247
1248 std::vector<Constant*> argVec(3, C);
1249 argVec[1] = V1;
1250 argVec[2] = V2;
1251 ExprMapKeyType Key = std::make_pair(Instruction::Select, argVec);
1252 return ExprConstants.getOrCreate(ReqTy, Key);
1253}
1254
Chris Lattner9eb2b522004-01-12 19:12:58 +00001255/// getShiftTy - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +00001256Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
1257 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001258 // Check the operands for consistency first
1259 assert((Opcode == Instruction::Shl ||
1260 Opcode == Instruction::Shr) &&
1261 "Invalid opcode in binary constant expression");
1262 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
1263 "Invalid operand types for Shift constant expr!");
1264
Chris Lattner0bba7712004-01-12 20:40:42 +00001265 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001266 return FC; // Fold a few common cases...
1267
1268 // Look up the constant in the table first to ensure uniqueness
1269 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001270 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001271 return ExprConstants.getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001272}
1273
1274
Chris Lattnerb50d1352003-10-05 00:17:43 +00001275Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner13128ab2004-10-11 22:52:25 +00001276 const std::vector<Value*> &IdxList) {
1277 assert(GetElementPtrInst::getIndexedType(C->getType(), IdxList, true) &&
Chris Lattner04b60fe2004-02-16 20:46:13 +00001278 "GEP indices invalid!");
1279
Chris Lattneracdbe712003-04-17 19:24:48 +00001280 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
1281 return FC; // Fold a few common cases...
Chris Lattner04b60fe2004-02-16 20:46:13 +00001282
Chris Lattnerb50d1352003-10-05 00:17:43 +00001283 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +00001284 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +00001285 // Look up the constant in the table first to ensure uniqueness
Chris Lattner13128ab2004-10-11 22:52:25 +00001286 std::vector<Constant*> ArgVec;
1287 ArgVec.reserve(IdxList.size()+1);
1288 ArgVec.push_back(C);
1289 for (unsigned i = 0, e = IdxList.size(); i != e; ++i)
1290 ArgVec.push_back(cast<Constant>(IdxList[i]));
1291 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,ArgVec);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001292 return ExprConstants.getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001293}
1294
Chris Lattnerb50d1352003-10-05 00:17:43 +00001295Constant *ConstantExpr::getGetElementPtr(Constant *C,
1296 const std::vector<Constant*> &IdxList){
1297 // Get the result type of the getelementptr!
1298 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
1299
1300 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
1301 true);
1302 assert(Ty && "GEP indices invalid!");
Chris Lattner13128ab2004-10-11 22:52:25 +00001303 return getGetElementPtrTy(PointerType::get(Ty), C, VIdxList);
1304}
1305
1306Constant *ConstantExpr::getGetElementPtr(Constant *C,
1307 const std::vector<Value*> &IdxList) {
1308 // Get the result type of the getelementptr!
1309 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), IdxList,
1310 true);
1311 assert(Ty && "GEP indices invalid!");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001312 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
1313}
1314
1315
Vikram S. Adve4c485332002-07-15 18:19:33 +00001316// destroyConstant - Remove the constant from the constant table...
1317//
1318void ConstantExpr::destroyConstant() {
1319 ExprConstants.remove(this);
1320 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001321}
1322
Chris Lattner3cd8c562002-07-30 18:54:25 +00001323const char *ConstantExpr::getOpcodeName() const {
1324 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001325}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001326
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001327//===----------------------------------------------------------------------===//
1328// replaceUsesOfWithOnConstant implementations
1329
1330void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
1331 bool DisableChecking) {
1332 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1333
1334 std::vector<Constant*> Values;
1335 Values.reserve(getNumOperands()); // Build replacement array...
1336 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1337 Constant *Val = getOperand(i);
1338 if (Val == From) Val = cast<Constant>(To);
1339 Values.push_back(Val);
1340 }
1341
1342 Constant *Replacement = ConstantArray::get(getType(), Values);
1343 assert(Replacement != this && "I didn't contain From!");
1344
1345 // Everyone using this now uses the replacement...
1346 if (DisableChecking)
1347 uncheckedReplaceAllUsesWith(Replacement);
1348 else
1349 replaceAllUsesWith(Replacement);
1350
1351 // Delete the old constant!
1352 destroyConstant();
1353}
1354
1355void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
1356 bool DisableChecking) {
1357 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1358
1359 std::vector<Constant*> Values;
1360 Values.reserve(getNumOperands()); // Build replacement array...
1361 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1362 Constant *Val = getOperand(i);
1363 if (Val == From) Val = cast<Constant>(To);
1364 Values.push_back(Val);
1365 }
1366
1367 Constant *Replacement = ConstantStruct::get(getType(), Values);
1368 assert(Replacement != this && "I didn't contain From!");
1369
1370 // Everyone using this now uses the replacement...
1371 if (DisableChecking)
1372 uncheckedReplaceAllUsesWith(Replacement);
1373 else
1374 replaceAllUsesWith(Replacement);
1375
1376 // Delete the old constant!
1377 destroyConstant();
1378}
1379
1380void ConstantPacked::replaceUsesOfWithOnConstant(Value *From, Value *To,
1381 bool DisableChecking) {
1382 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1383
1384 std::vector<Constant*> Values;
1385 Values.reserve(getNumOperands()); // Build replacement array...
1386 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1387 Constant *Val = getOperand(i);
1388 if (Val == From) Val = cast<Constant>(To);
1389 Values.push_back(Val);
1390 }
1391
1392 Constant *Replacement = ConstantPacked::get(getType(), Values);
1393 assert(Replacement != this && "I didn't contain From!");
1394
1395 // Everyone using this now uses the replacement...
1396 if (DisableChecking)
1397 uncheckedReplaceAllUsesWith(Replacement);
1398 else
1399 replaceAllUsesWith(Replacement);
1400
1401 // Delete the old constant!
1402 destroyConstant();
1403}
1404
1405void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
1406 bool DisableChecking) {
1407 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
1408 Constant *To = cast<Constant>(ToV);
1409
1410 Constant *Replacement = 0;
1411 if (getOpcode() == Instruction::GetElementPtr) {
1412 std::vector<Constant*> Indices;
1413 Constant *Pointer = getOperand(0);
1414 Indices.reserve(getNumOperands()-1);
1415 if (Pointer == From) Pointer = To;
1416
1417 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1418 Constant *Val = getOperand(i);
1419 if (Val == From) Val = To;
1420 Indices.push_back(Val);
1421 }
1422 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
1423 } else if (getOpcode() == Instruction::Cast) {
1424 assert(getOperand(0) == From && "Cast only has one use!");
1425 Replacement = ConstantExpr::getCast(To, getType());
1426 } else if (getOpcode() == Instruction::Select) {
1427 Constant *C1 = getOperand(0);
1428 Constant *C2 = getOperand(1);
1429 Constant *C3 = getOperand(2);
1430 if (C1 == From) C1 = To;
1431 if (C2 == From) C2 = To;
1432 if (C3 == From) C3 = To;
1433 Replacement = ConstantExpr::getSelect(C1, C2, C3);
1434 } else if (getNumOperands() == 2) {
1435 Constant *C1 = getOperand(0);
1436 Constant *C2 = getOperand(1);
1437 if (C1 == From) C1 = To;
1438 if (C2 == From) C2 = To;
1439 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
1440 } else {
1441 assert(0 && "Unknown ConstantExpr type!");
1442 return;
1443 }
1444
1445 assert(Replacement != this && "I didn't contain From!");
1446
1447 // Everyone using this now uses the replacement...
1448 if (DisableChecking)
1449 uncheckedReplaceAllUsesWith(Replacement);
1450 else
1451 replaceAllUsesWith(Replacement);
1452
1453 // Delete the old constant!
1454 destroyConstant();
1455}
1456
1457
1458
Chris Lattner99a669b2004-11-19 16:39:44 +00001459/// clearAllValueMaps - This method frees all internal memory used by the
1460/// constant subsystem, which can be used in environments where this memory
1461/// is otherwise reported as a leak.
1462void Constant::clearAllValueMaps() {
1463 std::vector<Constant *> Constants;
1464
1465 DoubleConstants.clear(Constants);
1466 FloatConstants.clear(Constants);
1467 SIntConstants.clear(Constants);
1468 UIntConstants.clear(Constants);
1469 AggZeroConstants.clear(Constants);
1470 ArrayConstants.clear(Constants);
1471 StructConstants.clear(Constants);
1472 PackedConstants.clear(Constants);
1473 NullPtrConstants.clear(Constants);
1474 UndefValueConstants.clear(Constants);
1475 ExprConstants.clear(Constants);
1476
Misha Brukmanb1c93172005-04-21 23:48:37 +00001477 for (std::vector<Constant *>::iterator I = Constants.begin(),
Chris Lattner99a669b2004-11-19 16:39:44 +00001478 E = Constants.end(); I != E; ++I)
1479 (*I)->dropAllReferences();
1480 for (std::vector<Constant *>::iterator I = Constants.begin(),
1481 E = Constants.end(); I != E; ++I)
1482 (*I)->destroyConstantImpl();
1483 Constants.clear();
1484}