Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp17712 SmallVector<std::pair<Instruction *, Value *>> ExtraReductions; in tryToReduce() local
17713 ExtraReductions.emplace_back(cast<Instruction>(ReductionRoot), in tryToReduce()
17724 ExtraReductions.emplace_back(RedOp, RdxVal); in tryToReduce()
17730 ExtraReductions.emplace_back(I, Pair.first); in tryToReduce()
17734 while (ExtraReductions.size() > 1) { in tryToReduce()
17736 FinalGen(ExtraReductions, InitStep); in tryToReduce()
17737 ExtraReductions.swap(NewReds); in tryToReduce()
17740 VectorizedTree = ExtraReductions.front().second; in tryToReduce()