Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp4017 Instruction *TreeN = Stack.back().first; in matchAssociativeReduction() local
4019 bool IsReducedValue = TreeN->getOpcode() != ReductionOpcode; in matchAssociativeReduction()
4022 if (TreeN->getParent() != B->getParent()) in matchAssociativeReduction()
4027 if (!TreeN->hasOneUse() && TreeN != B) in matchAssociativeReduction()
4036 ReducedValueOpcode = TreeN->getOpcode(); in matchAssociativeReduction()
4037 else if (ReducedValueOpcode != TreeN->getOpcode()) in matchAssociativeReduction()
4039 ReducedVals.push_back(TreeN); in matchAssociativeReduction()
4042 if (!TreeN->isAssociative()) in matchAssociativeReduction()
4044 ReductionOps.push_back(TreeN); in matchAssociativeReduction()
4052 Value *NextV = TreeN->getOperand(EdgeToVist); in matchAssociativeReduction()