Searched refs:UseI (Results 1 - 3 of 3) sorted by relevance

/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/
H A DSplitKit.cpp181 SmallVectorImpl<SlotIndex>::const_iterator UseI, UseE; local
182 UseI = UseSlots.begin();
196 if (UseI == UseE || *UseI >= Stop) {
205 BI.FirstInstr = *UseI;
207 do ++UseI;
208 while (UseI != UseE && *UseI < Stop);
209 BI.LastInstr = UseI[-1];
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp914 for (Value::use_iterator UseI = CI->use_begin(); UseI != CI->use_end();
915 ++UseI) {
916 FPTruncInst *Cast = dyn_cast<FPTruncInst>(*UseI);
H A DLoopStrengthReduce.cpp2674 User::op_iterator UseI = local
2676 assert(UseI != I->UserInst->op_end() && "cannot find IV operand");
2677 IVIncSet.insert(UseI);
2809 User::op_iterator UseI = std::find(UserInst->op_begin(), UserInst->op_end(), local
2811 assert(UseI != UserInst->op_end() && "cannot find IV operand");
2812 if (IVIncSet.count(UseI))

Completed in 170 milliseconds