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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2862 unsigned SrcNumElts = SrcVT.getVectorNumElements(); local
2864 if (SrcNumElts == MaskNumElts) {
2871 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2875 if (SrcNumElts*2 == MaskNumElts) {
2877 if (isSequentialInRange(Mask, 0, SrcNumElts, 0) &&
2878 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, SrcNumElts)) {
2885 if (isSequentialInRange(Mask, 0, SrcNumElts, SrcNumElt
[all...]
/external/llvm/lib/VMCore/
H A DConstantFold.cpp794 unsigned SrcNumElts = V1->getType()->getVectorNumElements(); local
805 if (unsigned(Elt) >= SrcNumElts*2)
807 else if (unsigned(Elt) >= SrcNumElts) {
811 ConstantInt::get(Ty, Elt - SrcNumElts));

Completed in 74 milliseconds