Lines Matching defs:SrcTy
212 void printCast(unsigned opcode, Type *SrcTy, Type *DstTy);
687 void CWriter::printCast(unsigned opc, Type *SrcTy, Type *DstTy) {
723 printSimpleType(Out, SrcTy, false);
729 printSimpleType(Out, SrcTy, true);
2228 Type *SrcTy = I.getOperand(0)->getType();
2230 return (SrcTy->isFloatingPointTy() && DstTy->isIntegerTy()) ||
2231 (DstTy->isFloatingPointTy() && SrcTy->isIntegerTy());
2686 Type *SrcTy = I.getOperand(0)->getType();
2700 printCast(I.getOpcode(), SrcTy, DstTy);
2703 if (SrcTy == Type::getInt1Ty(I.getContext()) &&