Lines Matching refs:SrcTy

1234   Type *SrcTy = SrcVal->getType();  in executeTruncInst()  local
1235 if (SrcTy->isVectorTy()) { in executeTruncInst()
1253 Type *SrcTy = SrcVal->getType(); in executeSExtInst() local
1255 if (SrcTy->isVectorTy()) { in executeSExtInst()
1273 Type *SrcTy = SrcVal->getType(); in executeZExtInst() local
1275 if (SrcTy->isVectorTy()) { in executeZExtInst()
1339 Type *SrcTy = SrcVal->getType(); in executeFPToUIInst() local
1342 if (isa<VectorType>(SrcTy)) { in executeFPToUIInst()
1344 Type *SrcVecTy = SrcTy->getScalarType(); in executeFPToUIInst()
1363 assert(SrcTy->isFloatingPointTy() && "Invalid FPToUI instruction"); in executeFPToUIInst()
1365 if (SrcTy->getTypeID() == Type::FloatTyID) in executeFPToUIInst()
1377 Type *SrcTy = SrcVal->getType(); in executeFPToSIInst() local
1380 if (isa<VectorType>(SrcTy)) { in executeFPToSIInst()
1382 Type *SrcVecTy = SrcTy->getScalarType(); in executeFPToSIInst()
1401 assert(SrcTy->isFloatingPointTy() && "Invalid FPToSI instruction"); in executeFPToSIInst()
1403 if (SrcTy->getTypeID() == Type::FloatTyID) in executeFPToSIInst()
1506 Type *SrcTy = SrcVal->getType(); in executeBitCastInst() local
1509 if (isa<VectorType>(SrcTy) || isa<VectorType>(DstTy)) { in executeBitCastInst()
1521 if (isa<VectorType>(SrcTy)) { in executeBitCastInst()
1522 SrcElemTy = SrcTy->getScalarType(); in executeBitCastInst()
1523 SrcBitSize = SrcTy->getScalarSizeInBits(); in executeBitCastInst()
1528 SrcElemTy = SrcTy; in executeBitCastInst()
1529 SrcBitSize = SrcTy->getPrimitiveSizeInBits(); in executeBitCastInst()
1634 assert(SrcTy->isPointerTy() && "Invalid BitCast"); in executeBitCastInst()
1637 if (SrcTy->isFloatTy()) in executeBitCastInst()
1639 else if (SrcTy->isDoubleTy()) { in executeBitCastInst()
1641 } else if (SrcTy->isIntegerTy()) { in executeBitCastInst()
1647 if (SrcTy->isIntegerTy()) in executeBitCastInst()
1653 if (SrcTy->isIntegerTy()) in executeBitCastInst()