Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 1 | /*===- InstrProfiling.h- Support library for PGO instrumentation ----------===*\ |
| 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 | |
Duncan P. N. Exon Smith | f1c9361 | 2014-03-21 18:47:23 +0000 | [diff] [blame] | 10 | #ifndef PROFILE_INSTRPROFILING_H_ |
| 11 | #define PROFILE_INSTRPROFILING_H_ |
Duncan P. N. Exon Smith | be0a5e1 | 2014-03-21 18:29:15 +0000 | [diff] [blame] | 12 | |
Duncan P. N. Exon Smith | 8d02a2a | 2014-03-21 20:59:08 +0000 | [diff] [blame] | 13 | #if defined(__FreeBSD__) && defined(__i386__) |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 14 | |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 15 | /* System headers define 'size_t' incorrectly on x64 FreeBSD (prior to |
| 16 | * FreeBSD 10, r232261) when compiled in 32-bit mode. |
| 17 | */ |
| 18 | #define PRIu64 "llu" |
| 19 | typedef unsigned int uint32_t; |
| 20 | typedef unsigned long long uint64_t; |
Viktor Kutuzov | 9068dfa | 2014-03-26 12:00:44 +0000 | [diff] [blame] | 21 | typedef uint32_t uintptr_t; |
Duncan P. N. Exon Smith | 8d02a2a | 2014-03-21 20:59:08 +0000 | [diff] [blame] | 22 | |
| 23 | #else /* defined(__FreeBSD__) && defined(__i386__) */ |
| 24 | |
| 25 | #include <inttypes.h> |
| 26 | #include <stdint.h> |
| 27 | |
| 28 | #endif /* defined(__FreeBSD__) && defined(__i386__) */ |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 29 | |
Duncan P. N. Exon Smith | 812dcae | 2014-03-21 18:29:24 +0000 | [diff] [blame] | 30 | |
Duncan P. N. Exon Smith | 9edbae0 | 2014-03-20 20:00:44 +0000 | [diff] [blame] | 31 | typedef struct __llvm_profile_data { |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 32 | const uint32_t NameSize; |
| 33 | const uint32_t NumCounters; |
| 34 | const uint64_t FuncHash; |
Xinliang David Li | 470bfa9 | 2015-11-08 18:00:13 +0000 | [diff] [blame^] | 35 | const char *const NamePtr; |
| 36 | uint64_t *const CounterPtr; |
Duncan P. N. Exon Smith | 9edbae0 | 2014-03-20 20:00:44 +0000 | [diff] [blame] | 37 | } __llvm_profile_data; |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 38 | |
Xinliang David Li | 4da5de9 | 2015-10-16 22:21:56 +0000 | [diff] [blame] | 39 | typedef struct __llvm_profile_header { |
| 40 | uint64_t Magic; |
| 41 | uint64_t Version; |
| 42 | uint64_t DataSize; |
| 43 | uint64_t CountersSize; |
| 44 | uint64_t NamesSize; |
| 45 | uint64_t CountersDelta; |
| 46 | uint64_t NamesDelta; |
| 47 | } __llvm_profile_header; |
| 48 | |
| 49 | |
Duncan P. N. Exon Smith | cf4bb96 | 2014-03-21 18:29:19 +0000 | [diff] [blame] | 50 | /*! |
| 51 | * \brief Get required size for profile buffer. |
| 52 | */ |
| 53 | uint64_t __llvm_profile_get_size_for_buffer(void); |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 54 | |
| 55 | /*! |
| 56 | * \brief Write instrumentation data to the given buffer. |
| 57 | * |
Duncan P. N. Exon Smith | cf4bb96 | 2014-03-21 18:29:19 +0000 | [diff] [blame] | 58 | * \pre \c Buffer is the start of a buffer at least as big as \a |
| 59 | * __llvm_profile_get_size_for_buffer(). |
Duncan P. N. Exon Smith | 8353a26 | 2014-03-19 22:10:27 +0000 | [diff] [blame] | 60 | */ |
Duncan P. N. Exon Smith | cf4bb96 | 2014-03-21 18:29:19 +0000 | [diff] [blame] | 61 | int __llvm_profile_write_buffer(char *Buffer); |
Duncan P. N. Exon Smith | da0de8a2 | 2014-03-20 03:23:10 +0000 | [diff] [blame] | 62 | |
Justin Bogner | cc0d7ee | 2014-09-04 15:45:31 +0000 | [diff] [blame] | 63 | const __llvm_profile_data *__llvm_profile_begin_data(void); |
| 64 | const __llvm_profile_data *__llvm_profile_end_data(void); |
| 65 | const char *__llvm_profile_begin_names(void); |
| 66 | const char *__llvm_profile_end_names(void); |
| 67 | uint64_t *__llvm_profile_begin_counters(void); |
| 68 | uint64_t *__llvm_profile_end_counters(void); |
Duncan P. N. Exon Smith | be0a5e1 | 2014-03-21 18:29:15 +0000 | [diff] [blame] | 69 | |
Duncan P. N. Exon Smith | be0a5e1 | 2014-03-21 18:29:15 +0000 | [diff] [blame] | 70 | /*! |
| 71 | * \brief Write instrumentation data to the current file. |
| 72 | * |
| 73 | * Writes to the file with the last name given to \a __llvm_profile_set_filename(), |
| 74 | * or if it hasn't been called, the \c LLVM_PROFILE_FILE environment variable, |
Eric Christopher | d641b53 | 2015-04-28 22:54:51 +0000 | [diff] [blame] | 75 | * or if that's not set, the last name given to |
| 76 | * \a __llvm_profile_override_default_filename(), or if that's not set, |
Diego Novillo | eae9514 | 2015-07-09 17:21:52 +0000 | [diff] [blame] | 77 | * \c "default.profraw". |
Duncan P. N. Exon Smith | be0a5e1 | 2014-03-21 18:29:15 +0000 | [diff] [blame] | 78 | */ |
| 79 | int __llvm_profile_write_file(void); |
| 80 | |
| 81 | /*! |
| 82 | * \brief Set the filename for writing instrumentation data. |
| 83 | * |
| 84 | * Sets the filename to be used for subsequent calls to |
| 85 | * \a __llvm_profile_write_file(). |
| 86 | * |
| 87 | * \c Name is not copied, so it must remain valid. Passing NULL resets the |
| 88 | * filename logic to the default behaviour. |
| 89 | */ |
| 90 | void __llvm_profile_set_filename(const char *Name); |
| 91 | |
Eric Christopher | d641b53 | 2015-04-28 22:54:51 +0000 | [diff] [blame] | 92 | /*! |
| 93 | * \brief Set the filename for writing instrumentation data, unless the |
| 94 | * \c LLVM_PROFILE_FILE environment variable was set. |
| 95 | * |
| 96 | * Unless overridden, sets the filename to be used for subsequent calls to |
| 97 | * \a __llvm_profile_write_file(). |
| 98 | * |
| 99 | * \c Name is not copied, so it must remain valid. Passing NULL resets the |
| 100 | * filename logic to the default behaviour (unless the \c LLVM_PROFILE_FILE |
| 101 | * was set in which case it has no effect). |
| 102 | */ |
| 103 | void __llvm_profile_override_default_filename(const char *Name); |
| 104 | |
Duncan P. N. Exon Smith | be0a5e1 | 2014-03-21 18:29:15 +0000 | [diff] [blame] | 105 | /*! \brief Register to write instrumentation data to file at exit. */ |
| 106 | int __llvm_profile_register_write_file_atexit(void); |
| 107 | |
Duncan P. N. Exon Smith | 55e4d66 | 2014-05-17 01:27:30 +0000 | [diff] [blame] | 108 | /*! \brief Initialize file handling. */ |
| 109 | void __llvm_profile_initialize_file(void); |
Duncan P. N. Exon Smith | 0843988 | 2014-05-16 01:30:24 +0000 | [diff] [blame] | 110 | |
Duncan P. N. Exon Smith | be0a5e1 | 2014-03-21 18:29:15 +0000 | [diff] [blame] | 111 | /*! \brief Get the magic token for the file format. */ |
| 112 | uint64_t __llvm_profile_get_magic(void); |
| 113 | |
| 114 | /*! \brief Get the version of the file format. */ |
| 115 | uint64_t __llvm_profile_get_version(void); |
| 116 | |
Duncan P. N. Exon Smith | f1c9361 | 2014-03-21 18:47:23 +0000 | [diff] [blame] | 117 | #endif /* PROFILE_INSTRPROFILING_H_ */ |