Searched defs:UseI (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
H A DSplitKit.cpp180 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE; local
181 UseI = UseSlots.begin();
195 if (UseI == UseE || *UseI >= Stop) {
204 BI.FirstInstr = *UseI;
206 do ++UseI;
207 while (UseI != UseE && *UseI < Stop);
208 BI.LastInstr = UseI[-1];
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp2848 User::op_iterator UseI = local
2850 assert(UseI != I->UserInst->op_end() && "cannot find IV operand");
2851 IVIncSet.insert(UseI);
2985 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(), local
2987 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2988 if (IVIncSet.count(UseI))

Completed in 147 milliseconds