This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 9b79c170c15 [SROA] Handle PHI with multiple duplicate predecessors new 33d415b1595 [llvm-exegesis] Update to cover latency through another opcode.
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 ++- unittests/tools/llvm-exegesis/CMakeLists.txt | 1 - unittests/tools/llvm-exegesis/OperandGraphTest.cpp | 48 --- unittests/tools/llvm-exegesis/X86/CMakeLists.txt | 3 +- .../llvm-exegesis/X86/InMemoryAssemblerTest.cpp | 66 ++-- .../X86/InstructionSnippetGeneratorTest.cpp | 309 ------------------ .../llvm-exegesis/X86/RegisterAliasingTest.cpp | 82 +++++ 28 files changed, 1328 insertions(+), 1526 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 delete mode 100644 unittests/tools/llvm-exegesis/OperandGraphTest.cpp delete mode 100644 unittests/tools/llvm-exegesis/X86/InstructionSnippetGeneratorTest.cpp create mode 100644 unittests/tools/llvm-exegesis/X86/RegisterAliasingTest.cpp