History log of /llvm-project/compiler-rt/test/rtsan/deduplicate_errors.cpp (Results 1 – 2 of 2)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: llvmorg-21-init, llvmorg-19.1.7, llvmorg-19.1.6, llvmorg-19.1.5
# 595e484c 21-Nov-2024 Chris Apple <cja-private@pm.me>

[rtsan] Add option to allow printing of duplicate stacks (suppress_equal_stacks) (#117069)

Following the example of tsan, where we took the name

This would allow users to determine if they want t

[rtsan] Add option to allow printing of duplicate stacks (suppress_equal_stacks) (#117069)

Following the example of tsan, where we took the name

This would allow users to determine if they want to see ALL output from
rtsan.

Additionally, remove the UNLIKELY hint, as it is now up to the flag whether or
not it is likely that we go through this conditional.

show more ...


Revision tags: llvmorg-19.1.4, llvmorg-19.1.3, llvmorg-19.1.2, llvmorg-19.1.1
# f5b95db4 26-Sep-2024 Chris Apple <cja-private@pm.me>

[rtsan] Only print out unique stack traces (#110028)

# Why?

In real-time programming, you often have a process or dispatch loop that
is called many, many, many times. Without de-duplication the

[rtsan] Only print out unique stack traces (#110028)

# Why?

In real-time programming, you often have a process or dispatch loop that
is called many, many, many times. Without de-duplication the user will
be drowning in errors.

Introduce a way to only print the stacks one time only, if they have
been seen before

show more ...