OLD | NEW |
1 ############################################################################# | 1 ############################################################################# |
2 # UBSan blacklist. | 2 # UBSan blacklist. |
3 # Please think twice before you add or remove these rules. | 3 # Please think twice before you add or remove these rules. |
4 | 4 |
5 # This is a stripped down copy of Chromium's blacklist.txt, to enable | 5 # This is a stripped down copy of Chromium's blacklist.txt, to enable |
6 # adding WebRTC-specific blacklist entries. | 6 # adding WebRTC-specific blacklist entries. |
7 | 7 |
8 ############################################################################# | 8 ############################################################################# |
9 # YASM does some funny things that UBsan doesn't like. | 9 # YASM does some funny things that UBsan doesn't like. |
10 # https://crbug.com/489901 | 10 # https://crbug.com/489901 |
11 src:*/third_party/yasm/* | 11 src:*/third_party/yasm/* |
12 | 12 |
13 ############################################################################# | 13 ############################################################################# |
14 # Ignore system libraries. | 14 # Ignore system libraries. |
15 src:*/usr/* | 15 src:*/usr/* |
16 | 16 |
17 ############################################################################# | 17 ############################################################################# |
18 # iSAC exhibits a few problems (entropy coding and a unit test). | |
19 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5513 | 18 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5513 |
20 src:*/webrtc/modules/audio_coding/codecs/isac/main/source/entropy_coding.c | |
21 src:*/webrtc/modules/audio_coding/codecs/isac/fix/source/entropy_coding.c | |
22 fun:*FilterBanksTest*CalculateResidualEnergyTester* | 19 fun:*FilterBanksTest*CalculateResidualEnergyTester* |
23 | 20 |
24 ############################################################################# | 21 ############################################################################# |
25 # The audio processing AGC submodule exhibits a few problems (overflows). | 22 # The audio processing AGC submodule exhibits a few problems (overflows). |
26 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5530 | 23 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5530 |
27 src:*/webrtc/modules/audio_processing/agc/legacy/analog_agc.c | 24 src:*/webrtc/modules/audio_processing/agc/legacy/analog_agc.c |
28 src:*/webrtc/modules/audio_processing/agc/legacy/digital_agc.c | 25 src:*/webrtc/modules/audio_processing/agc/legacy/digital_agc.c |
29 | 26 |
30 ############################################################################# | 27 ############################################################################# |
31 # Ignore errors in common_audio. | 28 # Ignore errors in common_audio. |
32 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5486 | 29 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5486 |
33 src:*/webrtc/common_audio/signal_processing/signal_processing_unittest.cc | 30 src:*/webrtc/common_audio/signal_processing/signal_processing_unittest.cc |
34 src:*/webrtc/common_audio/signal_processing/resample_by_2_internal.c | 31 src:*/webrtc/common_audio/signal_processing/resample_by_2_internal.c |
35 fun:*WebRtcSpl_AddSatW32* | 32 fun:*WebRtcSpl_AddSatW32* |
36 fun:*WebRtcSpl_SubSatW32* | 33 fun:*WebRtcSpl_SubSatW32* |
37 fun:*WebRtcSpl_DivW32HiLow* | 34 fun:*WebRtcSpl_DivW32HiLow* |
38 fun:*GmmProbability* | 35 fun:*GmmProbability* |
OLD | NEW |