Home
last modified time | relevance | path

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

/external/llvm/lib/IR/
DInstructions.cpp2524 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) in isCastable() local
2526 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { in isCastable()
2528 SrcTy = SrcVecTy->getElementType(); in isCastable()
2579 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) { in isBitCastable() local
2581 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { in isBitCastable()
2583 SrcTy = SrcVecTy->getElementType(); in isBitCastable()
2643 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) in getCastOpcode() local
2645 if (SrcVecTy->getNumElements() == DestVecTy->getNumElements()) { in getCastOpcode()
2648 SrcTy = SrcVecTy->getElementType(); in getCastOpcode()
2817 if (VectorType *SrcVecTy = dyn_cast<VectorType>(SrcTy)) { in castIsValid() local
[all …]
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1331 const Type *SrcVecTy = SrcTy->getScalarType(); in executeFPToUIInst() local
1337 if (SrcVecTy->getTypeID() == Type::FloatTyID) { in executeFPToUIInst()
1338 assert(SrcVecTy->isFloatingPointTy() && "Invalid FPToUI instruction"); in executeFPToUIInst()
1369 const Type *SrcVecTy = SrcTy->getScalarType(); in executeFPToSIInst() local
1375 if (SrcVecTy->getTypeID() == Type::FloatTyID) { in executeFPToSIInst()
1376 assert(SrcVecTy->isFloatingPointTy() && "Invalid FPToSI instruction"); in executeFPToSIInst()
/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp1470 VectorType *SrcVecTy = VectorType::get(SrcTy, VL.size()); in getEntryCost() local
1471 int VecCost = TTI->getCastInstrCost(VL0->getOpcode(), VecTy, SrcVecTy); in getEntryCost()
DLoopVectorize.cpp5172 Type *SrcVecTy = ToVectorTy(I->getOperand(0)->getType(), VF); in getInstructionCost() local
5173 return TTI.getCastInstrCost(I->getOpcode(), VectorTy, SrcVecTy); in getInstructionCost()