This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 294da8f Add test case for computing known bits of substraction operat [...] new c043a88 Add MIR-level outlining pass
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: include/llvm/CodeGen/Passes.h | 4 + include/llvm/InitializePasses.h | 1 + include/llvm/Target/TargetInstrInfo.h | 57 + lib/CodeGen/CMakeLists.txt | 1 + lib/CodeGen/CodeGen.cpp | 1 + lib/CodeGen/MachineOutliner.cpp | 1399 ++++++++++++++++++++++++ lib/CodeGen/TargetPassConfig.cpp | 6 + lib/Target/X86/X86InstrInfo.cpp | 80 ++ lib/Target/X86/X86InstrInfo.h | 21 + test/CodeGen/X86/machine-outliner-debuginfo.ll | 75 ++ test/CodeGen/X86/machine-outliner.ll | 110 ++ 11 files changed, 1755 insertions(+) create mode 100644 lib/CodeGen/MachineOutliner.cpp create mode 100644 test/CodeGen/X86/machine-outliner-debuginfo.ll create mode 100644 test/CodeGen/X86/machine-outliner.ll