Home | History | Annotate | Download | only in IPO

Lines Matching defs:UI

161   for (Value::const_use_iterator UI = C->use_begin(), E = C->use_end(); UI != E;
162 ++UI)
163 if (const Constant *CU = dyn_cast<Constant>(*UI)) {
177 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
178 ++UI) {
179 const User *U = *UI;
310 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;) {
311 User *U = *UI++;
368 // This could have invalidated UI, start over from scratch.
480 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end();
481 UI != E; ++UI) {
482 if (!IsUserOfGlobalSafeForSRA(*UI, GV))
641 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
642 ++UI) {
643 const User *U = *UI;
672 isa<ConstantPointerNull>(UI->getOperand(1))) {
686 for (Value::const_use_iterator UI = GV->use_begin(), E = GV->use_end();
687 UI != E; ++UI) {
688 const User *U = *UI;
707 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; ) {
708 Instruction *I = cast<Instruction>(*UI++);
732 // Being passed as an argument also. Be careful to not invalidate UI!
733 UI = V->use_begin();
829 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI != E; )
830 if (Instruction *I = dyn_cast<Instruction>(*UI++))
834 // Advance UI to the next non-I use to avoid invalidating it!
836 while (UI != E && *UI == I)
837 ++UI;
979 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end();
980 UI != E; ++UI) {
981 const Instruction *Inst = cast<Instruction>(*UI);
1073 for (Value::const_use_iterator UI = V->use_begin(), E = V->use_end(); UI != E;
1074 ++UI) {
1075 const Instruction *User = cast<Instruction>(*UI);
1125 for (Value::const_use_iterator UI = GV->use_begin(), E = GV->use_end();
1126 UI != E; ++UI)
1127 if (const LoadInst *LI = dyn_cast<LoadInst>(*UI)) {
1271 for (Value::use_iterator UI = PN->use_begin(), E = PN->use_end(); UI != E; ) {
1272 Instruction *User = cast<Instruction>(*UI++);
1284 for (Value::use_iterator UI = Load->use_begin(), E = Load->use_end();
1285 UI != E; ) {
1286 Instruction *User = cast<Instruction>(*UI++);
1416 for (Value::use_iterator UI = GV->use_begin(), E = GV->use_end(); UI != E;) {
1417 Instruction *User = cast<Instruction>(*UI++);
1656 Instruction *UI = cast<Instruction>(GV->use_back());
1657 if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
1688 LoadInst *LI = cast<LoadInst>(UI);
1698 UI->eraseFromParent();
1862 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1863 CallSite User(cast<Instruction>(*UI));
1882 for (Value::use_iterator UI = F->use_begin(), E = F->use_end(); UI != E;++UI){
1883 CallSite User(cast<Instruction>(*UI));