Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:IdxVal

614   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
616 DAG.getIntPtrConstant(IdxVal + LoVT.getVectorNumElements()));
651 unsigned IdxVal = CIdx->getZExtValue();
653 if (IdxVal < LoNumElts)
658 DAG.getIntPtrConstant(IdxVal - LoNumElts));
1056 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1058 if (IdxVal < LoElts) {
1059 assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1064 DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
1074 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1075 assert(IdxVal < VecVT.getVectorNumElements() && "Invalid vector index!");
1082 if (IdxVal < LoElts)
1085 DAG.getConstant(IdxVal - LoElts,
1846 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1847 if (IdxVal == 0 && InVT == WidenVT)
1852 if (IdxVal % WidenNumElts == 0 && IdxVal + WidenNumElts < InNumElts)
1863 DAG.getIntPtrConstant(IdxVal+i));