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

/external/llvm/lib/IR/
H A DConstantFold.cpp797 unsigned SrcNumElts = V1->getType()->getVectorNumElements(); local
808 if (unsigned(Elt) >= SrcNumElts*2)
810 else if (unsigned(Elt) >= SrcNumElts) {
814 ConstantInt::get(Ty, Elt - SrcNumElts));
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2905 unsigned SrcNumElts = SrcVT.getVectorNumElements(); local
2907 if (SrcNumElts == MaskNumElts) {
2914 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2918 if (SrcNumElts*2 == MaskNumElts) {
2920 if (isSequentialInRange(Mask, 0, SrcNumElts, 0) &&
2921 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, SrcNumElts)) {
2928 if (isSequentialInRange(Mask, 0, SrcNumElts, SrcNumElt
[all...]

Completed in 88 milliseconds