Home
last modified time | relevance | path

Searched refs:StoreChainDependents (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/
DMachineScheduler.cpp1451 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents; in apply() local
1468 unsigned NumChains = StoreChainDependents.size(); in apply()
1472 StoreChainDependents.resize(NumChains + 1); in apply()
1473 StoreChainDependents[Result.first->second].push_back(SU); in apply()
1477 for (unsigned Idx = 0, End = StoreChainDependents.size(); Idx != End; ++Idx) in apply()
1478 clusterNeighboringMemOps(StoreChainDependents[Idx], DAG); in apply()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineScheduler.cpp1582 SmallVector<SmallVector<SUnit*,4>, 32> StoreChainDependents; in apply() local
1597 unsigned NumChains = StoreChainDependents.size(); in apply()
1601 StoreChainDependents.resize(NumChains + 1); in apply()
1602 StoreChainDependents[Result.first->second].push_back(&SU); in apply()
1606 for (auto &SCD : StoreChainDependents) in apply()