This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 61dd1946942 [DAGCombiner] simplify shuffle of shuffle new 6bd5429ddf5 [NFC][llvm-exegesis] Refactor ResolvedSchedClass & friends new b44e4a67c71 gn build: Merge r357259 new 755ffc48b16 gn build: Merge r357248
The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: tools/llvm-exegesis/lib/Analysis.cpp | 224 +------------------ tools/llvm-exegesis/lib/Analysis.h | 21 +- tools/llvm-exegesis/lib/CMakeLists.txt | 3 +- tools/llvm-exegesis/lib/SchedClassResolution.cpp | 243 +++++++++++++++++++++ tools/llvm-exegesis/lib/SchedClassResolution.h | 58 +++++ unittests/tools/llvm-exegesis/X86/CMakeLists.txt | 4 +- ...alysisTest.cpp => SchedClassResolutionTest.cpp} | 17 +- utils/gn/secondary/llvm/lib/MCA/BUILD.gn | 1 + .../llvm/tools/llvm-exegesis/lib/BUILD.gn | 1 + .../unittests/tools/llvm-exegesis/X86/BUILD.gn | 2 +- 10 files changed, 326 insertions(+), 248 deletions(-) create mode 100644 tools/llvm-exegesis/lib/SchedClassResolution.cpp create mode 100644 tools/llvm-exegesis/lib/SchedClassResolution.h rename unittests/tools/llvm-exegesis/X86/{AnalysisTest.cpp => SchedClassResolution [...]