Searched refs:MidTy (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/VMCore/ |
D | Instructions.cpp | 2109 Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy) { in isEliminableCastPair() argument 2168 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) || in isEliminableCastPair() 2169 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy))) in isEliminableCastPair() 2215 unsigned MidSize = MidTy->getScalarSizeInBits(); in isEliminableCastPair() 2243 if (SrcTy->isPointerTy() && MidTy->isPointerTy()) in isEliminableCastPair() 2248 if (MidTy->isPointerTy() && DstTy->isPointerTy()) in isEliminableCastPair()
|
D | ConstantFold.cpp | 87 Type *MidTy = Op->getType(); in foldConstantCastPair() local 92 return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy, in foldConstantCastPair()
|
/external/llvm/include/llvm/ |
D | InstrTypes.h | 592 Type *MidTy, ///< DstTy of 1st cast & SrcTy of 2nd cast
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCasts.cpp | 236 Type *MidTy = CI->getType(); // B from above in isEliminableCastPair() local 242 unsigned Res = CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, in isEliminableCastPair()
|