This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository llvm.
from b76b470 [InstCombine] Simplify and correct folding fcmps with the sam [...] new 0b21d88 Change Archive::create() from ErrorOr<...> to Expected<...> a [...] new 6a40504 StackColoring for SafeStack.
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/Object/Archive.h | 4 +- lib/CodeGen/CMakeLists.txt | 2 + lib/CodeGen/SafeStack.cpp | 88 +++--- lib/CodeGen/SafeStackColoring.cpp | 289 ++++++++++++++++++++ lib/CodeGen/SafeStackColoring.h | 149 ++++++++++ lib/CodeGen/SafeStackLayout.cpp | 138 ++++++++++ lib/CodeGen/SafeStackLayout.h | 68 +++++ lib/Object/Archive.cpp | 43 +-- lib/Object/Binary.cpp | 2 +- lib/Object/MachOUniversal.cpp | 2 +- test/Transforms/SafeStack/coloring.ll | 44 +++ test/Transforms/SafeStack/coloring2.ll | 482 +++++++++++++++++++++++++++++++++ tools/dsymutil/BinaryHolder.cpp | 4 +- tools/lli/lli.cpp | 10 +- tools/llvm-ar/llvm-ar.cpp | 7 +- 15 files changed, 1265 insertions(+), 67 deletions(-) create mode 100644 lib/CodeGen/SafeStackColoring.cpp create mode 100644 lib/CodeGen/SafeStackColoring.h create mode 100644 lib/CodeGen/SafeStackLayout.cpp create mode 100644 lib/CodeGen/SafeStackLayout.h create mode 100644 test/Transforms/SafeStack/coloring.ll create mode 100644 test/Transforms/SafeStack/coloring2.ll