]> git.ipfire.org Git - thirdparty/gcc.git/commit
ASAN: call initialize_sanitizer_builtins for hwasan [PR115205]
authorAndrew Pinski <quic_apinski@quicinc.com>
Mon, 12 Aug 2024 04:26:59 +0000 (21:26 -0700)
committerAndrew Pinski <quic_apinski@quicinc.com>
Wed, 21 Aug 2024 00:16:06 +0000 (17:16 -0700)
commitefe3da62758ed031486005e0b912de23a0a6b4c6
tree11b1b59abbbb38e8aabb5c4fd45caa6b021eb9de
parent1b72e07696a062e628c35e4bd25926c11ac18297
ASAN: call initialize_sanitizer_builtins for hwasan [PR115205]

Sometimes initialize_sanitizer_builtins is not called before emitting
the asan builtins with hwasan. In the case of the bug report, there
was a path with the fortran front-end where it was not called.
So let's call it in asan_instrument before calling transform_statements
and from hwasan_finish_file.

Built and tested for aarch64-linux-gnu with no regressions.

Changes since v1:
* v2: Add call of asan_instrument to hwasan_finish_file also.

gcc/ChangeLog:

PR sanitizer/115205
* asan.cc (asan_instrument): Call initialize_sanitizer_builtins
for hwasan.
(hwasan_finish_file): Likewise.

Signed-off-by: Andrew Pinski <quic_apinski@quicinc.com>
gcc/asan.cc