diff options
author | Clement Courbet <courbet@google.com> | 2018-11-08 11:45:14 +0000 |
---|---|---|
committer | Clement Courbet <courbet@google.com> | 2018-11-08 11:45:14 +0000 |
commit | c0950ae99090d13515328eb2f6714fe0e86c28b0 (patch) | |
tree | 0f5ff0d4c85b6d5379eb1e72d61b6673c229b7c9 /llvm/tools/llvm-exegesis/lib/BenchmarkResult.h | |
parent | 797004d2ea98342aa9a5e6d458f44a4e2e8f18cd (diff) | |
download | bcm5719-llvm-c0950ae99090d13515328eb2f6714fe0e86c28b0.tar.gz bcm5719-llvm-c0950ae99090d13515328eb2f6714fe0e86c28b0.zip |
[llvm-exegesis] Add a snippet generator to generate snippets to compute ROB sizes.
llvm-svn: 346394
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/BenchmarkResult.h')
-rw-r--r-- | llvm/tools/llvm-exegesis/lib/BenchmarkResult.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h index 773a2e50abc..6df57d21316 100644 --- a/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h +++ b/llvm/tools/llvm-exegesis/lib/BenchmarkResult.h @@ -58,7 +58,7 @@ struct BenchmarkMeasure { // The result of an instruction benchmark. struct InstructionBenchmark { InstructionBenchmarkKey Key; - enum ModeE { Unknown, Latency, Uops }; + enum ModeE { Unknown, Latency, Uops, ROBSize }; ModeE Mode; std::string CpuName; std::string LLVMTriple; |