blob: 2c996f5301f4330f8adfcfc07e378a2e1d2a0624 [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 Lattner3d27be12006-08-27 12:54:02 +000023#include "llvm/Support/Compiler.h"
Chris Lattner69edc982006-09-28 00:35:06 +000024#include "llvm/Support/ManagedStatic.h"
Chris Lattner2f7c9632001-06-06 20:29:01 +000025#include <algorithm>
Reid Spencercf394bf2004-07-04 11:51:24 +000026#include <iostream>
Chris Lattner189d19f2003-11-21 20:23:48 +000027using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000028
Chris Lattner2f7c9632001-06-06 20:29:01 +000029//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +000030// Constant Class
Chris Lattner2f7c9632001-06-06 20:29:01 +000031//===----------------------------------------------------------------------===//
32
Chris Lattner3462ae32001-12-03 22:26:30 +000033void Constant::destroyConstantImpl() {
34 // When a Constant is destroyed, there may be lingering
Chris Lattnerd7a73302001-10-13 06:57:33 +000035 // references to the constant by other constants in the constant pool. These
Misha Brukmanbe372b92003-08-21 22:14:26 +000036 // constants are implicitly dependent on the module that is being deleted,
Chris Lattnerd7a73302001-10-13 06:57:33 +000037 // but they don't know that. Because we only find out when the CPV is
38 // deleted, we must now notify all of our users (that should only be
Chris Lattner3462ae32001-12-03 22:26:30 +000039 // Constants) that they are, in fact, invalid now and should be deleted.
Chris Lattnerd7a73302001-10-13 06:57:33 +000040 //
41 while (!use_empty()) {
42 Value *V = use_back();
43#ifndef NDEBUG // Only in -g mode...
Chris Lattnerd9f4ac662002-07-18 00:14:50 +000044 if (!isa<Constant>(V))
45 std::cerr << "While deleting: " << *this
46 << "\n\nUse still stuck around after Def is destroyed: "
47 << *V << "\n\n";
Chris Lattnerd7a73302001-10-13 06:57:33 +000048#endif
Vikram S. Adve4e537b22002-07-14 23:13:17 +000049 assert(isa<Constant>(V) && "References remain to Constant being destroyed");
Reid Spencer1ebe1ab2004-07-17 23:48:33 +000050 Constant *CV = cast<Constant>(V);
51 CV->destroyConstant();
Chris Lattnerd7a73302001-10-13 06:57:33 +000052
53 // The constant should remove itself from our use list...
Vikram S. Adve4e537b22002-07-14 23:13:17 +000054 assert((use_empty() || use_back() != V) && "Constant not removed!");
Chris Lattnerd7a73302001-10-13 06:57:33 +000055 }
56
57 // Value has no outstanding references it is safe to delete it now...
58 delete this;
Chris Lattner38569342001-10-01 20:11:19 +000059}
Chris Lattner2f7c9632001-06-06 20:29:01 +000060
Chris Lattner23dd1f62006-10-20 00:27:06 +000061/// canTrap - Return true if evaluation of this constant could trap. This is
62/// true for things like constant expressions that could divide by zero.
63bool Constant::canTrap() const {
64 assert(getType()->isFirstClassType() && "Cannot evaluate aggregate vals!");
65 // The only thing that could possibly trap are constant exprs.
66 const ConstantExpr *CE = dyn_cast<ConstantExpr>(this);
67 if (!CE) return false;
68
69 // ConstantExpr traps if any operands can trap.
70 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
71 if (getOperand(i)->canTrap())
72 return true;
73
74 // Otherwise, only specific operations can trap.
75 switch (CE->getOpcode()) {
76 default:
77 return false;
Reid Spencer7e80b0b2006-10-26 06:15:43 +000078 case Instruction::UDiv:
79 case Instruction::SDiv:
80 case Instruction::FDiv:
Chris Lattner23dd1f62006-10-20 00:27:06 +000081 case Instruction::Rem:
82 // Div and rem can trap if the RHS is not known to be non-zero.
83 if (!isa<ConstantInt>(getOperand(1)) || getOperand(1)->isNullValue())
84 return true;
85 return false;
86 }
87}
88
89
Chris Lattnerb1585a92002-08-13 17:50:20 +000090// Static constructor to create a '0' constant of arbitrary type...
91Constant *Constant::getNullValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +000092 switch (Ty->getTypeID()) {
Chris Lattner3e88ef92003-10-03 19:34:51 +000093 case Type::BoolTyID: {
94 static Constant *NullBool = ConstantBool::get(false);
95 return NullBool;
96 }
97 case Type::SByteTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +000098 static Constant *NullSByte = ConstantInt::get(Type::SByteTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +000099 return NullSByte;
100 }
101 case Type::UByteTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000102 static Constant *NullUByte = ConstantInt::get(Type::UByteTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000103 return NullUByte;
104 }
105 case Type::ShortTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000106 static Constant *NullShort = ConstantInt::get(Type::ShortTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000107 return NullShort;
108 }
109 case Type::UShortTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000110 static Constant *NullUShort = ConstantInt::get(Type::UShortTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000111 return NullUShort;
112 }
113 case Type::IntTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000114 static Constant *NullInt = ConstantInt::get(Type::IntTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000115 return NullInt;
116 }
117 case Type::UIntTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000118 static Constant *NullUInt = ConstantInt::get(Type::UIntTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000119 return NullUInt;
120 }
121 case Type::LongTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000122 static Constant *NullLong = ConstantInt::get(Type::LongTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000123 return NullLong;
124 }
125 case Type::ULongTyID: {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000126 static Constant *NullULong = ConstantInt::get(Type::ULongTy, 0);
Chris Lattner3e88ef92003-10-03 19:34:51 +0000127 return NullULong;
128 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000129
Chris Lattner3e88ef92003-10-03 19:34:51 +0000130 case Type::FloatTyID: {
131 static Constant *NullFloat = ConstantFP::get(Type::FloatTy, 0);
132 return NullFloat;
133 }
134 case Type::DoubleTyID: {
135 static Constant *NullDouble = ConstantFP::get(Type::DoubleTy, 0);
136 return NullDouble;
137 }
Chris Lattnerb1585a92002-08-13 17:50:20 +0000138
Misha Brukmanb1c93172005-04-21 23:48:37 +0000139 case Type::PointerTyID:
Chris Lattnerb1585a92002-08-13 17:50:20 +0000140 return ConstantPointerNull::get(cast<PointerType>(Ty));
Chris Lattner3e88ef92003-10-03 19:34:51 +0000141
Chris Lattner9fba3da2004-02-15 05:53:04 +0000142 case Type::StructTyID:
143 case Type::ArrayTyID:
Brian Gaeke02209042004-08-20 06:00:58 +0000144 case Type::PackedTyID:
Chris Lattner9fba3da2004-02-15 05:53:04 +0000145 return ConstantAggregateZero::get(Ty);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000146 default:
Reid Spencercf394bf2004-07-04 11:51:24 +0000147 // Function, Label, or Opaque type?
148 assert(!"Cannot create a null constant of that type!");
Chris Lattnerb1585a92002-08-13 17:50:20 +0000149 return 0;
150 }
151}
152
153// Static constructor to create the maximum constant of an integral type...
154ConstantIntegral *ConstantIntegral::getMaxValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000155 switch (Ty->getTypeID()) {
Chris Lattnera84df0a22006-09-28 23:36:21 +0000156 case Type::BoolTyID: return ConstantBool::getTrue();
Chris Lattnerb1585a92002-08-13 17:50:20 +0000157 case Type::SByteTyID:
158 case Type::ShortTyID:
159 case Type::IntTyID:
160 case Type::LongTyID: {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000161 // Calculate 011111111111111...
Chris Lattnerb1585a92002-08-13 17:50:20 +0000162 unsigned TypeBits = Ty->getPrimitiveSize()*8;
163 int64_t Val = INT64_MAX; // All ones
164 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
Reid Spencere0fc4df2006-10-20 07:07:24 +0000165 return ConstantInt::get(Ty, Val);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000166 }
167
168 case Type::UByteTyID:
169 case Type::UShortTyID:
170 case Type::UIntTyID:
171 case Type::ULongTyID: return getAllOnesValue(Ty);
172
Chris Lattner31408f72002-08-14 17:12:13 +0000173 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000174 }
175}
176
177// Static constructor to create the minimum constant for an integral type...
178ConstantIntegral *ConstantIntegral::getMinValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000179 switch (Ty->getTypeID()) {
Chris Lattnera84df0a22006-09-28 23:36:21 +0000180 case Type::BoolTyID: return ConstantBool::getFalse();
Chris Lattnerb1585a92002-08-13 17:50:20 +0000181 case Type::SByteTyID:
182 case Type::ShortTyID:
183 case Type::IntTyID:
184 case Type::LongTyID: {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000185 // Calculate 1111111111000000000000
Chris Lattnerb1585a92002-08-13 17:50:20 +0000186 unsigned TypeBits = Ty->getPrimitiveSize()*8;
187 int64_t Val = -1; // All ones
188 Val <<= TypeBits-1; // Shift over to the right spot
Reid Spencere0fc4df2006-10-20 07:07:24 +0000189 return ConstantInt::get(Ty, Val);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000190 }
191
192 case Type::UByteTyID:
193 case Type::UShortTyID:
194 case Type::UIntTyID:
Reid Spencere0fc4df2006-10-20 07:07:24 +0000195 case Type::ULongTyID: return ConstantInt::get(Ty, 0);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000196
Chris Lattner31408f72002-08-14 17:12:13 +0000197 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000198 }
199}
200
201// Static constructor to create an integral constant with all bits set
202ConstantIntegral *ConstantIntegral::getAllOnesValue(const Type *Ty) {
Chris Lattner6b727592004-06-17 18:19:28 +0000203 switch (Ty->getTypeID()) {
Chris Lattnera84df0a22006-09-28 23:36:21 +0000204 case Type::BoolTyID: return ConstantBool::getTrue();
Chris Lattnerb1585a92002-08-13 17:50:20 +0000205 case Type::SByteTyID:
206 case Type::ShortTyID:
207 case Type::IntTyID:
Reid Spencere0fc4df2006-10-20 07:07:24 +0000208 case Type::LongTyID: return ConstantInt::get(Ty, -1);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000209
210 case Type::UByteTyID:
211 case Type::UShortTyID:
212 case Type::UIntTyID:
213 case Type::ULongTyID: {
214 // Calculate ~0 of the right type...
215 unsigned TypeBits = Ty->getPrimitiveSize()*8;
216 uint64_t Val = ~0ULL; // All ones
217 Val >>= 64-TypeBits; // Shift out unwanted 1 bits...
Reid Spencere0fc4df2006-10-20 07:07:24 +0000218 return ConstantInt::get(Ty, Val);
Chris Lattnerb1585a92002-08-13 17:50:20 +0000219 }
Chris Lattner31408f72002-08-14 17:12:13 +0000220 default: return 0;
Chris Lattnerb1585a92002-08-13 17:50:20 +0000221 }
222}
223
Chris Lattner2f7c9632001-06-06 20:29:01 +0000224//===----------------------------------------------------------------------===//
Chris Lattner3462ae32001-12-03 22:26:30 +0000225// ConstantXXX Classes
Chris Lattner2f7c9632001-06-06 20:29:01 +0000226//===----------------------------------------------------------------------===//
227
228//===----------------------------------------------------------------------===//
229// Normal Constructors
230
Chris Lattnere7e139e2005-09-27 06:09:08 +0000231ConstantIntegral::ConstantIntegral(const Type *Ty, ValueTy VT, uint64_t V)
Reid Spencere0fc4df2006-10-20 07:07:24 +0000232 : Constant(Ty, VT, 0, 0), Val(V) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000233}
Chris Lattner49d855c2001-09-07 16:46:31 +0000234
Chris Lattnere7e139e2005-09-27 06:09:08 +0000235ConstantBool::ConstantBool(bool V)
Reid Spencere0fc4df2006-10-20 07:07:24 +0000236 : ConstantIntegral(Type::BoolTy, ConstantBoolVal, uint64_t(V)) {
Chris Lattner265eb642004-06-21 12:12:12 +0000237}
238
Reid Spencere0fc4df2006-10-20 07:07:24 +0000239ConstantInt::ConstantInt(const Type *Ty, uint64_t V)
240 : ConstantIntegral(Ty, ConstantIntVal, V) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000241}
242
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000243ConstantFP::ConstantFP(const Type *Ty, double V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000244 : Constant(Ty, ConstantFPVal, 0, 0) {
Chris Lattner9655e542001-07-20 19:16:02 +0000245 assert(isValueValidForType(Ty, V) && "Value too large for type!");
Chris Lattner2f7c9632001-06-06 20:29:01 +0000246 Val = V;
247}
248
Chris Lattner3462ae32001-12-03 22:26:30 +0000249ConstantArray::ConstantArray(const ArrayType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000250 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000251 : Constant(T, ConstantArrayVal, new Use[V.size()], V.size()) {
Alkis Evlogimenos0507ffe2004-09-15 02:32:15 +0000252 assert(V.size() == T->getNumElements() &&
253 "Invalid initializer vector for constant array");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000254 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000255 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
256 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000257 Constant *C = *I;
258 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000259 (T->isAbstract() &&
Chris Lattner20a24452005-10-07 05:23:36 +0000260 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000261 "Initializer for array element doesn't match array element type!");
Chris Lattner20a24452005-10-07 05:23:36 +0000262 OL->init(C, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000263 }
264}
265
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000266ConstantArray::~ConstantArray() {
267 delete [] OperandList;
268}
269
Chris Lattner3462ae32001-12-03 22:26:30 +0000270ConstantStruct::ConstantStruct(const StructType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000271 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000272 : Constant(T, ConstantStructVal, new Use[V.size()], V.size()) {
Chris Lattnerac6db752004-02-09 04:37:31 +0000273 assert(V.size() == T->getNumElements() &&
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000274 "Invalid initializer vector for constant structure");
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000275 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000276 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
277 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000278 Constant *C = *I;
279 assert((C->getType() == T->getElementType(I-V.begin()) ||
Chris Lattner0144fad2005-10-03 21:56:24 +0000280 ((T->getElementType(I-V.begin())->isAbstract() ||
Chris Lattner20a24452005-10-07 05:23:36 +0000281 C->getType()->isAbstract()) &&
Chris Lattner0144fad2005-10-03 21:56:24 +0000282 T->getElementType(I-V.begin())->getTypeID() ==
Chris Lattner20a24452005-10-07 05:23:36 +0000283 C->getType()->getTypeID())) &&
Chris Lattner93c8f142003-06-02 17:42:47 +0000284 "Initializer for struct element doesn't match struct element type!");
Chris Lattner20a24452005-10-07 05:23:36 +0000285 OL->init(C, this);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000286 }
287}
288
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000289ConstantStruct::~ConstantStruct() {
290 delete [] OperandList;
291}
292
293
Brian Gaeke02209042004-08-20 06:00:58 +0000294ConstantPacked::ConstantPacked(const PackedType *T,
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000295 const std::vector<Constant*> &V)
Chris Lattnere7e139e2005-09-27 06:09:08 +0000296 : Constant(T, ConstantPackedVal, new Use[V.size()], V.size()) {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000297 Use *OL = OperandList;
Chris Lattner0144fad2005-10-03 21:56:24 +0000298 for (std::vector<Constant*>::const_iterator I = V.begin(), E = V.end();
299 I != E; ++I, ++OL) {
Chris Lattner20a24452005-10-07 05:23:36 +0000300 Constant *C = *I;
301 assert((C->getType() == T->getElementType() ||
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000302 (T->isAbstract() &&
Chris Lattner20a24452005-10-07 05:23:36 +0000303 C->getType()->getTypeID() == T->getElementType()->getTypeID())) &&
Alkis Evlogimenoscb031d92004-09-10 04:16:59 +0000304 "Initializer for packed element doesn't match packed element type!");
Chris Lattner20a24452005-10-07 05:23:36 +0000305 OL->init(C, this);
Brian Gaeke02209042004-08-20 06:00:58 +0000306 }
307}
308
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000309ConstantPacked::~ConstantPacked() {
310 delete [] OperandList;
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000311}
312
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000313/// UnaryConstantExpr - This class is private to Constants.cpp, and is used
314/// behind the scenes to implement unary constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000315namespace {
316class VISIBILITY_HIDDEN UnaryConstantExpr : public ConstantExpr {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000317 Use Op;
318public:
319 UnaryConstantExpr(unsigned Opcode, Constant *C, const Type *Ty)
320 : ConstantExpr(Ty, Opcode, &Op, 1), Op(C, this) {}
321};
Chris Lattner02157b02006-06-28 21:38:54 +0000322}
Chris Lattner6e415c02004-03-12 05:54:04 +0000323
Chris Lattner22ced562003-06-22 20:48:30 +0000324static bool isSetCC(unsigned Opcode) {
325 return Opcode == Instruction::SetEQ || Opcode == Instruction::SetNE ||
326 Opcode == Instruction::SetLT || Opcode == Instruction::SetGT ||
327 Opcode == Instruction::SetLE || Opcode == Instruction::SetGE;
328}
329
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000330/// BinaryConstantExpr - This class is private to Constants.cpp, and is used
331/// behind the scenes to implement binary constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000332namespace {
333class VISIBILITY_HIDDEN BinaryConstantExpr : public ConstantExpr {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000334 Use Ops[2];
335public:
336 BinaryConstantExpr(unsigned Opcode, Constant *C1, Constant *C2)
337 : ConstantExpr(isSetCC(Opcode) ? Type::BoolTy : C1->getType(),
338 Opcode, Ops, 2) {
339 Ops[0].init(C1, this);
340 Ops[1].init(C2, this);
341 }
342};
Chris Lattner02157b02006-06-28 21:38:54 +0000343}
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000344
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000345/// SelectConstantExpr - This class is private to Constants.cpp, and is used
346/// behind the scenes to implement select constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000347namespace {
348class VISIBILITY_HIDDEN SelectConstantExpr : public ConstantExpr {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000349 Use Ops[3];
350public:
351 SelectConstantExpr(Constant *C1, Constant *C2, Constant *C3)
352 : ConstantExpr(C2->getType(), Instruction::Select, Ops, 3) {
353 Ops[0].init(C1, this);
354 Ops[1].init(C2, this);
355 Ops[2].init(C3, this);
356 }
357};
Chris Lattner02157b02006-06-28 21:38:54 +0000358}
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000359
Robert Bocchinoca27f032006-01-17 20:07:22 +0000360/// ExtractElementConstantExpr - This class is private to
361/// Constants.cpp, and is used behind the scenes to implement
362/// extractelement constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000363namespace {
364class VISIBILITY_HIDDEN ExtractElementConstantExpr : public ConstantExpr {
Robert Bocchino23004482006-01-10 19:05:34 +0000365 Use Ops[2];
366public:
367 ExtractElementConstantExpr(Constant *C1, Constant *C2)
368 : ConstantExpr(cast<PackedType>(C1->getType())->getElementType(),
369 Instruction::ExtractElement, Ops, 2) {
370 Ops[0].init(C1, this);
371 Ops[1].init(C2, this);
372 }
373};
Chris Lattner02157b02006-06-28 21:38:54 +0000374}
Robert Bocchino23004482006-01-10 19:05:34 +0000375
Robert Bocchinoca27f032006-01-17 20:07:22 +0000376/// InsertElementConstantExpr - This class is private to
377/// Constants.cpp, and is used behind the scenes to implement
378/// insertelement constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000379namespace {
380class VISIBILITY_HIDDEN InsertElementConstantExpr : public ConstantExpr {
Robert Bocchinoca27f032006-01-17 20:07:22 +0000381 Use Ops[3];
382public:
383 InsertElementConstantExpr(Constant *C1, Constant *C2, Constant *C3)
384 : ConstantExpr(C1->getType(), Instruction::InsertElement,
385 Ops, 3) {
386 Ops[0].init(C1, this);
387 Ops[1].init(C2, this);
388 Ops[2].init(C3, this);
389 }
390};
Chris Lattner02157b02006-06-28 21:38:54 +0000391}
Robert Bocchinoca27f032006-01-17 20:07:22 +0000392
Chris Lattnerbbe0a422006-04-08 01:18:18 +0000393/// ShuffleVectorConstantExpr - This class is private to
394/// Constants.cpp, and is used behind the scenes to implement
395/// shufflevector constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000396namespace {
397class VISIBILITY_HIDDEN ShuffleVectorConstantExpr : public ConstantExpr {
Chris Lattnerbbe0a422006-04-08 01:18:18 +0000398 Use Ops[3];
399public:
400 ShuffleVectorConstantExpr(Constant *C1, Constant *C2, Constant *C3)
401 : ConstantExpr(C1->getType(), Instruction::ShuffleVector,
402 Ops, 3) {
403 Ops[0].init(C1, this);
404 Ops[1].init(C2, this);
405 Ops[2].init(C3, this);
406 }
407};
Chris Lattner02157b02006-06-28 21:38:54 +0000408}
Chris Lattnerbbe0a422006-04-08 01:18:18 +0000409
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000410/// GetElementPtrConstantExpr - This class is private to Constants.cpp, and is
411/// used behind the scenes to implement getelementpr constant exprs.
Chris Lattner02157b02006-06-28 21:38:54 +0000412namespace {
413struct VISIBILITY_HIDDEN GetElementPtrConstantExpr : public ConstantExpr {
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000414 GetElementPtrConstantExpr(Constant *C, const std::vector<Constant*> &IdxList,
415 const Type *DestTy)
416 : ConstantExpr(DestTy, Instruction::GetElementPtr,
417 new Use[IdxList.size()+1], IdxList.size()+1) {
418 OperandList[0].init(C, this);
419 for (unsigned i = 0, E = IdxList.size(); i != E; ++i)
420 OperandList[i+1].init(IdxList[i], this);
421 }
422 ~GetElementPtrConstantExpr() {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000423 delete [] OperandList;
Chris Lattnerd0df99c2005-01-29 00:34:39 +0000424 }
425};
Chris Lattner02157b02006-06-28 21:38:54 +0000426}
Vikram S. Adve4e537b22002-07-14 23:13:17 +0000427
Chris Lattner817175f2004-03-29 02:37:53 +0000428/// ConstantExpr::get* - Return some common constants without having to
429/// specify the full Instruction::OPCODE identifier.
430///
431Constant *ConstantExpr::getNeg(Constant *C) {
Chris Lattner3cdc27c2004-03-29 19:51:24 +0000432 if (!C->getType()->isFloatingPoint())
433 return get(Instruction::Sub, getNullValue(C->getType()), C);
434 else
435 return get(Instruction::Sub, ConstantFP::get(C->getType(), -0.0), C);
Chris Lattner817175f2004-03-29 02:37:53 +0000436}
437Constant *ConstantExpr::getNot(Constant *C) {
438 assert(isa<ConstantIntegral>(C) && "Cannot NOT a nonintegral type!");
439 return get(Instruction::Xor, C,
440 ConstantIntegral::getAllOnesValue(C->getType()));
441}
442Constant *ConstantExpr::getAdd(Constant *C1, Constant *C2) {
443 return get(Instruction::Add, C1, C2);
444}
445Constant *ConstantExpr::getSub(Constant *C1, Constant *C2) {
446 return get(Instruction::Sub, C1, C2);
447}
448Constant *ConstantExpr::getMul(Constant *C1, Constant *C2) {
449 return get(Instruction::Mul, C1, C2);
450}
Reid Spencer7e80b0b2006-10-26 06:15:43 +0000451Constant *ConstantExpr::getUDiv(Constant *C1, Constant *C2) {
452 return get(Instruction::UDiv, C1, C2);
453}
454Constant *ConstantExpr::getSDiv(Constant *C1, Constant *C2) {
455 return get(Instruction::SDiv, C1, C2);
456}
457Constant *ConstantExpr::getFDiv(Constant *C1, Constant *C2) {
458 return get(Instruction::FDiv, C1, C2);
Chris Lattner817175f2004-03-29 02:37:53 +0000459}
460Constant *ConstantExpr::getRem(Constant *C1, Constant *C2) {
461 return get(Instruction::Rem, C1, C2);
462}
463Constant *ConstantExpr::getAnd(Constant *C1, Constant *C2) {
464 return get(Instruction::And, C1, C2);
465}
466Constant *ConstantExpr::getOr(Constant *C1, Constant *C2) {
467 return get(Instruction::Or, C1, C2);
468}
469Constant *ConstantExpr::getXor(Constant *C1, Constant *C2) {
470 return get(Instruction::Xor, C1, C2);
471}
472Constant *ConstantExpr::getSetEQ(Constant *C1, Constant *C2) {
473 return get(Instruction::SetEQ, C1, C2);
474}
475Constant *ConstantExpr::getSetNE(Constant *C1, Constant *C2) {
476 return get(Instruction::SetNE, C1, C2);
477}
478Constant *ConstantExpr::getSetLT(Constant *C1, Constant *C2) {
479 return get(Instruction::SetLT, C1, C2);
480}
481Constant *ConstantExpr::getSetGT(Constant *C1, Constant *C2) {
482 return get(Instruction::SetGT, C1, C2);
483}
484Constant *ConstantExpr::getSetLE(Constant *C1, Constant *C2) {
485 return get(Instruction::SetLE, C1, C2);
486}
487Constant *ConstantExpr::getSetGE(Constant *C1, Constant *C2) {
488 return get(Instruction::SetGE, C1, C2);
489}
490Constant *ConstantExpr::getShl(Constant *C1, Constant *C2) {
491 return get(Instruction::Shl, C1, C2);
492}
493Constant *ConstantExpr::getShr(Constant *C1, Constant *C2) {
494 return get(Instruction::Shr, C1, C2);
495}
496
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000497Constant *ConstantExpr::getUShr(Constant *C1, Constant *C2) {
498 if (C1->getType()->isUnsigned()) return getShr(C1, C2);
499 return getCast(getShr(getCast(C1,
500 C1->getType()->getUnsignedVersion()), C2), C1->getType());
501}
Chris Lattner817175f2004-03-29 02:37:53 +0000502
Chris Lattnerdb8bdba2004-05-25 05:32:43 +0000503Constant *ConstantExpr::getSShr(Constant *C1, Constant *C2) {
504 if (C1->getType()->isSigned()) return getShr(C1, C2);
505 return getCast(getShr(getCast(C1,
506 C1->getType()->getSignedVersion()), C2), C1->getType());
507}
Chris Lattner60e0dd72001-10-03 06:12:09 +0000508
Chris Lattner7c1018a2006-07-14 19:37:40 +0000509/// getWithOperandReplaced - Return a constant expression identical to this
510/// one, but with the specified operand set to the specified value.
511Constant *ConstantExpr::getWithOperandReplaced(unsigned OpNo,
512 Constant *Op) const {
513 assert(OpNo < getNumOperands() && "Operand num is out of range!");
514 assert(Op->getType() == getOperand(OpNo)->getType() &&
515 "Replacing operand with value of different type!");
Chris Lattner227816342006-07-14 22:20:01 +0000516 if (getOperand(OpNo) == Op)
517 return const_cast<ConstantExpr*>(this);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000518
Chris Lattner227816342006-07-14 22:20:01 +0000519 Constant *Op0, *Op1, *Op2;
Chris Lattner7c1018a2006-07-14 19:37:40 +0000520 switch (getOpcode()) {
521 case Instruction::Cast:
522 return ConstantExpr::getCast(Op, getType());
Chris Lattner227816342006-07-14 22:20:01 +0000523 case Instruction::Select:
524 Op0 = (OpNo == 0) ? Op : getOperand(0);
525 Op1 = (OpNo == 1) ? Op : getOperand(1);
526 Op2 = (OpNo == 2) ? Op : getOperand(2);
527 return ConstantExpr::getSelect(Op0, Op1, Op2);
528 case Instruction::InsertElement:
529 Op0 = (OpNo == 0) ? Op : getOperand(0);
530 Op1 = (OpNo == 1) ? Op : getOperand(1);
531 Op2 = (OpNo == 2) ? Op : getOperand(2);
532 return ConstantExpr::getInsertElement(Op0, Op1, Op2);
533 case Instruction::ExtractElement:
534 Op0 = (OpNo == 0) ? Op : getOperand(0);
535 Op1 = (OpNo == 1) ? Op : getOperand(1);
536 return ConstantExpr::getExtractElement(Op0, Op1);
537 case Instruction::ShuffleVector:
538 Op0 = (OpNo == 0) ? Op : getOperand(0);
539 Op1 = (OpNo == 1) ? Op : getOperand(1);
540 Op2 = (OpNo == 2) ? Op : getOperand(2);
541 return ConstantExpr::getShuffleVector(Op0, Op1, Op2);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000542 case Instruction::GetElementPtr: {
543 std::vector<Constant*> Ops;
544 for (unsigned i = 1, e = getNumOperands(); i != e; ++i)
545 Ops.push_back(getOperand(i));
546 if (OpNo == 0)
547 return ConstantExpr::getGetElementPtr(Op, Ops);
548 Ops[OpNo-1] = Op;
549 return ConstantExpr::getGetElementPtr(getOperand(0), Ops);
550 }
Chris Lattner7c1018a2006-07-14 19:37:40 +0000551 default:
552 assert(getNumOperands() == 2 && "Must be binary operator?");
Chris Lattner227816342006-07-14 22:20:01 +0000553 Op0 = (OpNo == 0) ? Op : getOperand(0);
554 Op1 = (OpNo == 1) ? Op : getOperand(1);
555 return ConstantExpr::get(getOpcode(), Op0, Op1);
556 }
557}
558
559/// getWithOperands - This returns the current constant expression with the
560/// operands replaced with the specified values. The specified operands must
561/// match count and type with the existing ones.
562Constant *ConstantExpr::
563getWithOperands(const std::vector<Constant*> &Ops) const {
564 assert(Ops.size() == getNumOperands() && "Operand count mismatch!");
565 bool AnyChange = false;
566 for (unsigned i = 0, e = Ops.size(); i != e; ++i) {
567 assert(Ops[i]->getType() == getOperand(i)->getType() &&
568 "Operand type mismatch!");
569 AnyChange |= Ops[i] != getOperand(i);
570 }
571 if (!AnyChange) // No operands changed, return self.
572 return const_cast<ConstantExpr*>(this);
573
574 switch (getOpcode()) {
575 case Instruction::Cast:
576 return ConstantExpr::getCast(Ops[0], getType());
577 case Instruction::Select:
578 return ConstantExpr::getSelect(Ops[0], Ops[1], Ops[2]);
579 case Instruction::InsertElement:
580 return ConstantExpr::getInsertElement(Ops[0], Ops[1], Ops[2]);
581 case Instruction::ExtractElement:
582 return ConstantExpr::getExtractElement(Ops[0], Ops[1]);
583 case Instruction::ShuffleVector:
584 return ConstantExpr::getShuffleVector(Ops[0], Ops[1], Ops[2]);
585 case Instruction::GetElementPtr: {
586 std::vector<Constant*> ActualOps(Ops.begin()+1, Ops.end());
587 return ConstantExpr::getGetElementPtr(Ops[0], ActualOps);
588 }
589 default:
590 assert(getNumOperands() == 2 && "Must be binary operator?");
591 return ConstantExpr::get(getOpcode(), Ops[0], Ops[1]);
Chris Lattner7c1018a2006-07-14 19:37:40 +0000592 }
593}
594
Chris Lattner2f7c9632001-06-06 20:29:01 +0000595
596//===----------------------------------------------------------------------===//
Chris Lattner2f7c9632001-06-06 20:29:01 +0000597// isValueValidForType implementations
598
Reid Spencere0fc4df2006-10-20 07:07:24 +0000599bool ConstantInt::isValueValidForType(const Type *Ty, int64_t Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000600 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000601 default:
602 return false; // These can't be represented as integers!!!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000603 // Signed types...
604 case Type::SByteTyID:
605 return (Val <= INT8_MAX && Val >= INT8_MIN);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000606 case Type::UByteTyID:
607 return (Val >= 0) && (Val <= UINT8_MAX);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000608 case Type::ShortTyID:
609 return (Val <= INT16_MAX && Val >= INT16_MIN);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000610 case Type::UShortTyID:
611 return (Val >= 0) && (Val <= UINT16_MAX);
Chris Lattner2f7c9632001-06-06 20:29:01 +0000612 case Type::IntTyID:
Chris Lattner74248512004-06-08 23:21:39 +0000613 return (Val <= int(INT32_MAX) && Val >= int(INT32_MIN));
Chris Lattner2f7c9632001-06-06 20:29:01 +0000614 case Type::UIntTyID:
Reid Spencere0fc4df2006-10-20 07:07:24 +0000615 return (Val >= 0) && (Val <= UINT32_MAX);
616 case Type::LongTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000617 case Type::ULongTyID:
Reid Spencere0fc4df2006-10-20 07:07:24 +0000618 return true; // always true, has to fit in largest type
Chris Lattner2f7c9632001-06-06 20:29:01 +0000619 }
Chris Lattner2f7c9632001-06-06 20:29:01 +0000620}
621
Chris Lattner3462ae32001-12-03 22:26:30 +0000622bool ConstantFP::isValueValidForType(const Type *Ty, double Val) {
Chris Lattner6b727592004-06-17 18:19:28 +0000623 switch (Ty->getTypeID()) {
Chris Lattner2f7c9632001-06-06 20:29:01 +0000624 default:
625 return false; // These can't be represented as floating point!
626
Reid Spencerb95f8ab2004-12-07 07:38:08 +0000627 // TODO: Figure out how to test if a double can be cast to a float!
Chris Lattner2f7c9632001-06-06 20:29:01 +0000628 case Type::FloatTyID:
Chris Lattner2f7c9632001-06-06 20:29:01 +0000629 case Type::DoubleTyID:
630 return true; // This is the largest type...
631 }
Chris Lattneraa2372562006-05-24 17:04:05 +0000632}
Chris Lattner9655e542001-07-20 19:16:02 +0000633
Chris Lattner49d855c2001-09-07 16:46:31 +0000634//===----------------------------------------------------------------------===//
Chris Lattner49d855c2001-09-07 16:46:31 +0000635// Factory Function Implementation
636
Chris Lattner98fa07b2003-05-23 20:03:32 +0000637// ConstantCreator - A class that is used to create constants by
638// ValueMap*. This class should be partially specialized if there is
639// something strange that needs to be done to interface to the ctor for the
640// constant.
641//
Chris Lattner189d19f2003-11-21 20:23:48 +0000642namespace llvm {
643 template<class ConstantClass, class TypeClass, class ValType>
Chris Lattner02157b02006-06-28 21:38:54 +0000644 struct VISIBILITY_HIDDEN ConstantCreator {
Chris Lattner189d19f2003-11-21 20:23:48 +0000645 static ConstantClass *create(const TypeClass *Ty, const ValType &V) {
646 return new ConstantClass(Ty, V);
647 }
648 };
Misha Brukmanb1c93172005-04-21 23:48:37 +0000649
Chris Lattner189d19f2003-11-21 20:23:48 +0000650 template<class ConstantClass, class TypeClass>
Chris Lattner02157b02006-06-28 21:38:54 +0000651 struct VISIBILITY_HIDDEN ConvertConstantType {
Chris Lattner189d19f2003-11-21 20:23:48 +0000652 static void convert(ConstantClass *OldC, const TypeClass *NewTy) {
653 assert(0 && "This type cannot be converted!\n");
654 abort();
655 }
656 };
Chris Lattnerb50d1352003-10-05 00:17:43 +0000657
Chris Lattner935aa922005-10-04 17:48:46 +0000658 template<class ValType, class TypeClass, class ConstantClass,
659 bool HasLargeKey = false /*true for arrays and structs*/ >
Chris Lattner02157b02006-06-28 21:38:54 +0000660 class VISIBILITY_HIDDEN ValueMap : public AbstractTypeUser {
Chris Lattnerb64419a2005-10-03 22:51:37 +0000661 public:
Jim Laskeyc03caef2006-07-17 17:38:29 +0000662 typedef std::pair<const Type*, ValType> MapKey;
663 typedef std::map<MapKey, Constant *> MapTy;
664 typedef std::map<Constant*, typename MapTy::iterator> InverseMapTy;
665 typedef std::map<const Type*, typename MapTy::iterator> AbstractTypeMapTy;
Chris Lattnerb64419a2005-10-03 22:51:37 +0000666 private:
Chris Lattner5bbf60a52005-10-04 16:52:46 +0000667 /// Map - This is the main map from the element descriptor to the Constants.
668 /// This is the primary way we avoid creating two of the same shape
669 /// constant.
Chris Lattnerb50d1352003-10-05 00:17:43 +0000670 MapTy Map;
Chris Lattner935aa922005-10-04 17:48:46 +0000671
672 /// InverseMap - If "HasLargeKey" is true, this contains an inverse mapping
673 /// from the constants to their element in Map. This is important for
674 /// removal of constants from the array, which would otherwise have to scan
675 /// through the map with very large keys.
Jim Laskeyc03caef2006-07-17 17:38:29 +0000676 InverseMapTy InverseMap;
Chris Lattnerb50d1352003-10-05 00:17:43 +0000677
Jim Laskeyc03caef2006-07-17 17:38:29 +0000678 /// AbstractTypeMap - Map for abstract type constants.
679 ///
Chris Lattnerb50d1352003-10-05 00:17:43 +0000680 AbstractTypeMapTy AbstractTypeMap;
Chris Lattner99a669b2004-11-19 16:39:44 +0000681
Chris Lattner99a669b2004-11-19 16:39:44 +0000682 private:
683 void clear(std::vector<Constant *> &Constants) {
Jim Laskeyc03caef2006-07-17 17:38:29 +0000684 for(typename MapTy::iterator I = Map.begin(); I != Map.end(); ++I)
Chris Lattner99a669b2004-11-19 16:39:44 +0000685 Constants.push_back(I->second);
686 Map.clear();
687 AbstractTypeMap.clear();
Chris Lattner935aa922005-10-04 17:48:46 +0000688 InverseMap.clear();
Chris Lattner99a669b2004-11-19 16:39:44 +0000689 }
690
Chris Lattner98fa07b2003-05-23 20:03:32 +0000691 public:
Jim Laskeyc03caef2006-07-17 17:38:29 +0000692 typename MapTy::iterator map_end() { return Map.end(); }
Chris Lattnerb64419a2005-10-03 22:51:37 +0000693
694 /// InsertOrGetItem - Return an iterator for the specified element.
695 /// If the element exists in the map, the returned iterator points to the
696 /// entry and Exists=true. If not, the iterator points to the newly
697 /// inserted entry and returns Exists=false. Newly inserted entries have
698 /// I->second == 0, and should be filled in.
Jim Laskeyc03caef2006-07-17 17:38:29 +0000699 typename MapTy::iterator InsertOrGetItem(std::pair<MapKey, Constant *>
700 &InsertVal,
Chris Lattnerb64419a2005-10-03 22:51:37 +0000701 bool &Exists) {
Jim Laskeyc03caef2006-07-17 17:38:29 +0000702 std::pair<typename MapTy::iterator, bool> IP = Map.insert(InsertVal);
Chris Lattnerb64419a2005-10-03 22:51:37 +0000703 Exists = !IP.second;
704 return IP.first;
705 }
Chris Lattner5bbf60a52005-10-04 16:52:46 +0000706
Chris Lattner935aa922005-10-04 17:48:46 +0000707private:
Jim Laskeyc03caef2006-07-17 17:38:29 +0000708 typename MapTy::iterator FindExistingElement(ConstantClass *CP) {
Chris Lattner935aa922005-10-04 17:48:46 +0000709 if (HasLargeKey) {
Jim Laskeyc03caef2006-07-17 17:38:29 +0000710 typename InverseMapTy::iterator IMI = InverseMap.find(CP);
Chris Lattner935aa922005-10-04 17:48:46 +0000711 assert(IMI != InverseMap.end() && IMI->second != Map.end() &&
712 IMI->second->second == CP &&
713 "InverseMap corrupt!");
714 return IMI->second;
715 }
716
Jim Laskeyc03caef2006-07-17 17:38:29 +0000717 typename MapTy::iterator I =
Chris Lattner935aa922005-10-04 17:48:46 +0000718 Map.find(MapKey((TypeClass*)CP->getRawType(), getValType(CP)));
Chris Lattner5bbf60a52005-10-04 16:52:46 +0000719 if (I == Map.end() || I->second != CP) {
720 // FIXME: This should not use a linear scan. If this gets to be a
721 // performance problem, someone should look at this.
722 for (I = Map.begin(); I != Map.end() && I->second != CP; ++I)
723 /* empty */;
724 }
Chris Lattner935aa922005-10-04 17:48:46 +0000725 return I;
726 }
727public:
728
Chris Lattnerb64419a2005-10-03 22:51:37 +0000729 /// getOrCreate - Return the specified constant from the map, creating it if
730 /// necessary.
Chris Lattner98fa07b2003-05-23 20:03:32 +0000731 ConstantClass *getOrCreate(const TypeClass *Ty, const ValType &V) {
Chris Lattnerb50d1352003-10-05 00:17:43 +0000732 MapKey Lookup(Ty, V);
Jim Laskeyc03caef2006-07-17 17:38:29 +0000733 typename MapTy::iterator I = Map.lower_bound(Lookup);
Reid Spencere0fc4df2006-10-20 07:07:24 +0000734 // Is it in the map?
Chris Lattner98fa07b2003-05-23 20:03:32 +0000735 if (I != Map.end() && I->first == Lookup)
Reid Spencere0fc4df2006-10-20 07:07:24 +0000736 return static_cast<ConstantClass *>(I->second);
Chris Lattner98fa07b2003-05-23 20:03:32 +0000737
738 // If no preexisting value, create one now...
739 ConstantClass *Result =
740 ConstantCreator<ConstantClass,TypeClass,ValType>::create(Ty, V);
741
Chris Lattnerb50d1352003-10-05 00:17:43 +0000742 /// FIXME: why does this assert fail when loading 176.gcc?
743 //assert(Result->getType() == Ty && "Type specified is not correct!");
744 I = Map.insert(I, std::make_pair(MapKey(Ty, V), Result));
745
Chris Lattner935aa922005-10-04 17:48:46 +0000746 if (HasLargeKey) // Remember the reverse mapping if needed.
747 InverseMap.insert(std::make_pair(Result, I));
748
Chris Lattnerb50d1352003-10-05 00:17:43 +0000749 // If the type of the constant is abstract, make sure that an entry exists
750 // for it in the AbstractTypeMap.
751 if (Ty->isAbstract()) {
752 typename AbstractTypeMapTy::iterator TI =
753 AbstractTypeMap.lower_bound(Ty);
754
755 if (TI == AbstractTypeMap.end() || TI->first != Ty) {
756 // Add ourselves to the ATU list of the type.
757 cast<DerivedType>(Ty)->addAbstractTypeUser(this);
758
759 AbstractTypeMap.insert(TI, std::make_pair(Ty, I));
760 }
761 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000762 return Result;
763 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000764
Chris Lattner98fa07b2003-05-23 20:03:32 +0000765 void remove(ConstantClass *CP) {
Jim Laskeyc03caef2006-07-17 17:38:29 +0000766 typename MapTy::iterator I = FindExistingElement(CP);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000767 assert(I != Map.end() && "Constant not found in constant table!");
Chris Lattner3e650af2004-08-04 04:48:01 +0000768 assert(I->second == CP && "Didn't find correct element?");
Chris Lattnerb50d1352003-10-05 00:17:43 +0000769
Chris Lattner935aa922005-10-04 17:48:46 +0000770 if (HasLargeKey) // Remember the reverse mapping if needed.
771 InverseMap.erase(CP);
772
Chris Lattnerb50d1352003-10-05 00:17:43 +0000773 // Now that we found the entry, make sure this isn't the entry that
774 // the AbstractTypeMap points to.
Jim Laskeyc03caef2006-07-17 17:38:29 +0000775 const TypeClass *Ty = static_cast<const TypeClass *>(I->first.first);
Chris Lattnerb50d1352003-10-05 00:17:43 +0000776 if (Ty->isAbstract()) {
777 assert(AbstractTypeMap.count(Ty) &&
778 "Abstract type not in AbstractTypeMap?");
Jim Laskeyc03caef2006-07-17 17:38:29 +0000779 typename MapTy::iterator &ATMEntryIt = AbstractTypeMap[Ty];
Chris Lattnerb50d1352003-10-05 00:17:43 +0000780 if (ATMEntryIt == I) {
781 // Yes, we are removing the representative entry for this type.
782 // See if there are any other entries of the same type.
Jim Laskeyc03caef2006-07-17 17:38:29 +0000783 typename MapTy::iterator TmpIt = ATMEntryIt;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000784
Chris Lattnerb50d1352003-10-05 00:17:43 +0000785 // First check the entry before this one...
786 if (TmpIt != Map.begin()) {
787 --TmpIt;
788 if (TmpIt->first.first != Ty) // Not the same type, move back...
789 ++TmpIt;
790 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000791
Chris Lattnerb50d1352003-10-05 00:17:43 +0000792 // If we didn't find the same type, try to move forward...
793 if (TmpIt == ATMEntryIt) {
794 ++TmpIt;
795 if (TmpIt == Map.end() || TmpIt->first.first != Ty)
796 --TmpIt; // No entry afterwards with the same type
797 }
798
799 // If there is another entry in the map of the same abstract type,
800 // update the AbstractTypeMap entry now.
801 if (TmpIt != ATMEntryIt) {
802 ATMEntryIt = TmpIt;
803 } else {
804 // Otherwise, we are removing the last instance of this type
805 // from the table. Remove from the ATM, and from user list.
806 cast<DerivedType>(Ty)->removeAbstractTypeUser(this);
807 AbstractTypeMap.erase(Ty);
808 }
Chris Lattner98fa07b2003-05-23 20:03:32 +0000809 }
Chris Lattnerb50d1352003-10-05 00:17:43 +0000810 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000811
Chris Lattnerb50d1352003-10-05 00:17:43 +0000812 Map.erase(I);
813 }
814
Chris Lattner3b793c62005-10-04 21:35:50 +0000815
816 /// MoveConstantToNewSlot - If we are about to change C to be the element
817 /// specified by I, update our internal data structures to reflect this
818 /// fact.
Jim Laskeyc03caef2006-07-17 17:38:29 +0000819 void MoveConstantToNewSlot(ConstantClass *C, typename MapTy::iterator I) {
Chris Lattner3b793c62005-10-04 21:35:50 +0000820 // First, remove the old location of the specified constant in the map.
Jim Laskeyc03caef2006-07-17 17:38:29 +0000821 typename MapTy::iterator OldI = FindExistingElement(C);
Chris Lattner3b793c62005-10-04 21:35:50 +0000822 assert(OldI != Map.end() && "Constant not found in constant table!");
823 assert(OldI->second == C && "Didn't find correct element?");
824
825 // If this constant is the representative element for its abstract type,
826 // update the AbstractTypeMap so that the representative element is I.
827 if (C->getType()->isAbstract()) {
828 typename AbstractTypeMapTy::iterator ATI =
829 AbstractTypeMap.find(C->getType());
830 assert(ATI != AbstractTypeMap.end() &&
831 "Abstract type not in AbstractTypeMap?");
832 if (ATI->second == OldI)
833 ATI->second = I;
834 }
835
836 // Remove the old entry from the map.
837 Map.erase(OldI);
838
839 // Update the inverse map so that we know that this constant is now
840 // located at descriptor I.
841 if (HasLargeKey) {
842 assert(I->second == C && "Bad inversemap entry!");
843 InverseMap[C] = I;
844 }
845 }
846
Chris Lattnerb50d1352003-10-05 00:17:43 +0000847 void refineAbstractType(const DerivedType *OldTy, const Type *NewTy) {
Misha Brukmanb1c93172005-04-21 23:48:37 +0000848 typename AbstractTypeMapTy::iterator I =
Jim Laskeyc03caef2006-07-17 17:38:29 +0000849 AbstractTypeMap.find(cast<Type>(OldTy));
Chris Lattnerb50d1352003-10-05 00:17:43 +0000850
851 assert(I != AbstractTypeMap.end() &&
852 "Abstract type not in AbstractTypeMap?");
853
854 // Convert a constant at a time until the last one is gone. The last one
855 // leaving will remove() itself, causing the AbstractTypeMapEntry to be
856 // eliminated eventually.
857 do {
858 ConvertConstantType<ConstantClass,
Jim Laskeyc03caef2006-07-17 17:38:29 +0000859 TypeClass>::convert(
860 static_cast<ConstantClass *>(I->second->second),
Chris Lattnerb50d1352003-10-05 00:17:43 +0000861 cast<TypeClass>(NewTy));
862
Jim Laskeyc03caef2006-07-17 17:38:29 +0000863 I = AbstractTypeMap.find(cast<Type>(OldTy));
Chris Lattnerb50d1352003-10-05 00:17:43 +0000864 } while (I != AbstractTypeMap.end());
865 }
866
867 // If the type became concrete without being refined to any other existing
868 // type, we just remove ourselves from the ATU list.
869 void typeBecameConcrete(const DerivedType *AbsTy) {
870 AbsTy->removeAbstractTypeUser(this);
871 }
872
873 void dump() const {
874 std::cerr << "Constant.cpp: ValueMap\n";
Chris Lattner98fa07b2003-05-23 20:03:32 +0000875 }
876 };
877}
878
Chris Lattnera84df0a22006-09-28 23:36:21 +0000879
880//---- ConstantBool::get*() implementation.
881
882ConstantBool *ConstantBool::getTrue() {
883 static ConstantBool *T = 0;
884 if (T) return T;
885 return T = new ConstantBool(true);
886}
887ConstantBool *ConstantBool::getFalse() {
888 static ConstantBool *F = 0;
889 if (F) return F;
890 return F = new ConstantBool(false);
891}
892
Reid Spencere0fc4df2006-10-20 07:07:24 +0000893//---- ConstantInt::get() implementations...
Chris Lattner49d855c2001-09-07 16:46:31 +0000894//
Reid Spencere0fc4df2006-10-20 07:07:24 +0000895static ManagedStatic<ValueMap<uint64_t, Type, ConstantInt> > IntConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000896
Reid Spencere0fc4df2006-10-20 07:07:24 +0000897// Get a ConstantInt from an int64_t. Note here that we canoncialize the value
898// to a uint64_t value that has been zero extended down to the size of the
899// integer type of the ConstantInt. This allows the getZExtValue method to
900// just return the stored value while getSExtValue has to convert back to sign
901// extended. getZExtValue is more common in LLVM than getSExtValue().
902ConstantInt *ConstantInt::get(const Type *Ty, int64_t V) {
903 unsigned Size = Ty->getPrimitiveSizeInBits();
904 uint64_t ZeroExtendedCanonicalization = V & (~uint64_t(0UL) >> (64-Size));
905 return IntConstants->getOrCreate(Ty, ZeroExtendedCanonicalization );
Chris Lattner49d855c2001-09-07 16:46:31 +0000906}
907
Chris Lattner3462ae32001-12-03 22:26:30 +0000908//---- ConstantFP::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000909//
Chris Lattnerac80ea42004-02-01 22:49:04 +0000910namespace llvm {
911 template<>
912 struct ConstantCreator<ConstantFP, Type, uint64_t> {
913 static ConstantFP *create(const Type *Ty, uint64_t V) {
914 assert(Ty == Type::DoubleTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000915 return new ConstantFP(Ty, BitsToDouble(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000916 }
917 };
918 template<>
919 struct ConstantCreator<ConstantFP, Type, uint32_t> {
920 static ConstantFP *create(const Type *Ty, uint32_t V) {
921 assert(Ty == Type::FloatTy);
Jim Laskeyb74c6662005-08-17 19:34:49 +0000922 return new ConstantFP(Ty, BitsToFloat(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000923 }
924 };
925}
926
Chris Lattner69edc982006-09-28 00:35:06 +0000927static ManagedStatic<ValueMap<uint64_t, Type, ConstantFP> > DoubleConstants;
928static ManagedStatic<ValueMap<uint32_t, Type, ConstantFP> > FloatConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +0000929
Jim Laskey8ad8f712005-08-17 20:06:22 +0000930bool ConstantFP::isNullValue() const {
931 return DoubleToBits(Val) == 0;
932}
933
934bool ConstantFP::isExactlyValue(double V) const {
935 return DoubleToBits(V) == DoubleToBits(Val);
936}
937
938
Chris Lattner3462ae32001-12-03 22:26:30 +0000939ConstantFP *ConstantFP::get(const Type *Ty, double V) {
Chris Lattner241ed4c2004-01-23 00:55:21 +0000940 if (Ty == Type::FloatTy) {
941 // Force the value through memory to normalize it.
Chris Lattner69edc982006-09-28 00:35:06 +0000942 return FloatConstants->getOrCreate(Ty, FloatToBits(V));
Chris Lattnerac80ea42004-02-01 22:49:04 +0000943 } else {
944 assert(Ty == Type::DoubleTy);
Chris Lattner69edc982006-09-28 00:35:06 +0000945 return DoubleConstants->getOrCreate(Ty, DoubleToBits(V));
Chris Lattner241ed4c2004-01-23 00:55:21 +0000946 }
Chris Lattner49d855c2001-09-07 16:46:31 +0000947}
948
Chris Lattner9fba3da2004-02-15 05:53:04 +0000949//---- ConstantAggregateZero::get() implementation...
950//
951namespace llvm {
952 // ConstantAggregateZero does not take extra "value" argument...
953 template<class ValType>
954 struct ConstantCreator<ConstantAggregateZero, Type, ValType> {
955 static ConstantAggregateZero *create(const Type *Ty, const ValType &V){
956 return new ConstantAggregateZero(Ty);
957 }
958 };
959
960 template<>
961 struct ConvertConstantType<ConstantAggregateZero, Type> {
962 static void convert(ConstantAggregateZero *OldC, const Type *NewTy) {
963 // Make everyone now use a constant of the new type...
964 Constant *New = ConstantAggregateZero::get(NewTy);
965 assert(New != OldC && "Didn't replace constant??");
966 OldC->uncheckedReplaceAllUsesWith(New);
967 OldC->destroyConstant(); // This constant is now dead, destroy it.
968 }
969 };
970}
971
Chris Lattner69edc982006-09-28 00:35:06 +0000972static ManagedStatic<ValueMap<char, Type,
973 ConstantAggregateZero> > AggZeroConstants;
Chris Lattner9fba3da2004-02-15 05:53:04 +0000974
Chris Lattner3e650af2004-08-04 04:48:01 +0000975static char getValType(ConstantAggregateZero *CPZ) { return 0; }
976
Chris Lattner9fba3da2004-02-15 05:53:04 +0000977Constant *ConstantAggregateZero::get(const Type *Ty) {
Chris Lattnerbfd0b6d2006-06-10 04:16:23 +0000978 assert((isa<StructType>(Ty) || isa<ArrayType>(Ty) || isa<PackedType>(Ty)) &&
979 "Cannot create an aggregate zero of non-aggregate type!");
Chris Lattner69edc982006-09-28 00:35:06 +0000980 return AggZeroConstants->getOrCreate(Ty, 0);
Chris Lattner9fba3da2004-02-15 05:53:04 +0000981}
982
983// destroyConstant - Remove the constant from the constant table...
984//
985void ConstantAggregateZero::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +0000986 AggZeroConstants->remove(this);
Chris Lattner9fba3da2004-02-15 05:53:04 +0000987 destroyConstantImpl();
988}
989
Chris Lattner3462ae32001-12-03 22:26:30 +0000990//---- ConstantArray::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +0000991//
Chris Lattner189d19f2003-11-21 20:23:48 +0000992namespace llvm {
993 template<>
994 struct ConvertConstantType<ConstantArray, ArrayType> {
995 static void convert(ConstantArray *OldC, const ArrayType *NewTy) {
996 // Make everyone now use a constant of the new type...
997 std::vector<Constant*> C;
998 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
999 C.push_back(cast<Constant>(OldC->getOperand(i)));
1000 Constant *New = ConstantArray::get(NewTy, C);
1001 assert(New != OldC && "Didn't replace constant??");
1002 OldC->uncheckedReplaceAllUsesWith(New);
1003 OldC->destroyConstant(); // This constant is now dead, destroy it.
1004 }
1005 };
1006}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001007
Chris Lattner3e650af2004-08-04 04:48:01 +00001008static std::vector<Constant*> getValType(ConstantArray *CA) {
1009 std::vector<Constant*> Elements;
1010 Elements.reserve(CA->getNumOperands());
1011 for (unsigned i = 0, e = CA->getNumOperands(); i != e; ++i)
1012 Elements.push_back(cast<Constant>(CA->getOperand(i)));
1013 return Elements;
1014}
1015
Chris Lattnerb64419a2005-10-03 22:51:37 +00001016typedef ValueMap<std::vector<Constant*>, ArrayType,
Chris Lattner935aa922005-10-04 17:48:46 +00001017 ConstantArray, true /*largekey*/> ArrayConstantsTy;
Chris Lattner69edc982006-09-28 00:35:06 +00001018static ManagedStatic<ArrayConstantsTy> ArrayConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001019
Chris Lattner015e8212004-02-15 04:14:47 +00001020Constant *ConstantArray::get(const ArrayType *Ty,
Chris Lattner9fba3da2004-02-15 05:53:04 +00001021 const std::vector<Constant*> &V) {
1022 // If this is an all-zero array, return a ConstantAggregateZero object
1023 if (!V.empty()) {
1024 Constant *C = V[0];
1025 if (!C->isNullValue())
Chris Lattner69edc982006-09-28 00:35:06 +00001026 return ArrayConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001027 for (unsigned i = 1, e = V.size(); i != e; ++i)
1028 if (V[i] != C)
Chris Lattner69edc982006-09-28 00:35:06 +00001029 return ArrayConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001030 }
1031 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001032}
1033
Chris Lattner98fa07b2003-05-23 20:03:32 +00001034// destroyConstant - Remove the constant from the constant table...
1035//
1036void ConstantArray::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001037 ArrayConstants->remove(this);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001038 destroyConstantImpl();
1039}
1040
Reid Spencer6f614532006-05-30 08:23:18 +00001041/// ConstantArray::get(const string&) - Return an array that is initialized to
1042/// contain the specified string. If length is zero then a null terminator is
1043/// added to the specified string so that it may be used in a natural way.
1044/// Otherwise, the length parameter specifies how much of the string to use
1045/// and it won't be null terminated.
1046///
Reid Spencer82ebaba2006-05-30 18:15:07 +00001047Constant *ConstantArray::get(const std::string &Str, bool AddNull) {
Chris Lattner7f74a562002-01-20 22:54:45 +00001048 std::vector<Constant*> ElementVals;
Reid Spencer82ebaba2006-05-30 18:15:07 +00001049 for (unsigned i = 0; i < Str.length(); ++i)
Reid Spencere0fc4df2006-10-20 07:07:24 +00001050 ElementVals.push_back(ConstantInt::get(Type::SByteTy, Str[i]));
Chris Lattner8f80fe02001-10-14 23:54:12 +00001051
1052 // Add a null terminator to the string...
Reid Spencer82ebaba2006-05-30 18:15:07 +00001053 if (AddNull) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00001054 ElementVals.push_back(ConstantInt::get(Type::SByteTy, 0));
Reid Spencer6f614532006-05-30 08:23:18 +00001055 }
Chris Lattner8f80fe02001-10-14 23:54:12 +00001056
Reid Spencer82ebaba2006-05-30 18:15:07 +00001057 ArrayType *ATy = ArrayType::get(Type::SByteTy, ElementVals.size());
Chris Lattner3462ae32001-12-03 22:26:30 +00001058 return ConstantArray::get(ATy, ElementVals);
Vikram S. Adve34410432001-10-14 23:17:20 +00001059}
1060
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001061/// isString - This method returns true if the array is an array of sbyte or
1062/// ubyte, and if the elements of the array are all ConstantInt's.
1063bool ConstantArray::isString() const {
1064 // Check the element type for sbyte or ubyte...
Chris Lattnere8701f62004-01-14 17:51:53 +00001065 if (getType()->getElementType() != Type::UByteTy &&
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001066 getType()->getElementType() != Type::SByteTy)
1067 return false;
1068 // Check the elements to make sure they are all integers, not constant
1069 // expressions.
1070 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
1071 if (!isa<ConstantInt>(getOperand(i)))
1072 return false;
1073 return true;
1074}
1075
Chris Lattner81fabb02002-08-26 17:53:56 +00001076// getAsString - If the sub-element type of this array is either sbyte or ubyte,
1077// then this method converts the array to an std::string and returns it.
1078// Otherwise, it asserts out.
1079//
1080std::string ConstantArray::getAsString() const {
Chris Lattnere8dfcca2004-01-14 17:06:38 +00001081 assert(isString() && "Not a string!");
Chris Lattner81fabb02002-08-26 17:53:56 +00001082 std::string Result;
Chris Lattner6077c312003-07-23 15:22:26 +00001083 for (unsigned i = 0, e = getNumOperands(); i != e; ++i)
Reid Spencere0fc4df2006-10-20 07:07:24 +00001084 Result += (char)cast<ConstantInt>(getOperand(i))->getZExtValue();
Chris Lattner81fabb02002-08-26 17:53:56 +00001085 return Result;
1086}
1087
1088
Chris Lattner3462ae32001-12-03 22:26:30 +00001089//---- ConstantStruct::get() implementation...
Chris Lattner49d855c2001-09-07 16:46:31 +00001090//
Chris Lattnerb50d1352003-10-05 00:17:43 +00001091
Chris Lattner189d19f2003-11-21 20:23:48 +00001092namespace llvm {
1093 template<>
1094 struct ConvertConstantType<ConstantStruct, StructType> {
1095 static void convert(ConstantStruct *OldC, const StructType *NewTy) {
1096 // Make everyone now use a constant of the new type...
1097 std::vector<Constant*> C;
1098 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1099 C.push_back(cast<Constant>(OldC->getOperand(i)));
1100 Constant *New = ConstantStruct::get(NewTy, C);
1101 assert(New != OldC && "Didn't replace constant??");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001102
Chris Lattner189d19f2003-11-21 20:23:48 +00001103 OldC->uncheckedReplaceAllUsesWith(New);
1104 OldC->destroyConstant(); // This constant is now dead, destroy it.
1105 }
1106 };
1107}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001108
Chris Lattner8760ec72005-10-04 01:17:50 +00001109typedef ValueMap<std::vector<Constant*>, StructType,
Chris Lattner935aa922005-10-04 17:48:46 +00001110 ConstantStruct, true /*largekey*/> StructConstantsTy;
Chris Lattner69edc982006-09-28 00:35:06 +00001111static ManagedStatic<StructConstantsTy> StructConstants;
Chris Lattner49d855c2001-09-07 16:46:31 +00001112
Chris Lattner3e650af2004-08-04 04:48:01 +00001113static std::vector<Constant*> getValType(ConstantStruct *CS) {
1114 std::vector<Constant*> Elements;
1115 Elements.reserve(CS->getNumOperands());
1116 for (unsigned i = 0, e = CS->getNumOperands(); i != e; ++i)
1117 Elements.push_back(cast<Constant>(CS->getOperand(i)));
1118 return Elements;
1119}
1120
Chris Lattner015e8212004-02-15 04:14:47 +00001121Constant *ConstantStruct::get(const StructType *Ty,
1122 const std::vector<Constant*> &V) {
Chris Lattner9fba3da2004-02-15 05:53:04 +00001123 // Create a ConstantAggregateZero value if all elements are zeros...
1124 for (unsigned i = 0, e = V.size(); i != e; ++i)
1125 if (!V[i]->isNullValue())
Chris Lattner69edc982006-09-28 00:35:06 +00001126 return StructConstants->getOrCreate(Ty, V);
Chris Lattner9fba3da2004-02-15 05:53:04 +00001127
1128 return ConstantAggregateZero::get(Ty);
Chris Lattner49d855c2001-09-07 16:46:31 +00001129}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001130
Chris Lattnerd6108ca2004-07-12 20:35:11 +00001131Constant *ConstantStruct::get(const std::vector<Constant*> &V) {
1132 std::vector<const Type*> StructEls;
1133 StructEls.reserve(V.size());
1134 for (unsigned i = 0, e = V.size(); i != e; ++i)
1135 StructEls.push_back(V[i]->getType());
1136 return get(StructType::get(StructEls), V);
1137}
1138
Chris Lattnerd7a73302001-10-13 06:57:33 +00001139// destroyConstant - Remove the constant from the constant table...
Chris Lattner883ad0b2001-10-03 15:39:36 +00001140//
Chris Lattner3462ae32001-12-03 22:26:30 +00001141void ConstantStruct::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001142 StructConstants->remove(this);
Chris Lattnerd7a73302001-10-13 06:57:33 +00001143 destroyConstantImpl();
1144}
Chris Lattner883ad0b2001-10-03 15:39:36 +00001145
Brian Gaeke02209042004-08-20 06:00:58 +00001146//---- ConstantPacked::get() implementation...
1147//
1148namespace llvm {
1149 template<>
1150 struct ConvertConstantType<ConstantPacked, PackedType> {
1151 static void convert(ConstantPacked *OldC, const PackedType *NewTy) {
1152 // Make everyone now use a constant of the new type...
1153 std::vector<Constant*> C;
1154 for (unsigned i = 0, e = OldC->getNumOperands(); i != e; ++i)
1155 C.push_back(cast<Constant>(OldC->getOperand(i)));
1156 Constant *New = ConstantPacked::get(NewTy, C);
1157 assert(New != OldC && "Didn't replace constant??");
1158 OldC->uncheckedReplaceAllUsesWith(New);
1159 OldC->destroyConstant(); // This constant is now dead, destroy it.
1160 }
1161 };
1162}
1163
1164static std::vector<Constant*> getValType(ConstantPacked *CP) {
1165 std::vector<Constant*> Elements;
1166 Elements.reserve(CP->getNumOperands());
1167 for (unsigned i = 0, e = CP->getNumOperands(); i != e; ++i)
1168 Elements.push_back(CP->getOperand(i));
1169 return Elements;
1170}
1171
Chris Lattner69edc982006-09-28 00:35:06 +00001172static ManagedStatic<ValueMap<std::vector<Constant*>, PackedType,
1173 ConstantPacked> > PackedConstants;
Brian Gaeke02209042004-08-20 06:00:58 +00001174
1175Constant *ConstantPacked::get(const PackedType *Ty,
1176 const std::vector<Constant*> &V) {
1177 // If this is an all-zero packed, return a ConstantAggregateZero object
1178 if (!V.empty()) {
1179 Constant *C = V[0];
1180 if (!C->isNullValue())
Chris Lattner69edc982006-09-28 00:35:06 +00001181 return PackedConstants->getOrCreate(Ty, V);
Brian Gaeke02209042004-08-20 06:00:58 +00001182 for (unsigned i = 1, e = V.size(); i != e; ++i)
1183 if (V[i] != C)
Chris Lattner69edc982006-09-28 00:35:06 +00001184 return PackedConstants->getOrCreate(Ty, V);
Brian Gaeke02209042004-08-20 06:00:58 +00001185 }
1186 return ConstantAggregateZero::get(Ty);
1187}
1188
1189Constant *ConstantPacked::get(const std::vector<Constant*> &V) {
1190 assert(!V.empty() && "Cannot infer type if V is empty");
1191 return get(PackedType::get(V.front()->getType(),V.size()), V);
1192}
1193
1194// destroyConstant - Remove the constant from the constant table...
1195//
1196void ConstantPacked::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001197 PackedConstants->remove(this);
Brian Gaeke02209042004-08-20 06:00:58 +00001198 destroyConstantImpl();
1199}
1200
Chris Lattner3462ae32001-12-03 22:26:30 +00001201//---- ConstantPointerNull::get() implementation...
Chris Lattnerd7a73302001-10-13 06:57:33 +00001202//
Chris Lattner98fa07b2003-05-23 20:03:32 +00001203
Chris Lattner189d19f2003-11-21 20:23:48 +00001204namespace llvm {
1205 // ConstantPointerNull does not take extra "value" argument...
1206 template<class ValType>
1207 struct ConstantCreator<ConstantPointerNull, PointerType, ValType> {
1208 static ConstantPointerNull *create(const PointerType *Ty, const ValType &V){
1209 return new ConstantPointerNull(Ty);
1210 }
1211 };
Chris Lattner98fa07b2003-05-23 20:03:32 +00001212
Chris Lattner189d19f2003-11-21 20:23:48 +00001213 template<>
1214 struct ConvertConstantType<ConstantPointerNull, PointerType> {
1215 static void convert(ConstantPointerNull *OldC, const PointerType *NewTy) {
1216 // Make everyone now use a constant of the new type...
1217 Constant *New = ConstantPointerNull::get(NewTy);
1218 assert(New != OldC && "Didn't replace constant??");
1219 OldC->uncheckedReplaceAllUsesWith(New);
1220 OldC->destroyConstant(); // This constant is now dead, destroy it.
1221 }
1222 };
1223}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001224
Chris Lattner69edc982006-09-28 00:35:06 +00001225static ManagedStatic<ValueMap<char, PointerType,
1226 ConstantPointerNull> > NullPtrConstants;
Chris Lattnerd7a73302001-10-13 06:57:33 +00001227
Chris Lattner3e650af2004-08-04 04:48:01 +00001228static char getValType(ConstantPointerNull *) {
1229 return 0;
1230}
1231
1232
Chris Lattner3462ae32001-12-03 22:26:30 +00001233ConstantPointerNull *ConstantPointerNull::get(const PointerType *Ty) {
Chris Lattner69edc982006-09-28 00:35:06 +00001234 return NullPtrConstants->getOrCreate(Ty, 0);
Chris Lattner883ad0b2001-10-03 15:39:36 +00001235}
1236
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001237// destroyConstant - Remove the constant from the constant table...
1238//
1239void ConstantPointerNull::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001240 NullPtrConstants->remove(this);
Chris Lattner0c6e0b92002-08-18 00:40:04 +00001241 destroyConstantImpl();
1242}
1243
1244
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001245//---- UndefValue::get() implementation...
1246//
1247
1248namespace llvm {
1249 // UndefValue does not take extra "value" argument...
1250 template<class ValType>
1251 struct ConstantCreator<UndefValue, Type, ValType> {
1252 static UndefValue *create(const Type *Ty, const ValType &V) {
1253 return new UndefValue(Ty);
1254 }
1255 };
1256
1257 template<>
1258 struct ConvertConstantType<UndefValue, Type> {
1259 static void convert(UndefValue *OldC, const Type *NewTy) {
1260 // Make everyone now use a constant of the new type.
1261 Constant *New = UndefValue::get(NewTy);
1262 assert(New != OldC && "Didn't replace constant??");
1263 OldC->uncheckedReplaceAllUsesWith(New);
1264 OldC->destroyConstant(); // This constant is now dead, destroy it.
1265 }
1266 };
1267}
1268
Chris Lattner69edc982006-09-28 00:35:06 +00001269static ManagedStatic<ValueMap<char, Type, UndefValue> > UndefValueConstants;
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001270
1271static char getValType(UndefValue *) {
1272 return 0;
1273}
1274
1275
1276UndefValue *UndefValue::get(const Type *Ty) {
Chris Lattner69edc982006-09-28 00:35:06 +00001277 return UndefValueConstants->getOrCreate(Ty, 0);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001278}
1279
1280// destroyConstant - Remove the constant from the constant table.
1281//
1282void UndefValue::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001283 UndefValueConstants->remove(this);
Chris Lattnerd5f67d82004-10-16 18:07:16 +00001284 destroyConstantImpl();
1285}
1286
1287
1288
1289
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001290//---- ConstantExpr::get() implementations...
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001291//
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001292typedef std::pair<unsigned, std::vector<Constant*> > ExprMapKeyType;
Chris Lattner98fa07b2003-05-23 20:03:32 +00001293
Chris Lattner189d19f2003-11-21 20:23:48 +00001294namespace llvm {
1295 template<>
1296 struct ConstantCreator<ConstantExpr, Type, ExprMapKeyType> {
1297 static ConstantExpr *create(const Type *Ty, const ExprMapKeyType &V) {
1298 if (V.first == Instruction::Cast)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001299 return new UnaryConstantExpr(Instruction::Cast, V.second[0], Ty);
Chris Lattner189d19f2003-11-21 20:23:48 +00001300 if ((V.first >= Instruction::BinaryOpsBegin &&
1301 V.first < Instruction::BinaryOpsEnd) ||
1302 V.first == Instruction::Shl || V.first == Instruction::Shr)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001303 return new BinaryConstantExpr(V.first, V.second[0], V.second[1]);
Chris Lattnerb7897ce2004-03-30 22:51:03 +00001304 if (V.first == Instruction::Select)
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001305 return new SelectConstantExpr(V.second[0], V.second[1], V.second[2]);
Robert Bocchino23004482006-01-10 19:05:34 +00001306 if (V.first == Instruction::ExtractElement)
1307 return new ExtractElementConstantExpr(V.second[0], V.second[1]);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001308 if (V.first == Instruction::InsertElement)
1309 return new InsertElementConstantExpr(V.second[0], V.second[1],
1310 V.second[2]);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001311 if (V.first == Instruction::ShuffleVector)
1312 return new ShuffleVectorConstantExpr(V.second[0], V.second[1],
1313 V.second[2]);
1314
Chris Lattner189d19f2003-11-21 20:23:48 +00001315 assert(V.first == Instruction::GetElementPtr && "Invalid ConstantExpr!");
Misha Brukmanb1c93172005-04-21 23:48:37 +00001316
Chris Lattner189d19f2003-11-21 20:23:48 +00001317 std::vector<Constant*> IdxList(V.second.begin()+1, V.second.end());
Chris Lattnerd0df99c2005-01-29 00:34:39 +00001318 return new GetElementPtrConstantExpr(V.second[0], IdxList, Ty);
Chris Lattnerb50d1352003-10-05 00:17:43 +00001319 }
Chris Lattner189d19f2003-11-21 20:23:48 +00001320 };
Chris Lattnerb50d1352003-10-05 00:17:43 +00001321
Chris Lattner189d19f2003-11-21 20:23:48 +00001322 template<>
1323 struct ConvertConstantType<ConstantExpr, Type> {
1324 static void convert(ConstantExpr *OldC, const Type *NewTy) {
1325 Constant *New;
1326 switch (OldC->getOpcode()) {
1327 case Instruction::Cast:
1328 New = ConstantExpr::getCast(OldC->getOperand(0), NewTy);
1329 break;
Chris Lattner6e415c02004-03-12 05:54:04 +00001330 case Instruction::Select:
1331 New = ConstantExpr::getSelectTy(NewTy, OldC->getOperand(0),
1332 OldC->getOperand(1),
1333 OldC->getOperand(2));
1334 break;
Chris Lattner189d19f2003-11-21 20:23:48 +00001335 case Instruction::Shl:
1336 case Instruction::Shr:
1337 New = ConstantExpr::getShiftTy(NewTy, OldC->getOpcode(),
1338 OldC->getOperand(0), OldC->getOperand(1));
1339 break;
1340 default:
1341 assert(OldC->getOpcode() >= Instruction::BinaryOpsBegin &&
1342 OldC->getOpcode() < Instruction::BinaryOpsEnd);
1343 New = ConstantExpr::getTy(NewTy, OldC->getOpcode(), OldC->getOperand(0),
1344 OldC->getOperand(1));
1345 break;
1346 case Instruction::GetElementPtr:
Misha Brukmanb1c93172005-04-21 23:48:37 +00001347 // Make everyone now use a constant of the new type...
Chris Lattner13128ab2004-10-11 22:52:25 +00001348 std::vector<Value*> Idx(OldC->op_begin()+1, OldC->op_end());
1349 New = ConstantExpr::getGetElementPtrTy(NewTy, OldC->getOperand(0), Idx);
Chris Lattner189d19f2003-11-21 20:23:48 +00001350 break;
1351 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001352
Chris Lattner189d19f2003-11-21 20:23:48 +00001353 assert(New != OldC && "Didn't replace constant??");
1354 OldC->uncheckedReplaceAllUsesWith(New);
1355 OldC->destroyConstant(); // This constant is now dead, destroy it.
1356 }
1357 };
1358} // end namespace llvm
Chris Lattnerb50d1352003-10-05 00:17:43 +00001359
1360
Chris Lattner3e650af2004-08-04 04:48:01 +00001361static ExprMapKeyType getValType(ConstantExpr *CE) {
1362 std::vector<Constant*> Operands;
1363 Operands.reserve(CE->getNumOperands());
1364 for (unsigned i = 0, e = CE->getNumOperands(); i != e; ++i)
1365 Operands.push_back(cast<Constant>(CE->getOperand(i)));
1366 return ExprMapKeyType(CE->getOpcode(), Operands);
1367}
1368
Chris Lattner69edc982006-09-28 00:35:06 +00001369static ManagedStatic<ValueMap<ExprMapKeyType, Type,
1370 ConstantExpr> > ExprConstants;
Vikram S. Adve4c485332002-07-15 18:19:33 +00001371
Chris Lattner46b3d302003-04-16 22:40:51 +00001372Constant *ConstantExpr::getCast(Constant *C, const Type *Ty) {
Chris Lattner815ae2b2003-10-07 22:19:19 +00001373 assert(Ty->isFirstClassType() && "Cannot cast to an aggregate type!");
1374
Chris Lattneracdbe712003-04-17 19:24:48 +00001375 if (Constant *FC = ConstantFoldCastInstruction(C, Ty))
1376 return FC; // Fold a few common cases...
1377
Vikram S. Adve4c485332002-07-15 18:19:33 +00001378 // Look up the constant in the table first to ensure uniqueness
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001379 std::vector<Constant*> argVec(1, C);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001380 ExprMapKeyType Key = std::make_pair(Instruction::Cast, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001381 return ExprConstants->getOrCreate(Ty, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001382}
Chris Lattnerd7a73302001-10-13 06:57:33 +00001383
Chris Lattnerdd284742004-04-04 23:20:30 +00001384Constant *ConstantExpr::getSignExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001385 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001386 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1387 "This is an illegal sign extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001388 if (C->getType() != Type::BoolTy) {
1389 C = ConstantExpr::getCast(C, C->getType()->getSignedVersion());
1390 return ConstantExpr::getCast(C, Ty);
1391 } else {
Chris Lattnera84df0a22006-09-28 23:36:21 +00001392 if (C == ConstantBool::getTrue())
Chris Lattner1ece6f82005-01-01 15:59:57 +00001393 return ConstantIntegral::getAllOnesValue(Ty);
1394 else
1395 return ConstantIntegral::getNullValue(Ty);
1396 }
Chris Lattnerdd284742004-04-04 23:20:30 +00001397}
1398
1399Constant *ConstantExpr::getZeroExtend(Constant *C, const Type *Ty) {
Chris Lattner1ece6f82005-01-01 15:59:57 +00001400 assert(C->getType()->isIntegral() && Ty->isIntegral() &&
Chris Lattnerdd284742004-04-04 23:20:30 +00001401 C->getType()->getPrimitiveSize() <= Ty->getPrimitiveSize() &&
1402 "This is an illegal zero extension!");
Chris Lattner1ece6f82005-01-01 15:59:57 +00001403 if (C->getType() != Type::BoolTy)
1404 C = ConstantExpr::getCast(C, C->getType()->getUnsignedVersion());
Chris Lattnerdd284742004-04-04 23:20:30 +00001405 return ConstantExpr::getCast(C, Ty);
1406}
1407
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001408Constant *ConstantExpr::getSizeOf(const Type *Ty) {
Chris Lattneracc4e542004-12-13 19:48:51 +00001409 // sizeof is implemented as: (ulong) gep (Ty*)null, 1
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001410 return getCast(
Chris Lattneracc4e542004-12-13 19:48:51 +00001411 getGetElementPtr(getNullValue(PointerType::get(Ty)),
1412 std::vector<Constant*>(1, ConstantInt::get(Type::UIntTy, 1))),
1413 Type::ULongTy);
Alkis Evlogimenosda5de052004-10-24 01:41:10 +00001414}
1415
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00001416Constant *ConstantExpr::getPtrPtrFromArrayPtr(Constant *C) {
1417 // pointer from array is implemented as: getelementptr arr ptr, 0, 0
Reid Spencere0fc4df2006-10-20 07:07:24 +00001418 static std::vector<Constant*> Indices(2, ConstantInt::get(Type::UIntTy, 0));
Alkis Evlogimenos9160d5f2005-03-19 11:40:31 +00001419
1420 return ConstantExpr::getGetElementPtr(C, Indices);
1421}
1422
Chris Lattnerb50d1352003-10-05 00:17:43 +00001423Constant *ConstantExpr::getTy(const Type *ReqTy, unsigned Opcode,
1424 Constant *C1, Constant *C2) {
Chris Lattner5645e8a2004-01-12 19:04:55 +00001425 if (Opcode == Instruction::Shl || Opcode == Instruction::Shr)
1426 return getShiftTy(ReqTy, Opcode, C1, C2);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001427 // Check the operands for consistency first
1428 assert((Opcode >= Instruction::BinaryOpsBegin &&
1429 Opcode < Instruction::BinaryOpsEnd) &&
1430 "Invalid opcode in binary constant expression");
1431 assert(C1->getType() == C2->getType() &&
1432 "Operand types in binary constant expression should match");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001433
Chris Lattnere1496fb2006-09-17 19:14:47 +00001434 if (ReqTy == C1->getType() || (Instruction::isComparison(Opcode) &&
Chris Lattner29ca2c62004-08-04 18:50:09 +00001435 ReqTy == Type::BoolTy))
Chris Lattnerb50d1352003-10-05 00:17:43 +00001436 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1437 return FC; // Fold a few common cases...
Chris Lattneracdbe712003-04-17 19:24:48 +00001438
Chris Lattner2b383d2e2003-05-13 21:37:02 +00001439 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001440 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001441 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001442}
1443
Chris Lattner29ca2c62004-08-04 18:50:09 +00001444Constant *ConstantExpr::get(unsigned Opcode, Constant *C1, Constant *C2) {
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001445#ifndef NDEBUG
1446 switch (Opcode) {
1447 case Instruction::Add: case Instruction::Sub:
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001448 case Instruction::Mul:
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001449 case Instruction::Rem:
1450 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattnerc421a262006-01-04 01:01:04 +00001451 assert((C1->getType()->isInteger() || C1->getType()->isFloatingPoint() ||
1452 isa<PackedType>(C1->getType())) &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001453 "Tried to create an arithmetic operation on a non-arithmetic type!");
1454 break;
Reid Spencer7e80b0b2006-10-26 06:15:43 +00001455
1456 case Instruction::UDiv:
1457 case Instruction::SDiv:
1458 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1459 assert((C1->getType()->isInteger() || (isa<PackedType>(C1->getType()) &&
1460 cast<PackedType>(C1->getType())->getElementType()->isInteger())) &&
1461 "Tried to create an arithmetic operation on a non-arithmetic type!");
1462 break;
1463 case Instruction::FDiv:
1464 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1465 assert((C1->getType()->isFloatingPoint() || (isa<PackedType>(C1->getType())
1466 && cast<PackedType>(C1->getType())->getElementType()->isFloatingPoint()))
1467 && "Tried to create an arithmetic operation on a non-arithmetic type!");
1468 break;
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001469 case Instruction::And:
1470 case Instruction::Or:
1471 case Instruction::Xor:
1472 assert(C1->getType() == C2->getType() && "Op types should be identical!");
Chris Lattnerc421a262006-01-04 01:01:04 +00001473 assert((C1->getType()->isIntegral() || isa<PackedType>(C1->getType())) &&
Misha Brukman3852f652005-01-27 06:46:38 +00001474 "Tried to create a logical operation on a non-integral type!");
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001475 break;
1476 case Instruction::SetLT: case Instruction::SetGT: case Instruction::SetLE:
1477 case Instruction::SetGE: case Instruction::SetEQ: case Instruction::SetNE:
1478 assert(C1->getType() == C2->getType() && "Op types should be identical!");
1479 break;
1480 case Instruction::Shl:
1481 case Instruction::Shr:
1482 assert(C2->getType() == Type::UByteTy && "Shift should be by ubyte!");
Chris Lattnerc421a262006-01-04 01:01:04 +00001483 assert((C1->getType()->isInteger() || isa<PackedType>(C1->getType())) &&
Chris Lattnercaf3f3e2004-08-17 17:28:46 +00001484 "Tried to create a shift operation on a non-integer type!");
1485 break;
1486 default:
1487 break;
1488 }
1489#endif
1490
Chris Lattnere1496fb2006-09-17 19:14:47 +00001491 if (Instruction::isComparison(Opcode))
Chris Lattner29ca2c62004-08-04 18:50:09 +00001492 return getTy(Type::BoolTy, Opcode, C1, C2);
1493 else
1494 return getTy(C1->getType(), Opcode, C1, C2);
1495}
1496
Chris Lattner6e415c02004-03-12 05:54:04 +00001497Constant *ConstantExpr::getSelectTy(const Type *ReqTy, Constant *C,
1498 Constant *V1, Constant *V2) {
1499 assert(C->getType() == Type::BoolTy && "Select condition must be bool!");
1500 assert(V1->getType() == V2->getType() && "Select value types must match!");
1501 assert(V1->getType()->isFirstClassType() && "Cannot select aggregate type!");
1502
1503 if (ReqTy == V1->getType())
1504 if (Constant *SC = ConstantFoldSelectInstruction(C, V1, V2))
1505 return SC; // Fold common cases
1506
1507 std::vector<Constant*> argVec(3, C);
1508 argVec[1] = V1;
1509 argVec[2] = V2;
1510 ExprMapKeyType Key = std::make_pair(Instruction::Select, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001511 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattner6e415c02004-03-12 05:54:04 +00001512}
1513
Chris Lattner9eb2b522004-01-12 19:12:58 +00001514/// getShiftTy - Return a shift left or shift right constant expr
Chris Lattnerb50d1352003-10-05 00:17:43 +00001515Constant *ConstantExpr::getShiftTy(const Type *ReqTy, unsigned Opcode,
1516 Constant *C1, Constant *C2) {
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001517 // Check the operands for consistency first
1518 assert((Opcode == Instruction::Shl ||
1519 Opcode == Instruction::Shr) &&
1520 "Invalid opcode in binary constant expression");
1521 assert(C1->getType()->isIntegral() && C2->getType() == Type::UByteTy &&
1522 "Invalid operand types for Shift constant expr!");
1523
Chris Lattner0bba7712004-01-12 20:40:42 +00001524 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001525 return FC; // Fold a few common cases...
1526
1527 // Look up the constant in the table first to ensure uniqueness
1528 std::vector<Constant*> argVec(1, C1); argVec.push_back(C2);
Chris Lattner98fa07b2003-05-23 20:03:32 +00001529 ExprMapKeyType Key = std::make_pair(Opcode, argVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001530 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattner38a9bcd2003-05-21 17:49:25 +00001531}
1532
1533
Chris Lattnerb50d1352003-10-05 00:17:43 +00001534Constant *ConstantExpr::getGetElementPtrTy(const Type *ReqTy, Constant *C,
Chris Lattner13128ab2004-10-11 22:52:25 +00001535 const std::vector<Value*> &IdxList) {
1536 assert(GetElementPtrInst::getIndexedType(C->getType(), IdxList, true) &&
Chris Lattner04b60fe2004-02-16 20:46:13 +00001537 "GEP indices invalid!");
1538
Chris Lattneracdbe712003-04-17 19:24:48 +00001539 if (Constant *FC = ConstantFoldGetElementPtr(C, IdxList))
1540 return FC; // Fold a few common cases...
Chris Lattner04b60fe2004-02-16 20:46:13 +00001541
Chris Lattnerb50d1352003-10-05 00:17:43 +00001542 assert(isa<PointerType>(C->getType()) &&
Chris Lattner98fa07b2003-05-23 20:03:32 +00001543 "Non-pointer type for constant GetElementPtr expression");
Vikram S. Adve4c485332002-07-15 18:19:33 +00001544 // Look up the constant in the table first to ensure uniqueness
Chris Lattner13128ab2004-10-11 22:52:25 +00001545 std::vector<Constant*> ArgVec;
1546 ArgVec.reserve(IdxList.size()+1);
1547 ArgVec.push_back(C);
1548 for (unsigned i = 0, e = IdxList.size(); i != e; ++i)
1549 ArgVec.push_back(cast<Constant>(IdxList[i]));
1550 const ExprMapKeyType &Key = std::make_pair(Instruction::GetElementPtr,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001551 return ExprConstants->getOrCreate(ReqTy, Key);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001552}
1553
Chris Lattnerb50d1352003-10-05 00:17:43 +00001554Constant *ConstantExpr::getGetElementPtr(Constant *C,
1555 const std::vector<Constant*> &IdxList){
1556 // Get the result type of the getelementptr!
1557 std::vector<Value*> VIdxList(IdxList.begin(), IdxList.end());
1558
1559 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), VIdxList,
1560 true);
1561 assert(Ty && "GEP indices invalid!");
Chris Lattner13128ab2004-10-11 22:52:25 +00001562 return getGetElementPtrTy(PointerType::get(Ty), C, VIdxList);
1563}
1564
1565Constant *ConstantExpr::getGetElementPtr(Constant *C,
1566 const std::vector<Value*> &IdxList) {
1567 // Get the result type of the getelementptr!
1568 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(), IdxList,
1569 true);
1570 assert(Ty && "GEP indices invalid!");
Chris Lattnerb50d1352003-10-05 00:17:43 +00001571 return getGetElementPtrTy(PointerType::get(Ty), C, IdxList);
1572}
1573
Robert Bocchino23004482006-01-10 19:05:34 +00001574Constant *ConstantExpr::getExtractElementTy(const Type *ReqTy, Constant *Val,
1575 Constant *Idx) {
Robert Bocchinode7f1c92006-01-10 20:03:46 +00001576 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
1577 return FC; // Fold a few common cases...
Robert Bocchino23004482006-01-10 19:05:34 +00001578 // Look up the constant in the table first to ensure uniqueness
1579 std::vector<Constant*> ArgVec(1, Val);
1580 ArgVec.push_back(Idx);
1581 const ExprMapKeyType &Key = std::make_pair(Instruction::ExtractElement,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001582 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchino23004482006-01-10 19:05:34 +00001583}
1584
1585Constant *ConstantExpr::getExtractElement(Constant *Val, Constant *Idx) {
1586 assert(isa<PackedType>(Val->getType()) &&
1587 "Tried to create extractelement operation on non-packed type!");
1588 assert(Idx->getType() == Type::UIntTy &&
Robert Bocchinoca27f032006-01-17 20:07:22 +00001589 "Extractelement index must be uint type!");
Robert Bocchino23004482006-01-10 19:05:34 +00001590 return getExtractElementTy(cast<PackedType>(Val->getType())->getElementType(),
1591 Val, Idx);
1592}
Chris Lattnerb50d1352003-10-05 00:17:43 +00001593
Robert Bocchinoca27f032006-01-17 20:07:22 +00001594Constant *ConstantExpr::getInsertElementTy(const Type *ReqTy, Constant *Val,
1595 Constant *Elt, Constant *Idx) {
1596 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1597 return FC; // Fold a few common cases...
1598 // Look up the constant in the table first to ensure uniqueness
1599 std::vector<Constant*> ArgVec(1, Val);
1600 ArgVec.push_back(Elt);
1601 ArgVec.push_back(Idx);
1602 const ExprMapKeyType &Key = std::make_pair(Instruction::InsertElement,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001603 return ExprConstants->getOrCreate(ReqTy, Key);
Robert Bocchinoca27f032006-01-17 20:07:22 +00001604}
1605
1606Constant *ConstantExpr::getInsertElement(Constant *Val, Constant *Elt,
1607 Constant *Idx) {
1608 assert(isa<PackedType>(Val->getType()) &&
1609 "Tried to create insertelement operation on non-packed type!");
1610 assert(Elt->getType() == cast<PackedType>(Val->getType())->getElementType()
1611 && "Insertelement types must match!");
1612 assert(Idx->getType() == Type::UIntTy &&
1613 "Insertelement index must be uint type!");
1614 return getInsertElementTy(cast<PackedType>(Val->getType())->getElementType(),
1615 Val, Elt, Idx);
1616}
1617
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001618Constant *ConstantExpr::getShuffleVectorTy(const Type *ReqTy, Constant *V1,
1619 Constant *V2, Constant *Mask) {
1620 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1621 return FC; // Fold a few common cases...
1622 // Look up the constant in the table first to ensure uniqueness
1623 std::vector<Constant*> ArgVec(1, V1);
1624 ArgVec.push_back(V2);
1625 ArgVec.push_back(Mask);
1626 const ExprMapKeyType &Key = std::make_pair(Instruction::ShuffleVector,ArgVec);
Chris Lattner69edc982006-09-28 00:35:06 +00001627 return ExprConstants->getOrCreate(ReqTy, Key);
Chris Lattnerbbe0a422006-04-08 01:18:18 +00001628}
1629
1630Constant *ConstantExpr::getShuffleVector(Constant *V1, Constant *V2,
1631 Constant *Mask) {
1632 assert(ShuffleVectorInst::isValidOperands(V1, V2, Mask) &&
1633 "Invalid shuffle vector constant expr operands!");
1634 return getShuffleVectorTy(V1->getType(), V1, V2, Mask);
1635}
1636
1637
Vikram S. Adve4c485332002-07-15 18:19:33 +00001638// destroyConstant - Remove the constant from the constant table...
1639//
1640void ConstantExpr::destroyConstant() {
Chris Lattner69edc982006-09-28 00:35:06 +00001641 ExprConstants->remove(this);
Vikram S. Adve4c485332002-07-15 18:19:33 +00001642 destroyConstantImpl();
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001643}
1644
Chris Lattner3cd8c562002-07-30 18:54:25 +00001645const char *ConstantExpr::getOpcodeName() const {
1646 return Instruction::getOpcodeName(getOpcode());
Vikram S. Adve4e537b22002-07-14 23:13:17 +00001647}
Reid Spencer1ebe1ab2004-07-17 23:48:33 +00001648
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001649//===----------------------------------------------------------------------===//
1650// replaceUsesOfWithOnConstant implementations
1651
1652void ConstantArray::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001653 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001654 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Chris Lattner8760ec72005-10-04 01:17:50 +00001655 Constant *ToC = cast<Constant>(To);
Chris Lattnerdff59112005-10-04 18:47:09 +00001656
1657 unsigned OperandToUpdate = U-OperandList;
1658 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
1659
Jim Laskeyc03caef2006-07-17 17:38:29 +00001660 std::pair<ArrayConstantsTy::MapKey, Constant*> Lookup;
Chris Lattnerb64419a2005-10-03 22:51:37 +00001661 Lookup.first.first = getType();
1662 Lookup.second = this;
Chris Lattnerdff59112005-10-04 18:47:09 +00001663
Chris Lattnerb64419a2005-10-03 22:51:37 +00001664 std::vector<Constant*> &Values = Lookup.first.second;
1665 Values.reserve(getNumOperands()); // Build replacement array.
Chris Lattnerdff59112005-10-04 18:47:09 +00001666
Chris Lattner8760ec72005-10-04 01:17:50 +00001667 // Fill values with the modified operands of the constant array. Also,
1668 // compute whether this turns into an all-zeros array.
Chris Lattnerdff59112005-10-04 18:47:09 +00001669 bool isAllZeros = false;
1670 if (!ToC->isNullValue()) {
1671 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O)
1672 Values.push_back(cast<Constant>(O->get()));
1673 } else {
1674 isAllZeros = true;
1675 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1676 Constant *Val = cast<Constant>(O->get());
1677 Values.push_back(Val);
1678 if (isAllZeros) isAllZeros = Val->isNullValue();
1679 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001680 }
Chris Lattnerdff59112005-10-04 18:47:09 +00001681 Values[OperandToUpdate] = ToC;
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001682
Chris Lattnerb64419a2005-10-03 22:51:37 +00001683 Constant *Replacement = 0;
1684 if (isAllZeros) {
1685 Replacement = ConstantAggregateZero::get(getType());
1686 } else {
1687 // Check to see if we have this array type already.
1688 bool Exists;
Jim Laskeyc03caef2006-07-17 17:38:29 +00001689 ArrayConstantsTy::MapTy::iterator I =
Chris Lattner69edc982006-09-28 00:35:06 +00001690 ArrayConstants->InsertOrGetItem(Lookup, Exists);
Chris Lattnerb64419a2005-10-03 22:51:37 +00001691
1692 if (Exists) {
1693 Replacement = I->second;
1694 } else {
1695 // Okay, the new shape doesn't exist in the system yet. Instead of
1696 // creating a new constant array, inserting it, replaceallusesof'ing the
1697 // old with the new, then deleting the old... just update the current one
1698 // in place!
Chris Lattner69edc982006-09-28 00:35:06 +00001699 ArrayConstants->MoveConstantToNewSlot(this, I);
Chris Lattnerb64419a2005-10-03 22:51:37 +00001700
Chris Lattnerdff59112005-10-04 18:47:09 +00001701 // Update to the new value.
1702 setOperand(OperandToUpdate, ToC);
Chris Lattnerb64419a2005-10-03 22:51:37 +00001703 return;
1704 }
1705 }
1706
1707 // Otherwise, I do need to replace this with an existing value.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001708 assert(Replacement != this && "I didn't contain From!");
1709
Chris Lattner7a1450d2005-10-04 18:13:04 +00001710 // Everyone using this now uses the replacement.
1711 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001712
1713 // Delete the old constant!
1714 destroyConstant();
1715}
1716
1717void ConstantStruct::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001718 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001719 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
Chris Lattner8760ec72005-10-04 01:17:50 +00001720 Constant *ToC = cast<Constant>(To);
1721
Chris Lattnerdff59112005-10-04 18:47:09 +00001722 unsigned OperandToUpdate = U-OperandList;
1723 assert(getOperand(OperandToUpdate) == From && "ReplaceAllUsesWith broken!");
1724
Jim Laskeyc03caef2006-07-17 17:38:29 +00001725 std::pair<StructConstantsTy::MapKey, Constant*> Lookup;
Chris Lattner8760ec72005-10-04 01:17:50 +00001726 Lookup.first.first = getType();
1727 Lookup.second = this;
1728 std::vector<Constant*> &Values = Lookup.first.second;
1729 Values.reserve(getNumOperands()); // Build replacement struct.
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001730
Chris Lattnerdff59112005-10-04 18:47:09 +00001731
Chris Lattner8760ec72005-10-04 01:17:50 +00001732 // Fill values with the modified operands of the constant struct. Also,
1733 // compute whether this turns into an all-zeros struct.
Chris Lattnerdff59112005-10-04 18:47:09 +00001734 bool isAllZeros = false;
1735 if (!ToC->isNullValue()) {
1736 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O)
1737 Values.push_back(cast<Constant>(O->get()));
1738 } else {
1739 isAllZeros = true;
1740 for (Use *O = OperandList, *E = OperandList+getNumOperands(); O != E; ++O) {
1741 Constant *Val = cast<Constant>(O->get());
1742 Values.push_back(Val);
1743 if (isAllZeros) isAllZeros = Val->isNullValue();
1744 }
Chris Lattner8760ec72005-10-04 01:17:50 +00001745 }
Chris Lattnerdff59112005-10-04 18:47:09 +00001746 Values[OperandToUpdate] = ToC;
1747
Chris Lattner8760ec72005-10-04 01:17:50 +00001748 Constant *Replacement = 0;
1749 if (isAllZeros) {
1750 Replacement = ConstantAggregateZero::get(getType());
1751 } else {
1752 // Check to see if we have this array type already.
1753 bool Exists;
Jim Laskeyc03caef2006-07-17 17:38:29 +00001754 StructConstantsTy::MapTy::iterator I =
Chris Lattner69edc982006-09-28 00:35:06 +00001755 StructConstants->InsertOrGetItem(Lookup, Exists);
Chris Lattner8760ec72005-10-04 01:17:50 +00001756
1757 if (Exists) {
1758 Replacement = I->second;
1759 } else {
1760 // Okay, the new shape doesn't exist in the system yet. Instead of
1761 // creating a new constant struct, inserting it, replaceallusesof'ing the
1762 // old with the new, then deleting the old... just update the current one
1763 // in place!
Chris Lattner69edc982006-09-28 00:35:06 +00001764 StructConstants->MoveConstantToNewSlot(this, I);
Chris Lattner8760ec72005-10-04 01:17:50 +00001765
Chris Lattnerdff59112005-10-04 18:47:09 +00001766 // Update to the new value.
1767 setOperand(OperandToUpdate, ToC);
Chris Lattner8760ec72005-10-04 01:17:50 +00001768 return;
1769 }
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001770 }
1771
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001772 assert(Replacement != this && "I didn't contain From!");
1773
Chris Lattner7a1450d2005-10-04 18:13:04 +00001774 // Everyone using this now uses the replacement.
1775 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001776
1777 // Delete the old constant!
1778 destroyConstant();
1779}
1780
1781void ConstantPacked::replaceUsesOfWithOnConstant(Value *From, Value *To,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001782 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001783 assert(isa<Constant>(To) && "Cannot make Constant refer to non-constant!");
1784
1785 std::vector<Constant*> Values;
1786 Values.reserve(getNumOperands()); // Build replacement array...
1787 for (unsigned i = 0, e = getNumOperands(); i != e; ++i) {
1788 Constant *Val = getOperand(i);
1789 if (Val == From) Val = cast<Constant>(To);
1790 Values.push_back(Val);
1791 }
1792
1793 Constant *Replacement = ConstantPacked::get(getType(), Values);
1794 assert(Replacement != this && "I didn't contain From!");
1795
Chris Lattner7a1450d2005-10-04 18:13:04 +00001796 // Everyone using this now uses the replacement.
1797 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001798
1799 // Delete the old constant!
1800 destroyConstant();
1801}
1802
1803void ConstantExpr::replaceUsesOfWithOnConstant(Value *From, Value *ToV,
Chris Lattner7a1450d2005-10-04 18:13:04 +00001804 Use *U) {
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001805 assert(isa<Constant>(ToV) && "Cannot make Constant refer to non-constant!");
1806 Constant *To = cast<Constant>(ToV);
1807
1808 Constant *Replacement = 0;
1809 if (getOpcode() == Instruction::GetElementPtr) {
1810 std::vector<Constant*> Indices;
1811 Constant *Pointer = getOperand(0);
1812 Indices.reserve(getNumOperands()-1);
1813 if (Pointer == From) Pointer = To;
1814
1815 for (unsigned i = 1, e = getNumOperands(); i != e; ++i) {
1816 Constant *Val = getOperand(i);
1817 if (Val == From) Val = To;
1818 Indices.push_back(Val);
1819 }
1820 Replacement = ConstantExpr::getGetElementPtr(Pointer, Indices);
1821 } else if (getOpcode() == Instruction::Cast) {
1822 assert(getOperand(0) == From && "Cast only has one use!");
1823 Replacement = ConstantExpr::getCast(To, getType());
1824 } else if (getOpcode() == Instruction::Select) {
1825 Constant *C1 = getOperand(0);
1826 Constant *C2 = getOperand(1);
1827 Constant *C3 = getOperand(2);
1828 if (C1 == From) C1 = To;
1829 if (C2 == From) C2 = To;
1830 if (C3 == From) C3 = To;
1831 Replacement = ConstantExpr::getSelect(C1, C2, C3);
Robert Bocchino23004482006-01-10 19:05:34 +00001832 } else if (getOpcode() == Instruction::ExtractElement) {
1833 Constant *C1 = getOperand(0);
1834 Constant *C2 = getOperand(1);
1835 if (C1 == From) C1 = To;
1836 if (C2 == From) C2 = To;
1837 Replacement = ConstantExpr::getExtractElement(C1, C2);
Chris Lattnera93b4b52006-04-08 05:09:48 +00001838 } else if (getOpcode() == Instruction::InsertElement) {
1839 Constant *C1 = getOperand(0);
1840 Constant *C2 = getOperand(1);
1841 Constant *C3 = getOperand(1);
1842 if (C1 == From) C1 = To;
1843 if (C2 == From) C2 = To;
1844 if (C3 == From) C3 = To;
1845 Replacement = ConstantExpr::getInsertElement(C1, C2, C3);
1846 } else if (getOpcode() == Instruction::ShuffleVector) {
1847 Constant *C1 = getOperand(0);
1848 Constant *C2 = getOperand(1);
1849 Constant *C3 = getOperand(2);
1850 if (C1 == From) C1 = To;
1851 if (C2 == From) C2 = To;
1852 if (C3 == From) C3 = To;
1853 Replacement = ConstantExpr::getShuffleVector(C1, C2, C3);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001854 } else if (getNumOperands() == 2) {
1855 Constant *C1 = getOperand(0);
1856 Constant *C2 = getOperand(1);
1857 if (C1 == From) C1 = To;
1858 if (C2 == From) C2 = To;
1859 Replacement = ConstantExpr::get(getOpcode(), C1, C2);
1860 } else {
1861 assert(0 && "Unknown ConstantExpr type!");
1862 return;
1863 }
1864
1865 assert(Replacement != this && "I didn't contain From!");
1866
Chris Lattner7a1450d2005-10-04 18:13:04 +00001867 // Everyone using this now uses the replacement.
1868 uncheckedReplaceAllUsesWith(Replacement);
Chris Lattnerc4062ba2005-10-03 21:58:36 +00001869
1870 // Delete the old constant!
1871 destroyConstant();
1872}
1873
1874
Jim Laskey2698f0d2006-03-08 18:11:07 +00001875/// getStringValue - Turn an LLVM constant pointer that eventually points to a
1876/// global into a string value. Return an empty string if we can't do it.
Evan Cheng38280c02006-03-10 23:52:03 +00001877/// Parameter Chop determines if the result is chopped at the first null
1878/// terminator.
Jim Laskey2698f0d2006-03-08 18:11:07 +00001879///
Evan Cheng38280c02006-03-10 23:52:03 +00001880std::string Constant::getStringValue(bool Chop, unsigned Offset) {
Jim Laskey2698f0d2006-03-08 18:11:07 +00001881 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(this)) {
1882 if (GV->hasInitializer() && isa<ConstantArray>(GV->getInitializer())) {
1883 ConstantArray *Init = cast<ConstantArray>(GV->getInitializer());
1884 if (Init->isString()) {
1885 std::string Result = Init->getAsString();
1886 if (Offset < Result.size()) {
1887 // If we are pointing INTO The string, erase the beginning...
1888 Result.erase(Result.begin(), Result.begin()+Offset);
1889
1890 // Take off the null terminator, and any string fragments after it.
Evan Cheng38280c02006-03-10 23:52:03 +00001891 if (Chop) {
1892 std::string::size_type NullPos = Result.find_first_of((char)0);
1893 if (NullPos != std::string::npos)
1894 Result.erase(Result.begin()+NullPos, Result.end());
1895 }
Jim Laskey2698f0d2006-03-08 18:11:07 +00001896 return Result;
1897 }
1898 }
1899 }
1900 } else if (Constant *C = dyn_cast<Constant>(this)) {
1901 if (GlobalValue *GV = dyn_cast<GlobalValue>(C))
Evan Cheng2c5e5302006-03-11 00:13:10 +00001902 return GV->getStringValue(Chop, Offset);
Jim Laskey2698f0d2006-03-08 18:11:07 +00001903 else if (ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
1904 if (CE->getOpcode() == Instruction::GetElementPtr) {
1905 // Turn a gep into the specified offset.
1906 if (CE->getNumOperands() == 3 &&
1907 cast<Constant>(CE->getOperand(1))->isNullValue() &&
1908 isa<ConstantInt>(CE->getOperand(2))) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00001909 Offset += cast<ConstantInt>(CE->getOperand(2))->getZExtValue();
Evan Cheng2c5e5302006-03-11 00:13:10 +00001910 return CE->getOperand(0)->getStringValue(Chop, Offset);
Jim Laskey2698f0d2006-03-08 18:11:07 +00001911 }
1912 }
1913 }
1914 }
1915 return "";
1916}
1917