diff options
| author | Roman Lebedev <lebedev.ri@gmail.com> | 2019-03-29 14:24:27 +0000 |
|---|---|---|
| committer | Roman Lebedev <lebedev.ri@gmail.com> | 2019-03-29 14:24:27 +0000 |
| commit | 1d1330c5463f90ce2172a0110be9b625534614fa (patch) | |
| tree | c77b1edaf54b211cd8b73804011d1d1c8e0ff177 /llvm/tools/llvm-exegesis/lib/CMakeLists.txt | |
| parent | 12685d0f7cd870b64aff47016f2bc4cd7210fb14 (diff) | |
| download | bcm5719-llvm-1d1330c5463f90ce2172a0110be9b625534614fa.tar.gz bcm5719-llvm-1d1330c5463f90ce2172a0110be9b625534614fa.zip | |
[NFC][llvm-exegesis] Refactor ResolvedSchedClass & friends
Summary:
`ResolvedSchedClass` will need to be used outside of `Analysis`
(before `InstructionBenchmarkClustering` even), therefore promote
it into a non-private top-level class, and while there also
move all of the functions that are only called by `ResolvedSchedClass`
into that same new file.
Reviewers: courbet, gchatelet
Reviewed By: courbet
Subscribers: mgorny, tschuett, mgrang, jdoerfert, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D59993
llvm-svn: 357259
Diffstat (limited to 'llvm/tools/llvm-exegesis/lib/CMakeLists.txt')
| -rw-r--r-- | llvm/tools/llvm-exegesis/lib/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/tools/llvm-exegesis/lib/CMakeLists.txt b/llvm/tools/llvm-exegesis/lib/CMakeLists.txt index ef85056db0a..ef1a411d9ef 100644 --- a/llvm/tools/llvm-exegesis/lib/CMakeLists.txt +++ b/llvm/tools/llvm-exegesis/lib/CMakeLists.txt @@ -28,8 +28,9 @@ add_library(LLVMExegesis MCInstrDescView.cpp PerfHelper.cpp RegisterAliasing.cpp - SnippetGenerator.cpp RegisterValue.cpp + SchedClassResolution.cpp + SnippetGenerator.cpp Target.cpp Uops.cpp ) |

