2001-06-06 20:29:01 +00:00
|
|
|
//===- ConstantHandling.cpp - Implement ConstantHandling.h ----------------===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-06-06 20:29:01 +00:00
|
|
|
//
|
|
|
|
// This file implements the various intrinsic operations, on constant values.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-04-08 20:18:09 +00:00
|
|
|
#include "llvm/ConstantHandling.h"
|
2002-05-07 20:44:59 +00:00
|
|
|
#include "llvm/iPHINode.h"
|
2003-05-27 19:16:07 +00:00
|
|
|
#include "llvm/InstrTypes.h"
|
2003-04-17 19:24:18 +00:00
|
|
|
#include "llvm/DerivedTypes.h"
|
2002-05-03 21:41:07 +00:00
|
|
|
#include <cmath>
|
2003-11-17 19:05:17 +00:00
|
|
|
using namespace llvm;
|
2001-09-09 21:01:20 +00:00
|
|
|
|
2002-05-06 17:54:27 +00:00
|
|
|
// ConstantFoldInstruction - Attempt to constant fold the specified instruction.
|
|
|
|
// If successful, the constant result is returned, if not, null is returned.
|
|
|
|
//
|
2003-11-17 19:05:17 +00:00
|
|
|
Constant *llvm::ConstantFoldInstruction(Instruction *I) {
|
2002-05-07 20:44:59 +00:00
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(I)) {
|
|
|
|
if (PN->getNumIncomingValues() == 0)
|
|
|
|
return Constant::getNullValue(PN->getType());
|
|
|
|
|
|
|
|
Constant *Result = dyn_cast<Constant>(PN->getIncomingValue(0));
|
|
|
|
if (Result == 0) return 0;
|
|
|
|
|
|
|
|
// Handle PHI nodes specially here...
|
|
|
|
for (unsigned i = 1, e = PN->getNumIncomingValues(); i != e; ++i)
|
|
|
|
if (PN->getIncomingValue(i) != Result)
|
|
|
|
return 0; // Not all the same incoming constants...
|
|
|
|
|
|
|
|
// If we reach here, all incoming values are the same constant.
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
2002-05-06 17:54:27 +00:00
|
|
|
Constant *Op0 = 0;
|
|
|
|
Constant *Op1 = 0;
|
|
|
|
|
|
|
|
if (I->getNumOperands() != 0) { // Get first operand if it's a constant...
|
|
|
|
Op0 = dyn_cast<Constant>(I->getOperand(0));
|
|
|
|
if (Op0 == 0) return 0; // Not a constant?, can't fold
|
|
|
|
|
|
|
|
if (I->getNumOperands() != 1) { // Get second operand if it's a constant...
|
|
|
|
Op1 = dyn_cast<Constant>(I->getOperand(1));
|
|
|
|
if (Op1 == 0) return 0; // Not a constant?, can't fold
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-05-27 19:16:07 +00:00
|
|
|
if (isa<BinaryOperator>(I))
|
|
|
|
return ConstantExpr::get(I->getOpcode(), Op0, Op1);
|
|
|
|
|
2002-05-06 17:54:27 +00:00
|
|
|
switch (I->getOpcode()) {
|
|
|
|
case Instruction::Cast:
|
2003-05-27 19:16:07 +00:00
|
|
|
return ConstantExpr::getCast(Op0, I->getType());
|
|
|
|
case Instruction::Shl:
|
|
|
|
case Instruction::Shr:
|
|
|
|
return ConstantExpr::getShift(I->getOpcode(), Op0, Op1);
|
2003-04-17 19:24:18 +00:00
|
|
|
case Instruction::GetElementPtr: {
|
|
|
|
std::vector<Constant*> IdxList;
|
|
|
|
IdxList.reserve(I->getNumOperands()-1);
|
|
|
|
if (Op1) IdxList.push_back(Op1);
|
|
|
|
for (unsigned i = 2, e = I->getNumOperands(); i != e; ++i)
|
|
|
|
if (Constant *C = dyn_cast<Constant>(I->getOperand(i)))
|
|
|
|
IdxList.push_back(C);
|
|
|
|
else
|
|
|
|
return 0; // Non-constant operand
|
2003-05-27 19:16:07 +00:00
|
|
|
return ConstantExpr::getGetElementPtr(Op0, IdxList);
|
2003-04-17 19:24:18 +00:00
|
|
|
}
|
2002-05-06 17:54:27 +00:00
|
|
|
default:
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-04-17 19:24:18 +00:00
|
|
|
static unsigned getSize(const Type *Ty) {
|
|
|
|
unsigned S = Ty->getPrimitiveSize();
|
|
|
|
return S ? S : 8; // Treat pointers at 8 bytes
|
|
|
|
}
|
|
|
|
|
2003-11-17 19:05:17 +00:00
|
|
|
Constant *llvm::ConstantFoldCastInstruction(const Constant *V,
|
|
|
|
const Type *DestTy) {
|
2003-04-17 19:24:18 +00:00
|
|
|
if (V->getType() == DestTy) return (Constant*)V;
|
|
|
|
|
|
|
|
if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
|
|
|
|
if (CE->getOpcode() == Instruction::Cast) {
|
2003-05-14 17:51:05 +00:00
|
|
|
Constant *Op = const_cast<Constant*>(CE->getOperand(0));
|
2003-04-17 19:24:18 +00:00
|
|
|
// Try to not produce a cast of a cast, which is almost always redundant.
|
|
|
|
if (!Op->getType()->isFloatingPoint() &&
|
|
|
|
!CE->getType()->isFloatingPoint() &&
|
|
|
|
!DestTy->getType()->isFloatingPoint()) {
|
|
|
|
unsigned S1 = getSize(Op->getType()), S2 = getSize(CE->getType());
|
|
|
|
unsigned S3 = getSize(DestTy);
|
|
|
|
if (Op->getType() == DestTy && S3 >= S2)
|
|
|
|
return Op;
|
|
|
|
if (S1 >= S2 && S2 >= S3)
|
|
|
|
return ConstantExpr::getCast(Op, DestTy);
|
|
|
|
if (S1 <= S2 && S2 >= S3 && S1 <= S3)
|
|
|
|
return ConstantExpr::getCast(Op, DestTy);
|
|
|
|
}
|
2003-08-21 19:45:55 +00:00
|
|
|
} else if (CE->getOpcode() == Instruction::GetElementPtr) {
|
|
|
|
// If all of the indexes in the GEP are null values, there is no pointer
|
|
|
|
// adjustment going on. We might as well cast the source pointer.
|
|
|
|
bool isAllNull = true;
|
|
|
|
for (unsigned i = 1, e = CE->getNumOperands(); i != e; ++i)
|
|
|
|
if (!CE->getOperand(i)->isNullValue()) {
|
|
|
|
isAllNull = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (isAllNull)
|
|
|
|
return ConstantExpr::getCast(CE->getOperand(0), DestTy);
|
2003-04-17 19:24:18 +00:00
|
|
|
}
|
|
|
|
|
2003-11-17 19:05:17 +00:00
|
|
|
return ConstRules::get(*V, *V).castTo(V, DestTy);
|
2002-05-06 17:54:27 +00:00
|
|
|
}
|
|
|
|
|
2003-11-17 19:05:17 +00:00
|
|
|
Constant *llvm::ConstantFoldBinaryInstruction(unsigned Opcode,
|
|
|
|
const Constant *V1,
|
|
|
|
const Constant *V2) {
|
2002-05-06 17:54:27 +00:00
|
|
|
switch (Opcode) {
|
|
|
|
case Instruction::Add: return *V1 + *V2;
|
|
|
|
case Instruction::Sub: return *V1 - *V2;
|
|
|
|
case Instruction::Mul: return *V1 * *V2;
|
|
|
|
case Instruction::Div: return *V1 / *V2;
|
|
|
|
case Instruction::Rem: return *V1 % *V2;
|
2002-07-30 16:24:28 +00:00
|
|
|
case Instruction::And: return *V1 & *V2;
|
|
|
|
case Instruction::Or: return *V1 | *V2;
|
|
|
|
case Instruction::Xor: return *V1 ^ *V2;
|
2002-05-06 17:54:27 +00:00
|
|
|
|
|
|
|
case Instruction::SetEQ: return *V1 == *V2;
|
|
|
|
case Instruction::SetNE: return *V1 != *V2;
|
|
|
|
case Instruction::SetLE: return *V1 <= *V2;
|
|
|
|
case Instruction::SetGE: return *V1 >= *V2;
|
|
|
|
case Instruction::SetLT: return *V1 < *V2;
|
|
|
|
case Instruction::SetGT: return *V1 > *V2;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-11-17 19:05:17 +00:00
|
|
|
Constant *llvm::ConstantFoldShiftInstruction(unsigned Opcode,
|
|
|
|
const Constant *V1,
|
|
|
|
const Constant *V2) {
|
2002-05-06 17:54:27 +00:00
|
|
|
switch (Opcode) {
|
|
|
|
case Instruction::Shl: return *V1 << *V2;
|
|
|
|
case Instruction::Shr: return *V1 >> *V2;
|
|
|
|
default: return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-17 19:05:17 +00:00
|
|
|
Constant *llvm::ConstantFoldGetElementPtr(const Constant *C,
|
|
|
|
const std::vector<Constant*> &IdxList) {
|
2003-04-17 19:24:18 +00:00
|
|
|
if (IdxList.size() == 0 ||
|
|
|
|
(IdxList.size() == 1 && IdxList[0]->isNullValue()))
|
|
|
|
return const_cast<Constant*>(C);
|
|
|
|
|
2003-08-21 19:45:55 +00:00
|
|
|
// TODO If C is null and all idx's are null, return null of the right type.
|
2003-04-17 19:24:18 +00:00
|
|
|
|
2003-05-13 21:50:52 +00:00
|
|
|
|
2003-06-26 05:22:45 +00:00
|
|
|
if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
|
2003-08-20 16:11:27 +00:00
|
|
|
// Combine Indices - If the source pointer to this getelementptr instruction
|
|
|
|
// is a getelementptr instruction, combine the indices of the two
|
|
|
|
// getelementptr instructions into a single instruction.
|
2003-06-26 05:22:45 +00:00
|
|
|
//
|
2003-08-20 16:11:27 +00:00
|
|
|
if (CE->getOpcode() == Instruction::GetElementPtr) {
|
|
|
|
if (CE->getOperand(CE->getNumOperands()-1)->getType() == Type::LongTy) {
|
2003-06-26 05:22:45 +00:00
|
|
|
std::vector<Constant*> NewIndices;
|
|
|
|
NewIndices.reserve(IdxList.size() + CE->getNumOperands());
|
2003-08-20 16:11:27 +00:00
|
|
|
for (unsigned i = 1, e = CE->getNumOperands()-1; i != e; ++i)
|
2003-06-26 05:22:45 +00:00
|
|
|
NewIndices.push_back(cast<Constant>(CE->getOperand(i)));
|
2003-08-20 16:11:27 +00:00
|
|
|
|
|
|
|
// Add the last index of the source with the first index of the new GEP.
|
|
|
|
Constant *Combined =
|
|
|
|
ConstantExpr::get(Instruction::Add, IdxList[0],
|
|
|
|
CE->getOperand(CE->getNumOperands()-1));
|
|
|
|
|
|
|
|
NewIndices.push_back(Combined);
|
2003-06-26 05:22:45 +00:00
|
|
|
NewIndices.insert(NewIndices.end(), IdxList.begin()+1, IdxList.end());
|
|
|
|
return ConstantExpr::getGetElementPtr(CE->getOperand(0), NewIndices);
|
|
|
|
}
|
2003-08-20 16:11:27 +00:00
|
|
|
}
|
2003-06-26 05:22:45 +00:00
|
|
|
|
|
|
|
// Implement folding of:
|
|
|
|
// int* getelementptr ([2 x int]* cast ([3 x int]* %X to [2 x int]*),
|
|
|
|
// long 0, long 0)
|
|
|
|
// To: int* getelementptr ([3 x int]* %X, long 0, long 0)
|
|
|
|
//
|
2003-05-14 02:47:13 +00:00
|
|
|
if (CE->getOpcode() == Instruction::Cast && IdxList.size() > 1 &&
|
|
|
|
IdxList[0]->isNullValue())
|
2003-05-13 21:50:52 +00:00
|
|
|
if (const PointerType *SPT =
|
|
|
|
dyn_cast<PointerType>(CE->getOperand(0)->getType()))
|
|
|
|
if (const ArrayType *SAT = dyn_cast<ArrayType>(SPT->getElementType()))
|
|
|
|
if (const ArrayType *CAT =
|
|
|
|
dyn_cast<ArrayType>(cast<PointerType>(C->getType())->getElementType()))
|
|
|
|
if (CAT->getElementType() == SAT->getElementType())
|
|
|
|
return ConstantExpr::getGetElementPtr(
|
2003-05-14 17:51:05 +00:00
|
|
|
(Constant*)CE->getOperand(0), IdxList);
|
2003-06-26 05:22:45 +00:00
|
|
|
}
|
2003-04-17 19:24:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-06 17:54:27 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// TemplateRules Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// TemplateRules - Implement a subclass of ConstRules that provides all
|
|
|
|
// operations as noops. All other rules classes inherit from this class so
|
|
|
|
// that if functionality is needed in the future, it can simply be added here
|
|
|
|
// and to ConstRules without changing anything else...
|
|
|
|
//
|
|
|
|
// This class also provides subclasses with typesafe implementations of methods
|
|
|
|
// so that don't have to do type casting.
|
|
|
|
//
|
|
|
|
template<class ArgType, class SubClassName>
|
|
|
|
class TemplateRules : public ConstRules {
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Redirecting functions that cast to the appropriate types
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *add(const Constant *V1, const Constant *V2) const {
|
2001-06-06 20:29:01 +00:00
|
|
|
return SubClassName::Add((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *sub(const Constant *V1, const Constant *V2) const {
|
2001-06-06 20:29:01 +00:00
|
|
|
return SubClassName::Sub((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *mul(const Constant *V1, const Constant *V2) const {
|
2001-07-20 19:15:36 +00:00
|
|
|
return SubClassName::Mul((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *div(const Constant *V1, const Constant *V2) const {
|
2002-04-07 08:10:14 +00:00
|
|
|
return SubClassName::Div((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *rem(const Constant *V1, const Constant *V2) const {
|
2002-05-03 21:41:07 +00:00
|
|
|
return SubClassName::Rem((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *op_and(const Constant *V1, const Constant *V2) const {
|
|
|
|
return SubClassName::And((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
|
|
|
virtual Constant *op_or(const Constant *V1, const Constant *V2) const {
|
|
|
|
return SubClassName::Or((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
|
|
|
virtual Constant *op_xor(const Constant *V1, const Constant *V2) const {
|
|
|
|
return SubClassName::Xor((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
|
|
|
virtual Constant *shl(const Constant *V1, const Constant *V2) const {
|
2002-05-06 03:00:54 +00:00
|
|
|
return SubClassName::Shl((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
virtual Constant *shr(const Constant *V1, const Constant *V2) const {
|
2002-05-06 03:00:54 +00:00
|
|
|
return SubClassName::Shr((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
2001-07-20 19:15:36 +00:00
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantBool *lessthan(const Constant *V1,
|
|
|
|
const Constant *V2) const {
|
2001-06-06 20:29:01 +00:00
|
|
|
return SubClassName::LessThan((const ArgType *)V1, (const ArgType *)V2);
|
|
|
|
}
|
|
|
|
|
2001-07-21 19:10:49 +00:00
|
|
|
// Casting operators. ick
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantBool *castToBool(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToBool((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantSInt *castToSByte(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToSByte((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantUInt *castToUByte(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToUByte((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantSInt *castToShort(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToShort((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantUInt *castToUShort(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToUShort((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantSInt *castToInt(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToInt((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantUInt *castToUInt(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToUInt((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantSInt *castToLong(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToLong((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantUInt *castToULong(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToULong((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantFP *castToFloat(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToFloat((const ArgType*)V);
|
|
|
|
}
|
2001-12-03 22:26:30 +00:00
|
|
|
virtual ConstantFP *castToDouble(const Constant *V) const {
|
2001-07-21 19:10:49 +00:00
|
|
|
return SubClassName::CastToDouble((const ArgType*)V);
|
|
|
|
}
|
2003-04-17 19:24:18 +00:00
|
|
|
virtual Constant *castToPointer(const Constant *V,
|
|
|
|
const PointerType *Ty) const {
|
2001-11-01 05:55:13 +00:00
|
|
|
return SubClassName::CastToPointer((const ArgType*)V, Ty);
|
|
|
|
}
|
2001-07-21 19:10:49 +00:00
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
// Default "noop" implementations
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Add(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Sub(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Mul(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Div(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Rem(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *And(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Or (const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Xor(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Shl(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static Constant *Shr(const ArgType *V1, const ArgType *V2) { return 0; }
|
|
|
|
static ConstantBool *LessThan(const ArgType *V1, const ArgType *V2) {
|
2001-06-06 20:29:01 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2001-07-21 19:10:49 +00:00
|
|
|
|
|
|
|
// Casting operators. ick
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantBool *CastToBool (const Constant *V) { return 0; }
|
|
|
|
static ConstantSInt *CastToSByte (const Constant *V) { return 0; }
|
|
|
|
static ConstantUInt *CastToUByte (const Constant *V) { return 0; }
|
|
|
|
static ConstantSInt *CastToShort (const Constant *V) { return 0; }
|
|
|
|
static ConstantUInt *CastToUShort(const Constant *V) { return 0; }
|
|
|
|
static ConstantSInt *CastToInt (const Constant *V) { return 0; }
|
|
|
|
static ConstantUInt *CastToUInt (const Constant *V) { return 0; }
|
|
|
|
static ConstantSInt *CastToLong (const Constant *V) { return 0; }
|
|
|
|
static ConstantUInt *CastToULong (const Constant *V) { return 0; }
|
|
|
|
static ConstantFP *CastToFloat (const Constant *V) { return 0; }
|
|
|
|
static ConstantFP *CastToDouble(const Constant *V) { return 0; }
|
2003-04-17 19:24:18 +00:00
|
|
|
static Constant *CastToPointer(const Constant *,
|
|
|
|
const PointerType *) {return 0;}
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// EmptyRules Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// EmptyRules provides a concrete base class of ConstRules that does nothing
|
|
|
|
//
|
2001-12-03 22:26:30 +00:00
|
|
|
struct EmptyRules : public TemplateRules<Constant, EmptyRules> {
|
2001-09-09 21:01:20 +00:00
|
|
|
};
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// BoolRules Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// BoolRules provides a concrete base class of ConstRules for the 'bool' type.
|
|
|
|
//
|
2001-12-03 22:26:30 +00:00
|
|
|
struct BoolRules : public TemplateRules<ConstantBool, BoolRules> {
|
2001-06-06 20:29:01 +00:00
|
|
|
|
2002-09-03 20:09:49 +00:00
|
|
|
static ConstantBool *LessThan(const ConstantBool *V1, const ConstantBool *V2){
|
|
|
|
return ConstantBool::get(V1->getValue() < V2->getValue());
|
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *And(const ConstantBool *V1, const ConstantBool *V2) {
|
|
|
|
return ConstantBool::get(V1->getValue() & V2->getValue());
|
|
|
|
}
|
|
|
|
|
|
|
|
static Constant *Or(const ConstantBool *V1, const ConstantBool *V2) {
|
2001-12-03 22:26:30 +00:00
|
|
|
return ConstantBool::get(V1->getValue() | V2->getValue());
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Xor(const ConstantBool *V1, const ConstantBool *V2) {
|
|
|
|
return ConstantBool::get(V1->getValue() ^ V2->getValue());
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2003-08-13 15:52:25 +00:00
|
|
|
|
|
|
|
// Casting operators. ick
|
|
|
|
#define DEF_CAST(TYPE, CLASS, CTYPE) \
|
|
|
|
static CLASS *CastTo##TYPE (const ConstantBool *V) { \
|
|
|
|
return CLASS::get(Type::TYPE##Ty, (CTYPE)(bool)V->getValue()); \
|
|
|
|
}
|
|
|
|
|
|
|
|
DEF_CAST(Bool , ConstantBool, bool)
|
|
|
|
DEF_CAST(SByte , ConstantSInt, signed char)
|
|
|
|
DEF_CAST(UByte , ConstantUInt, unsigned char)
|
|
|
|
DEF_CAST(Short , ConstantSInt, signed short)
|
|
|
|
DEF_CAST(UShort, ConstantUInt, unsigned short)
|
|
|
|
DEF_CAST(Int , ConstantSInt, signed int)
|
|
|
|
DEF_CAST(UInt , ConstantUInt, unsigned int)
|
|
|
|
DEF_CAST(Long , ConstantSInt, int64_t)
|
|
|
|
DEF_CAST(ULong , ConstantUInt, uint64_t)
|
|
|
|
DEF_CAST(Float , ConstantFP , float)
|
|
|
|
DEF_CAST(Double, ConstantFP , double)
|
|
|
|
#undef DEF_CAST
|
2001-09-09 21:01:20 +00:00
|
|
|
};
|
2001-06-06 20:29:01 +00:00
|
|
|
|
|
|
|
|
2001-11-01 05:55:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-11-17 19:19:32 +00:00
|
|
|
// NullPointerRules Class
|
2001-11-01 05:55:13 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2003-11-17 19:19:32 +00:00
|
|
|
// NullPointerRules provides a concrete base class of ConstRules for null
|
|
|
|
// pointers.
|
2001-11-01 05:55:13 +00:00
|
|
|
//
|
2003-11-17 19:21:04 +00:00
|
|
|
struct NullPointerRules : public TemplateRules<ConstantPointerNull,
|
2003-11-17 19:19:32 +00:00
|
|
|
NullPointerRules> {
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantBool *CastToBool (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantBool::False;
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantSInt *CastToSByte (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantSInt::get(Type::SByteTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantUInt *CastToUByte (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantUInt::get(Type::UByteTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantSInt *CastToShort (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantSInt::get(Type::ShortTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantUInt *CastToUShort(const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantUInt::get(Type::UShortTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantSInt *CastToInt (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantSInt::get(Type::IntTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantUInt *CastToUInt (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantUInt::get(Type::UIntTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantSInt *CastToLong (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantSInt::get(Type::LongTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantUInt *CastToULong (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantUInt::get(Type::ULongTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantFP *CastToFloat (const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantFP::get(Type::FloatTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantFP *CastToDouble(const Constant *V) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantFP::get(Type::DoubleTy, 0);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
|
|
|
|
2003-11-17 19:21:04 +00:00
|
|
|
static Constant *CastToPointer(const ConstantPointerNull *V,
|
2003-04-17 19:24:18 +00:00
|
|
|
const PointerType *PTy) {
|
2003-11-17 19:19:32 +00:00
|
|
|
return ConstantPointerNull::get(PTy);
|
2001-11-01 05:55:13 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-06-06 20:29:01 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DirectRules Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DirectRules provides a concrete base classes of ConstRules for a variety of
|
|
|
|
// different types. This allows the C++ compiler to automatically generate our
|
|
|
|
// constant handling operations in a typesafe and accurate manner.
|
|
|
|
//
|
2002-05-03 21:41:07 +00:00
|
|
|
template<class ConstantClass, class BuiltinType, Type **Ty, class SuperClass>
|
|
|
|
struct DirectRules : public TemplateRules<ConstantClass, SuperClass> {
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Add(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() + (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Sub(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() - (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Mul(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() * (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2001-07-20 19:15:36 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) {
|
2002-05-03 21:41:07 +00:00
|
|
|
if (V2->isNullValue()) return 0;
|
2002-07-30 16:24:28 +00:00
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2002-04-07 08:10:14 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static ConstantBool *LessThan(const ConstantClass *V1,
|
|
|
|
const ConstantClass *V2) {
|
|
|
|
bool R = (BuiltinType)V1->getValue() < (BuiltinType)V2->getValue();
|
|
|
|
return ConstantBool::get(R);
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
2001-07-21 19:10:49 +00:00
|
|
|
|
2003-04-17 19:24:18 +00:00
|
|
|
static Constant *CastToPointer(const ConstantClass *V,
|
|
|
|
const PointerType *PTy) {
|
2001-11-01 05:55:13 +00:00
|
|
|
if (V->isNullValue()) // Is it a FP or Integral null value?
|
2001-12-03 22:26:30 +00:00
|
|
|
return ConstantPointerNull::get(PTy);
|
2001-11-01 05:55:13 +00:00
|
|
|
return 0; // Can't const prop other types of pointers
|
|
|
|
}
|
|
|
|
|
2001-07-21 19:10:49 +00:00
|
|
|
// Casting operators. ick
|
|
|
|
#define DEF_CAST(TYPE, CLASS, CTYPE) \
|
2002-07-30 16:24:28 +00:00
|
|
|
static CLASS *CastTo##TYPE (const ConstantClass *V) { \
|
2001-09-07 16:40:34 +00:00
|
|
|
return CLASS::get(Type::TYPE##Ty, (CTYPE)(BuiltinType)V->getValue()); \
|
2001-07-21 19:10:49 +00:00
|
|
|
}
|
|
|
|
|
2001-12-03 22:26:30 +00:00
|
|
|
DEF_CAST(Bool , ConstantBool, bool)
|
|
|
|
DEF_CAST(SByte , ConstantSInt, signed char)
|
|
|
|
DEF_CAST(UByte , ConstantUInt, unsigned char)
|
|
|
|
DEF_CAST(Short , ConstantSInt, signed short)
|
|
|
|
DEF_CAST(UShort, ConstantUInt, unsigned short)
|
|
|
|
DEF_CAST(Int , ConstantSInt, signed int)
|
|
|
|
DEF_CAST(UInt , ConstantUInt, unsigned int)
|
|
|
|
DEF_CAST(Long , ConstantSInt, int64_t)
|
|
|
|
DEF_CAST(ULong , ConstantUInt, uint64_t)
|
|
|
|
DEF_CAST(Float , ConstantFP , float)
|
|
|
|
DEF_CAST(Double, ConstantFP , double)
|
2001-07-21 19:10:49 +00:00
|
|
|
#undef DEF_CAST
|
2001-06-06 20:29:01 +00:00
|
|
|
};
|
|
|
|
|
2002-05-03 20:09:52 +00:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DirectIntRules Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DirectIntRules provides implementations of functions that are valid on
|
|
|
|
// integer types, but not all types in general.
|
|
|
|
//
|
|
|
|
template <class ConstantClass, class BuiltinType, Type **Ty>
|
2002-05-03 21:41:07 +00:00
|
|
|
struct DirectIntRules
|
|
|
|
: public DirectRules<ConstantClass, BuiltinType, Ty,
|
|
|
|
DirectIntRules<ConstantClass, BuiltinType, Ty> > {
|
|
|
|
|
2003-05-12 15:26:25 +00:00
|
|
|
static Constant *Div(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
if (V2->isNullValue()) return 0;
|
|
|
|
if (V2->isAllOnesValue() && // MIN_INT / -1
|
|
|
|
(BuiltinType)V1->getValue() == -(BuiltinType)V1->getValue())
|
|
|
|
return 0;
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() / (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Rem(const ConstantClass *V1,
|
|
|
|
const ConstantClass *V2) {
|
2003-05-12 15:26:25 +00:00
|
|
|
if (V2->isNullValue()) return 0; // X / 0
|
|
|
|
if (V2->isAllOnesValue() && // MIN_INT / -1
|
|
|
|
(BuiltinType)V1->getValue() == -(BuiltinType)V1->getValue())
|
|
|
|
return 0;
|
2002-07-30 16:24:28 +00:00
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() % (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
|
|
|
}
|
|
|
|
|
|
|
|
static Constant *And(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() & (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
|
|
|
}
|
|
|
|
static Constant *Or(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() | (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
|
|
|
}
|
|
|
|
static Constant *Xor(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() ^ (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2002-05-03 21:41:07 +00:00
|
|
|
}
|
2002-05-06 03:00:54 +00:00
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Shl(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() << (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2002-05-06 03:00:54 +00:00
|
|
|
}
|
|
|
|
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Shr(const ConstantClass *V1, const ConstantClass *V2) {
|
|
|
|
BuiltinType R = (BuiltinType)V1->getValue() >> (BuiltinType)V2->getValue();
|
|
|
|
return ConstantClass::get(*Ty, R);
|
2002-05-06 03:00:54 +00:00
|
|
|
}
|
2002-05-03 21:41:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// DirectFPRules Class
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// DirectFPRules provides implementations of functions that are valid on
|
|
|
|
// floating point types, but not all types in general.
|
|
|
|
//
|
|
|
|
template <class ConstantClass, class BuiltinType, Type **Ty>
|
|
|
|
struct DirectFPRules
|
|
|
|
: public DirectRules<ConstantClass, BuiltinType, Ty,
|
|
|
|
DirectFPRules<ConstantClass, BuiltinType, Ty> > {
|
2002-07-30 16:24:28 +00:00
|
|
|
static Constant *Rem(const ConstantClass *V1, const ConstantClass *V2) {
|
2002-05-03 21:41:07 +00:00
|
|
|
if (V2->isNullValue()) return 0;
|
|
|
|
BuiltinType Result = std::fmod((BuiltinType)V1->getValue(),
|
|
|
|
(BuiltinType)V2->getValue());
|
|
|
|
return ConstantClass::get(*Ty, Result);
|
|
|
|
}
|
2002-05-03 20:09:52 +00:00
|
|
|
};
|
|
|
|
|
2003-11-17 19:05:17 +00:00
|
|
|
ConstRules &ConstRules::get(const Constant &V1, const Constant &V2) {
|
2003-11-17 19:19:32 +00:00
|
|
|
static EmptyRules EmptyR;
|
|
|
|
static BoolRules BoolR;
|
|
|
|
static NullPointerRules NullPointerR;
|
2003-11-17 19:05:17 +00:00
|
|
|
static DirectIntRules<ConstantSInt, signed char , &Type::SByteTy> SByteR;
|
|
|
|
static DirectIntRules<ConstantUInt, unsigned char , &Type::UByteTy> UByteR;
|
|
|
|
static DirectIntRules<ConstantSInt, signed short, &Type::ShortTy> ShortR;
|
|
|
|
static DirectIntRules<ConstantUInt, unsigned short, &Type::UShortTy> UShortR;
|
|
|
|
static DirectIntRules<ConstantSInt, signed int , &Type::IntTy> IntR;
|
|
|
|
static DirectIntRules<ConstantUInt, unsigned int , &Type::UIntTy> UIntR;
|
|
|
|
static DirectIntRules<ConstantSInt, int64_t , &Type::LongTy> LongR;
|
|
|
|
static DirectIntRules<ConstantUInt, uint64_t , &Type::ULongTy> ULongR;
|
|
|
|
static DirectFPRules <ConstantFP , float , &Type::FloatTy> FloatR;
|
|
|
|
static DirectFPRules <ConstantFP , double , &Type::DoubleTy> DoubleR;
|
|
|
|
|
2003-11-17 19:19:32 +00:00
|
|
|
if (isa<ConstantExpr>(V1) || isa<ConstantExpr>(V2) ||
|
|
|
|
isa<ConstantPointerRef>(V1) || isa<ConstantPointerRef>(V2))
|
2003-11-17 19:05:17 +00:00
|
|
|
return EmptyR;
|
|
|
|
|
|
|
|
// FIXME: This assert doesn't work because shifts pass both operands in to
|
|
|
|
// check for constant exprs. :(
|
|
|
|
//assert(V1.getType() == V2.getType() &&"Nonequal types to constant folder?");
|
|
|
|
|
|
|
|
switch (V1.getType()->getPrimitiveID()) {
|
|
|
|
default: assert(0 && "Unknown value type for constant folding!");
|
|
|
|
case Type::BoolTyID: return BoolR;
|
2003-11-17 19:19:32 +00:00
|
|
|
case Type::PointerTyID: return NullPointerR;
|
2003-11-17 19:05:17 +00:00
|
|
|
case Type::SByteTyID: return SByteR;
|
|
|
|
case Type::UByteTyID: return UByteR;
|
|
|
|
case Type::ShortTyID: return ShortR;
|
|
|
|
case Type::UShortTyID: return UShortR;
|
|
|
|
case Type::IntTyID: return IntR;
|
|
|
|
case Type::UIntTyID: return UIntR;
|
|
|
|
case Type::LongTyID: return LongR;
|
|
|
|
case Type::ULongTyID: return ULongR;
|
|
|
|
case Type::FloatTyID: return FloatR;
|
|
|
|
case Type::DoubleTyID: return DoubleR;
|
2001-06-06 20:29:01 +00:00
|
|
|
}
|
|
|
|
}
|