Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DVectorCombine.cpp387 static ExtractElementInst *translateExtract(ExtractElementInst *ExtElt, in translateExtract() argument
392 Value *X = ExtElt->getVectorOperand(); in translateExtract()
393 Value *C = ExtElt->getIndexOperand(); in translateExtract()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCasts.cpp2262 auto *ExtElt = dyn_cast<ExtractElementInst>(BitCast.getOperand(0)); in canonicalizeBitCastExtElt() local
2263 if (!ExtElt || !ExtElt->hasOneUse()) in canonicalizeBitCastExtElt()
2272 auto *NewVecType = VectorType::get(DestType, ExtElt->getVectorOperandType()); in canonicalizeBitCastExtElt()
2273 auto *NewBC = IC.Builder.CreateBitCast(ExtElt->getVectorOperand(), in canonicalizeBitCastExtElt()
2275 return ExtractElementInst::Create(NewBC, ExtElt->getIndexOperand()); in canonicalizeBitCastExtElt()
H A DInstCombineVectorOps.cpp545 ExtractElementInst *ExtElt, in replaceExtractElements() argument
548 auto *ExtVecType = cast<FixedVectorType>(ExtElt->getVectorOperandType()); in replaceExtractElements()
567 Value *ExtVecOp = ExtElt->getVectorOperand(); in replaceExtractElements()
571 : ExtElt->getParent(); in replaceExtractElements()
603 IC.InsertNewInstWith(WideVec, *ExtElt->getParent()->getFirstInsertionPt()); in replaceExtractElements()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp40744 static SDValue scalarizeExtEltFP(SDNode *ExtElt, SelectionDAG &DAG) { in scalarizeExtEltFP() argument
40745 assert(ExtElt->getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Expected extract"); in scalarizeExtEltFP()
40746 SDValue Vec = ExtElt->getOperand(0); in scalarizeExtEltFP()
40747 SDValue Index = ExtElt->getOperand(1); in scalarizeExtEltFP()
40748 EVT VT = ExtElt->getValueType(0); in scalarizeExtEltFP()
40764 SDLoc DL(ExtElt); in scalarizeExtEltFP()
40786 SDLoc DL(ExtElt); in scalarizeExtEltFP()
40828 SDLoc DL(ExtElt); in scalarizeExtEltFP()
40842 static SDValue combineArithReduction(SDNode *ExtElt, SelectionDAG &DAG, in combineArithReduction() argument
40844 assert(ExtElt->getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unexpected caller"); in combineArithReduction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18474 static SDValue scalarizeExtractedBinop(SDNode *ExtElt, SelectionDAG &DAG, in scalarizeExtractedBinop() argument
18477 SDValue Vec = ExtElt->getOperand(0); in scalarizeExtractedBinop()
18478 SDValue Index = ExtElt->getOperand(1); in scalarizeExtractedBinop()
18497 SDLoc DL(ExtElt); in scalarizeExtractedBinop()
18498 EVT VT = ExtElt->getValueType(0); in scalarizeExtractedBinop()
H A DTargetLowering.cpp7419 SDValue ExtElt = DAG.getNode(ISD::ZERO_EXTEND, SL, IntVT, Trunc); in scalarizeVectorStore() local
7425 DAG.getNode(ISD::SHL, SL, IntVT, ExtElt, ShiftAmount); in scalarizeVectorStore()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp15421 SDValue ExtElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, in PerformSTORECombine() local
15424 SDValue V = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ExtElt); in PerformSTORECombine()
15427 DCI.AddToWorklist(ExtElt.getNode()); in PerformSTORECombine()