Lines Matching defs:Where
1149 // Move What before Where in the MemorySSA IR.
1152 WhereType Where) {
1162 MSSA->moveTo(What, BB, Where);
1175 // Move What before Where in the MemorySSA IR.
1176 void MemorySSAUpdater::moveBefore(MemoryUseOrDef *What, MemoryUseOrDef *Where) {
1177 moveTo(What, Where->getBlock(), Where->getIterator());
1180 // Move What after Where in the MemorySSA IR.
1181 void MemorySSAUpdater::moveAfter(MemoryUseOrDef *What, MemoryUseOrDef *Where) {
1182 moveTo(What, Where->getBlock(), ++Where->getIterator());
1186 MemorySSA::InsertionPlace Where) {
1187 if (Where != MemorySSA::InsertionPlace::BeforeTerminator)
1188 return moveTo(What, BB, Where);
1190 if (auto *Where = MSSA->getMemoryAccess(BB->getTerminator()))
1191 return moveBefore(What, Where);