History log of /llvm-project/compiler-rt/test/hwasan/TestCases/memcmp.cpp (Results 1 – 5 of 5)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-18.1.8, llvmorg-18.1.7, llvmorg-18.1.6, llvmorg-18.1.5, llvmorg-18.1.4, llvmorg-18.1.3, llvmorg-18.1.2, llvmorg-18.1.1, llvmorg-18.1.0, llvmorg-18.1.0-rc4, llvmorg-18.1.0-rc3, llvmorg-18.1.0-rc2, llvmorg-18.1.0-rc1, llvmorg-19-init, llvmorg-17.0.6, llvmorg-17.0.5
# ddf4a9ce 03-Nov-2023 Kirill Stoimenov <87100199+kstoimenov@users.noreply.github.com>

[test][HWASAN] Force interceptors tests for memcmp and bcmp call interceptor (#71215)


Revision tags: llvmorg-17.0.4
# 3e5187ea 31-Oct-2023 Vitaly Buka <vitalybuka@google.com>

Revert "[HWASAN] Enable memcpy, memmove and memset interceptors (#70387)"

Breaks build bots, details in #70387.

This reverts commit 91cdd7d615da38a1f025646f526c2fce265a37e2.


# 91cdd7d6 30-Oct-2023 Kirill Stoimenov <87100199+kstoimenov@users.noreply.github.com>

[HWASAN] Enable memcpy, memmove and memset interceptors (#70387)


Revision tags: llvmorg-17.0.3
# 844c731f 13-Oct-2023 Kirill Stoimenov <87100199+kstoimenov@users.noreply.github.com>

[HWASAN] Mark built-ins as not built-ins to prevent optimizations (#68936)

The other 3 sanitizers (ASAN, TSAN and MSAN) all use
maybeMarkSanitizerLibraryCallNoBuiltin to make disable optimizations

[HWASAN] Mark built-ins as not built-ins to prevent optimizations (#68936)

The other 3 sanitizers (ASAN, TSAN and MSAN) all use
maybeMarkSanitizerLibraryCallNoBuiltin to make disable optimizations
which inline functions like memcmp for example. The lack of this
optimization was allowing ExpandMemCmpPass to convert a memcmp call to
inlined assembly and cause a false negative in HWASAN.

show more ...


Revision tags: llvmorg-17.0.2
# 46c16716 29-Sep-2023 Kirill Stoimenov <87100199+kstoimenov@users.noreply.github.com>

[HWASAN]Implement memcmp interceptor in HWASAN (#67204)

The plan is to fix memcmp interceptor in HWASAN and remove the
unsupported statement at that time.

---------

Co-authored-by: Vitaly Buk

[HWASAN]Implement memcmp interceptor in HWASAN (#67204)

The plan is to fix memcmp interceptor in HWASAN and remove the
unsupported statement at that time.

---------

Co-authored-by: Vitaly Buka <vitalybuka@gmail.com>

show more ...