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/unittests/tools/llvm-exegesis | |
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/unittests/tools/llvm-exegesis')
-rw-r--r-- | llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt | 4 | ||||
-rw-r--r-- | llvm/unittests/tools/llvm-exegesis/X86/SchedClassResolutionTest.cpp (renamed from llvm/unittests/tools/llvm-exegesis/X86/AnalysisTest.cpp) | 17 |
2 files changed, 11 insertions, 10 deletions
diff --git a/llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt b/llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt index 5078e7ba76c..88c38d0d7e8 100644 --- a/llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt +++ b/llvm/unittests/tools/llvm-exegesis/X86/CMakeLists.txt @@ -15,10 +15,10 @@ set(LLVM_LINK_COMPONENTS add_llvm_unittest(LLVMExegesisX86Tests AssemblerTest.cpp - AnalysisTest.cpp BenchmarkResultTest.cpp - SnippetGeneratorTest.cpp RegisterAliasingTest.cpp + SchedClassResolutionTest.cpp + SnippetGeneratorTest.cpp TargetTest.cpp ) target_link_libraries(LLVMExegesisX86Tests PRIVATE diff --git a/llvm/unittests/tools/llvm-exegesis/X86/AnalysisTest.cpp b/llvm/unittests/tools/llvm-exegesis/X86/SchedClassResolutionTest.cpp index 76ca39138c4..9e745461142 100644 --- a/llvm/unittests/tools/llvm-exegesis/X86/AnalysisTest.cpp +++ b/llvm/unittests/tools/llvm-exegesis/X86/SchedClassResolutionTest.cpp @@ -1,4 +1,4 @@ -//===-- AnalysisTest.cpp ---------------------------------------*- C++ -*-===// +//===-- SchedClassResolutionTest.cpp ----------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// -#include "Analysis.h" +#include "SchedClassResolution.h" #include <cassert> #include <memory> @@ -23,9 +23,9 @@ namespace { using testing::Pair; using testing::UnorderedElementsAre; -class AnalysisTest : public ::testing::Test { +class SchedClassResolutionTest : public ::testing::Test { protected: - AnalysisTest() { + SchedClassResolutionTest() { const std::string TT = "x86_64-unknown-linux"; std::string error; const llvm::Target *const TheTarget = @@ -78,20 +78,20 @@ protected: uint16_t P0156Idx = 0; }; -TEST_F(AnalysisTest, ComputeIdealizedProcResPressure_2P0) { +TEST_F(SchedClassResolutionTest, ComputeIdealizedProcResPressure_2P0) { const auto Pressure = computeIdealizedProcResPressure(STI->getSchedModel(), {{P0Idx, 2}}); EXPECT_THAT(Pressure, UnorderedElementsAre(Pair(P0Idx, 2.0))); } -TEST_F(AnalysisTest, ComputeIdealizedProcResPressure_2P05) { +TEST_F(SchedClassResolutionTest, ComputeIdealizedProcResPressure_2P05) { const auto Pressure = computeIdealizedProcResPressure(STI->getSchedModel(), {{P05Idx, 2}}); EXPECT_THAT(Pressure, UnorderedElementsAre(Pair(P0Idx, 1.0), Pair(P5Idx, 1.0))); } -TEST_F(AnalysisTest, ComputeIdealizedProcResPressure_2P05_2P0156) { +TEST_F(SchedClassResolutionTest, ComputeIdealizedProcResPressure_2P05_2P0156) { const auto Pressure = computeIdealizedProcResPressure( STI->getSchedModel(), {{P05Idx, 2}, {P0156Idx, 2}}); EXPECT_THAT(Pressure, @@ -99,7 +99,8 @@ TEST_F(AnalysisTest, ComputeIdealizedProcResPressure_2P05_2P0156) { Pair(P5Idx, 1.0), Pair(P6Idx, 1.0))); } -TEST_F(AnalysisTest, ComputeIdealizedProcResPressure_1P1_1P05_2P0156) { +TEST_F(SchedClassResolutionTest, + ComputeIdealizedProcResPressure_1P1_1P05_2P0156) { const auto Pressure = computeIdealizedProcResPressure( STI->getSchedModel(), {{P1Idx, 1}, {P05Idx, 1}, {P0156Idx, 2}}); EXPECT_THAT(Pressure, |