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

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2498 unsigned InsIdx = 0; local
2501 for (unsigned i = 0, e = theArgs.size(); i != e; ++i, ++idx, ++InsIdx) {
2526 InVals.push_back(DAG.getNode(ISD::UNDEF, dl, Ins[InsIdx].VT));
2527 ++InsIdx;
2530 --InsIdx;
2537 InVals.push_back(DAG.getNode(ISD::UNDEF, dl, Ins[InsIdx].VT));
2538 ++InsIdx;
2541 --InsIdx;
2544 InVals.push_back(DAG.getNode(ISD::UNDEF, dl, Ins[InsIdx].VT));
2610 if (Ins[InsIdx]
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp18642 auto *InsIdx = dyn_cast<ConstantSDNode>(V.getOperand(2)); local
18643 if (InsIdx && ExtIdx) {
18645 // (extract_subvec (insert_subvec V1, V2, InsIdx), ExtIdx)
18649 if (InsIdx->getZExtValue() * SmallVT.getScalarSizeInBits() ==
19641 uint64_t InsIdx = cast<ConstantSDNode>(N2)->getZExtValue();
19664 NewIdx = DAG.getConstant(InsIdx * Scale, DL, IdxVT);
19667 if ((NumElts % Scale) == 0 && (InsIdx % Scale) == 0) {
19669 NewIdx = DAG.getConstant(InsIdx / Scale, DL, IdxVT);
19688 if (InsIdx < OtherIdx) {

Completed in 151 milliseconds