Searched refs:ResNE (Results 1 - 2 of 2) sorted by relevance

/freebsd-10-stable/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp6261 SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) { argument
6273 // If ResNE is 0, fully unroll the vector op.
6274 if (ResNE == 0)
6275 ResNE = NE;
6276 else if (NE > ResNE)
6277 NE = ResNE;
6326 for (; i < ResNE; ++i)
6330 EVT::getVectorVT(*getContext(), EltVT, ResNE),
/freebsd-10-stable/contrib/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h1121 /// on each element individually. If the ResNE is 0, fully unroll the vector
1122 /// op. If ResNE is less than the width of the vector op, unroll up to ResNE.
1123 /// If the ResNE is greater than the width of the vector op, unroll the
1125 SDValue UnrollVectorOp(SDNode *N, unsigned ResNE = 0);

Completed in 84 milliseconds