Home
last modified time | relevance | path

Searched refs:ExtElt (Results 1 – 7 of 7) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
DVectorCombine.cpp390 static ExtractElementInst *translateExtract(ExtractElementInst *ExtElt, in translateExtract() argument
395 Value *X = ExtElt->getVectorOperand(); in translateExtract()
396 Value *C = ExtElt->getIndexOperand(); in translateExtract()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineVectorOps.cpp606 ExtractElementInst *ExtElt, in replaceExtractElements() argument
609 auto *ExtVecType = cast<FixedVectorType>(ExtElt->getVectorOperandType()); in replaceExtractElements()
628 Value *ExtVecOp = ExtElt->getVectorOperand(); in replaceExtractElements()
632 : ExtElt->getParent(); in replaceExtractElements()
664 IC.InsertNewInstWith(WideVec, *ExtElt->getParent()->getFirstInsertionPt()); in replaceExtractElements()
DInstCombineCasts.cpp2327 auto *ExtElt = dyn_cast<ExtractElementInst>(BitCast.getOperand(0)); in canonicalizeBitCastExtElt() local
2328 if (!ExtElt || !ExtElt->hasOneUse()) in canonicalizeBitCastExtElt()
2337 auto *NewVecType = VectorType::get(DestType, ExtElt->getVectorOperandType()); in canonicalizeBitCastExtElt()
2338 auto *NewBC = IC.Builder.CreateBitCast(ExtElt->getVectorOperand(), in canonicalizeBitCastExtElt()
2340 return ExtractElementInst::Create(NewBC, ExtElt->getIndexOperand()); in canonicalizeBitCastExtElt()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86ISelLowering.cpp41005 static SDValue scalarizeExtEltFP(SDNode *ExtElt, SelectionDAG &DAG) { in scalarizeExtEltFP() argument
41006 assert(ExtElt->getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Expected extract"); in scalarizeExtEltFP()
41007 SDValue Vec = ExtElt->getOperand(0); in scalarizeExtEltFP()
41008 SDValue Index = ExtElt->getOperand(1); in scalarizeExtEltFP()
41009 EVT VT = ExtElt->getValueType(0); in scalarizeExtEltFP()
41025 SDLoc DL(ExtElt); in scalarizeExtEltFP()
41047 SDLoc DL(ExtElt); in scalarizeExtEltFP()
41089 SDLoc DL(ExtElt); in scalarizeExtEltFP()
41103 static SDValue combineArithReduction(SDNode *ExtElt, SelectionDAG &DAG, in combineArithReduction() argument
41105 assert(ExtElt->getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unexpected caller"); in combineArithReduction()
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp18669 static SDValue scalarizeExtractedBinop(SDNode *ExtElt, SelectionDAG &DAG, in scalarizeExtractedBinop() argument
18672 SDValue Vec = ExtElt->getOperand(0); in scalarizeExtractedBinop()
18673 SDValue Index = ExtElt->getOperand(1); in scalarizeExtractedBinop()
18692 SDLoc DL(ExtElt); in scalarizeExtractedBinop()
18693 EVT VT = ExtElt->getValueType(0); in scalarizeExtractedBinop()
DTargetLowering.cpp7448 SDValue ExtElt = DAG.getNode(ISD::ZERO_EXTEND, SL, IntVT, Trunc); in scalarizeVectorStore() local
7454 DAG.getNode(ISD::SHL, SL, IntVT, ExtElt, ShiftAmount); in scalarizeVectorStore()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
DARMISelLowering.cpp15832 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, in PerformSTORECombine() local
15835 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt); in PerformSTORECombine()
15838 DCI.AddToWorklist(ExtElt.getNode()); in PerformSTORECombine()