]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/cfi/cfi_blacklist.txt
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r302418, and update
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / cfi / cfi_blacklist.txt
1 # Standard library types.
2 type:std::*
3
4 # The stdext namespace contains Microsoft standard library extensions.
5 type:stdext::*
6
7 # Types with a uuid attribute, i.e. COM types.
8 type:attr:uuid
9
10 # STL allocators (T *allocator<T *>::allocate(size_type, const void*)).
11 # The type signature mandates a cast from uninitialized void* to T*.
12 # size_type can either be unsigned int (j) or unsigned long (m).
13 fun:*8allocateEjPKv
14 fun:*8allocateEmPKv
15
16 # std::get_temporary_buffer, likewise (libstdc++, libc++).
17 fun:_ZSt20get_temporary_buffer*
18 fun:_ZNSt3__120get_temporary_buffer*
19
20 # STL address-of magic (libstdc++, libc++).
21 fun:*__addressof*
22 fun:_ZNSt3__19addressof*
23
24 # Windows C++ stdlib headers that contain bad unrelated casts.
25 src:*xmemory0
26 src:*xstddef
27
28 # std::_Sp_counted_ptr_inplace::_Sp_counted_ptr_inplace() (libstdc++).
29 # This ctor is used by std::make_shared and needs to cast to uninitialized T*
30 # in order to call std::allocator_traits<T>::construct.
31 fun:_ZNSt23_Sp_counted_ptr_inplace*