This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 1b044afcdb8 [LangRef] Fix typo adress->address. NFC new bbf3052e90f [EH] Rename llvm.x86.seh.recoverfp intrinsic to llvm.eh.recoverfp new 66f2370bc22 [GISel]: Add support for CSEing continuously during GISel passes.
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/GlobalISel/CSEInfo.h | 237 +++++++++++++ include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h | 110 ++++++ include/llvm/CodeGen/GlobalISel/Combiner.h | 8 +- .../CodeGen/GlobalISel/ConstantFoldingMIRBuilder.h | 51 --- .../llvm/CodeGen/GlobalISel/GISelChangeObserver.h | 64 +++- include/llvm/CodeGen/GlobalISel/GISelWorkList.h | 39 +-- include/llvm/CodeGen/GlobalISel/IRTranslator.h | 10 +- include/llvm/CodeGen/GlobalISel/LegalizerHelper.h | 7 +- include/llvm/CodeGen/GlobalISel/MachineIRBuilder.h | 40 ++- include/llvm/CodeGen/GlobalISel/Utils.h | 3 + include/llvm/CodeGen/MachineFunction.h | 10 +- include/llvm/IR/Intrinsics.td | 7 + include/llvm/IR/IntrinsicsX86.td | 6 - include/llvm/InitializePasses.h | 1 + include/llvm/Support/LowLevelTypeImpl.h | 9 +- lib/CodeGen/AsmPrinter/WinException.cpp | 2 +- lib/CodeGen/AsmPrinter/WinException.h | 2 +- lib/CodeGen/GlobalISel/CMakeLists.txt | 2 + lib/CodeGen/GlobalISel/CSEInfo.cpp | 370 +++++++++++++++++++++ lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp | 231 +++++++++++++ lib/CodeGen/GlobalISel/Combiner.cpp | 48 +-- lib/CodeGen/GlobalISel/GISelChangeObserver.cpp | 9 + lib/CodeGen/GlobalISel/IRTranslator.cpp | 105 ++++-- lib/CodeGen/GlobalISel/Legalizer.cpp | 54 ++- lib/CodeGen/GlobalISel/LegalizerHelper.cpp | 12 +- lib/CodeGen/GlobalISel/MachineIRBuilder.cpp | 2 + lib/CodeGen/GlobalISel/Utils.cpp | 51 +++ lib/CodeGen/MachineFunction.cpp | 4 +- lib/IR/AutoUpgrade.cpp | 4 + lib/Target/AArch64/AArch64PreLegalizerCombiner.cpp | 2 +- lib/Target/Mips/MipsPreLegalizerCombiner.cpp | 2 +- lib/Target/X86/X86ISelLowering.cpp | 4 +- .../AArch64/GlobalISel/call-translator-cse.ll | 34 ++ .../AArch64/GlobalISel/gisel-commandline-option.ll | 1 + .../AArch64/GlobalISel/legalize-ext-cse.mir | 21 ++ test/CodeGen/AArch64/O0-pipeline.ll | 2 + test/CodeGen/WinEH/wineh-statenumbering.ll | 4 +- test/CodeGen/X86/seh-catch-all-win32.ll | 4 +- test/CodeGen/X86/seh-filter-no-personality.ll | 6 +- test/CodeGen/X86/seh-no-invokes.ll | 4 +- test/CodeGen/X86/seh-stack-realign.ll | 4 +- test/CodeGen/X86/win32-seh-catchpad.ll | 6 +- test/DebugInfo/COFF/frameproc-flags.ll | 4 +- .../AddressSanitizer/localescape.ll | 4 +- test/Instrumentation/SanitizerCoverage/seh.ll | 4 +- .../LCSSA/avoid-intrinsics-in-catchswitch.ll | 4 +- unittests/CodeGen/GlobalISel/CMakeLists.txt | 1 + unittests/CodeGen/GlobalISel/CSETest.cpp | 87 +++++ .../{LegalizerHelperTest.h => GISelMITest.h} | 34 +- .../CodeGen/GlobalISel/LegalizerHelperTest.cpp | 69 ++-- 50 files changed, 1536 insertions(+), 263 deletions(-) create mode 100644 include/llvm/CodeGen/GlobalISel/CSEInfo.h create mode 100644 include/llvm/CodeGen/GlobalISel/CSEMIRBuilder.h create mode 100644 lib/CodeGen/GlobalISel/CSEInfo.cpp create mode 100644 lib/CodeGen/GlobalISel/CSEMIRBuilder.cpp create mode 100644 test/CodeGen/AArch64/GlobalISel/call-translator-cse.ll create mode 100644 test/CodeGen/AArch64/GlobalISel/legalize-ext-cse.mir create mode 100644 unittests/CodeGen/GlobalISel/CSETest.cpp rename unittests/CodeGen/GlobalISel/{LegalizerHelperTest.h => GISelMITest.h} (85%)