@@ -3142,64 +3142,6 @@ CastInst *CastInst::CreateFPCast(Value *C, Type *Ty,
3142
3142
return Create (opcode, C, Ty, Name, InsertAtEnd);
3143
3143
}
3144
3144
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
-
3203
3145
bool CastInst::isBitCastable (Type *SrcTy, Type *DestTy) {
3204
3146
if (!SrcTy->isFirstClassType () || !DestTy->isFirstClassType ())
3205
3147
return false ;
@@ -3261,7 +3203,6 @@ bool CastInst::isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy,
3261
3203
// castIsValid( getCastOpcode(Val, Ty), Val, Ty)
3262
3204
// should not assert in castIsValid. In other words, this produces a "correct"
3263
3205
// casting opcode for the arguments passed to it.
3264
- // This routine must be kept in sync with isCastable.
3265
3206
Instruction::CastOps
3266
3207
CastInst::getCastOpcode (
3267
3208
const Value *Src, bool SrcIsSigned, Type *DestTy, bool DestIsSigned) {
0 commit comments