forked from OSchip/llvm-project
eca4b4007d
Every now and then SystemZ programs built with ASan crash with ERROR: AddressSanitizer: stack-overflow on address 0x040000000000 for no apparent reason. The problem is that BufferedStackTrace::UnwindFast() is specialized for SystemZ: it takes register 14 from the frame, however, IsValidFrame() is not specialized, and does not guarantee that frame[14] is going to be a valid memory access. Fix by introducing per-arch kFrameSize and using it in IsValidFrame(). Reviewed By: uweigand Differential Revision: https://reviews.llvm.org/D85822 |
||
---|---|---|
.. | ||
cmake | ||
docs | ||
include | ||
lib | ||
test | ||
tools | ||
unittests | ||
utils | ||
www | ||
.gitignore | ||
CMakeLists.txt | ||
CODE_OWNERS.TXT | ||
CREDITS.TXT | ||
LICENSE.TXT | ||
README.txt |
README.txt
Compiler-RT ================================ This directory and its subdirectories contain source code for the compiler support routines. Compiler-RT is open source software. You may freely distribute it under the terms of the license agreement found in LICENSE.txt. ================================