Home | History | Annotate | Download | only in asan

Lines Matching full:globals

12 // Handle globals.
86 // so we store the globals in a map.
146 // Register an array of globals.
147 void __asan_register_globals(__asan_global *globals, uptr n) {
151 RegisterGlobal(&globals[i]);
155 // Unregister an array of globals.
157 void __asan_unregister_globals(__asan_global *globals, uptr n) {
161 UnregisterGlobal(&globals[i]);
166 // when all dynamically initialized globals are unpoisoned. This method
193 // all dynamically initialized globals except for those defined in the current
194 // TU are poisoned. It simply unpoisons all dynamically initialized globals.
201 // FIXME: Optionally report that we're unpoisoning globals from a module.