Home
last modified time | relevance | path

Searched refs:EltC (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LowerAMXIntrinsics.cpp378 Value *EltC = B.CreateExtractElement(VecCPhi, IdxC); in createTileDPLoops() local
406 Value *ResElt = B.CreateAdd(EltC, SubVecR); in createTileDPLoops()
433 Value *EltC = B.CreateExtractElement(VecCPhi, IdxC); in createTileDPLoops() local
434 Value *EltCF32 = B.CreateBitCast(EltC, B.getFloatTy()); in createTileDPLoops()
H A DX86ISelLowering.cpp23174 const APInt &EltC = Elt->getAPIntValue(); in incDecVectorConstant() local
23175 if ((IsInc && EltC.isMaxValue()) || (!IsInc && EltC.isZero())) in incDecVectorConstant()
23177 if (NSW && ((IsInc && EltC.isMaxSignedValue()) || in incDecVectorConstant()
23178 (!IsInc && EltC.isMinSignedValue()))) in incDecVectorConstant()
23181 NewVecC.push_back(DAG.getConstant(EltC + (IsInc ? 1 : -1), DL, EltVT)); in incDecVectorConstant()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp784 Constant *EltC = C->getAggregateElement(i); in replaceUndefsWith() local
785 assert((!EltC || EltC->getType() == Replacement->getType()) && in replaceUndefsWith()
787 NewC[i] = EltC && match(EltC, m_Undef()) ? Replacement : EltC; in replaceUndefsWith()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp1830 auto *EltC = dyn_cast<ConstantInt>(Op->getAggregateElement(0U)); in constantFoldVectorReduce() local
1831 if (!EltC) in constantFoldVectorReduce()
1834 APInt Acc = EltC->getValue(); in constantFoldVectorReduce()
1836 if (!(EltC = dyn_cast<ConstantInt>(Op->getAggregateElement(I)))) in constantFoldVectorReduce()
1838 const APInt &X = EltC->getValue(); in constantFoldVectorReduce()
H A DInstructionSimplify.cpp5573 Constant *EltC = In->getAggregateElement(i); in propagateNaN() local
5576 if (EltC && isa<PoisonValue>(EltC)) in propagateNaN()
5577 NewC[i] = EltC; in propagateNaN()
5578 else if (EltC && EltC->isNaN()) in propagateNaN()
5580 EltC->getType(), cast<ConstantFP>(EltC)->getValue().makeQuiet()); in propagateNaN()