Searched refs:NewAccess (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | MemorySSAUpdater.cpp | 1414 MemoryUseOrDef *NewAccess = MSSA->createDefinedAccess( in createMemoryAccessInBB() local 1416 if (NewAccess) in createMemoryAccessInBB() 1417 MSSA->insertIntoListsForBlock(NewAccess, BB, Point); in createMemoryAccessInBB() 1418 return NewAccess; in createMemoryAccessInBB() 1425 MemoryUseOrDef *NewAccess = MSSA->createDefinedAccess(I, Definition); in createMemoryAccessBefore() local 1426 MSSA->insertIntoListsBefore(NewAccess, InsertPt->getBlock(), in createMemoryAccessBefore() 1428 return NewAccess; in createMemoryAccessBefore() 1435 MemoryUseOrDef *NewAccess = MSSA->createDefinedAccess(I, Definition); in createMemoryAccessAfter() local 1436 MSSA->insertIntoListsBefore(NewAccess, InsertPt->getBlock(), in createMemoryAccessAfter() 1438 return NewAccess; in createMemoryAccessAfter()
|
H A D | MemorySSA.cpp | 1618 void MemorySSA::insertIntoListsForBlock(MemoryAccess *NewAccess, in insertIntoListsForBlock() argument 1625 if (isa<MemoryPhi>(NewAccess)) { in insertIntoListsForBlock() 1626 Accesses->push_front(NewAccess); in insertIntoListsForBlock() 1628 Defs->push_front(*NewAccess); in insertIntoListsForBlock() 1632 Accesses->insert(AI, NewAccess); in insertIntoListsForBlock() 1633 if (!isa<MemoryUse>(NewAccess)) { in insertIntoListsForBlock() 1637 Defs->insert(DI, *NewAccess); in insertIntoListsForBlock() 1641 Accesses->push_back(NewAccess); in insertIntoListsForBlock() 1642 if (!isa<MemoryUse>(NewAccess)) { in insertIntoListsForBlock() 1644 Defs->push_back(*NewAccess); in insertIntoListsForBlock() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | MemCpyOptimizer.cpp | 702 auto *NewAccess = MSSAU->createMemoryAccessAfter(M, nullptr, LastDef); in processStoreOfLoad() local 703 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processStoreOfLoad() 823 auto *NewAccess = MSSAU->createMemoryAccessBefore(M, nullptr, StoreDef); in processStore() local 824 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/false); in processStore() 1264 auto *NewAccess = MSSAU->createMemoryAccessAfter(NewM, nullptr, LastDef); in processMemCpyMemCpyDependence() local 1265 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processMemCpyMemCpyDependence() 1379 auto *NewAccess = in processMemSetMemCpyDependence() local 1381 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in processMemSetMemCpyDependence() 1485 auto *NewAccess = MSSAU->createMemoryAccessAfter(NewM, nullptr, LastDef); in performMemCpyToMemSetOptzn() local 1486 MSSAU->insertDef(cast<MemoryDef>(NewAccess), /*RenameUses=*/true); in performMemCpyToMemSetOptzn() [all …]
|
H A D | GVN.cpp | 1486 auto *NewAccess = MSSAU->createMemoryAccessInBB( in eliminatePartiallyRedundantLoad() local 1488 if (auto *NewDef = dyn_cast<MemoryDef>(NewAccess)) in eliminatePartiallyRedundantLoad() 1491 MSSAU->insertUse(cast<MemoryUse>(NewAccess), /*RenameUses=*/true); in eliminatePartiallyRedundantLoad()
|
H A D | DeadStoreElimination.cpp | 1916 auto *NewAccess = in tryFoldIntoCalloc() local 1919 auto *NewAccessMD = cast<MemoryDef>(NewAccess); in tryFoldIntoCalloc()
|