Lines Matching refs:Where
1167 WhereType Where) { in moveTo() argument
1177 MSSA->moveTo(What, BB, Where); in moveTo()
1191 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveBefore() argument
1192 moveTo(What, Where->getBlock(), Where->getIterator()); in moveBefore()
1196 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) { in moveAfter() argument
1197 moveTo(What, Where->getBlock(), ++Where->getIterator()); in moveAfter()
1201 MemorySSA::InsertionPlace Where) { in moveToPlace() argument
1202 if (Where != MemorySSA::InsertionPlace::BeforeTerminator) in moveToPlace()
1203 return moveTo(What, BB, Where); in moveToPlace()
1205 if (auto *Where = MSSA->getMemoryAccess(BB->getTerminator())) in moveToPlace() local
1206 return moveBefore(What, Where); in moveToPlace()