Home
last modified time | relevance | path

Searched refs:SrcVecTy (Results 1 – 4 of 4) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/IR/
DInstructions.cpp2548 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) in isCastable() local
2550 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { in isCastable()
2552 SrcTy = SrcVecTy->getElementType(); in isCastable()
2609 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) { in isBitCastable() local
2611 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { in isBitCastable()
2613 SrcTy = SrcVecTy->getElementType(); in isBitCastable()
2661 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) in getCastOpcode() local
2663 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { in getCastOpcode()
2666 SrcTy = SrcVecTy->getElementType(); in getCastOpcode()
/freebsd-10-stable/contrib/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1329 const Type *SrcVecTy = SrcTy->getScalarType(); in executeFPToUIInst() local
1335 if (SrcVecTy->getTypeID() == Type::FloatTyID) { in executeFPToUIInst()
1336 assert(SrcVecTy->isFloatingPointTy() && "Invalid FPToUI instruction"); in executeFPToUIInst()
1367 const Type *SrcVecTy = SrcTy->getScalarType(); in executeFPToSIInst() local
1373 if (SrcVecTy->getTypeID() == Type::FloatTyID) { in executeFPToSIInst()
1374 assert(SrcVecTy->isFloatingPointTy() && "Invalid FPToSI instruction"); in executeFPToSIInst()
/freebsd-10-stable/contrib/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp1004 VectorType *SrcVecTy = VectorType::get(SrcTy, VL.size()); in getEntryCost() local
1005 int VecCost = TTI->getCastInstrCost(VL0->getOpcode(), VecTy, SrcVecTy); in getEntryCost()
DLoopVectorize.cpp5010 Type *SrcVecTy = ToVectorTy(I->getOperand(0)->getType(), VF); in getInstructionCost() local
5011 return TTI.getCastInstrCost(I->getOpcode(), VectorTy, SrcVecTy); in getInstructionCost()