1 //===-- sanitizer/coverage_interface.h --------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Public interface for sanitizer coverage.
11 //===----------------------------------------------------------------------===//
12 
13 #ifndef SANITIZER_COVERAG_INTERFACE_H
14 #define SANITIZER_COVERAG_INTERFACE_H
15 
16 #include <sanitizer/common_interface_defs.h>
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
22   // Initialize coverage.
23   void __sanitizer_cov_init();
24   // Record and dump coverage info.
25   void __sanitizer_cov_dump();
26   // Open <name>.sancov.packed in the coverage directory and return the file
27   // descriptor. Returns -1 on failure, or if coverage dumping is disabled.
28   // This is intended for use by sandboxing code.
29   intptr_t __sanitizer_maybe_open_cov_file(const char *name);
30   // Get the number of total unique covered entities (blocks, edges, calls).
31   // This can be useful for coverage-directed in-process fuzzers.
32   uintptr_t __sanitizer_get_total_unique_coverage();
33 
34   // Reset the basic-block (edge) coverage to the initial state.
35   // Useful for in-process fuzzing to start collecting coverage from scratch.
36   // Experimental, will likely not work for multi-threaded process.
37   void __sanitizer_reset_coverage();
38   // Set *data to the array of covered PCs and return the size of that array.
39   // Some of the entries in *data will be zero.
40   uintptr_t __sanitizer_get_coverage_guards(uintptr_t **data);
41 
42 #ifdef __cplusplus
43 }  // extern "C"
44 #endif
45 
46 #endif  // SANITIZER_COVERAG_INTERFACE_H
47