blob: 73a6541a062bda1fbb7fd369c0acef94b5453f42 [file] [log] [blame]
Reid Spencer81658a82007-02-27 06:23:51 +00001//===- ConstantFold.cpp - LLVM constant folder ----------------------------===//
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 Lattner5a945e32004-01-12 21:13:12 +000010// This file implements folding of constants for LLVM. This implements the
Reid Spencer81658a82007-02-27 06:23:51 +000011// (internal) ConstantFold.h interface, which is used by the
Chris Lattner5a945e32004-01-12 21:13:12 +000012// ConstantExpr::get* methods to automatically fold constants when possible.
Chris Lattner2f7c9632001-06-06 20:29:01 +000013//
Chris Lattner1dd054c2004-01-12 22:07:24 +000014// The current constant folding implementation is implemented in two pieces: the
15// template-based folder for simple primitive constants like ConstantInt, and
16// the special case hackery that we use to symbolically evaluate expressions
17// that use ConstantExprs.
18//
Chris Lattner2f7c9632001-06-06 20:29:01 +000019//===----------------------------------------------------------------------===//
20
Chris Lattner33e93b82007-02-27 03:05:06 +000021#include "ConstantFold.h"
Chris Lattner6ff6cea2004-01-12 21:02:29 +000022#include "llvm/Constants.h"
Chris Lattnera9eddae2004-02-22 06:25:38 +000023#include "llvm/Instructions.h"
Chris Lattner1f0049c2003-04-17 19:24:18 +000024#include "llvm/DerivedTypes.h"
Chris Lattnerea0789c2004-03-08 06:17:35 +000025#include "llvm/Function.h"
Chris Lattner302116a2007-01-31 04:40:28 +000026#include "llvm/ADT/SmallVector.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000027#include "llvm/Support/Compiler.h"
Chris Lattner057083f2006-10-13 17:22:21 +000028#include "llvm/Support/GetElementPtrTypeIterator.h"
29#include "llvm/Support/ManagedStatic.h"
30#include "llvm/Support/MathExtras.h"
Jeff Cohen4e3aede2005-05-03 03:13:01 +000031#include <limits>
Chris Lattner9d9cbcf2003-11-17 19:05:17 +000032using namespace llvm;
Chris Lattner61607ee2001-09-09 21:01:20 +000033
Chris Lattner1dd054c2004-01-12 22:07:24 +000034//===----------------------------------------------------------------------===//
35// ConstantFold*Instruction Implementations
36//===----------------------------------------------------------------------===//
Chris Lattner1dd054c2004-01-12 22:07:24 +000037
Reid Spencerd84d35b2007-02-15 02:26:10 +000038/// CastConstantVector - Convert the specified ConstantVector node to the
Reid Spencer09575ba2007-02-15 03:39:18 +000039/// specified vector type. At this point, we know that the elements of the
Chris Lattner6b3f4752006-04-02 01:38:28 +000040/// input packed constant are all simple integer or FP values.
Reid Spencer81658a82007-02-27 06:23:51 +000041static Constant *CastConstantVector(ConstantVector *CV,
Reid Spencerd84d35b2007-02-15 02:26:10 +000042 const VectorType *DstTy) {
Reid Spencer81658a82007-02-27 06:23:51 +000043 unsigned SrcNumElts = CV->getType()->getNumElements();
Chris Lattner6b3f4752006-04-02 01:38:28 +000044 unsigned DstNumElts = DstTy->getNumElements();
Reid Spencer81658a82007-02-27 06:23:51 +000045 const Type *SrcEltTy = CV->getType()->getElementType();
Chris Lattner6b3f4752006-04-02 01:38:28 +000046 const Type *DstEltTy = DstTy->getElementType();
47
48 // If both vectors have the same number of elements (thus, the elements
49 // are the same size), perform the conversion now.
50 if (SrcNumElts == DstNumElts) {
51 std::vector<Constant*> Result;
52
Reid Spencer6c38f0b2006-11-27 01:05:10 +000053 // If the src and dest elements are both integers, or both floats, we can
54 // just BitCast each element because the elements are the same size.
Chris Lattner03c49532007-01-15 02:27:26 +000055 if ((SrcEltTy->isInteger() && DstEltTy->isInteger()) ||
Reid Spencer6c38f0b2006-11-27 01:05:10 +000056 (SrcEltTy->isFloatingPoint() && DstEltTy->isFloatingPoint())) {
Chris Lattner6b3f4752006-04-02 01:38:28 +000057 for (unsigned i = 0; i != SrcNumElts; ++i)
Reid Spencer6c38f0b2006-11-27 01:05:10 +000058 Result.push_back(
Reid Spencer81658a82007-02-27 06:23:51 +000059 ConstantExpr::getBitCast(CV->getOperand(i), DstEltTy));
Reid Spencerd84d35b2007-02-15 02:26:10 +000060 return ConstantVector::get(Result);
Chris Lattner6b3f4752006-04-02 01:38:28 +000061 }
62
Reid Spencer6c38f0b2006-11-27 01:05:10 +000063 // If this is an int-to-fp cast ..
Chris Lattner03c49532007-01-15 02:27:26 +000064 if (SrcEltTy->isInteger()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +000065 // Ensure that it is int-to-fp cast
Chris Lattner6b3f4752006-04-02 01:38:28 +000066 assert(DstEltTy->isFloatingPoint());
67 if (DstEltTy->getTypeID() == Type::DoubleTyID) {
68 for (unsigned i = 0; i != SrcNumElts; ++i) {
69 double V =
Reid Spencer81658a82007-02-27 06:23:51 +000070 BitsToDouble(cast<ConstantInt>(CV->getOperand(i))->getZExtValue());
Chris Lattner6b3f4752006-04-02 01:38:28 +000071 Result.push_back(ConstantFP::get(Type::DoubleTy, V));
72 }
Reid Spencerd84d35b2007-02-15 02:26:10 +000073 return ConstantVector::get(Result);
Chris Lattner6b3f4752006-04-02 01:38:28 +000074 }
75 assert(DstEltTy == Type::FloatTy && "Unknown fp type!");
76 for (unsigned i = 0; i != SrcNumElts; ++i) {
77 float V =
Reid Spencer81658a82007-02-27 06:23:51 +000078 BitsToFloat(cast<ConstantInt>(CV->getOperand(i))->getZExtValue());
Chris Lattner6b3f4752006-04-02 01:38:28 +000079 Result.push_back(ConstantFP::get(Type::FloatTy, V));
80 }
Reid Spencerd84d35b2007-02-15 02:26:10 +000081 return ConstantVector::get(Result);
Chris Lattner6b3f4752006-04-02 01:38:28 +000082 }
83
84 // Otherwise, this is an fp-to-int cast.
Chris Lattner03c49532007-01-15 02:27:26 +000085 assert(SrcEltTy->isFloatingPoint() && DstEltTy->isInteger());
Chris Lattner6b3f4752006-04-02 01:38:28 +000086
87 if (SrcEltTy->getTypeID() == Type::DoubleTyID) {
88 for (unsigned i = 0; i != SrcNumElts; ++i) {
Reid Spencer81658a82007-02-27 06:23:51 +000089 double V =
90 DoubleToBits(cast<ConstantFP>(CV->getOperand(i))->getValue());
91 Constant *C = ConstantInt::get(Type::Int64Ty,
92 APIntOps::RoundDoubleToAPInt(V));
Reid Spencera16f9302006-12-05 07:18:07 +000093 Result.push_back(ConstantExpr::getBitCast(C, DstEltTy ));
Chris Lattner6b3f4752006-04-02 01:38:28 +000094 }
Reid Spencerd84d35b2007-02-15 02:26:10 +000095 return ConstantVector::get(Result);
Chris Lattner6b3f4752006-04-02 01:38:28 +000096 }
97
98 assert(SrcEltTy->getTypeID() == Type::FloatTyID);
99 for (unsigned i = 0; i != SrcNumElts; ++i) {
Reid Spencer81658a82007-02-27 06:23:51 +0000100 uint32_t V = FloatToBits(cast<ConstantFP>(CV->getOperand(i))->getValue());
Reid Spencer8d9336d2006-12-31 05:26:44 +0000101 Constant *C = ConstantInt::get(Type::Int32Ty, V);
Reid Spencera16f9302006-12-05 07:18:07 +0000102 Result.push_back(ConstantExpr::getBitCast(C, DstEltTy));
Chris Lattner6b3f4752006-04-02 01:38:28 +0000103 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000104 return ConstantVector::get(Result);
Chris Lattner6b3f4752006-04-02 01:38:28 +0000105 }
106
107 // Otherwise, this is a cast that changes element count and size. Handle
108 // casts which shrink the elements here.
109
110 // FIXME: We need to know endianness to do this!
111
112 return 0;
113}
114
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000115/// This function determines which opcode to use to fold two constant cast
116/// expressions together. It uses CastInst::isEliminableCastPair to determine
117/// the opcode. Consequently its just a wrapper around that function.
118/// @Determine if it is valid to fold a cast of a cast
119static unsigned
120foldConstantCastPair(
121 unsigned opc, ///< opcode of the second cast constant expression
122 const ConstantExpr*Op, ///< the first cast constant expression
123 const Type *DstTy ///< desintation type of the first cast
124) {
125 assert(Op && Op->isCast() && "Can't fold cast of cast without a cast!");
126 assert(DstTy && DstTy->isFirstClassType() && "Invalid cast destination type");
127 assert(CastInst::isCast(opc) && "Invalid cast opcode");
128
129 // The the types and opcodes for the two Cast constant expressions
130 const Type *SrcTy = Op->getOperand(0)->getType();
131 const Type *MidTy = Op->getType();
132 Instruction::CastOps firstOp = Instruction::CastOps(Op->getOpcode());
133 Instruction::CastOps secondOp = Instruction::CastOps(opc);
Chris Lattner6b3f4752006-04-02 01:38:28 +0000134
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000135 // Let CastInst::isEliminableCastPair do the heavy lifting.
136 return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy,
Reid Spencer8d9336d2006-12-31 05:26:44 +0000137 Type::Int64Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000138}
139
140Constant *llvm::ConstantFoldCastInstruction(unsigned opc, const Constant *V,
Chris Lattner1dd054c2004-01-12 22:07:24 +0000141 const Type *DestTy) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000142 const Type *SrcTy = V->getType();
Chris Lattner1dd054c2004-01-12 22:07:24 +0000143
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000144 if (isa<UndefValue>(V))
145 return UndefValue::get(DestTy);
146
147 // If the cast operand is a constant expression, there's a few things we can
148 // do to try to simplify it.
149 if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) {
150 if (CE->isCast()) {
Reid Spencer1a063892006-12-04 02:46:44 +0000151 // Try hard to fold cast of cast because they are often eliminable.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000152 if (unsigned newOpc = foldConstantCastPair(opc, CE, DestTy))
153 return ConstantExpr::getCast(newOpc, CE->getOperand(0), DestTy);
Chris Lattner1dd054c2004-01-12 22:07:24 +0000154 } else if (CE->getOpcode() == Instruction::GetElementPtr) {
155 // If all of the indexes in the GEP are null values, there is no pointer
156 // adjustment going on. We might as well cast the source pointer.
157 bool isAllNull = true;
158 for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
159 if (!CE->getOperand(i)->isNullValue()) {
160 isAllNull = false;
161 break;
162 }
163 if (isAllNull)
Reid Spencer1a063892006-12-04 02:46:44 +0000164 // This is casting one pointer type to another, always BitCast
Reid Spencer27720a92006-12-05 03:30:09 +0000165 return ConstantExpr::getPointerCast(CE->getOperand(0), DestTy);
Chris Lattner1dd054c2004-01-12 22:07:24 +0000166 }
Chris Lattnerfd7bf722004-10-16 23:31:32 +0000167 }
Chris Lattner1dd054c2004-01-12 22:07:24 +0000168
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000169 // We actually have to do a cast now. Perform the cast according to the
170 // opcode specified.
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000171 switch (opc) {
172 case Instruction::FPTrunc:
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000173 case Instruction::FPExt:
Reid Spencer8dabca42006-12-19 07:41:40 +0000174 if (const ConstantFP *FPC = dyn_cast<ConstantFP>(V))
175 return ConstantFP::get(DestTy, FPC->getValue());
176 return 0; // Can't fold.
177 case Instruction::FPToUI:
Reid Spencer81658a82007-02-27 06:23:51 +0000178 if (const ConstantFP *FPC = dyn_cast<ConstantFP>(V)) {
Reid Spencer81658a82007-02-27 06:23:51 +0000179 uint32_t DestBitWidth = cast<IntegerType>(DestTy)->getBitWidth();
Reid Spencerac419b52007-02-27 19:29:54 +0000180 APInt Val(APIntOps::RoundDoubleToAPInt(FPC->getValue(), DestBitWidth));
Reid Spencer81658a82007-02-27 06:23:51 +0000181 return ConstantInt::get(DestTy, Val);
182 }
Reid Spencer8dabca42006-12-19 07:41:40 +0000183 return 0; // Can't fold.
184 case Instruction::FPToSI:
Reid Spencer81658a82007-02-27 06:23:51 +0000185 if (const ConstantFP *FPC = dyn_cast<ConstantFP>(V)) {
Reid Spencer81658a82007-02-27 06:23:51 +0000186 uint32_t DestBitWidth = cast<IntegerType>(DestTy)->getBitWidth();
Reid Spencerac419b52007-02-27 19:29:54 +0000187 APInt Val(APIntOps::RoundDoubleToAPInt(FPC->getValue(), DestBitWidth));
Reid Spencer81658a82007-02-27 06:23:51 +0000188 return ConstantInt::get(DestTy, Val);
189 }
Reid Spencer8dabca42006-12-19 07:41:40 +0000190 return 0; // Can't fold.
191 case Instruction::IntToPtr: //always treated as unsigned
192 if (V->isNullValue()) // Is it an integral null value?
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000193 return ConstantPointerNull::get(cast<PointerType>(DestTy));
Reid Spencer8dabca42006-12-19 07:41:40 +0000194 return 0; // Other pointer types cannot be casted
195 case Instruction::PtrToInt: // always treated as unsigned
196 if (V->isNullValue()) // is it a null pointer value?
Zhou Sheng75b871f2007-01-11 12:24:14 +0000197 return ConstantInt::get(DestTy, 0);
Reid Spencer8dabca42006-12-19 07:41:40 +0000198 return 0; // Other pointer types cannot be casted
199 case Instruction::UIToFP:
Zhou Sheng75b871f2007-01-11 12:24:14 +0000200 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
Reid Spencer4aeaeaf2007-02-27 23:33:03 +0000201 return ConstantFP::get(DestTy, CI->getValue().roundToDouble());
Reid Spencer8dabca42006-12-19 07:41:40 +0000202 return 0;
203 case Instruction::SIToFP:
Zhou Sheng75b871f2007-01-11 12:24:14 +0000204 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V))
Reid Spencer4aeaeaf2007-02-27 23:33:03 +0000205 return ConstantFP::get(DestTy, CI->getValue().signedRoundToDouble());
Reid Spencer8dabca42006-12-19 07:41:40 +0000206 return 0;
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000207 case Instruction::ZExt:
Reid Spencer81658a82007-02-27 06:23:51 +0000208 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
209 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
210 APInt Result(CI->getValue());
211 Result.zext(BitWidth);
212 return ConstantInt::get(DestTy, Result);
213 }
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000214 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000215 case Instruction::SExt:
Reid Spencer81658a82007-02-27 06:23:51 +0000216 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
217 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
218 APInt Result(CI->getValue());
219 Result.sext(BitWidth);
220 return ConstantInt::get(DestTy, Result);
221 }
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000222 return 0;
Chris Lattner710ebaf2006-12-01 19:22:41 +0000223 case Instruction::Trunc:
Reid Spencer81658a82007-02-27 06:23:51 +0000224 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
225 uint32_t BitWidth = cast<IntegerType>(DestTy)->getBitWidth();
226 APInt Result(CI->getValue());
227 Result.trunc(BitWidth);
228 return ConstantInt::get(DestTy, Result);
229 }
Chris Lattner710ebaf2006-12-01 19:22:41 +0000230 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000231 case Instruction::BitCast:
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000232 if (SrcTy == DestTy)
233 return (Constant*)V; // no-op cast
Chris Lattner4d1da162006-12-11 18:30:27 +0000234
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000235 // Check to see if we are casting a pointer to an aggregate to a pointer to
236 // the first element. If so, return the appropriate GEP instruction.
237 if (const PointerType *PTy = dyn_cast<PointerType>(V->getType()))
238 if (const PointerType *DPTy = dyn_cast<PointerType>(DestTy)) {
Chris Lattner302116a2007-01-31 04:40:28 +0000239 SmallVector<Value*, 8> IdxList;
Reid Spencer8d9336d2006-12-31 05:26:44 +0000240 IdxList.push_back(Constant::getNullValue(Type::Int32Ty));
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000241 const Type *ElTy = PTy->getElementType();
242 while (ElTy != DPTy->getElementType()) {
243 if (const StructType *STy = dyn_cast<StructType>(ElTy)) {
244 if (STy->getNumElements() == 0) break;
245 ElTy = STy->getElementType(0);
Reid Spencer8d9336d2006-12-31 05:26:44 +0000246 IdxList.push_back(Constant::getNullValue(Type::Int32Ty));
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000247 } else if (const SequentialType *STy =
248 dyn_cast<SequentialType>(ElTy)) {
249 if (isa<PointerType>(ElTy)) break; // Can't index into pointers!
250 ElTy = STy->getElementType();
251 IdxList.push_back(IdxList[0]);
252 } else {
Chris Lattner6b3f4752006-04-02 01:38:28 +0000253 break;
254 }
255 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000256
257 if (ElTy == DPTy->getElementType())
258 return ConstantExpr::getGetElementPtr(
Chris Lattner302116a2007-01-31 04:40:28 +0000259 const_cast<Constant*>(V), &IdxList[0], IdxList.size());
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000260 }
261
262 // Handle casts from one packed constant to another. We know that the src
263 // and dest type have the same size (otherwise its an illegal cast).
Reid Spencerd84d35b2007-02-15 02:26:10 +0000264 if (const VectorType *DestPTy = dyn_cast<VectorType>(DestTy)) {
265 if (const VectorType *SrcTy = dyn_cast<VectorType>(V->getType())) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000266 assert(DestPTy->getBitWidth() == SrcTy->getBitWidth() &&
267 "Not cast between same sized vectors!");
268 // First, check for null and undef
269 if (isa<ConstantAggregateZero>(V))
270 return Constant::getNullValue(DestTy);
271 if (isa<UndefValue>(V))
272 return UndefValue::get(DestTy);
273
Reid Spencer81658a82007-02-27 06:23:51 +0000274 if (const ConstantVector *CV = dyn_cast<ConstantVector>(V)) {
Reid Spencerd84d35b2007-02-15 02:26:10 +0000275 // This is a cast from a ConstantVector of one type to a
276 // ConstantVector of another type. Check to see if all elements of
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000277 // the input are simple.
278 bool AllSimpleConstants = true;
Reid Spencer81658a82007-02-27 06:23:51 +0000279 for (unsigned i = 0, e = CV->getNumOperands(); i != e; ++i) {
280 if (!isa<ConstantInt>(CV->getOperand(i)) &&
281 !isa<ConstantFP>(CV->getOperand(i))) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000282 AllSimpleConstants = false;
283 break;
284 }
285 }
286
287 // If all of the elements are simple constants, we can fold this.
288 if (AllSimpleConstants)
Reid Spencer81658a82007-02-27 06:23:51 +0000289 return CastConstantVector(const_cast<ConstantVector*>(CV), DestPTy);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000290 }
Chris Lattner6b3f4752006-04-02 01:38:28 +0000291 }
292 }
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000293
Chris Lattner4d1da162006-12-11 18:30:27 +0000294 // Finally, implement bitcast folding now. The code below doesn't handle
295 // bitcast right.
296 if (isa<ConstantPointerNull>(V)) // ptr->ptr cast.
297 return ConstantPointerNull::get(cast<PointerType>(DestTy));
298
299 // Handle integral constant input.
300 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) {
Chris Lattner03c49532007-01-15 02:27:26 +0000301 if (DestTy->isInteger())
Reid Spencer81658a82007-02-27 06:23:51 +0000302 // Integral -> Integral. This is a no-op because the bit widths must
303 // be the same. Consequently, we just fold to V.
304 return const_cast<Constant*>(V);
Chris Lattner4d1da162006-12-11 18:30:27 +0000305
306 if (DestTy->isFloatingPoint()) {
307 if (DestTy == Type::FloatTy)
308 return ConstantFP::get(DestTy, BitsToFloat(CI->getZExtValue()));
309 assert(DestTy == Type::DoubleTy && "Unknown FP type!");
310 return ConstantFP::get(DestTy, BitsToDouble(CI->getZExtValue()));
311 }
312 // Otherwise, can't fold this (packed?)
313 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000314 }
Chris Lattner4d1da162006-12-11 18:30:27 +0000315
316 // Handle ConstantFP input.
317 if (const ConstantFP *FP = dyn_cast<ConstantFP>(V)) {
318 // FP -> Integral.
Chris Lattnere62c89a2007-02-06 02:22:56 +0000319 if (DestTy == Type::Int32Ty) {
320 return ConstantInt::get(DestTy, FloatToBits(FP->getValue()));
321 } else {
322 assert(DestTy == Type::Int64Ty && "only support f32/f64 for now!");
Chris Lattner4d1da162006-12-11 18:30:27 +0000323 return ConstantInt::get(DestTy, DoubleToBits(FP->getValue()));
Chris Lattnere62c89a2007-02-06 02:22:56 +0000324 }
Chris Lattner4d1da162006-12-11 18:30:27 +0000325 }
326 return 0;
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000327 default:
328 assert(!"Invalid CE CastInst opcode");
329 break;
Chris Lattner6b3f4752006-04-02 01:38:28 +0000330 }
Chris Lattnerb2b7f902004-10-11 03:57:30 +0000331
Reid Spencerf5fc34a2006-12-19 03:15:47 +0000332 assert(0 && "Failed to cast constant expression");
333 return 0;
Chris Lattner1dd054c2004-01-12 22:07:24 +0000334}
335
Chris Lattner6ea4b522004-03-12 05:53:32 +0000336Constant *llvm::ConstantFoldSelectInstruction(const Constant *Cond,
337 const Constant *V1,
338 const Constant *V2) {
Zhou Sheng75b871f2007-01-11 12:24:14 +0000339 if (const ConstantInt *CB = dyn_cast<ConstantInt>(Cond))
Reid Spencercddc9df2007-01-12 04:24:46 +0000340 return const_cast<Constant*>(CB->getZExtValue() ? V1 : V2);
Chris Lattnerfd7bf722004-10-16 23:31:32 +0000341
342 if (isa<UndefValue>(V1)) return const_cast<Constant*>(V2);
343 if (isa<UndefValue>(V2)) return const_cast<Constant*>(V1);
344 if (isa<UndefValue>(Cond)) return const_cast<Constant*>(V1);
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000345 if (V1 == V2) return const_cast<Constant*>(V1);
Chris Lattner6ea4b522004-03-12 05:53:32 +0000346 return 0;
347}
348
Robert Bocchinode7f1c92006-01-10 20:03:46 +0000349Constant *llvm::ConstantFoldExtractElementInstruction(const Constant *Val,
350 const Constant *Idx) {
Chris Lattnere52f29b2006-03-31 18:31:40 +0000351 if (isa<UndefValue>(Val)) // ee(undef, x) -> undef
Reid Spencerd84d35b2007-02-15 02:26:10 +0000352 return UndefValue::get(cast<VectorType>(Val->getType())->getElementType());
Chris Lattnere4f9d7b2006-04-07 04:44:06 +0000353 if (Val->isNullValue()) // ee(zero, x) -> zero
354 return Constant::getNullValue(
Reid Spencerd84d35b2007-02-15 02:26:10 +0000355 cast<VectorType>(Val->getType())->getElementType());
Chris Lattnere52f29b2006-03-31 18:31:40 +0000356
Reid Spencerd84d35b2007-02-15 02:26:10 +0000357 if (const ConstantVector *CVal = dyn_cast<ConstantVector>(Val)) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000358 if (const ConstantInt *CIdx = dyn_cast<ConstantInt>(Idx)) {
359 return const_cast<Constant*>(CVal->getOperand(CIdx->getZExtValue()));
Chris Lattnere52f29b2006-03-31 18:31:40 +0000360 } else if (isa<UndefValue>(Idx)) {
361 // ee({w,x,y,z}, undef) -> w (an arbitrary value).
362 return const_cast<Constant*>(CVal->getOperand(0));
Robert Bocchinode7f1c92006-01-10 20:03:46 +0000363 }
Chris Lattnere52f29b2006-03-31 18:31:40 +0000364 }
Robert Bocchinode7f1c92006-01-10 20:03:46 +0000365 return 0;
366}
367
Robert Bocchinoca27f032006-01-17 20:07:22 +0000368Constant *llvm::ConstantFoldInsertElementInstruction(const Constant *Val,
369 const Constant *Elt,
370 const Constant *Idx) {
Reid Spencere0fc4df2006-10-20 07:07:24 +0000371 const ConstantInt *CIdx = dyn_cast<ConstantInt>(Idx);
Robert Bocchinoca27f032006-01-17 20:07:22 +0000372 if (!CIdx) return 0;
Reid Spencer81658a82007-02-27 06:23:51 +0000373 APInt idxVal = CIdx->getValue();
Reid Spencer3054b142006-11-02 08:18:15 +0000374 if (isa<UndefValue>(Val)) {
Robert Bocchinoca27f032006-01-17 20:07:22 +0000375 // Insertion of scalar constant into packed undef
376 // Optimize away insertion of undef
377 if (isa<UndefValue>(Elt))
378 return const_cast<Constant*>(Val);
379 // Otherwise break the aggregate undef into multiple undefs and do
380 // the insertion
381 unsigned numOps =
Reid Spencerd84d35b2007-02-15 02:26:10 +0000382 cast<VectorType>(Val->getType())->getNumElements();
Robert Bocchinoca27f032006-01-17 20:07:22 +0000383 std::vector<Constant*> Ops;
384 Ops.reserve(numOps);
385 for (unsigned i = 0; i < numOps; ++i) {
386 const Constant *Op =
Reid Spencer81658a82007-02-27 06:23:51 +0000387 (idxVal == i) ? Elt : UndefValue::get(Elt->getType());
Robert Bocchinoca27f032006-01-17 20:07:22 +0000388 Ops.push_back(const_cast<Constant*>(Op));
389 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000390 return ConstantVector::get(Ops);
Robert Bocchinoca27f032006-01-17 20:07:22 +0000391 }
Reid Spencer3054b142006-11-02 08:18:15 +0000392 if (isa<ConstantAggregateZero>(Val)) {
Robert Bocchinoca27f032006-01-17 20:07:22 +0000393 // Insertion of scalar constant into packed aggregate zero
394 // Optimize away insertion of zero
395 if (Elt->isNullValue())
396 return const_cast<Constant*>(Val);
397 // Otherwise break the aggregate zero into multiple zeros and do
398 // the insertion
399 unsigned numOps =
Reid Spencerd84d35b2007-02-15 02:26:10 +0000400 cast<VectorType>(Val->getType())->getNumElements();
Robert Bocchinoca27f032006-01-17 20:07:22 +0000401 std::vector<Constant*> Ops;
402 Ops.reserve(numOps);
403 for (unsigned i = 0; i < numOps; ++i) {
404 const Constant *Op =
Reid Spencer81658a82007-02-27 06:23:51 +0000405 (idxVal == i) ? Elt : Constant::getNullValue(Elt->getType());
Robert Bocchinoca27f032006-01-17 20:07:22 +0000406 Ops.push_back(const_cast<Constant*>(Op));
407 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000408 return ConstantVector::get(Ops);
Robert Bocchinoca27f032006-01-17 20:07:22 +0000409 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000410 if (const ConstantVector *CVal = dyn_cast<ConstantVector>(Val)) {
Robert Bocchinoca27f032006-01-17 20:07:22 +0000411 // Insertion of scalar constant into packed constant
412 std::vector<Constant*> Ops;
413 Ops.reserve(CVal->getNumOperands());
414 for (unsigned i = 0; i < CVal->getNumOperands(); ++i) {
415 const Constant *Op =
Reid Spencer81658a82007-02-27 06:23:51 +0000416 (idxVal == i) ? Elt : cast<Constant>(CVal->getOperand(i));
Robert Bocchinoca27f032006-01-17 20:07:22 +0000417 Ops.push_back(const_cast<Constant*>(Op));
418 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000419 return ConstantVector::get(Ops);
Robert Bocchinoca27f032006-01-17 20:07:22 +0000420 }
421 return 0;
422}
423
Chris Lattnerbbe0a422006-04-08 01:18:18 +0000424Constant *llvm::ConstantFoldShuffleVectorInstruction(const Constant *V1,
425 const Constant *V2,
426 const Constant *Mask) {
427 // TODO:
428 return 0;
429}
430
Reid Spencer266e42b2006-12-23 06:05:41 +0000431/// EvalVectorOp - Given two packed constants and a function pointer, apply the
Reid Spencerd84d35b2007-02-15 02:26:10 +0000432/// function pointer to each element pair, producing a new ConstantVector
Reid Spencer266e42b2006-12-23 06:05:41 +0000433/// constant.
Reid Spencerd84d35b2007-02-15 02:26:10 +0000434static Constant *EvalVectorOp(const ConstantVector *V1,
435 const ConstantVector *V2,
Reid Spencer266e42b2006-12-23 06:05:41 +0000436 Constant *(*FP)(Constant*, Constant*)) {
437 std::vector<Constant*> Res;
438 for (unsigned i = 0, e = V1->getNumOperands(); i != e; ++i)
439 Res.push_back(FP(const_cast<Constant*>(V1->getOperand(i)),
440 const_cast<Constant*>(V2->getOperand(i))));
Reid Spencerd84d35b2007-02-15 02:26:10 +0000441 return ConstantVector::get(Res);
Reid Spencer266e42b2006-12-23 06:05:41 +0000442}
443
444Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode,
445 const Constant *C1,
446 const Constant *C2) {
447 // Handle UndefValue up front
448 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) {
449 switch (Opcode) {
450 case Instruction::Add:
451 case Instruction::Sub:
452 case Instruction::Xor:
453 return UndefValue::get(C1->getType());
454 case Instruction::Mul:
455 case Instruction::And:
456 return Constant::getNullValue(C1->getType());
457 case Instruction::UDiv:
458 case Instruction::SDiv:
459 case Instruction::FDiv:
460 case Instruction::URem:
461 case Instruction::SRem:
462 case Instruction::FRem:
463 if (!isa<UndefValue>(C2)) // undef / X -> 0
464 return Constant::getNullValue(C1->getType());
465 return const_cast<Constant*>(C2); // X / undef -> undef
466 case Instruction::Or: // X | undef -> -1
Reid Spencerd84d35b2007-02-15 02:26:10 +0000467 if (const VectorType *PTy = dyn_cast<VectorType>(C1->getType()))
468 return ConstantVector::getAllOnesValue(PTy);
Reid Spencer266e42b2006-12-23 06:05:41 +0000469 return ConstantInt::getAllOnesValue(C1->getType());
470 case Instruction::LShr:
471 if (isa<UndefValue>(C2) && isa<UndefValue>(C1))
472 return const_cast<Constant*>(C1); // undef lshr undef -> undef
473 return Constant::getNullValue(C1->getType()); // X lshr undef -> 0
474 // undef lshr X -> 0
475 case Instruction::AShr:
476 if (!isa<UndefValue>(C2))
477 return const_cast<Constant*>(C1); // undef ashr X --> undef
478 else if (isa<UndefValue>(C1))
479 return const_cast<Constant*>(C1); // undef ashr undef -> undef
480 else
481 return const_cast<Constant*>(C1); // X ashr undef --> X
482 case Instruction::Shl:
483 // undef << X -> 0 or X << undef -> 0
484 return Constant::getNullValue(C1->getType());
485 }
486 }
487
488 if (const ConstantExpr *CE1 = dyn_cast<ConstantExpr>(C1)) {
489 if (isa<ConstantExpr>(C2)) {
490 // There are many possible foldings we could do here. We should probably
491 // at least fold add of a pointer with an integer into the appropriate
492 // getelementptr. This will improve alias analysis a bit.
493 } else {
494 // Just implement a couple of simple identities.
495 switch (Opcode) {
496 case Instruction::Add:
497 if (C2->isNullValue()) return const_cast<Constant*>(C1); // X + 0 == X
498 break;
499 case Instruction::Sub:
500 if (C2->isNullValue()) return const_cast<Constant*>(C1); // X - 0 == X
501 break;
502 case Instruction::Mul:
503 if (C2->isNullValue()) return const_cast<Constant*>(C2); // X * 0 == 0
504 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C2))
Reid Spencer81658a82007-02-27 06:23:51 +0000505 if (CI->equalsInt(1))
Reid Spencer266e42b2006-12-23 06:05:41 +0000506 return const_cast<Constant*>(C1); // X * 1 == X
507 break;
508 case Instruction::UDiv:
509 case Instruction::SDiv:
510 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C2))
Reid Spencer81658a82007-02-27 06:23:51 +0000511 if (CI->equalsInt(1))
Reid Spencer266e42b2006-12-23 06:05:41 +0000512 return const_cast<Constant*>(C1); // X / 1 == X
513 break;
514 case Instruction::URem:
515 case Instruction::SRem:
516 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C2))
Reid Spencer81658a82007-02-27 06:23:51 +0000517 if (CI->equalsInt(1))
Reid Spencer266e42b2006-12-23 06:05:41 +0000518 return Constant::getNullValue(CI->getType()); // X % 1 == 0
519 break;
520 case Instruction::And:
Chris Lattner26f13eb2007-01-04 01:56:39 +0000521 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C2))
522 if (CI->isAllOnesValue())
523 return const_cast<Constant*>(C1); // X & -1 == X
Reid Spencer266e42b2006-12-23 06:05:41 +0000524 if (C2->isNullValue()) return const_cast<Constant*>(C2); // X & 0 == 0
525 if (CE1->isCast() && isa<GlobalValue>(CE1->getOperand(0))) {
526 GlobalValue *CPR = cast<GlobalValue>(CE1->getOperand(0));
527
528 // Functions are at least 4-byte aligned. If and'ing the address of a
529 // function with a constant < 4, fold it to zero.
530 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C2))
Reid Spencer81658a82007-02-27 06:23:51 +0000531 if (CI->getValue().ult(APInt(CI->getType()->getBitWidth(),4)) &&
532 isa<Function>(CPR))
Reid Spencer266e42b2006-12-23 06:05:41 +0000533 return Constant::getNullValue(CI->getType());
534 }
535 break;
536 case Instruction::Or:
537 if (C2->isNullValue()) return const_cast<Constant*>(C1); // X | 0 == X
Chris Lattner26f13eb2007-01-04 01:56:39 +0000538 if (const ConstantInt *CI = dyn_cast<ConstantInt>(C2))
539 if (CI->isAllOnesValue())
540 return const_cast<Constant*>(C2); // X | -1 == -1
Reid Spencer266e42b2006-12-23 06:05:41 +0000541 break;
542 case Instruction::Xor:
543 if (C2->isNullValue()) return const_cast<Constant*>(C1); // X ^ 0 == X
544 break;
545 }
546 }
547 } else if (isa<ConstantExpr>(C2)) {
548 // If C2 is a constant expr and C1 isn't, flop them around and fold the
549 // other way if possible.
550 switch (Opcode) {
551 case Instruction::Add:
552 case Instruction::Mul:
553 case Instruction::And:
554 case Instruction::Or:
555 case Instruction::Xor:
556 // No change of opcode required.
557 return ConstantFoldBinaryInstruction(Opcode, C2, C1);
558
559 case Instruction::Shl:
560 case Instruction::LShr:
561 case Instruction::AShr:
562 case Instruction::Sub:
563 case Instruction::SDiv:
564 case Instruction::UDiv:
565 case Instruction::FDiv:
566 case Instruction::URem:
567 case Instruction::SRem:
568 case Instruction::FRem:
569 default: // These instructions cannot be flopped around.
570 return 0;
571 }
572 }
573
574 // At this point we know neither constant is an UndefValue nor a ConstantExpr
Chris Lattner26f13eb2007-01-04 01:56:39 +0000575 // so look at directly computing the value.
Zhou Sheng75b871f2007-01-11 12:24:14 +0000576 if (const ConstantInt *CI1 = dyn_cast<ConstantInt>(C1)) {
577 if (const ConstantInt *CI2 = dyn_cast<ConstantInt>(C2)) {
Reid Spencer81658a82007-02-27 06:23:51 +0000578 using namespace APIntOps;
579 APInt C1V = CI1->getValue();
580 APInt C2V = CI2->getValue();
Chris Lattner344da522007-01-12 18:42:52 +0000581 switch (Opcode) {
582 default:
583 break;
584 case Instruction::Add:
Reid Spencer81658a82007-02-27 06:23:51 +0000585 return ConstantInt::get(C1->getType(), C1V + C2V);
Chris Lattner344da522007-01-12 18:42:52 +0000586 case Instruction::Sub:
Reid Spencer81658a82007-02-27 06:23:51 +0000587 return ConstantInt::get(C1->getType(), C1V - C2V);
Chris Lattner344da522007-01-12 18:42:52 +0000588 case Instruction::Mul:
Reid Spencer81658a82007-02-27 06:23:51 +0000589 return ConstantInt::get(C1->getType(), C1V * C2V);
Chris Lattner344da522007-01-12 18:42:52 +0000590 case Instruction::UDiv:
Reid Spencer81658a82007-02-27 06:23:51 +0000591 if (CI2->isNullValue())
592 return 0; // X / 0 -> can't fold
593 return ConstantInt::get(C1->getType(), C1V.udiv(C2V));
Chris Lattner344da522007-01-12 18:42:52 +0000594 case Instruction::SDiv:
Reid Spencer81658a82007-02-27 06:23:51 +0000595 if (CI2->isNullValue())
596 return 0; // X / 0 -> can't fold
Reid Spencer81658a82007-02-27 06:23:51 +0000597 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
598 return 0; // MIN_INT / -1 -> overflow
599 return ConstantInt::get(C1->getType(), C1V.sdiv(C2V));
600 case Instruction::URem:
601 if (C2->isNullValue())
602 return 0; // X / 0 -> can't fold
603 return ConstantInt::get(C1->getType(), C1V.urem(C2V));
Chris Lattner344da522007-01-12 18:42:52 +0000604 case Instruction::SRem:
Reid Spencer81658a82007-02-27 06:23:51 +0000605 if (CI2->isNullValue())
606 return 0; // X % 0 -> can't fold
607 if (C2V.isAllOnesValue() && C1V.isMinSignedValue())
608 return 0; // MIN_INT % -1 -> overflow
609 return ConstantInt::get(C1->getType(), C1V.srem(C2V));
Chris Lattner344da522007-01-12 18:42:52 +0000610 case Instruction::And:
Reid Spencer81658a82007-02-27 06:23:51 +0000611 return ConstantInt::get(C1->getType(), C1V & C2V);
Chris Lattner344da522007-01-12 18:42:52 +0000612 case Instruction::Or:
Reid Spencer81658a82007-02-27 06:23:51 +0000613 return ConstantInt::get(C1->getType(), C1V | C2V);
Chris Lattner344da522007-01-12 18:42:52 +0000614 case Instruction::Xor:
Reid Spencer81658a82007-02-27 06:23:51 +0000615 return ConstantInt::get(C1->getType(), C1V ^ C2V);
Chris Lattner344da522007-01-12 18:42:52 +0000616 case Instruction::Shl:
Reid Spencer81658a82007-02-27 06:23:51 +0000617 if (uint32_t shiftAmt = C2V.getZExtValue())
Reid Spencerac419b52007-02-27 19:29:54 +0000618 if (shiftAmt < C1V.getBitWidth())
Reid Spencer81658a82007-02-27 06:23:51 +0000619 return ConstantInt::get(C1->getType(), C1V.shl(shiftAmt));
620 else
621 return UndefValue::get(C1->getType()); // too big shift is undef
622 return const_cast<ConstantInt*>(CI1); // Zero shift is identity
Chris Lattner344da522007-01-12 18:42:52 +0000623 case Instruction::LShr:
Reid Spencer81658a82007-02-27 06:23:51 +0000624 if (uint32_t shiftAmt = C2V.getZExtValue())
Reid Spencerac419b52007-02-27 19:29:54 +0000625 if (shiftAmt < C1V.getBitWidth())
Reid Spencer81658a82007-02-27 06:23:51 +0000626 return ConstantInt::get(C1->getType(), C1V.lshr(shiftAmt));
627 else
628 return UndefValue::get(C1->getType()); // too big shift is undef
629 return const_cast<ConstantInt*>(CI1); // Zero shift is identity
Chris Lattner344da522007-01-12 18:42:52 +0000630 case Instruction::AShr:
Reid Spencer81658a82007-02-27 06:23:51 +0000631 if (uint32_t shiftAmt = C2V.getZExtValue())
Reid Spencerac419b52007-02-27 19:29:54 +0000632 if (shiftAmt < C1V.getBitWidth())
Reid Spencer81658a82007-02-27 06:23:51 +0000633 return ConstantInt::get(C1->getType(), C1V.ashr(shiftAmt));
634 else
635 return UndefValue::get(C1->getType()); // too big shift is undef
636 return const_cast<ConstantInt*>(CI1); // Zero shift is identity
Reid Spencer266e42b2006-12-23 06:05:41 +0000637 }
638 }
639 } else if (const ConstantFP *CFP1 = dyn_cast<ConstantFP>(C1)) {
640 if (const ConstantFP *CFP2 = dyn_cast<ConstantFP>(C2)) {
641 double C1Val = CFP1->getValue();
642 double C2Val = CFP2->getValue();
643 switch (Opcode) {
644 default:
645 break;
646 case Instruction::Add:
647 return ConstantFP::get(CFP1->getType(), C1Val + C2Val);
648 case Instruction::Sub:
649 return ConstantFP::get(CFP1->getType(), C1Val - C2Val);
650 case Instruction::Mul:
651 return ConstantFP::get(CFP1->getType(), C1Val * C2Val);
652 case Instruction::FDiv:
653 if (CFP2->isExactlyValue(0.0))
654 return ConstantFP::get(CFP1->getType(),
655 std::numeric_limits<double>::infinity());
656 if (CFP2->isExactlyValue(-0.0))
657 return ConstantFP::get(CFP1->getType(),
658 -std::numeric_limits<double>::infinity());
659 return ConstantFP::get(CFP1->getType(), C1Val / C2Val);
660 case Instruction::FRem:
661 if (CFP2->isNullValue())
662 return 0;
663 return ConstantFP::get(CFP1->getType(), std::fmod(C1Val, C2Val));
664 }
665 }
Reid Spencerd84d35b2007-02-15 02:26:10 +0000666 } else if (const ConstantVector *CP1 = dyn_cast<ConstantVector>(C1)) {
667 if (const ConstantVector *CP2 = dyn_cast<ConstantVector>(C2)) {
Reid Spencer266e42b2006-12-23 06:05:41 +0000668 switch (Opcode) {
669 default:
670 break;
671 case Instruction::Add:
672 return EvalVectorOp(CP1, CP2, ConstantExpr::getAdd);
673 case Instruction::Sub:
674 return EvalVectorOp(CP1, CP2, ConstantExpr::getSub);
675 case Instruction::Mul:
676 return EvalVectorOp(CP1, CP2, ConstantExpr::getMul);
677 case Instruction::UDiv:
678 return EvalVectorOp(CP1, CP2, ConstantExpr::getUDiv);
679 case Instruction::SDiv:
680 return EvalVectorOp(CP1, CP2, ConstantExpr::getSDiv);
681 case Instruction::FDiv:
682 return EvalVectorOp(CP1, CP2, ConstantExpr::getFDiv);
683 case Instruction::URem:
684 return EvalVectorOp(CP1, CP2, ConstantExpr::getURem);
685 case Instruction::SRem:
686 return EvalVectorOp(CP1, CP2, ConstantExpr::getSRem);
687 case Instruction::FRem:
688 return EvalVectorOp(CP1, CP2, ConstantExpr::getFRem);
689 case Instruction::And:
690 return EvalVectorOp(CP1, CP2, ConstantExpr::getAnd);
691 case Instruction::Or:
692 return EvalVectorOp(CP1, CP2, ConstantExpr::getOr);
693 case Instruction::Xor:
694 return EvalVectorOp(CP1, CP2, ConstantExpr::getXor);
695 }
696 }
697 }
698
699 // We don't know how to fold this
700 return 0;
701}
Chris Lattnerbbe0a422006-04-08 01:18:18 +0000702
Chris Lattner60c47262005-01-28 19:09:51 +0000703/// isZeroSizedType - This type is zero sized if its an array or structure of
704/// zero sized types. The only leaf zero sized type is an empty structure.
705static bool isMaybeZeroSizedType(const Type *Ty) {
706 if (isa<OpaqueType>(Ty)) return true; // Can't say.
707 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
708
709 // If all of elements have zero size, this does too.
710 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
Chris Lattnerfeaf92f2005-01-28 23:17:27 +0000711 if (!isMaybeZeroSizedType(STy->getElementType(i))) return false;
Chris Lattner60c47262005-01-28 19:09:51 +0000712 return true;
713
714 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
715 return isMaybeZeroSizedType(ATy->getElementType());
716 }
717 return false;
718}
Chris Lattner6ea4b522004-03-12 05:53:32 +0000719
Chris Lattner061da2f2004-01-13 05:51:55 +0000720/// IdxCompare - Compare the two constants as though they were getelementptr
721/// indices. This allows coersion of the types to be the same thing.
722///
723/// If the two constants are the "same" (after coersion), return 0. If the
724/// first is less than the second, return -1, if the second is less than the
725/// first, return 1. If the constants are not integral, return -2.
726///
Chris Lattner60c47262005-01-28 19:09:51 +0000727static int IdxCompare(Constant *C1, Constant *C2, const Type *ElTy) {
Chris Lattner061da2f2004-01-13 05:51:55 +0000728 if (C1 == C2) return 0;
729
Reid Spencerc90cf772006-12-31 21:43:30 +0000730 // Ok, we found a different index. If they are not ConstantInt, we can't do
731 // anything with them.
Chris Lattner061da2f2004-01-13 05:51:55 +0000732 if (!isa<ConstantInt>(C1) || !isa<ConstantInt>(C2))
733 return -2; // don't know!
Misha Brukmanb1c93172005-04-21 23:48:37 +0000734
Chris Lattner69193f92004-04-05 01:30:19 +0000735 // Ok, we have two differing integer indices. Sign extend them to be the same
736 // type. Long is always big enough, so we use it.
Reid Spencer8d9336d2006-12-31 05:26:44 +0000737 if (C1->getType() != Type::Int64Ty)
738 C1 = ConstantExpr::getSExt(C1, Type::Int64Ty);
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000739
Reid Spencer8d9336d2006-12-31 05:26:44 +0000740 if (C2->getType() != Type::Int64Ty)
Reid Spencerc90cf772006-12-31 21:43:30 +0000741 C2 = ConstantExpr::getSExt(C2, Type::Int64Ty);
Reid Spencer8d9336d2006-12-31 05:26:44 +0000742
743 if (C1 == C2) return 0; // They are equal
Chris Lattner061da2f2004-01-13 05:51:55 +0000744
Chris Lattner60c47262005-01-28 19:09:51 +0000745 // If the type being indexed over is really just a zero sized type, there is
746 // no pointer difference being made here.
747 if (isMaybeZeroSizedType(ElTy))
748 return -2; // dunno.
749
Chris Lattner061da2f2004-01-13 05:51:55 +0000750 // If they are really different, now that they are the same type, then we
751 // found a difference!
Reid Spencere0fc4df2006-10-20 07:07:24 +0000752 if (cast<ConstantInt>(C1)->getSExtValue() <
753 cast<ConstantInt>(C2)->getSExtValue())
Chris Lattner061da2f2004-01-13 05:51:55 +0000754 return -1;
755 else
756 return 1;
757}
758
Chris Lattner858f4e92007-01-04 02:13:20 +0000759/// evaluateFCmpRelation - This function determines if there is anything we can
Reid Spencer266e42b2006-12-23 06:05:41 +0000760/// decide about the two constants provided. This doesn't need to handle simple
761/// things like ConstantFP comparisons, but should instead handle ConstantExprs.
762/// If we can determine that the two constants have a particular relation to
763/// each other, we should return the corresponding FCmpInst predicate,
Reid Spencer9d36acf2006-12-24 18:52:08 +0000764/// otherwise return FCmpInst::BAD_FCMP_PREDICATE. This is used below in
765/// ConstantFoldCompareInstruction.
Reid Spencer266e42b2006-12-23 06:05:41 +0000766///
767/// To simplify this code we canonicalize the relation so that the first
Reid Spencer9d36acf2006-12-24 18:52:08 +0000768/// operand is always the most "complex" of the two. We consider ConstantFP
769/// to be the simplest, and ConstantExprs to be the most complex.
770static FCmpInst::Predicate evaluateFCmpRelation(const Constant *V1,
771 const Constant *V2) {
Reid Spencer266e42b2006-12-23 06:05:41 +0000772 assert(V1->getType() == V2->getType() &&
Reid Spencer9d36acf2006-12-24 18:52:08 +0000773 "Cannot compare values of different types!");
774 // Handle degenerate case quickly
Reid Spencer266e42b2006-12-23 06:05:41 +0000775 if (V1 == V2) return FCmpInst::FCMP_OEQ;
776
Reid Spencer9d36acf2006-12-24 18:52:08 +0000777 if (!isa<ConstantExpr>(V1)) {
778 if (!isa<ConstantExpr>(V2)) {
779 // We distilled thisUse the standard constant folder for a few cases
Zhou Sheng75b871f2007-01-11 12:24:14 +0000780 ConstantInt *R = 0;
Reid Spencer9d36acf2006-12-24 18:52:08 +0000781 Constant *C1 = const_cast<Constant*>(V1);
782 Constant *C2 = const_cast<Constant*>(V2);
Zhou Sheng75b871f2007-01-11 12:24:14 +0000783 R = dyn_cast<ConstantInt>(
Reid Spencer9d36acf2006-12-24 18:52:08 +0000784 ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ, C1, C2));
Reid Spencer81658a82007-02-27 06:23:51 +0000785 if (R && !R->isNullValue())
Reid Spencer266e42b2006-12-23 06:05:41 +0000786 return FCmpInst::FCMP_OEQ;
Zhou Sheng75b871f2007-01-11 12:24:14 +0000787 R = dyn_cast<ConstantInt>(
Reid Spencer9d36acf2006-12-24 18:52:08 +0000788 ConstantExpr::getFCmp(FCmpInst::FCMP_OLT, C1, C2));
Reid Spencer81658a82007-02-27 06:23:51 +0000789 if (R && !R->isNullValue())
Reid Spencer266e42b2006-12-23 06:05:41 +0000790 return FCmpInst::FCMP_OLT;
Zhou Sheng75b871f2007-01-11 12:24:14 +0000791 R = dyn_cast<ConstantInt>(
Reid Spencer9d36acf2006-12-24 18:52:08 +0000792 ConstantExpr::getFCmp(FCmpInst::FCMP_OGT, C1, C2));
Reid Spencer81658a82007-02-27 06:23:51 +0000793 if (R && !R->isNullValue())
Reid Spencer9d36acf2006-12-24 18:52:08 +0000794 return FCmpInst::FCMP_OGT;
795
796 // Nothing more we can do
Reid Spencer266e42b2006-12-23 06:05:41 +0000797 return FCmpInst::BAD_FCMP_PREDICATE;
798 }
799
Reid Spencer9d36acf2006-12-24 18:52:08 +0000800 // If the first operand is simple and second is ConstantExpr, swap operands.
801 FCmpInst::Predicate SwappedRelation = evaluateFCmpRelation(V2, V1);
802 if (SwappedRelation != FCmpInst::BAD_FCMP_PREDICATE)
803 return FCmpInst::getSwappedPredicate(SwappedRelation);
804 } else {
805 // Ok, the LHS is known to be a constantexpr. The RHS can be any of a
806 // constantexpr or a simple constant.
807 const ConstantExpr *CE1 = cast<ConstantExpr>(V1);
808 switch (CE1->getOpcode()) {
809 case Instruction::FPTrunc:
810 case Instruction::FPExt:
811 case Instruction::UIToFP:
812 case Instruction::SIToFP:
813 // We might be able to do something with these but we don't right now.
814 break;
815 default:
816 break;
817 }
Reid Spencer266e42b2006-12-23 06:05:41 +0000818 }
Reid Spencer266e42b2006-12-23 06:05:41 +0000819 // There are MANY other foldings that we could perform here. They will
820 // probably be added on demand, as they seem needed.
821 return FCmpInst::BAD_FCMP_PREDICATE;
822}
823
824/// evaluateICmpRelation - This function determines if there is anything we can
Chris Lattner061da2f2004-01-13 05:51:55 +0000825/// decide about the two constants provided. This doesn't need to handle simple
Reid Spenceraccd7c72004-07-17 23:47:01 +0000826/// things like integer comparisons, but should instead handle ConstantExprs
Chris Lattner8410beb2006-12-11 02:16:58 +0000827/// and GlobalValues. If we can determine that the two constants have a
Reid Spencer266e42b2006-12-23 06:05:41 +0000828/// particular relation to each other, we should return the corresponding ICmp
829/// predicate, otherwise return ICmpInst::BAD_ICMP_PREDICATE.
Chris Lattner061da2f2004-01-13 05:51:55 +0000830///
831/// To simplify this code we canonicalize the relation so that the first
832/// operand is always the most "complex" of the two. We consider simple
833/// constants (like ConstantInt) to be the simplest, followed by
Reid Spenceraccd7c72004-07-17 23:47:01 +0000834/// GlobalValues, followed by ConstantExpr's (the most complex).
Chris Lattner061da2f2004-01-13 05:51:55 +0000835///
Reid Spencer9d36acf2006-12-24 18:52:08 +0000836static ICmpInst::Predicate evaluateICmpRelation(const Constant *V1,
837 const Constant *V2,
Reid Spencer266e42b2006-12-23 06:05:41 +0000838 bool isSigned) {
Chris Lattner061da2f2004-01-13 05:51:55 +0000839 assert(V1->getType() == V2->getType() &&
840 "Cannot compare different types of values!");
Reid Spencer266e42b2006-12-23 06:05:41 +0000841 if (V1 == V2) return ICmpInst::ICMP_EQ;
Chris Lattner061da2f2004-01-13 05:51:55 +0000842
Reid Spenceraccd7c72004-07-17 23:47:01 +0000843 if (!isa<ConstantExpr>(V1) && !isa<GlobalValue>(V1)) {
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000844 if (!isa<GlobalValue>(V2) && !isa<ConstantExpr>(V2)) {
845 // We distilled this down to a simple case, use the standard constant
846 // folder.
Zhou Sheng75b871f2007-01-11 12:24:14 +0000847 ConstantInt *R = 0;
Reid Spencer9d36acf2006-12-24 18:52:08 +0000848 Constant *C1 = const_cast<Constant*>(V1);
849 Constant *C2 = const_cast<Constant*>(V2);
Reid Spencer266e42b2006-12-23 06:05:41 +0000850 ICmpInst::Predicate pred = ICmpInst::ICMP_EQ;
Zhou Sheng75b871f2007-01-11 12:24:14 +0000851 R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, C1, C2));
Reid Spencer81658a82007-02-27 06:23:51 +0000852 if (R && !R->isNullValue())
Reid Spencer266e42b2006-12-23 06:05:41 +0000853 return pred;
854 pred = isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
Zhou Sheng75b871f2007-01-11 12:24:14 +0000855 R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, C1, C2));
Reid Spencer81658a82007-02-27 06:23:51 +0000856 if (R && !R->isNullValue())
Reid Spencer266e42b2006-12-23 06:05:41 +0000857 return pred;
858 pred = isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
Zhou Sheng75b871f2007-01-11 12:24:14 +0000859 R = dyn_cast<ConstantInt>(ConstantExpr::getICmp(pred, C1, C2));
Reid Spencer81658a82007-02-27 06:23:51 +0000860 if (R && !R->isNullValue())
Reid Spencer266e42b2006-12-23 06:05:41 +0000861 return pred;
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000862
863 // If we couldn't figure it out, bail.
Reid Spencer266e42b2006-12-23 06:05:41 +0000864 return ICmpInst::BAD_ICMP_PREDICATE;
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000865 }
866
Chris Lattner061da2f2004-01-13 05:51:55 +0000867 // If the first operand is simple, swap operands.
Reid Spencer266e42b2006-12-23 06:05:41 +0000868 ICmpInst::Predicate SwappedRelation =
869 evaluateICmpRelation(V2, V1, isSigned);
870 if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
871 return ICmpInst::getSwappedPredicate(SwappedRelation);
Chris Lattner061da2f2004-01-13 05:51:55 +0000872
Chris Lattner0f7e9f52006-01-05 07:19:51 +0000873 } else if (const GlobalValue *CPR1 = dyn_cast<GlobalValue>(V1)) {
Chris Lattner125ed542004-02-01 01:23:19 +0000874 if (isa<ConstantExpr>(V2)) { // Swap as necessary.
Reid Spencer266e42b2006-12-23 06:05:41 +0000875 ICmpInst::Predicate SwappedRelation =
876 evaluateICmpRelation(V2, V1, isSigned);
877 if (SwappedRelation != ICmpInst::BAD_ICMP_PREDICATE)
878 return ICmpInst::getSwappedPredicate(SwappedRelation);
Chris Lattner0f7e9f52006-01-05 07:19:51 +0000879 else
Reid Spencer266e42b2006-12-23 06:05:41 +0000880 return ICmpInst::BAD_ICMP_PREDICATE;
Chris Lattner125ed542004-02-01 01:23:19 +0000881 }
Chris Lattner061da2f2004-01-13 05:51:55 +0000882
Reid Spenceraccd7c72004-07-17 23:47:01 +0000883 // Now we know that the RHS is a GlobalValue or simple constant,
Chris Lattner061da2f2004-01-13 05:51:55 +0000884 // which (since the types must match) means that it's a ConstantPointerNull.
Reid Spenceraccd7c72004-07-17 23:47:01 +0000885 if (const GlobalValue *CPR2 = dyn_cast<GlobalValue>(V2)) {
Reid Spencer876f7222006-12-06 00:25:09 +0000886 if (!CPR1->hasExternalWeakLinkage() || !CPR2->hasExternalWeakLinkage())
Reid Spencer266e42b2006-12-23 06:05:41 +0000887 return ICmpInst::ICMP_NE;
Chris Lattner061da2f2004-01-13 05:51:55 +0000888 } else {
Reid Spencer876f7222006-12-06 00:25:09 +0000889 // GlobalVals can never be null.
Chris Lattner061da2f2004-01-13 05:51:55 +0000890 assert(isa<ConstantPointerNull>(V2) && "Canonicalization guarantee!");
Reid Spencer876f7222006-12-06 00:25:09 +0000891 if (!CPR1->hasExternalWeakLinkage())
Reid Spencer266e42b2006-12-23 06:05:41 +0000892 return ICmpInst::ICMP_NE;
Chris Lattner061da2f2004-01-13 05:51:55 +0000893 }
Chris Lattner061da2f2004-01-13 05:51:55 +0000894 } else {
895 // Ok, the LHS is known to be a constantexpr. The RHS can be any of a
896 // constantexpr, a CPR, or a simple constant.
Reid Spencer9d36acf2006-12-24 18:52:08 +0000897 const ConstantExpr *CE1 = cast<ConstantExpr>(V1);
898 const Constant *CE1Op0 = CE1->getOperand(0);
Chris Lattner061da2f2004-01-13 05:51:55 +0000899
900 switch (CE1->getOpcode()) {
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000901 case Instruction::Trunc:
902 case Instruction::FPTrunc:
903 case Instruction::FPExt:
904 case Instruction::FPToUI:
905 case Instruction::FPToSI:
Reid Spencer266e42b2006-12-23 06:05:41 +0000906 break; // We can't evaluate floating point casts or truncations.
907
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000908 case Instruction::UIToFP:
909 case Instruction::SIToFP:
Reid Spencer6c38f0b2006-11-27 01:05:10 +0000910 case Instruction::IntToPtr:
911 case Instruction::BitCast:
Reid Spencer266e42b2006-12-23 06:05:41 +0000912 case Instruction::ZExt:
913 case Instruction::SExt:
914 case Instruction::PtrToInt:
Chris Lattner061da2f2004-01-13 05:51:55 +0000915 // If the cast is not actually changing bits, and the second operand is a
916 // null pointer, do the comparison with the pre-casted value.
917 if (V2->isNullValue() &&
Chris Lattner03c49532007-01-15 02:27:26 +0000918 (isa<PointerType>(CE1->getType()) || CE1->getType()->isInteger())) {
Reid Spencerccf78ac2006-12-23 10:21:26 +0000919 bool sgnd = CE1->getOpcode() == Instruction::ZExt ? false :
Reid Spencer266e42b2006-12-23 06:05:41 +0000920 (CE1->getOpcode() == Instruction::SExt ? true :
921 (CE1->getOpcode() == Instruction::PtrToInt ? false : isSigned));
922 return evaluateICmpRelation(
Reid Spencerccf78ac2006-12-23 10:21:26 +0000923 CE1Op0, Constant::getNullValue(CE1Op0->getType()), sgnd);
Reid Spencer266e42b2006-12-23 06:05:41 +0000924 }
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000925
926 // If the dest type is a pointer type, and the RHS is a constantexpr cast
927 // from the same type as the src of the LHS, evaluate the inputs. This is
Reid Spencer266e42b2006-12-23 06:05:41 +0000928 // important for things like "icmp eq (cast 4 to int*), (cast 5 to int*)",
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000929 // which happens a lot in compilers with tagged integers.
Reid Spencer9d36acf2006-12-24 18:52:08 +0000930 if (const ConstantExpr *CE2 = dyn_cast<ConstantExpr>(V2))
Reid Spencer266e42b2006-12-23 06:05:41 +0000931 if (CE2->isCast() && isa<PointerType>(CE1->getType()) &&
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000932 CE1->getOperand(0)->getType() == CE2->getOperand(0)->getType() &&
Chris Lattner03c49532007-01-15 02:27:26 +0000933 CE1->getOperand(0)->getType()->isInteger()) {
Reid Spencerccf78ac2006-12-23 10:21:26 +0000934 bool sgnd = CE1->getOpcode() == Instruction::ZExt ? false :
Reid Spencer266e42b2006-12-23 06:05:41 +0000935 (CE1->getOpcode() == Instruction::SExt ? true :
936 (CE1->getOpcode() == Instruction::PtrToInt ? false : isSigned));
937 return evaluateICmpRelation(CE1->getOperand(0), CE2->getOperand(0),
Reid Spencerccf78ac2006-12-23 10:21:26 +0000938 sgnd);
Chris Lattnerfed8ceb2006-01-05 07:49:30 +0000939 }
Chris Lattner192e3262004-04-11 01:29:30 +0000940 break;
Chris Lattner061da2f2004-01-13 05:51:55 +0000941
942 case Instruction::GetElementPtr:
943 // Ok, since this is a getelementptr, we know that the constant has a
944 // pointer type. Check the various cases.
945 if (isa<ConstantPointerNull>(V2)) {
946 // If we are comparing a GEP to a null pointer, check to see if the base
947 // of the GEP equals the null pointer.
Reid Spencer9d36acf2006-12-24 18:52:08 +0000948 if (const GlobalValue *GV = dyn_cast<GlobalValue>(CE1Op0)) {
Reid Spencer876f7222006-12-06 00:25:09 +0000949 if (GV->hasExternalWeakLinkage())
950 // Weak linkage GVals could be zero or not. We're comparing that
951 // to null pointer so its greater-or-equal
Reid Spencer266e42b2006-12-23 06:05:41 +0000952 return isSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE;
Reid Spencer876f7222006-12-06 00:25:09 +0000953 else
954 // If its not weak linkage, the GVal must have a non-zero address
955 // so the result is greater-than
Reid Spencer266e42b2006-12-23 06:05:41 +0000956 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
Chris Lattner061da2f2004-01-13 05:51:55 +0000957 } else if (isa<ConstantPointerNull>(CE1Op0)) {
958 // If we are indexing from a null pointer, check to see if we have any
959 // non-zero indices.
960 for (unsigned i = 1, e = CE1->getNumOperands(); i != e; ++i)
961 if (!CE1->getOperand(i)->isNullValue())
962 // Offsetting from null, must not be equal.
Reid Spencer266e42b2006-12-23 06:05:41 +0000963 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
Chris Lattner061da2f2004-01-13 05:51:55 +0000964 // Only zero indexes from null, must still be zero.
Reid Spencer266e42b2006-12-23 06:05:41 +0000965 return ICmpInst::ICMP_EQ;
Chris Lattner061da2f2004-01-13 05:51:55 +0000966 }
967 // Otherwise, we can't really say if the first operand is null or not.
Reid Spenceraccd7c72004-07-17 23:47:01 +0000968 } else if (const GlobalValue *CPR2 = dyn_cast<GlobalValue>(V2)) {
Chris Lattner061da2f2004-01-13 05:51:55 +0000969 if (isa<ConstantPointerNull>(CE1Op0)) {
Reid Spencer876f7222006-12-06 00:25:09 +0000970 if (CPR2->hasExternalWeakLinkage())
971 // Weak linkage GVals could be zero or not. We're comparing it to
972 // a null pointer, so its less-or-equal
Reid Spencer266e42b2006-12-23 06:05:41 +0000973 return isSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE;
Reid Spencer876f7222006-12-06 00:25:09 +0000974 else
975 // If its not weak linkage, the GVal must have a non-zero address
976 // so the result is less-than
Reid Spencer266e42b2006-12-23 06:05:41 +0000977 return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
Reid Spenceraccd7c72004-07-17 23:47:01 +0000978 } else if (const GlobalValue *CPR1 = dyn_cast<GlobalValue>(CE1Op0)) {
Chris Lattner061da2f2004-01-13 05:51:55 +0000979 if (CPR1 == CPR2) {
980 // If this is a getelementptr of the same global, then it must be
981 // different. Because the types must match, the getelementptr could
982 // only have at most one index, and because we fold getelementptr's
983 // with a single zero index, it must be nonzero.
984 assert(CE1->getNumOperands() == 2 &&
985 !CE1->getOperand(1)->isNullValue() &&
986 "Suprising getelementptr!");
Reid Spencer266e42b2006-12-23 06:05:41 +0000987 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
Chris Lattner061da2f2004-01-13 05:51:55 +0000988 } else {
989 // If they are different globals, we don't know what the value is,
990 // but they can't be equal.
Reid Spencer266e42b2006-12-23 06:05:41 +0000991 return ICmpInst::ICMP_NE;
Chris Lattner061da2f2004-01-13 05:51:55 +0000992 }
993 }
994 } else {
995 const ConstantExpr *CE2 = cast<ConstantExpr>(V2);
996 const Constant *CE2Op0 = CE2->getOperand(0);
997
998 // There are MANY other foldings that we could perform here. They will
999 // probably be added on demand, as they seem needed.
1000 switch (CE2->getOpcode()) {
1001 default: break;
1002 case Instruction::GetElementPtr:
1003 // By far the most common case to handle is when the base pointers are
1004 // obviously to the same or different globals.
Reid Spenceraccd7c72004-07-17 23:47:01 +00001005 if (isa<GlobalValue>(CE1Op0) && isa<GlobalValue>(CE2Op0)) {
Chris Lattner061da2f2004-01-13 05:51:55 +00001006 if (CE1Op0 != CE2Op0) // Don't know relative ordering, but not equal
Reid Spencer266e42b2006-12-23 06:05:41 +00001007 return ICmpInst::ICMP_NE;
Chris Lattner061da2f2004-01-13 05:51:55 +00001008 // Ok, we know that both getelementptr instructions are based on the
1009 // same global. From this, we can precisely determine the relative
1010 // ordering of the resultant pointers.
1011 unsigned i = 1;
Misha Brukmanb1c93172005-04-21 23:48:37 +00001012
Chris Lattner061da2f2004-01-13 05:51:55 +00001013 // Compare all of the operands the GEP's have in common.
Chris Lattner60c47262005-01-28 19:09:51 +00001014 gep_type_iterator GTI = gep_type_begin(CE1);
1015 for (;i != CE1->getNumOperands() && i != CE2->getNumOperands();
1016 ++i, ++GTI)
1017 switch (IdxCompare(CE1->getOperand(i), CE2->getOperand(i),
1018 GTI.getIndexedType())) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001019 case -1: return isSigned ? ICmpInst::ICMP_SLT:ICmpInst::ICMP_ULT;
1020 case 1: return isSigned ? ICmpInst::ICMP_SGT:ICmpInst::ICMP_UGT;
1021 case -2: return ICmpInst::BAD_ICMP_PREDICATE;
Chris Lattner061da2f2004-01-13 05:51:55 +00001022 }
1023
1024 // Ok, we ran out of things they have in common. If any leftovers
1025 // are non-zero then we have a difference, otherwise we are equal.
1026 for (; i < CE1->getNumOperands(); ++i)
1027 if (!CE1->getOperand(i)->isNullValue())
Zhou Sheng75b871f2007-01-11 12:24:14 +00001028 if (isa<ConstantInt>(CE1->getOperand(i)))
Reid Spencer266e42b2006-12-23 06:05:41 +00001029 return isSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT;
Chris Lattner60c47262005-01-28 19:09:51 +00001030 else
Reid Spencer266e42b2006-12-23 06:05:41 +00001031 return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
Misha Brukmanb1c93172005-04-21 23:48:37 +00001032
Chris Lattner061da2f2004-01-13 05:51:55 +00001033 for (; i < CE2->getNumOperands(); ++i)
1034 if (!CE2->getOperand(i)->isNullValue())
Zhou Sheng75b871f2007-01-11 12:24:14 +00001035 if (isa<ConstantInt>(CE2->getOperand(i)))
Reid Spencer266e42b2006-12-23 06:05:41 +00001036 return isSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT;
Chris Lattner60c47262005-01-28 19:09:51 +00001037 else
Reid Spencer266e42b2006-12-23 06:05:41 +00001038 return ICmpInst::BAD_ICMP_PREDICATE; // Might be equal.
1039 return ICmpInst::ICMP_EQ;
Chris Lattner061da2f2004-01-13 05:51:55 +00001040 }
1041 }
1042 }
Chris Lattner061da2f2004-01-13 05:51:55 +00001043 default:
1044 break;
1045 }
1046 }
1047
Reid Spencer266e42b2006-12-23 06:05:41 +00001048 return ICmpInst::BAD_ICMP_PREDICATE;
Chris Lattner061da2f2004-01-13 05:51:55 +00001049}
1050
Reid Spencer9d36acf2006-12-24 18:52:08 +00001051Constant *llvm::ConstantFoldCompareInstruction(unsigned short pred,
1052 const Constant *C1,
1053 const Constant *C2) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001054
1055 // Handle some degenerate cases first
1056 if (isa<UndefValue>(C1) || isa<UndefValue>(C2))
Reid Spencer542964f2007-01-11 18:21:29 +00001057 return UndefValue::get(Type::Int1Ty);
Reid Spencer266e42b2006-12-23 06:05:41 +00001058
1059 // icmp eq/ne(null,GV) -> false/true
1060 if (C1->isNullValue()) {
1061 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C2))
1062 if (!GV->hasExternalWeakLinkage()) // External weak GV can be null
Reid Spencer9d36acf2006-12-24 18:52:08 +00001063 if (pred == ICmpInst::ICMP_EQ)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001064 return ConstantInt::getFalse();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001065 else if (pred == ICmpInst::ICMP_NE)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001066 return ConstantInt::getTrue();
Reid Spencer266e42b2006-12-23 06:05:41 +00001067 // icmp eq/ne(GV,null) -> false/true
1068 } else if (C2->isNullValue()) {
1069 if (const GlobalValue *GV = dyn_cast<GlobalValue>(C1))
1070 if (!GV->hasExternalWeakLinkage()) // External weak GV can be null
Reid Spencer9d36acf2006-12-24 18:52:08 +00001071 if (pred == ICmpInst::ICMP_EQ)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001072 return ConstantInt::getFalse();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001073 else if (pred == ICmpInst::ICMP_NE)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001074 return ConstantInt::getTrue();
Chris Lattner1dd054c2004-01-12 22:07:24 +00001075 }
1076
Chris Lattner344da522007-01-12 18:42:52 +00001077 if (isa<ConstantInt>(C1) && isa<ConstantInt>(C2)) {
Reid Spencer81658a82007-02-27 06:23:51 +00001078 APInt V1 = cast<ConstantInt>(C1)->getValue();
1079 APInt V2 = cast<ConstantInt>(C2)->getValue();
1080 switch (pred) {
1081 default: assert(0 && "Invalid ICmp Predicate"); return 0;
1082 case ICmpInst::ICMP_EQ: return ConstantInt::get(Type::Int1Ty, V1 == V2);
1083 case ICmpInst::ICMP_NE: return ConstantInt::get(Type::Int1Ty, V1 != V2);
1084 case ICmpInst::ICMP_SLT:return ConstantInt::get(Type::Int1Ty, V1.slt(V2));
1085 case ICmpInst::ICMP_SGT:return ConstantInt::get(Type::Int1Ty, V1.sgt(V2));
1086 case ICmpInst::ICMP_SLE:return ConstantInt::get(Type::Int1Ty, V1.sle(V2));
1087 case ICmpInst::ICMP_SGE:return ConstantInt::get(Type::Int1Ty, V1.sge(V2));
1088 case ICmpInst::ICMP_ULT:return ConstantInt::get(Type::Int1Ty, V1.ult(V2));
1089 case ICmpInst::ICMP_UGT:return ConstantInt::get(Type::Int1Ty, V1.ugt(V2));
1090 case ICmpInst::ICMP_ULE:return ConstantInt::get(Type::Int1Ty, V1.ule(V2));
1091 case ICmpInst::ICMP_UGE:return ConstantInt::get(Type::Int1Ty, V1.uge(V2));
Chris Lattner061da2f2004-01-13 05:51:55 +00001092 }
Reid Spencer266e42b2006-12-23 06:05:41 +00001093 } else if (isa<ConstantFP>(C1) && isa<ConstantFP>(C2)) {
1094 double C1Val = cast<ConstantFP>(C1)->getValue();
1095 double C2Val = cast<ConstantFP>(C2)->getValue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001096 switch (pred) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001097 default: assert(0 && "Invalid FCmp Predicate"); return 0;
Zhou Sheng75b871f2007-01-11 12:24:14 +00001098 case FCmpInst::FCMP_FALSE: return ConstantInt::getFalse();
1099 case FCmpInst::FCMP_TRUE: return ConstantInt::getTrue();
Reid Spencer266e42b2006-12-23 06:05:41 +00001100 case FCmpInst::FCMP_UNO:
Reid Spencercddc9df2007-01-12 04:24:46 +00001101 return ConstantInt::get(Type::Int1Ty, C1Val != C1Val || C2Val != C2Val);
Reid Spencer74bd0362007-01-11 00:25:45 +00001102 case FCmpInst::FCMP_ORD:
Reid Spencercddc9df2007-01-12 04:24:46 +00001103 return ConstantInt::get(Type::Int1Ty, C1Val == C1Val && C2Val == C2Val);
Reid Spencer266e42b2006-12-23 06:05:41 +00001104 case FCmpInst::FCMP_UEQ:
Reid Spencer74bd0362007-01-11 00:25:45 +00001105 if (C1Val != C1Val || C2Val != C2Val)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001106 return ConstantInt::getTrue();
Reid Spencer74bd0362007-01-11 00:25:45 +00001107 /* FALL THROUGH */
Reid Spencercddc9df2007-01-12 04:24:46 +00001108 case FCmpInst::FCMP_OEQ:
1109 return ConstantInt::get(Type::Int1Ty, C1Val == C2Val);
Reid Spencer74bd0362007-01-11 00:25:45 +00001110 case FCmpInst::FCMP_UNE:
1111 if (C1Val != C1Val || C2Val != C2Val)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001112 return ConstantInt::getTrue();
Reid Spencer74bd0362007-01-11 00:25:45 +00001113 /* FALL THROUGH */
Reid Spencercddc9df2007-01-12 04:24:46 +00001114 case FCmpInst::FCMP_ONE:
1115 return ConstantInt::get(Type::Int1Ty, C1Val != C2Val);
Reid Spencer74bd0362007-01-11 00:25:45 +00001116 case FCmpInst::FCMP_ULT:
1117 if (C1Val != C1Val || C2Val != C2Val)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001118 return ConstantInt::getTrue();
Reid Spencer74bd0362007-01-11 00:25:45 +00001119 /* FALL THROUGH */
Reid Spencercddc9df2007-01-12 04:24:46 +00001120 case FCmpInst::FCMP_OLT:
1121 return ConstantInt::get(Type::Int1Ty, C1Val < C2Val);
Reid Spencer266e42b2006-12-23 06:05:41 +00001122 case FCmpInst::FCMP_UGT:
Reid Spencer74bd0362007-01-11 00:25:45 +00001123 if (C1Val != C1Val || C2Val != C2Val)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001124 return ConstantInt::getTrue();
Reid Spencer74bd0362007-01-11 00:25:45 +00001125 /* FALL THROUGH */
Reid Spencercddc9df2007-01-12 04:24:46 +00001126 case FCmpInst::FCMP_OGT:
1127 return ConstantInt::get(Type::Int1Ty, C1Val > C2Val);
Reid Spencer74bd0362007-01-11 00:25:45 +00001128 case FCmpInst::FCMP_ULE:
1129 if (C1Val != C1Val || C2Val != C2Val)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001130 return ConstantInt::getTrue();
Reid Spencer74bd0362007-01-11 00:25:45 +00001131 /* FALL THROUGH */
Reid Spencercddc9df2007-01-12 04:24:46 +00001132 case FCmpInst::FCMP_OLE:
1133 return ConstantInt::get(Type::Int1Ty, C1Val <= C2Val);
Reid Spencer266e42b2006-12-23 06:05:41 +00001134 case FCmpInst::FCMP_UGE:
Reid Spencer74bd0362007-01-11 00:25:45 +00001135 if (C1Val != C1Val || C2Val != C2Val)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001136 return ConstantInt::getTrue();
Reid Spencer74bd0362007-01-11 00:25:45 +00001137 /* FALL THROUGH */
Reid Spencercddc9df2007-01-12 04:24:46 +00001138 case FCmpInst::FCMP_OGE:
1139 return ConstantInt::get(Type::Int1Ty, C1Val >= C2Val);
Reid Spencer266e42b2006-12-23 06:05:41 +00001140 }
Reid Spencerd84d35b2007-02-15 02:26:10 +00001141 } else if (const ConstantVector *CP1 = dyn_cast<ConstantVector>(C1)) {
1142 if (const ConstantVector *CP2 = dyn_cast<ConstantVector>(C2)) {
Reid Spencer9d36acf2006-12-24 18:52:08 +00001143 if (pred == FCmpInst::FCMP_OEQ || pred == FCmpInst::FCMP_UEQ) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001144 for (unsigned i = 0, e = CP1->getNumOperands(); i != e; ++i) {
1145 Constant *C= ConstantExpr::getFCmp(FCmpInst::FCMP_OEQ,
1146 const_cast<Constant*>(CP1->getOperand(i)),
1147 const_cast<Constant*>(CP2->getOperand(i)));
Zhou Sheng75b871f2007-01-11 12:24:14 +00001148 if (ConstantInt *CB = dyn_cast<ConstantInt>(C))
Reid Spencer266e42b2006-12-23 06:05:41 +00001149 return CB;
1150 }
1151 // Otherwise, could not decide from any element pairs.
1152 return 0;
Reid Spencer9d36acf2006-12-24 18:52:08 +00001153 } else if (pred == ICmpInst::ICMP_EQ) {
Reid Spencer266e42b2006-12-23 06:05:41 +00001154 for (unsigned i = 0, e = CP1->getNumOperands(); i != e; ++i) {
1155 Constant *C = ConstantExpr::getICmp(ICmpInst::ICMP_EQ,
1156 const_cast<Constant*>(CP1->getOperand(i)),
1157 const_cast<Constant*>(CP2->getOperand(i)));
Zhou Sheng75b871f2007-01-11 12:24:14 +00001158 if (ConstantInt *CB = dyn_cast<ConstantInt>(C))
Reid Spencer266e42b2006-12-23 06:05:41 +00001159 return CB;
1160 }
1161 // Otherwise, could not decide from any element pairs.
1162 return 0;
1163 }
1164 }
1165 }
Chris Lattner061da2f2004-01-13 05:51:55 +00001166
Reid Spencer9d36acf2006-12-24 18:52:08 +00001167 if (C1->getType()->isFloatingPoint()) {
1168 switch (evaluateFCmpRelation(C1, C2)) {
1169 default: assert(0 && "Unknown relation!");
1170 case FCmpInst::FCMP_UNO:
1171 case FCmpInst::FCMP_ORD:
1172 case FCmpInst::FCMP_UEQ:
1173 case FCmpInst::FCMP_UNE:
1174 case FCmpInst::FCMP_ULT:
1175 case FCmpInst::FCMP_UGT:
1176 case FCmpInst::FCMP_ULE:
1177 case FCmpInst::FCMP_UGE:
1178 case FCmpInst::FCMP_TRUE:
1179 case FCmpInst::FCMP_FALSE:
1180 case FCmpInst::BAD_FCMP_PREDICATE:
1181 break; // Couldn't determine anything about these constants.
1182 case FCmpInst::FCMP_OEQ: // We know that C1 == C2
Reid Spencercddc9df2007-01-12 04:24:46 +00001183 return ConstantInt::get(Type::Int1Ty,
Reid Spencer9d36acf2006-12-24 18:52:08 +00001184 pred == FCmpInst::FCMP_UEQ || pred == FCmpInst::FCMP_OEQ ||
1185 pred == FCmpInst::FCMP_ULE || pred == FCmpInst::FCMP_OLE ||
1186 pred == FCmpInst::FCMP_UGE || pred == FCmpInst::FCMP_OGE);
1187 case FCmpInst::FCMP_OLT: // We know that C1 < C2
Reid Spencercddc9df2007-01-12 04:24:46 +00001188 return ConstantInt::get(Type::Int1Ty,
Reid Spencer9d36acf2006-12-24 18:52:08 +00001189 pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE ||
1190 pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT ||
1191 pred == FCmpInst::FCMP_ULE || pred == FCmpInst::FCMP_OLE);
1192 case FCmpInst::FCMP_OGT: // We know that C1 > C2
Reid Spencercddc9df2007-01-12 04:24:46 +00001193 return ConstantInt::get(Type::Int1Ty,
Reid Spencer9d36acf2006-12-24 18:52:08 +00001194 pred == FCmpInst::FCMP_UNE || pred == FCmpInst::FCMP_ONE ||
1195 pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT ||
1196 pred == FCmpInst::FCMP_UGE || pred == FCmpInst::FCMP_OGE);
1197 case FCmpInst::FCMP_OLE: // We know that C1 <= C2
1198 // We can only partially decide this relation.
1199 if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001200 return ConstantInt::getFalse();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001201 if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001202 return ConstantInt::getTrue();
Chris Lattner061da2f2004-01-13 05:51:55 +00001203 break;
Reid Spencer9d36acf2006-12-24 18:52:08 +00001204 case FCmpInst::FCMP_OGE: // We known that C1 >= C2
1205 // We can only partially decide this relation.
1206 if (pred == FCmpInst::FCMP_ULT || pred == FCmpInst::FCMP_OLT)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001207 return ConstantInt::getFalse();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001208 if (pred == FCmpInst::FCMP_UGT || pred == FCmpInst::FCMP_OGT)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001209 return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001210 break;
1211 case ICmpInst::ICMP_NE: // We know that C1 != C2
1212 // We can only partially decide this relation.
1213 if (pred == FCmpInst::FCMP_OEQ || pred == FCmpInst::FCMP_UEQ)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001214 return ConstantInt::getFalse();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001215 if (pred == FCmpInst::FCMP_ONE || pred == FCmpInst::FCMP_UNE)
Zhou Sheng75b871f2007-01-11 12:24:14 +00001216 return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001217 break;
1218 }
1219 } else {
1220 // Evaluate the relation between the two constants, per the predicate.
1221 switch (evaluateICmpRelation(C1, C2, CmpInst::isSigned(pred))) {
1222 default: assert(0 && "Unknown relational!");
1223 case ICmpInst::BAD_ICMP_PREDICATE:
1224 break; // Couldn't determine anything about these constants.
1225 case ICmpInst::ICMP_EQ: // We know the constants are equal!
1226 // If we know the constants are equal, we can decide the result of this
1227 // computation precisely.
Reid Spencercddc9df2007-01-12 04:24:46 +00001228 return ConstantInt::get(Type::Int1Ty,
1229 pred == ICmpInst::ICMP_EQ ||
Zhou Sheng75b871f2007-01-11 12:24:14 +00001230 pred == ICmpInst::ICMP_ULE ||
1231 pred == ICmpInst::ICMP_SLE ||
1232 pred == ICmpInst::ICMP_UGE ||
1233 pred == ICmpInst::ICMP_SGE);
Reid Spencer9d36acf2006-12-24 18:52:08 +00001234 case ICmpInst::ICMP_ULT:
1235 // If we know that C1 < C2, we can decide the result of this computation
1236 // precisely.
Reid Spencercddc9df2007-01-12 04:24:46 +00001237 return ConstantInt::get(Type::Int1Ty,
1238 pred == ICmpInst::ICMP_ULT ||
Zhou Sheng75b871f2007-01-11 12:24:14 +00001239 pred == ICmpInst::ICMP_NE ||
1240 pred == ICmpInst::ICMP_ULE);
Reid Spencer9d36acf2006-12-24 18:52:08 +00001241 case ICmpInst::ICMP_SLT:
1242 // If we know that C1 < C2, we can decide the result of this computation
1243 // precisely.
Reid Spencercddc9df2007-01-12 04:24:46 +00001244 return ConstantInt::get(Type::Int1Ty,
1245 pred == ICmpInst::ICMP_SLT ||
Zhou Sheng75b871f2007-01-11 12:24:14 +00001246 pred == ICmpInst::ICMP_NE ||
1247 pred == ICmpInst::ICMP_SLE);
Reid Spencer9d36acf2006-12-24 18:52:08 +00001248 case ICmpInst::ICMP_UGT:
1249 // If we know that C1 > C2, we can decide the result of this computation
1250 // precisely.
Reid Spencercddc9df2007-01-12 04:24:46 +00001251 return ConstantInt::get(Type::Int1Ty,
1252 pred == ICmpInst::ICMP_UGT ||
Zhou Sheng75b871f2007-01-11 12:24:14 +00001253 pred == ICmpInst::ICMP_NE ||
1254 pred == ICmpInst::ICMP_UGE);
Reid Spencer9d36acf2006-12-24 18:52:08 +00001255 case ICmpInst::ICMP_SGT:
1256 // If we know that C1 > C2, we can decide the result of this computation
1257 // precisely.
Reid Spencercddc9df2007-01-12 04:24:46 +00001258 return ConstantInt::get(Type::Int1Ty,
1259 pred == ICmpInst::ICMP_SGT ||
Zhou Sheng75b871f2007-01-11 12:24:14 +00001260 pred == ICmpInst::ICMP_NE ||
1261 pred == ICmpInst::ICMP_SGE);
Reid Spencer9d36acf2006-12-24 18:52:08 +00001262 case ICmpInst::ICMP_ULE:
1263 // If we know that C1 <= C2, we can only partially decide this relation.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001264 if (pred == ICmpInst::ICMP_UGT) return ConstantInt::getFalse();
1265 if (pred == ICmpInst::ICMP_ULT) return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001266 break;
1267 case ICmpInst::ICMP_SLE:
1268 // If we know that C1 <= C2, we can only partially decide this relation.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001269 if (pred == ICmpInst::ICMP_SGT) return ConstantInt::getFalse();
1270 if (pred == ICmpInst::ICMP_SLT) return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001271 break;
1272
1273 case ICmpInst::ICMP_UGE:
1274 // If we know that C1 >= C2, we can only partially decide this relation.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001275 if (pred == ICmpInst::ICMP_ULT) return ConstantInt::getFalse();
1276 if (pred == ICmpInst::ICMP_UGT) return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001277 break;
1278 case ICmpInst::ICMP_SGE:
1279 // If we know that C1 >= C2, we can only partially decide this relation.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001280 if (pred == ICmpInst::ICMP_SLT) return ConstantInt::getFalse();
1281 if (pred == ICmpInst::ICMP_SGT) return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001282 break;
1283
1284 case ICmpInst::ICMP_NE:
1285 // If we know that C1 != C2, we can only partially decide this relation.
Zhou Sheng75b871f2007-01-11 12:24:14 +00001286 if (pred == ICmpInst::ICMP_EQ) return ConstantInt::getFalse();
1287 if (pred == ICmpInst::ICMP_NE) return ConstantInt::getTrue();
Reid Spencer9d36acf2006-12-24 18:52:08 +00001288 break;
1289 }
1290
1291 if (!isa<ConstantExpr>(C1) && isa<ConstantExpr>(C2)) {
1292 // If C2 is a constant expr and C1 isn't, flop them around and fold the
1293 // other way if possible.
1294 switch (pred) {
1295 case ICmpInst::ICMP_EQ:
1296 case ICmpInst::ICMP_NE:
1297 // No change of predicate required.
1298 return ConstantFoldCompareInstruction(pred, C2, C1);
1299
1300 case ICmpInst::ICMP_ULT:
1301 case ICmpInst::ICMP_SLT:
1302 case ICmpInst::ICMP_UGT:
1303 case ICmpInst::ICMP_SGT:
1304 case ICmpInst::ICMP_ULE:
1305 case ICmpInst::ICMP_SLE:
1306 case ICmpInst::ICMP_UGE:
1307 case ICmpInst::ICMP_SGE:
1308 // Change the predicate as necessary to swap the operands.
1309 pred = ICmpInst::getSwappedPredicate((ICmpInst::Predicate)pred);
1310 return ConstantFoldCompareInstruction(pred, C2, C1);
1311
1312 default: // These predicates cannot be flopped around.
1313 break;
1314 }
Chris Lattner061da2f2004-01-13 05:51:55 +00001315 }
1316 }
1317 return 0;
Chris Lattner1dd054c2004-01-12 22:07:24 +00001318}
1319
1320Constant *llvm::ConstantFoldGetElementPtr(const Constant *C,
Chris Lattner302116a2007-01-31 04:40:28 +00001321 Constant* const *Idxs,
1322 unsigned NumIdx) {
1323 if (NumIdx == 0 ||
1324 (NumIdx == 1 && Idxs[0]->isNullValue()))
Chris Lattner1dd054c2004-01-12 22:07:24 +00001325 return const_cast<Constant*>(C);
1326
Chris Lattnerf6013752004-10-17 21:54:55 +00001327 if (isa<UndefValue>(C)) {
Chris Lattner302116a2007-01-31 04:40:28 +00001328 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(),
1329 (Value**)Idxs, NumIdx,
Chris Lattnerf6013752004-10-17 21:54:55 +00001330 true);
1331 assert(Ty != 0 && "Invalid indices for GEP!");
1332 return UndefValue::get(PointerType::get(Ty));
1333 }
1334
Chris Lattner302116a2007-01-31 04:40:28 +00001335 Constant *Idx0 = Idxs[0];
Chris Lattner04b60fe2004-02-16 20:46:13 +00001336 if (C->isNullValue()) {
1337 bool isNull = true;
Chris Lattner302116a2007-01-31 04:40:28 +00001338 for (unsigned i = 0, e = NumIdx; i != e; ++i)
1339 if (!Idxs[i]->isNullValue()) {
Chris Lattner04b60fe2004-02-16 20:46:13 +00001340 isNull = false;
1341 break;
1342 }
1343 if (isNull) {
Chris Lattner302116a2007-01-31 04:40:28 +00001344 const Type *Ty = GetElementPtrInst::getIndexedType(C->getType(),
1345 (Value**)Idxs, NumIdx,
Chris Lattner04b60fe2004-02-16 20:46:13 +00001346 true);
1347 assert(Ty != 0 && "Invalid indices for GEP!");
1348 return ConstantPointerNull::get(PointerType::get(Ty));
1349 }
1350 }
Chris Lattner1dd054c2004-01-12 22:07:24 +00001351
1352 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(const_cast<Constant*>(C))) {
1353 // Combine Indices - If the source pointer to this getelementptr instruction
1354 // is a getelementptr instruction, combine the indices of the two
1355 // getelementptr instructions into a single instruction.
1356 //
1357 if (CE->getOpcode() == Instruction::GetElementPtr) {
1358 const Type *LastTy = 0;
1359 for (gep_type_iterator I = gep_type_begin(CE), E = gep_type_end(CE);
1360 I != E; ++I)
1361 LastTy = *I;
1362
Chris Lattner13128ab2004-10-11 22:52:25 +00001363 if ((LastTy && isa<ArrayType>(LastTy)) || Idx0->isNullValue()) {
Chris Lattner302116a2007-01-31 04:40:28 +00001364 SmallVector<Value*, 16> NewIndices;
1365 NewIndices.reserve(NumIdx + CE->getNumOperands());
Chris Lattner1dd054c2004-01-12 22:07:24 +00001366 for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i)
Chris Lattner13128ab2004-10-11 22:52:25 +00001367 NewIndices.push_back(CE->getOperand(i));
Chris Lattner1dd054c2004-01-12 22:07:24 +00001368
1369 // Add the last index of the source with the first index of the new GEP.
1370 // Make sure to handle the case when they are actually different types.
1371 Constant *Combined = CE->getOperand(CE->getNumOperands()-1);
Chris Lattner13128ab2004-10-11 22:52:25 +00001372 // Otherwise it must be an array.
1373 if (!Idx0->isNullValue()) {
Chris Lattner71068a02004-07-07 04:45:13 +00001374 const Type *IdxTy = Combined->getType();
Reid Spencer1a063892006-12-04 02:46:44 +00001375 if (IdxTy != Idx0->getType()) {
Reid Spencer8d9336d2006-12-31 05:26:44 +00001376 Constant *C1 = ConstantExpr::getSExtOrBitCast(Idx0, Type::Int64Ty);
Reid Spencer27720a92006-12-05 03:30:09 +00001377 Constant *C2 = ConstantExpr::getSExtOrBitCast(Combined,
Reid Spencer8d9336d2006-12-31 05:26:44 +00001378 Type::Int64Ty);
Reid Spencer1a063892006-12-04 02:46:44 +00001379 Combined = ConstantExpr::get(Instruction::Add, C1, C2);
1380 } else {
1381 Combined =
1382 ConstantExpr::get(Instruction::Add, Idx0, Combined);
1383 }
Chris Lattner71068a02004-07-07 04:45:13 +00001384 }
Misha Brukmanb1c93172005-04-21 23:48:37 +00001385
Chris Lattner1dd054c2004-01-12 22:07:24 +00001386 NewIndices.push_back(Combined);
Chris Lattner302116a2007-01-31 04:40:28 +00001387 NewIndices.insert(NewIndices.end(), Idxs+1, Idxs+NumIdx);
1388 return ConstantExpr::getGetElementPtr(CE->getOperand(0), &NewIndices[0],
1389 NewIndices.size());
Chris Lattner1dd054c2004-01-12 22:07:24 +00001390 }
1391 }
1392
1393 // Implement folding of:
1394 // int* getelementptr ([2 x int]* cast ([3 x int]* %X to [2 x int]*),
1395 // long 0, long 0)
1396 // To: int* getelementptr ([3 x int]* %X, long 0, long 0)
1397 //
Chris Lattner302116a2007-01-31 04:40:28 +00001398 if (CE->isCast() && NumIdx > 1 && Idx0->isNullValue())
Misha Brukmanb1c93172005-04-21 23:48:37 +00001399 if (const PointerType *SPT =
Chris Lattner1dd054c2004-01-12 22:07:24 +00001400 dyn_cast<PointerType>(CE->getOperand(0)->getType()))
1401 if (const ArrayType *SAT = dyn_cast<ArrayType>(SPT->getElementType()))
1402 if (const ArrayType *CAT =
Chris Lattner02157b02006-06-28 21:38:54 +00001403 dyn_cast<ArrayType>(cast<PointerType>(C->getType())->getElementType()))
Chris Lattner1dd054c2004-01-12 22:07:24 +00001404 if (CAT->getElementType() == SAT->getElementType())
1405 return ConstantExpr::getGetElementPtr(
Chris Lattner302116a2007-01-31 04:40:28 +00001406 (Constant*)CE->getOperand(0), Idxs, NumIdx);
Chris Lattner1dd054c2004-01-12 22:07:24 +00001407 }
1408 return 0;
1409}
1410