Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp11693 unsigned OpsWidth = 0; in tryToVectorizeList() local
11696 OpsWidth = MaxInst - I; in tryToVectorizeList()
11698 OpsWidth = VF; in tryToVectorizeList()
11700 if (!isPowerOf2_32(OpsWidth)) in tryToVectorizeList()
11703 if ((LimitForRegisterSize && OpsWidth < MaxVF) || in tryToVectorizeList()
11704 (VF > MinVF && OpsWidth <= VF / 2) || (VF == MinVF && OpsWidth < 2)) in tryToVectorizeList()
11707 ArrayRef<Value *> Ops = VL.slice(I, OpsWidth); in tryToVectorizeList()
11715 LLVM_DEBUG(dbgs() << "SLP: Analyzing " << OpsWidth << " operations " in tryToVectorizeList()
11733 << " for VF=" << OpsWidth << "\n"); in tryToVectorizeList()