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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp263 unsigned IdxN = getRegForValue(Idx); local
264 if (IdxN == 0)
274 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
275 IdxN, IdxNIsKill);
279 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
280 IdxN, IdxNIsKill);
283 return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
468 unsigned IdxN = Pair.first; local
470 if (IdxN == 0)
475 IdxN
[all...]
H A DSelectionDAGBuilder.cpp3083 SDValue IdxN = getValue(Idx); local
3087 IdxN = DAG.getSExtOrTrunc(IdxN, getCurDebugLoc(), N.getValueType());
3094 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
3095 N.getValueType(), IdxN,
3099 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
3100 N.getValueType(), IdxN, Scale);
3105 N.getValueType(), N, IdxN);

Completed in 81 milliseconds