Derek Bruening | 8863985 | 2016-05-25 02:04:04 +0000 | [diff] [blame] | 1 | //===-- working_set.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 | // This file is a part of EfficiencySanitizer, a family of performance tuners. |
| 11 | // |
| 12 | // Header for working-set-specific code. |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef WORKING_SET_H |
| 16 | #define WORKING_SET_H |
| 17 | |
| 18 | #include "interception/interception.h" |
| 19 | #include "sanitizer_common/sanitizer_internal_defs.h" |
| 20 | |
| 21 | namespace __esan { |
| 22 | |
| 23 | void initializeWorkingSet(); |
| 24 | int finalizeWorkingSet(); |
| 25 | void processRangeAccessWorkingSet(uptr PC, uptr Addr, SIZE_T Size, |
| 26 | bool IsWrite); |
| 27 | |
| 28 | } // namespace __esan |
| 29 | |
| 30 | #endif // WORKING_SET_H |