]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/include/sanitizer/coverage_interface.h
Update the device tree source files to a Linux 4.7-RC.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / include / sanitizer / coverage_interface.h
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 unique covered blocks (or edges).
31   // This can be useful for coverage-directed in-process fuzzers.
32   uintptr_t __sanitizer_get_total_unique_coverage();
33   // Get the number of unique indirect caller-callee pairs.
34   uintptr_t __sanitizer_get_total_unique_caller_callee_pairs();
35
36   // Reset the basic-block (edge) coverage to the initial state.
37   // Useful for in-process fuzzing to start collecting coverage from scratch.
38   // Experimental, will likely not work for multi-threaded process.
39   void __sanitizer_reset_coverage();
40   // Set *data to the array of covered PCs and return the size of that array.
41   // Some of the entries in *data will be zero.
42   uintptr_t __sanitizer_get_coverage_guards(uintptr_t **data);
43
44   // Set *data to the growing buffer with covered PCs and return the size
45   // of the buffer. The entries are never zero.
46   // When only unique pcs are collected, the size is equal to
47   // __sanitizer_get_total_unique_coverage.
48   // WARNING: EXPERIMENTAL API.
49   uintptr_t __sanitizer_get_coverage_pc_buffer(uintptr_t **data);
50
51   // The coverage instrumentation may optionally provide imprecise counters.
52   // Rather than exposing the counter values to the user we instead map
53   // the counters to a bitset.
54   // Every counter is associated with 8 bits in the bitset.
55   // We define 8 value ranges: 1, 2, 3, 4-7, 8-15, 16-31, 32-127, 128+
56   // The i-th bit is set to 1 if the counter value is in the i-th range.
57   // This counter-based coverage implementation is *not* thread-safe.
58
59   // Returns the number of registered coverage counters.
60   uintptr_t __sanitizer_get_number_of_counters();
61   // Updates the counter 'bitset', clears the counters and returns the number of
62   // new bits in 'bitset'.
63   // If 'bitset' is nullptr, only clears the counters.
64   // Otherwise 'bitset' should be at least
65   // __sanitizer_get_number_of_counters bytes long and 8-aligned.
66   uintptr_t
67   __sanitizer_update_counter_bitset_and_clear_counters(uint8_t *bitset);
68 #ifdef __cplusplus
69 }  // extern "C"
70 #endif
71
72 #endif  // SANITIZER_COVERAG_INTERFACE_H