This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from f4a7407e71b [X86][SNB] Minor scheduler cleanup new 4f11b743f47 reland r332579: [llvm-exegesis] Update to cover latency thr [...]
The 1 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: .../lib/{InMemoryAssembler.cpp => Assembler.cpp} | 198 ++++++------ tools/llvm-exegesis/lib/Assembler.h | 78 +++++ tools/llvm-exegesis/lib/BenchmarkResult.cpp | 33 +- tools/llvm-exegesis/lib/BenchmarkResult.h | 9 +- tools/llvm-exegesis/lib/BenchmarkRunner.cpp | 88 +++-- tools/llvm-exegesis/lib/BenchmarkRunner.h | 29 +- tools/llvm-exegesis/lib/CMakeLists.txt | 6 +- tools/llvm-exegesis/lib/InMemoryAssembler.h | 82 ----- .../lib/InstructionSnippetGenerator.cpp | 355 --------------------- .../lib/InstructionSnippetGenerator.h | 119 ------- tools/llvm-exegesis/lib/Latency.cpp | 118 ++++--- tools/llvm-exegesis/lib/Latency.h | 10 +- tools/llvm-exegesis/lib/LlvmState.h | 5 + tools/llvm-exegesis/lib/MCInstrDescView.cpp | 268 ++++++++++++++++ tools/llvm-exegesis/lib/MCInstrDescView.h | 150 +++++++++ tools/llvm-exegesis/lib/OperandGraph.cpp | 115 ------- tools/llvm-exegesis/lib/OperandGraph.h | 89 ------ tools/llvm-exegesis/lib/RegisterAliasing.cpp | 83 +++++ tools/llvm-exegesis/lib/RegisterAliasing.h | 107 +++++++ tools/llvm-exegesis/lib/Uops.cpp | 351 +++++++++++--------- tools/llvm-exegesis/lib/Uops.h | 10 +- tools/llvm-exegesis/llvm-exegesis.cpp | 42 ++- .../tools/llvm-exegesis/ARM/AssemblerTest.cpp | 48 +++ unittests/tools/llvm-exegesis/ARM/CMakeLists.txt | 3 +- .../llvm-exegesis/ARM/InMemoryAssemblerTest.cpp | 79 ----- unittests/tools/llvm-exegesis/CMakeLists.txt | 1 - .../tools/llvm-exegesis/Common/AssemblerUtils.h | 81 +++++ unittests/tools/llvm-exegesis/OperandGraphTest.cpp | 48 --- .../tools/llvm-exegesis/X86/AssemblerTest.cpp | 57 ++++ unittests/tools/llvm-exegesis/X86/CMakeLists.txt | 5 +- .../llvm-exegesis/X86/InMemoryAssemblerTest.cpp | 120 ------- .../X86/InstructionSnippetGeneratorTest.cpp | 309 ------------------ .../llvm-exegesis/X86/RegisterAliasingTest.cpp | 82 +++++ 33 files changed, 1479 insertions(+), 1699 deletions(-) rename tools/llvm-exegesis/lib/{InMemoryAssembler.cpp => Assembler.cpp} (70%) create mode 100644 tools/llvm-exegesis/lib/Assembler.h delete mode 100644 tools/llvm-exegesis/lib/InMemoryAssembler.h delete mode 100644 tools/llvm-exegesis/lib/InstructionSnippetGenerator.cpp delete mode 100644 tools/llvm-exegesis/lib/InstructionSnippetGenerator.h create mode 100644 tools/llvm-exegesis/lib/MCInstrDescView.cpp create mode 100644 tools/llvm-exegesis/lib/MCInstrDescView.h delete mode 100644 tools/llvm-exegesis/lib/OperandGraph.cpp delete mode 100644 tools/llvm-exegesis/lib/OperandGraph.h create mode 100644 tools/llvm-exegesis/lib/RegisterAliasing.cpp create mode 100644 tools/llvm-exegesis/lib/RegisterAliasing.h create mode 100644 unittests/tools/llvm-exegesis/ARM/AssemblerTest.cpp delete mode 100644 unittests/tools/llvm-exegesis/ARM/InMemoryAssemblerTest.cpp create mode 100644 unittests/tools/llvm-exegesis/Common/AssemblerUtils.h delete mode 100644 unittests/tools/llvm-exegesis/OperandGraphTest.cpp create mode 100644 unittests/tools/llvm-exegesis/X86/AssemblerTest.cpp delete mode 100644 unittests/tools/llvm-exegesis/X86/InMemoryAssemblerTest.cpp delete mode 100644 unittests/tools/llvm-exegesis/X86/InstructionSnippetGeneratorTest.cpp create mode 100644 unittests/tools/llvm-exegesis/X86/RegisterAliasingTest.cpp