#include "llvm/MCA/IncrementalSourceMgr.h"
#ifndef NDEBUG
#include "llvm/Support/Format.h"
#endif
usingnamespacellvm;
usingnamespacellvm::mca;
void IncrementalSourceMgr::clear() { … }
void IncrementalSourceMgr::updateNext() { … }
#ifndef NDEBUG
void IncrementalSourceMgr::printStatistic(raw_ostream &OS) {
unsigned MaxInstStorageSize = InstStorage.size();
if (MaxInstStorageSize <= TotalCounter) {
auto Ratio = double(MaxInstStorageSize) / double(TotalCounter);
OS << "Cache ratio = " << MaxInstStorageSize << " / " << TotalCounter
<< llvm::format(" (%.2f%%)", (1.0 - Ratio) * 100.0) << "\n";
} else {
OS << "Error: Number of created instructions "
<< "are larger than the number of issued instructions\n";
}
}
#endif