This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 37655864826 [COFF, ARM64] Fix localaddress to handle stack realignment [...] new 890a12e7ad9 [WebAssembly] Add codegen support for the import_field attribute new 0af0a10c7c8 [Test] Update file w/update_test_checks.py to make a follow [...] new 49e76263f74 [InstCombine] Refactor test checks (NFC) new edce282ba0b [CodeGen] Be as conservative about atomic accesses as for volatile new f016536bac5 [BPF] [BTF] Process FileName with absolute path correctly new 5121e44428a [AArch64] Fix unused variable [NFC] new 97dc7fa3189 Revert "[BPF] [BTF] Process FileName with absolute path correctly" new 49db1b92350 [llvm-objcopy] Add ability to copy MachO object files new 61ff41aa3b4 [AutoUpgrade] Fix AutoUpgrade for x86.seh.recoverfp
The 9 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/MCSymbolWasm.h | 22 +- lib/CodeGen/MachineInstr.cpp | 2 + lib/CodeGen/MachinePipeliner.cpp | 4 +- lib/CodeGen/ScheduleDAGInstrs.cpp | 3 +- lib/IR/AutoUpgrade.cpp | 9 +- lib/MC/MCWasmStreamer.cpp | 1 + lib/MC/WasmObjectWriter.cpp | 20 +- lib/Target/AArch64/AArch64FrameLowering.cpp | 1 + .../MCTargetDesc/WebAssemblyTargetStreamer.cpp | 11 +- .../MCTargetDesc/WebAssemblyTargetStreamer.h | 13 +- lib/Target/WebAssembly/WebAssemblyAsmPrinter.cpp | 9 +- test/CodeGen/AArch64/eh_recoverfp.ll | 11 + test/CodeGen/WebAssembly/import-module.ll | 3 +- test/MC/WebAssembly/external-func-address.ll | 4 +- .../InstCombine/X86/x86-masked-memops.ll | 58 +-- .../InstCombine/double-float-shrink-2.ll | 396 ++++++++++----------- test/tools/llvm-objcopy/MachO/Inputs/macho.32.s | 54 +++ test/tools/llvm-objcopy/MachO/Inputs/macho.64.s | 47 +++ .../MachO/basic-big-endian-32-copy.test | 112 ++++++ .../MachO/basic-big-endian-64-copy.test | 124 +++++++ .../MachO/basic-little-endian-32-copy.test | 112 ++++++ .../MachO/basic-little-endian-64-copy.test | 124 +++++++ .../llvm-objcopy/MachO/real-world-input-copy.test | 7 + tools/llvm-objcopy/CMakeLists.txt | 3 + tools/llvm-objcopy/MachO/MachOObjcopy.cpp | 32 ++ tools/llvm-objcopy/MachO/MachOObjcopy.h | 32 ++ tools/llvm-objcopy/MachO/MachOReader.cpp | 225 ++++++++++++ tools/llvm-objcopy/MachO/MachOReader.h | 49 +++ tools/llvm-objcopy/MachO/MachOWriter.cpp | 353 ++++++++++++++++++ tools/llvm-objcopy/MachO/MachOWriter.h | 55 +++ tools/llvm-objcopy/MachO/Object.h | 209 +++++++++++ tools/llvm-objcopy/llvm-objcopy.cpp | 4 + 32 files changed, 1853 insertions(+), 256 deletions(-) create mode 100644 test/CodeGen/AArch64/eh_recoverfp.ll create mode 100644 test/tools/llvm-objcopy/MachO/Inputs/macho.32.s create mode 100644 test/tools/llvm-objcopy/MachO/Inputs/macho.64.s create mode 100644 test/tools/llvm-objcopy/MachO/basic-big-endian-32-copy.test create mode 100644 test/tools/llvm-objcopy/MachO/basic-big-endian-64-copy.test create mode 100644 test/tools/llvm-objcopy/MachO/basic-little-endian-32-copy.test create mode 100644 test/tools/llvm-objcopy/MachO/basic-little-endian-64-copy.test create mode 100644 test/tools/llvm-objcopy/MachO/real-world-input-copy.test create mode 100644 tools/llvm-objcopy/MachO/MachOObjcopy.cpp create mode 100644 tools/llvm-objcopy/MachO/MachOObjcopy.h create mode 100644 tools/llvm-objcopy/MachO/MachOReader.cpp create mode 100644 tools/llvm-objcopy/MachO/MachOReader.h create mode 100644 tools/llvm-objcopy/MachO/MachOWriter.cpp create mode 100644 tools/llvm-objcopy/MachO/MachOWriter.h create mode 100644 tools/llvm-objcopy/MachO/Object.h