This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from fdc12501773 Bitcode: Write the irsymtab to disk. new a4799adf391 Object: Teach irsymtab::read() to try to use the irsymtab t [...] new 85e09462670 [COFF, ARM64] Add support for Windows ARM64 COFF format
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/Bitcode/BitcodeReader.h | 7 ++- include/llvm/Object/IRSymtab.h | 2 + lib/Bitcode/Reader/BitcodeReader.cpp | 32 +++++++++-- lib/Object/COFFObjectFile.cpp | 23 ++++++++ lib/Object/IRSymtab.cpp | 30 +++++++++- lib/Target/AArch64/AArch64MCInstLower.cpp | 14 ++++- lib/Target/AArch64/AArch64MCInstLower.h | 2 + lib/Target/AArch64/AArch64TargetMachine.cpp | 4 ++ lib/Target/AArch64/AArch64TargetObjectFile.h | 3 + .../AArch64/MCTargetDesc/AArch64AsmBackend.cpp | 19 ++++++- .../AArch64/MCTargetDesc/AArch64ELFStreamer.cpp | 4 ++ .../AArch64/MCTargetDesc/AArch64MCAsmInfo.cpp | 4 ++ lib/Target/AArch64/MCTargetDesc/AArch64MCAsmInfo.h | 5 ++ .../AArch64/MCTargetDesc/AArch64MCTargetDesc.cpp | 19 ++++++- .../AArch64/MCTargetDesc/AArch64MCTargetDesc.h | 2 + .../MCTargetDesc/AArch64WinCOFFObjectWriter.cpp | 65 ++++++++++++++++++++++ .../MCTargetDesc/AArch64WinCOFFStreamer.cpp | 37 ++++++++++++ .../AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h | 43 ++++++++++++++ lib/Target/AArch64/MCTargetDesc/CMakeLists.txt | 2 + test/MC/AArch64/coff-basic.ll | 8 +++ test/Object/X86/irsymtab.ll | 13 +++++ tools/llvm-lto2/llvm-lto2.cpp | 14 ++++- 22 files changed, 338 insertions(+), 14 deletions(-) create mode 100644 lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFObjectWriter.cpp create mode 100644 lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.cpp create mode 100644 lib/Target/AArch64/MCTargetDesc/AArch64WinCOFFStreamer.h create mode 100644 test/MC/AArch64/coff-basic.ll