Searched refs:NewAccess (Results 1 – 4 of 4) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | MemCpyOptimizer.cpp | 730 auto *NewAccess = in processStore() local 732 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processStore() 829 auto *NewAccess = MSSAU->createMemoryAccessAfter(M, LastDef, LastDef); in processStore() local 830 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processStore() 1120 auto *NewAccess = MSSAU->createMemoryAccessAfter(NewM, LastDef, LastDef); in processMemCpyMemCpyDependence() local 1121 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processMemCpyMemCpyDependence() 1230 auto *NewAccess = MSSAU->createMemoryAccessBefore( in processMemSetMemCpyDependence() local 1232 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processMemSetMemCpyDependence() 1358 auto *NewAccess = MSSAU->createMemoryAccessAfter(NewM, LastDef, LastDef); in performMemCpyToMemSetOptzn() local 1359 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in performMemCpyToMemSetOptzn() [all …]
|
| H A D | GVN.cpp | 1206 auto *NewAccess = MSSAU->createMemoryAccessInBB( in eliminatePartiallyRedundantLoad() local 1209 if (auto *NewDef = dyn_cast<MemoryDef>(NewAccess)) in eliminatePartiallyRedundantLoad() 1212 MSSAU->insertUse(cast<MemoryUse>(NewAccess), /*RenameUses=*/true); in eliminatePartiallyRedundantLoad()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 1598 void MemorySSA::insertIntoListsForBlock(MemoryAccess *NewAccess, in insertIntoListsForBlock() argument 1605 if (isa<MemoryPhi>(NewAccess)) { in insertIntoListsForBlock() 1606 Accesses->push_front(NewAccess); in insertIntoListsForBlock() 1608 Defs->push_front(*NewAccess); in insertIntoListsForBlock() 1612 Accesses->insert(AI, NewAccess); in insertIntoListsForBlock() 1613 if (!isa<MemoryUse>(NewAccess)) { in insertIntoListsForBlock() 1617 Defs->insert(DI, *NewAccess); in insertIntoListsForBlock() 1621 Accesses->push_back(NewAccess); in insertIntoListsForBlock() 1622 if (!isa<MemoryUse>(NewAccess)) { in insertIntoListsForBlock() 1624 Defs->push_back(*NewAccess); in insertIntoListsForBlock() [all …]
|
| H A D | MemorySSAUpdater.cpp | 1448 MemoryUseOrDef *NewAccess = MSSA->createDefinedAccess(I, Definition); in createMemoryAccessInBB() local 1449 MSSA->insertIntoListsForBlock(NewAccess, BB, Point); in createMemoryAccessInBB() 1450 return NewAccess; in createMemoryAccessInBB() 1457 MemoryUseOrDef *NewAccess = MSSA->createDefinedAccess(I, Definition); in createMemoryAccessBefore() local 1458 MSSA->insertIntoListsBefore(NewAccess, InsertPt->getBlock(), in createMemoryAccessBefore() 1460 return NewAccess; in createMemoryAccessBefore() 1467 MemoryUseOrDef *NewAccess = MSSA->createDefinedAccess(I, Definition); in createMemoryAccessAfter() local 1468 MSSA->insertIntoListsBefore(NewAccess, InsertPt->getBlock(), in createMemoryAccessAfter() 1470 return NewAccess; in createMemoryAccessAfter()
|