public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc r11-9454] libsanitizer: Cherry-pick LLVM release/13.x commit d96358a28193
@ 2022-01-12  2:34 H.J. Lu
  0 siblings, 0 replies; only message in thread
From: H.J. Lu @ 2022-01-12  2:34 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:8c0f58cd71ec3afcce5abf10c750ec494e88232b

commit r11-9454-g8c0f58cd71ec3afcce5abf10c750ec494e88232b
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Fri Dec 17 11:08:32 2021 -0800

    libsanitizer: Cherry-pick LLVM release/13.x commit d96358a28193
    
    Cherry-pick from LLVM release/13.x branch:
    
    commit d96358a2819399a2abb60ad3b26444ab7b4409cf
    Author: Michał Górny <mgorny@moritz.systems>
    Date:   Mon Dec 13 22:28:26 2021 +0100
    
        [compiler-rt] Increase kDlsymAllocPoolSize to fix test failures
    
        Increase kDlsymAllocPoolSize on the release branch as discussed on bug
        51620, as an alternative to backporting
        cb0e14ce6dcdd614a7207f4ce6fcf81a164471ab and its dependencies.
        The minimum size is 8192, as needed for the following test to pass:
    
          AddressSanitizer-i386-linux :: TestCases/Linux/long-object-path.cpp
    
        Fixes #51620
    
            PR sanitizer/102911
            * asan/asan_malloc_linux.cpp (kDlsymAllocPoolSize): Set it to
            8192 on Linux.

Diff:
---
 libsanitizer/asan/asan_malloc_linux.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libsanitizer/asan/asan_malloc_linux.cpp b/libsanitizer/asan/asan_malloc_linux.cpp
index 9c3f0a5338e..7a5776b29ed 100644
--- a/libsanitizer/asan/asan_malloc_linux.cpp
+++ b/libsanitizer/asan/asan_malloc_linux.cpp
@@ -31,7 +31,7 @@ using namespace __asan;
 
 static uptr allocated_for_dlsym;
 static uptr last_dlsym_alloc_size_in_words;
-static const uptr kDlsymAllocPoolSize = SANITIZER_RTEMS ? 4096 : 1024;
+static const uptr kDlsymAllocPoolSize = SANITIZER_RTEMS ? 4096 : 8192;
 static uptr alloc_memory_for_dlsym[kDlsymAllocPoolSize];
 
 static inline bool IsInDlsymAllocPool(const void *ptr) {


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-01-12  2:34 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-12  2:34 [gcc r11-9454] libsanitizer: Cherry-pick LLVM release/13.x commit d96358a28193 H.J. Lu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).