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

/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp270 unsigned IdxN = getRegForValue(Idx); local
271 if (IdxN == 0)
281 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::SIGN_EXTEND,
282 IdxN, IdxNIsKill);
286 IdxN = FastEmit_r(IdxVT.getSimpleVT(), PtrVT, ISD::TRUNCATE,
287 IdxN, IdxNIsKill);
290 return std::pair<unsigned, bool>(IdxN, IdxNIsKill);
512 unsigned IdxN = Pair.first; local
514 if (IdxN == 0)
519 IdxN
[all...]
H A DSelectionDAGBuilder.cpp3175 SDValue IdxN = getValue(Idx); local
3179 IdxN = DAG.getSExtOrTrunc(IdxN, getCurDebugLoc(), N.getValueType());
3186 IdxN = DAG.getNode(ISD::SHL, getCurDebugLoc(),
3187 N.getValueType(), IdxN,
3188 DAG.getConstant(Amt, IdxN.getValueType()));
3191 IdxN = DAG.getNode(ISD::MUL, getCurDebugLoc(),
3192 N.getValueType(), IdxN, Scale);
3197 N.getValueType(), N, IdxN);

Completed in 216 milliseconds