Searched refs:TruncType (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 418 VectorParts &Entry, IntegerType *TruncType); 1874 const InductionDescriptor &II, VectorParts &Entry, IntegerType *TruncType) { in createVectorIntInductionPHI() argument 1882 if (TruncType) { in createVectorIntInductionPHI() 1883 Step = ConstantInt::getSigned(TruncType, Step->getSExtValue()); in createVectorIntInductionPHI() 1884 Start = Builder.CreateCast(Instruction::Trunc, Start, TruncType); in createVectorIntInductionPHI() 1917 auto *TruncType = Trunc ? cast<IntegerType>(Trunc->getType()) : nullptr; in widenIntInduction() local 1932 return createVectorIntInductionPHI(ID, Entry, TruncType); in widenIntInduction() 1941 if (TruncType) { in widenIntInduction() 1944 ScalarIV = Builder.CreateCast(Instruction::Trunc, Induction, TruncType); in widenIntInduction() 1945 Step = ConstantInt::getSigned(TruncType, StepInt); in widenIntInduction()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | DAGCombiner.cpp | 10208 EVT TruncType = LS.Inst->getValueType(0); in Cost() local 10210 if (TruncType != LoadedType && in Cost() 10211 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType)) in Cost()
|