search for: suppressioncontext

Displaying 2 results from an estimated 2 matches for "suppressioncontext".

2014 Dec 05
3
[LLVMdev] [RFC] Parsing runtime flags in sanitizers (ASan/LSan/UBSan)
...we have two kinds of sanitizer runtime flags: tool-specific flags and "common flags", defined in sanitizer_common library and shared across all the sanitizers. Many of these common flags are used early during tool initialization (for example, we use "suppressions" flag to create SuppressionContext singleton object). That's the reason why we parse both tool-specific flags and common flags as early as possible at program startup, before running the rest of initialization code. It all works fine until we have a single sanitizer - e.g. for TSan or MSan. The situation gets crazy when we comb...
2014 Dec 08
2
[LLVMdev] [RFC] Parsing runtime flags in sanitizers (ASan/LSan/UBSan)
...tool-specific > flags > > and "common flags", defined in sanitizer_common library and shared across > > all the sanitizers. Many of these common flags are used early during tool > > initialization (for example, we use "suppressions" flag to create > > SuppressionContext singleton object). That's the reason why we parse both > > tool-specific flags and common flags as early as possible at program > > startup, before running the rest of initialization code. It all works > fine > > until we have a single sanitizer - e.g. for TSan or MSan. &gt...