]> git.ipfire.org Git - thirdparty/gcc.git/blob - libsanitizer/sanitizer_common/sanitizer_common_interface.inc
Update GCC to autoconf 2.69, automake 1.15.1 (PR bootstrap/82856).
[thirdparty/gcc.git] / libsanitizer / sanitizer_common / sanitizer_common_interface.inc
1 //===-- sanitizer_common_interface.inc ------------------------------------===//
2 //
3 // This file is distributed under the University of Illinois Open Source
4 // License. See LICENSE.TXT for details.
5 //
6 //===----------------------------------------------------------------------===//
7 // Sanitizer Common interface list.
8 //===----------------------------------------------------------------------===//
9 INTERFACE_FUNCTION(__sanitizer_acquire_crash_state)
10 INTERFACE_FUNCTION(__sanitizer_annotate_contiguous_container)
11 INTERFACE_FUNCTION(__sanitizer_contiguous_container_find_bad_address)
12 INTERFACE_FUNCTION(__sanitizer_set_death_callback)
13 INTERFACE_FUNCTION(__sanitizer_set_report_path)
14 INTERFACE_FUNCTION(__sanitizer_set_report_fd)
15 INTERFACE_FUNCTION(__sanitizer_verify_contiguous_container)
16 INTERFACE_WEAK_FUNCTION(__sanitizer_report_error_summary)
17 INTERFACE_WEAK_FUNCTION(__sanitizer_sandbox_on_notify)
18 // Sanitizer weak hooks
19 INTERFACE_WEAK_FUNCTION(__sanitizer_weak_hook_memcmp)
20 INTERFACE_WEAK_FUNCTION(__sanitizer_weak_hook_strcmp)
21 INTERFACE_WEAK_FUNCTION(__sanitizer_weak_hook_strncmp)
22 INTERFACE_WEAK_FUNCTION(__sanitizer_weak_hook_strstr)
23 // Stacktrace interface.
24 INTERFACE_FUNCTION(__sanitizer_get_module_and_offset_for_pc)
25 INTERFACE_FUNCTION(__sanitizer_symbolize_global)
26 INTERFACE_FUNCTION(__sanitizer_symbolize_pc)
27 // Allocator interface.
28 INTERFACE_FUNCTION(__sanitizer_get_allocated_size)
29 INTERFACE_FUNCTION(__sanitizer_get_current_allocated_bytes)
30 INTERFACE_FUNCTION(__sanitizer_get_estimated_allocated_size)
31 INTERFACE_FUNCTION(__sanitizer_get_free_bytes)
32 INTERFACE_FUNCTION(__sanitizer_get_heap_size)
33 INTERFACE_FUNCTION(__sanitizer_get_ownership)
34 INTERFACE_FUNCTION(__sanitizer_get_unmapped_bytes)
35 INTERFACE_FUNCTION(__sanitizer_install_malloc_and_free_hooks)
36 INTERFACE_FUNCTION(__sanitizer_purge_allocator)
37 INTERFACE_FUNCTION(__sanitizer_print_memory_profile)
38 INTERFACE_WEAK_FUNCTION(__sanitizer_free_hook)
39 INTERFACE_WEAK_FUNCTION(__sanitizer_malloc_hook)