This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from 99f377b fix formatting; NFC new ec44cfd Add an c++ itanium demangler to llvm. new 25c97c0 [AArch64] Adjust the scheduling model for Exynos M1. new edc04f3 [AArch64] Adjust the scheduling model for Exynos M1. new 102e8d5 [AArch64] Adjust the scheduling model for Exynos M1.
The 4 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: cmake/config-ix.cmake | 7 - include/llvm/Config/config.h.cmake | 3 - include/llvm/Demangle/Demangle.h | 28 + lib/CMakeLists.txt | 1 + lib/Demangle/CMakeLists.txt | 3 + lib/Demangle/ItaniumDemangle.cpp | 4431 ++++++++++++++++++++ lib/{Support => Demangle}/LLVMBuild.txt | 2 +- lib/LLVMBuild.txt | 1 + lib/Support/LLVMBuild.txt | 1 + lib/Support/Unix/Signals.inc | 10 +- lib/Target/AArch64/AArch64SchedM1.td | 65 +- test/CMakeLists.txt | 1 + test/Demangle/lit.local.cfg | 1 + test/Demangle/simple.test | 4 + test/lit.cfg | 1 + .../X86/macho-symbolized-disassembly.test | 5 +- tools/llvm-cxxfilt/CMakeLists.txt | 7 + tools/llvm-cxxfilt/llvm-cxxfilt.cpp | 29 + tools/llvm-objdump/CMakeLists.txt | 1 + tools/llvm-objdump/LLVMBuild.txt | 2 +- tools/llvm-objdump/MachODump.cpp | 21 +- 21 files changed, 4553 insertions(+), 71 deletions(-) create mode 100644 include/llvm/Demangle/Demangle.h create mode 100644 lib/Demangle/CMakeLists.txt create mode 100644 lib/Demangle/ItaniumDemangle.cpp copy lib/{Support => Demangle}/LLVMBuild.txt (97%) create mode 100644 test/Demangle/lit.local.cfg create mode 100644 test/Demangle/simple.test create mode 100644 tools/llvm-cxxfilt/CMakeLists.txt create mode 100644 tools/llvm-cxxfilt/llvm-cxxfilt.cpp