Skip to content

Commit 2cfbdaf

Browse files
committed
[IR] Remove CastInst::isCastable since it is not used
It was removed back in 2013 (f63dfbb) by Matt Arsenault but then reverted since DragonEgg used it, but that project is no longer maintained. Reviewed By: ldionne, dexonsmith Differential Revision: https://reviews.llvm.org/D92571
1 parent c5978f4 commit 2cfbdaf

File tree

3 files changed

+0
-71
lines changed

3 files changed

+0
-71
lines changed

llvm/include/llvm/IR/InstrTypes.h

-6
Original file line numberDiff line numberDiff line change
@@ -599,12 +599,6 @@ class CastInst : public UnaryInstruction {
599599
BasicBlock *InsertAtEnd ///< The block to insert the instruction into
600600
);
601601

602-
/// Check whether it is valid to call getCastOpcode for these types.
603-
static bool isCastable(
604-
Type *SrcTy, ///< The Type from which the value should be cast.
605-
Type *DestTy ///< The Type to which the value should be cast.
606-
);
607-
608602
/// Check whether a bitcast between these types is valid
609603
static bool isBitCastable(
610604
Type *SrcTy, ///< The Type from which the value should be cast.

llvm/lib/IR/Instructions.cpp

-59
Original file line numberDiff line numberDiff line change
@@ -3142,64 +3142,6 @@ CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
31423142
return Create(opcode, C, Ty, Name, InsertAtEnd);
31433143
}
31443144

3145-
// Check whether it is valid to call getCastOpcode for these types.
3146-
// This routine must be kept in sync with getCastOpcode.
3147-
bool CastInst::isCastable(Type *SrcTy, Type *DestTy) {
3148-
if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
3149-
return false;
3150-
3151-
if (SrcTy == DestTy)
3152-
return true;
3153-
3154-
if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy))
3155-
if (VectorType *DestVecTy = dyn_cast<VectorType>(DestTy))
3156-
if (cast<FixedVectorType>(SrcVecTy)->getNumElements() ==
3157-
cast<FixedVectorType>(DestVecTy)->getNumElements()) {
3158-
// An element by element cast. Valid if casting the elements is valid.
3159-
SrcTy = SrcVecTy->getElementType();
3160-
DestTy = DestVecTy->getElementType();
3161-
}
3162-
3163-
// Get the bit sizes, we'll need these
3164-
TypeSize SrcBits = SrcTy->getPrimitiveSizeInBits(); // 0 for ptr
3165-
TypeSize DestBits = DestTy->getPrimitiveSizeInBits(); // 0 for ptr
3166-
3167-
// Run through the possibilities ...
3168-
if (DestTy->isIntegerTy()) { // Casting to integral
3169-
if (SrcTy->isIntegerTy()) // Casting from integral
3170-
return true;
3171-
if (SrcTy->isFloatingPointTy()) // Casting from floating pt
3172-
return true;
3173-
if (SrcTy->isVectorTy()) // Casting from vector
3174-
return DestBits == SrcBits;
3175-
// Casting from something else
3176-
return SrcTy->isPointerTy();
3177-
}
3178-
if (DestTy->isFloatingPointTy()) { // Casting to floating pt
3179-
if (SrcTy->isIntegerTy()) // Casting from integral
3180-
return true;
3181-
if (SrcTy->isFloatingPointTy()) // Casting from floating pt
3182-
return true;
3183-
if (SrcTy->isVectorTy()) // Casting from vector
3184-
return DestBits == SrcBits;
3185-
// Casting from something else
3186-
return false;
3187-
}
3188-
if (DestTy->isVectorTy()) // Casting to vector
3189-
return DestBits == SrcBits;
3190-
if (DestTy->isPointerTy()) { // Casting to pointer
3191-
if (SrcTy->isPointerTy()) // Casting from pointer
3192-
return true;
3193-
return SrcTy->isIntegerTy(); // Casting from integral
3194-
}
3195-
if (DestTy->isX86_MMXTy()) {
3196-
if (SrcTy->isVectorTy())
3197-
return DestBits == SrcBits; // 64-bit vector to MMX
3198-
return false;
3199-
} // Casting to something else
3200-
return false;
3201-
}
3202-
32033145
bool CastInst::isBitCastable(Type *SrcTy, Type *DestTy) {
32043146
if (!SrcTy->isFirstClassType() || !DestTy->isFirstClassType())
32053147
return false;
@@ -3261,7 +3203,6 @@ bool CastInst::isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy,
32613203
// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
32623204
// should not assert in castIsValid. In other words, this produces a "correct"
32633205
// casting opcode for the arguments passed to it.
3264-
// This routine must be kept in sync with isCastable.
32653206
Instruction::CastOps
32663207
CastInst::getCastOpcode(
32673208
const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {

llvm/unittests/IR/InstructionsTest.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -229,11 +229,6 @@ TEST(InstructionsTest, CastInst) {
229229

230230
const Constant *v2ptr32 = Constant::getNullValue(V2Int32PtrTy);
231231

232-
EXPECT_TRUE(CastInst::isCastable(V8x8Ty, X86MMXTy));
233-
EXPECT_TRUE(CastInst::isCastable(X86MMXTy, V8x8Ty));
234-
EXPECT_FALSE(CastInst::isCastable(Int64Ty, X86MMXTy));
235-
EXPECT_TRUE(CastInst::isCastable(V8x64Ty, V8x8Ty));
236-
EXPECT_TRUE(CastInst::isCastable(V8x8Ty, V8x64Ty));
237232
EXPECT_EQ(CastInst::Trunc, CastInst::getCastOpcode(c64, true, V8x8Ty, true));
238233
EXPECT_EQ(CastInst::SExt, CastInst::getCastOpcode(c8, true, V8x64Ty, true));
239234

@@ -249,7 +244,6 @@ TEST(InstructionsTest, CastInst) {
249244
EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrTy, V2Int32PtrAS1Ty));
250245
EXPECT_FALSE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int32PtrTy));
251246
EXPECT_TRUE(CastInst::isBitCastable(V2Int32PtrAS1Ty, V2Int64PtrAS1Ty));
252-
EXPECT_TRUE(CastInst::isCastable(V2Int32PtrAS1Ty, V2Int32PtrTy));
253247
EXPECT_EQ(CastInst::AddrSpaceCast, CastInst::getCastOpcode(v2ptr32, true,
254248
V2Int32PtrAS1Ty,
255249
true));

0 commit comments

Comments
 (0)