OLD | NEW |
1 ############################################################################# | 1 ############################################################################# |
2 # UBSan vptr blacklist. | 2 # UBSan vptr blacklist. |
3 # Function and type based blacklisting use a mangled name, and it is especially | 3 # Function and type based blacklisting use a mangled name, and it is especially |
4 # tricky to represent C++ types. For now, any possible changes by name manglings | 4 # tricky to represent C++ types. For now, any possible changes by name manglings |
5 # are simply represented as wildcard expressions of regexp, and thus it might be | 5 # are simply represented as wildcard expressions of regexp, and thus it might be |
6 # over-blacklisted. | 6 # over-blacklisted. |
7 | 7 |
8 ############################################################################# | 8 ############################################################################# |
9 # Identical layouts. | 9 # Identical layouts. |
10 # If base and derived classes have identifical memory layouts (i.e., the same | 10 # If base and derived classes have identifical memory layouts (i.e., the same |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 ############################################################################# | 46 ############################################################################# |
47 # Base class's destructor accesses a derived class. | 47 # Base class's destructor accesses a derived class. |
48 | 48 |
49 fun:*DatabaseContext*contextDestroyed* | 49 fun:*DatabaseContext*contextDestroyed* |
50 | 50 |
51 ############################################################################# | 51 ############################################################################# |
52 # static_cast into itself in the constructor. | 52 # static_cast into itself in the constructor. |
53 | 53 |
54 fun:*RefCountedGarbageCollected*makeKeepAlive* | 54 fun:*RefCountedGarbageCollected*makeKeepAlive* |
55 fun:*ThreadSafeRefCountedGarbageCollected*ThreadSafeRefCountedGarbageCollected* | 55 fun:*ThreadSafeRefCountedGarbageCollected*makeKeepAlive* |
56 | 56 |
57 ############################################################################# | 57 ############################################################################# |
58 # Accessing data in destructurors where the class has virtual inheritances. | 58 # Accessing data in destructurors where the class has virtual inheritances. |
59 | 59 |
60 type:*content*RenderWidgetHost* | 60 type:*content*RenderWidgetHost* |
61 | 61 |
62 # Mangled name for content::RenderViewHostImpl::~RenderViewHostImpl() | 62 # Mangled name for content::RenderViewHostImpl::~RenderViewHostImpl() |
63 fun:*content*RenderViewHostImpl* | 63 fun:*content*RenderViewHostImpl* |
64 | 64 |
65 ############################################################################# | 65 ############################################################################# |
(...skipping 16 matching lines...) Expand all Loading... |
82 src:*/ppapi/proxy/proxy_channel.cc | 82 src:*/ppapi/proxy/proxy_channel.cc |
83 | 83 |
84 # obj/chrome/libbrowser.a(obj/chrome/browser/net/browser.predictor.o):../../chro
me/browser/net/predictor.cc:__unnamed_577: error: undefined reference to 'typein
fo for ProxyAdvisor' | 84 # obj/chrome/libbrowser.a(obj/chrome/browser/net/browser.predictor.o):../../chro
me/browser/net/predictor.cc:__unnamed_577: error: undefined reference to 'typein
fo for ProxyAdvisor' |
85 src:*/chrome/browser/net/predictor.cc | 85 src:*/chrome/browser/net/predictor.cc |
86 | 86 |
87 # obj/third_party/pdfium/libfpdfapi.a(obj/third_party/pdfium/core/src/fpdfapi/fp
df_render/fpdfapi.fpdf_render_text.o):../../third_party/pdfium/core/src/fpdfapi/
fpdf_render/:__unnamed_360: error: undefined reference to 'typeinfo for CPDF_Inl
ineImages' | 87 # obj/third_party/pdfium/libfpdfapi.a(obj/third_party/pdfium/core/src/fpdfapi/fp
df_render/fpdfapi.fpdf_render_text.o):../../third_party/pdfium/core/src/fpdfapi/
fpdf_render/:__unnamed_360: error: undefined reference to 'typeinfo for CPDF_Inl
ineImages' |
88 src:*/third_party/pdfium/core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp | 88 src:*/third_party/pdfium/core/src/fpdfapi/fpdf_render/fpdf_render_text.cpp |
89 | 89 |
90 # obj/third_party/libwebm/libwebm.a(obj/third_party/libwebm/source/libwebm.mkvmu
xer.o)(.data.rel..L__unnamed_2+0x18): error: undefined reference to 'typeinfo fo
r mkvparser::IMkvReader' | 90 # obj/third_party/libwebm/libwebm.a(obj/third_party/libwebm/source/libwebm.mkvmu
xer.o)(.data.rel..L__unnamed_2+0x18): error: undefined reference to 'typeinfo fo
r mkvparser::IMkvReader' |
91 src:*/third_party/libwebm/source/mkvmuxer.cpp | 91 src:*/third_party/libwebm/source/mkvmuxer.cpp |
OLD | NEW |