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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp291 unsigned IdxN = getRegForValue(Idx); local
292 if (IdxN == 0)
302 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
303 IdxN, IdxNIsKill);
307 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
308 IdxN, IdxNIsKill);
311 return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
533 unsigned IdxN = Pair.first; local
535 if (IdxN == 0)
540 IdxN
[all...]
H A DSelectionDAGBuilder.cpp3378 SDValue IdxN = getValue(Idx);
3382 IdxN = DAG.getSExtOrTrunc(IdxN, getCurSDLoc(), N.getValueType());
3389 IdxN = DAG.getNode(ISD::SHL, getCurSDLoc(),
3390 N.getValueType(), IdxN,
3391 DAG.getConstant(Amt, IdxN.getValueType()));
3393 SDValue Scale = DAG.getConstant(ElementSize, IdxN.getValueType());
3394 IdxN = DAG.getNode(ISD::MUL, getCurSDLoc(),
3395 N.getValueType(), IdxN, Scale);
3400 N.getValueType(), N, IdxN);
[all...]

Completed in 213 milliseconds