This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 2d8135ffd90 Re-submitting changes in D51550 because it failed to patch.
new 292ffb5d194 [hwasan] Record and display stack history in stack-based reports.
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:
.../Instrumentation/HWAddressSanitizer.cpp | 182 +++++++++++++++++----
test/Instrumentation/HWAddressSanitizer/alloca.ll | 4 +-
test/Instrumentation/HWAddressSanitizer/basic.ll | 5 +-
.../Instrumentation/HWAddressSanitizer/prologue.ll | 88 ++++++++++
.../HWAddressSanitizer/with-ifunc.ll | 30 ----
5 files changed, 239 insertions(+), 70 deletions(-)
create mode 100644 test/Instrumentation/HWAddressSanitizer/prologue.ll
delete mode 100644 test/Instrumentation/HWAddressSanitizer/with-ifunc.ll
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository compiler-rt.
from b58a8aade [compiler-rt] [builtins] Add logb/logbf/logbl methods to comp [...]
new 09eb360cf [hwasan] Record and display stack history in stack-based reports.
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:
lib/hwasan/CMakeLists.txt | 6 +-
lib/hwasan/hwasan.cc | 14 +-
lib/hwasan/hwasan.h | 6 +
lib/hwasan/hwasan_dynamic_shadow.cc | 13 +-
lib/hwasan/hwasan_flags.inc | 4 +
lib/hwasan/hwasan_linux.cc | 70 +++++---
lib/hwasan/hwasan_report.cc | 63 ++++++-
lib/hwasan/hwasan_thread.cc | 116 ++++--------
lib/hwasan/hwasan_thread.h | 42 ++---
lib/hwasan/hwasan_thread_list.cc | 15 ++
lib/hwasan/hwasan_thread_list.h | 200 +++++++++++++++++++++
lib/sanitizer_common/sanitizer_ring_buffer.h | 81 ++++++++-
.../tests/sanitizer_ring_buffer_test.cc | 22 +++
test/hwasan/TestCases/deep-recursion.c | 73 ++++++++
test/hwasan/TestCases/rich-stack.c | 66 +++++++
test/hwasan/TestCases/stack-history-length.c | 36 ++++
16 files changed, 669 insertions(+), 158 deletions(-)
create mode 100644 lib/hwasan/hwasan_thread_list.cc
create mode 100644 lib/hwasan/hwasan_thread_list.h
create mode 100644 test/hwasan/TestCases/deep-recursion.c
create mode 100644 test/hwasan/TestCases/rich-stack.c
create mode 100644 test/hwasan/TestCases/stack-history-length.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from 551703cfd4 RISC-V: Allow pcrel_lo addends, error on addend overflow.
new a05f27b689 RISC-V: For PCREL_LO12, fix addend handling in auipc lookup.
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:
bfd/ChangeLog | 4 ++++
bfd/elfnn-riscv.c | 9 +++++++--
2 files changed, 11 insertions(+), 2 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository clang.
from fa0bcfc365 [CodeGen] Revert commit https://reviews.llvm.org/rL342717
new b358e2f24a [analyzer] Prevent crashes in FindLastStoreBRVisitor
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:
.../Core/BugReporter/BugReporterVisitors.h | 2 ++
lib/StaticAnalyzer/Core/BugReporterVisitors.cpp | 17 +++++++++++++----
test/Analysis/diagnostics/find_last_store.c | 17 +++++++++++++++++
3 files changed, 32 insertions(+), 4 deletions(-)
create mode 100644 test/Analysis/diagnostics/find_last_store.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository binutils-gdb.
from db72737006 Fix PR gdb/20948: --write option to GDB causes segmentation fault
new 551703cfd4 RISC-V: Allow pcrel_lo addends, error on addend overflow.
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:
bfd/ChangeLog | 9 +++++++++
bfd/elfnn-riscv.c | 28 ++++++++++++++++-----------
ld/ChangeLog | 8 ++++++++
ld/testsuite/ld-riscv-elf/ld-riscv-elf.exp | 1 +
ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2.d | 5 +++++
ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2.s | 16 +++++++++++++++
ld/testsuite/ld-riscv-elf/pcrel-lo-addend.d | 4 ++--
7 files changed, 58 insertions(+), 13 deletions(-)
create mode 100644 ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2.d
create mode 100644 ld/testsuite/ld-riscv-elf/pcrel-lo-addend-2.s
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 8ce2d0f5468 [X86] Remove shift/rotate by CL memory (RMW) overrides
new 5171686681c [InstCombine] add bitcast+extelt helper function; NFC
new 2d8135ffd90 Re-submitting changes in D51550 because it failed to patch.
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:
.../InstCombine/InstCombineVectorOps.cpp | 40 ++++++----
lib/Transforms/Scalar/MergeICmps.cpp | 85 +++++++++++++++-------
test/CodeGen/AArch64/O3-pipeline.ll | 2 +
test/CodeGen/Generic/llc-start-stop.ll | 6 +-
test/CodeGen/X86/O3-pipeline.ll | 2 +
.../MergeICmps/X86/alias-merge-blocks.ll | 18 +++--
6 files changed, 101 insertions(+), 52 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository compiler-rt.
from 51ddca93a [profile] Revert commit https://reviews.llvm.org/rL342718
new b58a8aade [compiler-rt] [builtins] Add logb/logbf/logbl methods to comp [...]
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:
lib/builtins/divdc3.c | 4 +-
lib/builtins/divsc3.c | 5 +-
lib/builtins/divtc3.c | 5 +-
lib/builtins/fp_lib.h | 57 +++++++++++++++++++++
lib/builtins/int_math.h | 4 --
lib/builtins/ppc/divtc3.c | 12 +++--
test/builtins/Unit/compiler_rt_logb_test.c | 63 +++++++++++++++++++++++
test/builtins/Unit/compiler_rt_logbf_test.c | 63 +++++++++++++++++++++++
test/builtins/Unit/compiler_rt_logbl_test.c | 79 +++++++++++++++++++++++++++++
9 files changed, 282 insertions(+), 10 deletions(-)
create mode 100644 test/builtins/Unit/compiler_rt_logb_test.c
create mode 100644 test/builtins/Unit/compiler_rt_logbf_test.c
create mode 100644 test/builtins/Unit/compiler_rt_logbl_test.c
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master
in repository llvm.
from 03728047a12 [X86] Infer 64bit feature support from the CPUID results in [...]
new 8ce2d0f5468 [X86] Remove shift/rotate by CL memory (RMW) overrides
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:
lib/Target/X86/X86SchedBroadwell.td | 13 +++------
lib/Target/X86/X86SchedHaswell.td | 13 +++------
lib/Target/X86/X86SchedSandyBridge.td | 36 +++++-------------------
lib/Target/X86/X86SchedSkylakeClient.td | 23 ++++-----------
lib/Target/X86/X86SchedSkylakeServer.td | 23 ++++-----------
test/CodeGen/X86/bmi2-schedule.ll | 16 +++++------
test/tools/llvm-mca/X86/Generic/resources-bmi2.s | 16 +++++------
7 files changed, 43 insertions(+), 97 deletions(-)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.