Lines Matching refs:TheStores
152 SmallVector<Instruction*, 16> TheStores; member
160 if (TheStores.size() >= 4 || End-Start >= 16) return true; in isProfitableToUseMemset()
163 if (TheStores.size() < 2) return false; in isProfitableToUseMemset()
167 for (unsigned i = 0, e = TheStores.size(); i != e; ++i) in isProfitableToUseMemset()
168 if (!isa<StoreInst>(TheStores[i])) in isProfitableToUseMemset()
173 if (TheStores.size() == 2) return false; in isProfitableToUseMemset()
197 return TheStores.size() > NumPointerStores+NumByteStores; in isProfitableToUseMemset()
268 R.TheStores.push_back(Inst); in addRange()
273 I->TheStores.push_back(Inst); in addRange()
300 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange()
450 if (Range.TheStores.size() == 1) continue; in INITIALIZE_PASS_DEPENDENCY()
472 for (unsigned i = 0, e = Range.TheStores.size(); i != e; ++i) in INITIALIZE_PASS_DEPENDENCY()
473 dbgs() << *Range.TheStores[i] << '\n'; in INITIALIZE_PASS_DEPENDENCY()
476 if (!Range.TheStores.empty()) in INITIALIZE_PASS_DEPENDENCY()
477 AMemSet->setDebugLoc(Range.TheStores[0]->getDebugLoc()); in INITIALIZE_PASS_DEPENDENCY()
481 SI = Range.TheStores.begin(), in INITIALIZE_PASS_DEPENDENCY()
482 SE = Range.TheStores.end(); SI != SE; ++SI) { in INITIALIZE_PASS_DEPENDENCY()