Home
last modified time | relevance | path

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

/llvm-project-15.0.7/bolt/lib/Passes/
H A DShrinkWrapping.cpp835 BestSaveCount = std::vector<std::vector<uint64_t>>(BC.MRI->getNumRegs()); in computeSaveLocations()
854 BestSaveCount[I].push_back(Count); in computeSaveLocations()
896 assert(BestSaveCount[CSR].size() == BestSavePos[CSR].size() && in isBestSavePosCold()
898 if (BestSaveCount[CSR].empty()) in isBestSavePosCold()
901 const uint64_t BestCount = BestSaveCount[CSR].back(); in isBestSavePosCold()
1295 << (BestSaveCount[I].size() - 1) << " more times.\n"; in moveSaveRestores()
1297 BestSaveCount[I].pop_back(); in moveSaveRestores()
/llvm-project-15.0.7/bolt/include/bolt/Passes/
H A DShrinkWrapping.h307 std::vector<std::vector<uint64_t>> BestSaveCount; variable