Searched defs:MidTy (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/VMCore/
H A DConstantFold.cpp87 Type *MidTy = Op->getType(); local
92 return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy,
H A DInstructions.cpp2102 /// * %F = firstOpcode SrcTy %x to MidTy
2103 /// * %S = secondOpcode MidTy %F to DstTy
2109 Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy) {
2168 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2169 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2215 unsigned MidSize = MidTy->getScalarSizeInBits();
2243 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
2248 if (MidTy->isPointerTy() && DstTy->isPointerTy())
2264 // where the MidTy is not the same for the two cast instructions.
2107 isEliminableCastPair( Instruction::CastOps firstOp, Instruction::CastOps secondOp, Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy) argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp236 Type *MidTy = CI->getType(); // B from above local
242 unsigned Res = CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy,

Completed in 56 milliseconds