This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 93d7d4e1d2b Try to fix WebAssembly build after r318352 new 64b77007a6d [globalisel][tablegen] Generate rule coverage and use it to [...]
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: CMakeLists.txt | 4 + cmake/modules/TableGen.cmake | 7 ++ .../llvm/CodeGen/GlobalISel/InstructionSelector.h | 14 ++- .../CodeGen/GlobalISel/InstructionSelectorImpl.h | 14 ++- include/llvm/Config/config.h.cmake | 6 ++ include/llvm/Support/CodeGenCoverage.h | 37 +++++++ lib/CodeGen/GlobalISel/InstructionSelect.cpp | 21 +++- lib/Support/CMakeLists.txt | 1 + lib/Support/CodeGenCoverage.cpp | 118 +++++++++++++++++++++ lib/Target/AArch64/AArch64InstructionSelector.cpp | 9 +- lib/Target/AMDGPU/AMDGPUInstructionSelector.cpp | 3 +- lib/Target/AMDGPU/AMDGPUInstructionSelector.h | 3 +- lib/Target/ARM/ARMInstructionSelector.cpp | 9 +- lib/Target/X86/X86InstructionSelector.cpp | 37 ++++--- test/TableGen/GlobalISelEmitter.td | 4 +- utils/TableGen/GlobalISelEmitter.cpp | 58 +++++++++- utils/llvm-gisel-cov.py | 67 ++++++++++++ 17 files changed, 372 insertions(+), 40 deletions(-) create mode 100644 include/llvm/Support/CodeGenCoverage.h create mode 100644 lib/Support/CodeGenCoverage.cpp create mode 100644 utils/llvm-gisel-cov.py