This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 79daf1b5a65 X86: Register the X86CallFrameOptimization pass new 1be670d5268 [MC] Adding code padding for performance stability - infras [...] new ce910e5be40 [Modules] Add module for Config/llvm-config.h
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: include/llvm/CodeGen/AsmPrinter.h | 5 +- include/llvm/MC/MCAsmBackend.h | 42 +++ include/llvm/MC/MCAssembler.h | 2 + include/llvm/MC/MCCodePadder.h | 243 ++++++++++++++ include/llvm/MC/MCFragment.h | 93 ++++++ include/llvm/MC/MCObjectStreamer.h | 6 + include/llvm/MC/MCStreamer.h | 7 + include/llvm/module.modulemap.build | 4 + lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 33 +- lib/MC/CMakeLists.txt | 1 + lib/MC/MCAsmBackend.cpp | 28 +- lib/MC/MCAssembler.cpp | 30 ++ lib/MC/MCCodePadder.cpp | 371 +++++++++++++++++++++ lib/MC/MCFragment.cpp | 17 + lib/MC/MCObjectStreamer.cpp | 27 ++ lib/Target/Mips/MipsAsmPrinter.cpp | 1 + lib/Target/X86/X86AsmPrinter.h | 1 + test/CodeGen/AArch64/arm64-opt-remarks-lazy-bfi.ll | 6 +- 18 files changed, 910 insertions(+), 7 deletions(-) create mode 100644 include/llvm/MC/MCCodePadder.h create mode 100644 lib/MC/MCCodePadder.cpp