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

/external/llvm/lib/VMCore/
H A DConstantFold.cpp89 Type *MidTy = Op->getType(); local
94 return CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy, DstTy,
H A DInstructions.cpp2076 /// * %F = firstOpcode SrcTy %x to MidTy
2077 /// * %S = secondOpcode MidTy %F to DstTy
2083 Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy) {
2142 if ((isFirstBitcast && isa<VectorType>(SrcTy) != isa<VectorType>(MidTy)) ||
2143 (isSecondBitcast && isa<VectorType>(MidTy) != isa<VectorType>(DstTy)))
2189 unsigned MidSize = MidTy->getScalarSizeInBits();
2217 if (SrcTy->isPointerTy() && MidTy->isPointerTy())
2222 if (MidTy->isPointerTy() && DstTy->isPointerTy())
2238 // where the MidTy is not the same for the two cast instructions.
2081 isEliminableCastPair( Instruction::CastOps firstOp, Instruction::CastOps secondOp, Type *SrcTy, Type *MidTy, Type *DstTy, Type *IntPtrTy) argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp238 Type *MidTy = CI->getType(); // B from above local
244 unsigned Res = CastInst::isEliminableCastPair(firstOp, secondOp, SrcTy, MidTy,

Completed in 156 milliseconds