This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 797a40a2bbc [X86] Add some isel patterns for scalar_to_vector/extract_v [...] new 18412a68d2c [ARM64][Windows] MCLayer support for exception handling
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/MC/MCStreamer.h | 21 +- include/llvm/MC/MCWin64EH.h | 8 + include/llvm/MC/MCWinEH.h | 9 +- include/llvm/Support/Win64EH.h | 19 +- lib/CodeGen/AsmPrinter/WinException.cpp | 26 +- lib/CodeGen/AsmPrinter/WinException.h | 5 +- lib/MC/MCAsmStreamer.cpp | 5 + lib/MC/MCStreamer.cpp | 11 + lib/MC/MCWin64EH.cpp | 347 +++++++++++++++++++++ lib/Target/AArch64/AArch64AsmPrinter.cpp | 97 ++++++ lib/Target/AArch64/AArch64InstrInfo.td | 22 ++ .../AArch64/MCTargetDesc/AArch64ELFStreamer.cpp | 24 +- .../AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp | 1 + .../AArch64/MCTargetDesc/AArch64TargetStreamer.cpp | 15 + .../AArch64/MCTargetDesc/AArch64TargetStreamer.h | 69 ++++ .../MCTargetDesc/AArch64WinCOFFStreamer.cpp | 155 +++++++++ .../AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h | 14 - test/CodeGen/AArch64/wineh1.mir | 120 +++++++ test/CodeGen/AArch64/wineh2.mir | 185 +++++++++++ test/CodeGen/AArch64/wineh3.mir | 171 ++++++++++ test/CodeGen/AArch64/wineh4.mir | 228 ++++++++++++++ test/CodeGen/AArch64/wineh5.mir | 224 +++++++++++++ test/CodeGen/AArch64/wineh6.mir | 138 ++++++++ test/CodeGen/AArch64/wineh7.mir | 134 ++++++++ test/CodeGen/AArch64/wineh_shrinkwrap.mir | 146 +++++++++ 25 files changed, 2139 insertions(+), 55 deletions(-) create mode 100644 test/CodeGen/AArch64/wineh1.mir create mode 100644 test/CodeGen/AArch64/wineh2.mir create mode 100644 test/CodeGen/AArch64/wineh3.mir create mode 100644 test/CodeGen/AArch64/wineh4.mir create mode 100644 test/CodeGen/AArch64/wineh5.mir create mode 100644 test/CodeGen/AArch64/wineh6.mir create mode 100644 test/CodeGen/AArch64/wineh7.mir create mode 100644 test/CodeGen/AArch64/wineh_shrinkwrap.mir