Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:IdxVal

651   uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
653 DAG.getIntPtrConstant(IdxVal + LoVT.getVectorNumElements()));
688 unsigned IdxVal = CIdx->getZExtValue();
690 if (IdxVal < LoNumElts)
695 DAG.getIntPtrConstant(IdxVal - LoNumElts));
1066 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1068 if (IdxVal < LoElts) {
1069 assert(IdxVal + SubVT.getVectorNumElements() <= LoElts &&
1074 DAG.getConstant(IdxVal - LoElts, Idx.getValueType()));
1084 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1085 assert(IdxVal < VecVT.getVectorNumElements() && "Invalid vector index!");
1092 if (IdxVal < LoElts)
1095 DAG.getConstant(IdxVal - LoElts,
1859 uint64_t IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
1860 if (IdxVal == 0 && InVT == WidenVT)
1865 if (IdxVal % WidenNumElts == 0 && IdxVal + WidenNumElts < InNumElts)
1876 DAG.getIntPtrConstant(IdxVal+i));