Lines Matching refs:Where
1142 WhereType Where) { in moveTo() argument
1152 MSSA->moveTo(What, BB, Where); in moveTo()
1166 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument
1167 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore()
1171 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument
1172 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter()
1176 MemorySSA::InsertionPlace Where) { in moveToPlace() argument
1177 if (Where != MemorySSA::InsertionPlace::BeforeTerminator) in moveToPlace()
1178 return moveTo(What, BB, Where); in moveToPlace()
1180 if (auto *Where = MSSA->getMemoryAccess(BB->getTerminator())) in moveToPlace() local
1181 return moveBefore(What, Where); in moveToPlace()