This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 33d415b1595 [llvm-exegesis] Update to cover latency through another opcode. new 9bb99f85e4a Revert r332579 "[llvm-exegesis] Update to cover latency thr [...] new a925a3b1249 [Analysis] Only use _unlocked stdio functions on linux
The 2 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/Analysis/TargetLibraryInfo.cpp | 3 +- .../Transforms/InstCombine/unlocked-stdio-mingw.ll | 23 ++ 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 +- .../lib/{Assembler.cpp => InMemoryAssembler.cpp} | 198 ++++++------ 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 ----- 30 files changed, 1551 insertions(+), 1329 deletions(-) create mode 100644 test/Transforms/InstCombine/unlocked-stdio-mingw.ll delete mode 100644 tools/llvm-exegesis/lib/Assembler.h rename tools/llvm-exegesis/lib/{Assembler.cpp => InMemoryAssembler.cpp} (70%) create mode 100644 tools/llvm-exegesis/lib/InMemoryAssembler.h create mode 100644 tools/llvm-exegesis/lib/InstructionSnippetGenerator.cpp create mode 100644 tools/llvm-exegesis/lib/InstructionSnippetGenerator.h delete mode 100644 tools/llvm-exegesis/lib/MCInstrDescView.cpp delete mode 100644 tools/llvm-exegesis/lib/MCInstrDescView.h create mode 100644 tools/llvm-exegesis/lib/OperandGraph.cpp create mode 100644 tools/llvm-exegesis/lib/OperandGraph.h delete mode 100644 tools/llvm-exegesis/lib/RegisterAliasing.cpp delete mode 100644 tools/llvm-exegesis/lib/RegisterAliasing.h create mode 100644 unittests/tools/llvm-exegesis/OperandGraphTest.cpp create mode 100644 unittests/tools/llvm-exegesis/X86/InstructionSnippetGeneratorTest.cpp delete mode 100644 unittests/tools/llvm-exegesis/X86/RegisterAliasingTest.cpp