| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 | 110 |
| 111 # Remove once function attribute level blacklisting is implemented. | 111 # Remove once function attribute level blacklisting is implemented. |
| 112 # See crbug.com/476063. | 112 # See crbug.com/476063. |
| 113 fun:*forbidGCDuringConstruction* | 113 fun:*forbidGCDuringConstruction* |
| 114 | 114 |
| 115 ############################################################################# | 115 ############################################################################# |
| 116 # UBsan goes into an infinite recursion when __dynamic_cast instrumented with | 116 # UBsan goes into an infinite recursion when __dynamic_cast instrumented with |
| 117 # "vptr". See crbug.com/609786. | 117 # "vptr". See crbug.com/609786. |
| 118 | 118 |
| 119 src:*/third_party/libc\+\+abi/trunk/src/private_typeinfo.cpp | 119 src:*/third_party/libc\+\+abi/trunk/src/private_typeinfo.cpp |
| 120 |
| 121 ############################################################################# |
| 122 # invalid downcasts for IPC messages |
| 123 # https://crbug.com/520760 |
| 124 src:*nacl_message_scanner.cc |
| OLD | NEW |