blob: 3778a88893e6b6efae256058c7599b3054a27653 [file] [log] [blame]
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +00001/*===- 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 Smithf1c93612014-03-21 18:47:23 +000010#ifndef PROFILE_INSTRPROFILING_H_
11#define PROFILE_INSTRPROFILING_H_
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +000012
Duncan P. N. Exon Smith8d02a2a2014-03-21 20:59:08 +000013#if defined(__FreeBSD__) && defined(__i386__)
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +000014
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +000015/* 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"
19typedef unsigned int uint32_t;
20typedef unsigned long long uint64_t;
Viktor Kutuzov9068dfa2014-03-26 12:00:44 +000021typedef uint32_t uintptr_t;
Duncan P. N. Exon Smith8d02a2a2014-03-21 20:59:08 +000022
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 Smith8353a262014-03-19 22:10:27 +000029
Duncan P. N. Exon Smith812dcae2014-03-21 18:29:24 +000030#define PROFILE_HEADER_SIZE 7
31
Duncan P. N. Exon Smith9edbae02014-03-20 20:00:44 +000032typedef struct __llvm_profile_data {
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +000033 const uint32_t NameSize;
34 const uint32_t NumCounters;
35 const uint64_t FuncHash;
36 const char *const Name;
Duncan P. N. Exon Smithf1212172014-03-20 19:44:31 +000037 uint64_t *const Counters;
Duncan P. N. Exon Smith9edbae02014-03-20 20:00:44 +000038} __llvm_profile_data;
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +000039
Duncan P. N. Exon Smithcf4bb962014-03-21 18:29:19 +000040/*!
41 * \brief Get required size for profile buffer.
42 */
43uint64_t __llvm_profile_get_size_for_buffer(void);
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +000044
45/*!
46 * \brief Write instrumentation data to the given buffer.
47 *
Duncan P. N. Exon Smithcf4bb962014-03-21 18:29:19 +000048 * \pre \c Buffer is the start of a buffer at least as big as \a
49 * __llvm_profile_get_size_for_buffer().
Duncan P. N. Exon Smith8353a262014-03-19 22:10:27 +000050 */
Duncan P. N. Exon Smithcf4bb962014-03-21 18:29:19 +000051int __llvm_profile_write_buffer(char *Buffer);
Duncan P. N. Exon Smithda0de8a22014-03-20 03:23:10 +000052
Justin Bognercc0d7ee2014-09-04 15:45:31 +000053const __llvm_profile_data *__llvm_profile_begin_data(void);
54const __llvm_profile_data *__llvm_profile_end_data(void);
55const char *__llvm_profile_begin_names(void);
56const char *__llvm_profile_end_names(void);
57uint64_t *__llvm_profile_begin_counters(void);
58uint64_t *__llvm_profile_end_counters(void);
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +000059
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +000060/*!
61 * \brief Write instrumentation data to the current file.
62 *
63 * Writes to the file with the last name given to \a __llvm_profile_set_filename(),
64 * or if it hasn't been called, the \c LLVM_PROFILE_FILE environment variable,
Eric Christopherd641b532015-04-28 22:54:51 +000065 * or if that's not set, the last name given to
66 * \a __llvm_profile_override_default_filename(), or if that's not set,
Diego Novilloeae95142015-07-09 17:21:52 +000067 * \c "default.profraw".
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +000068 */
69int __llvm_profile_write_file(void);
70
71/*!
72 * \brief Set the filename for writing instrumentation data.
73 *
74 * Sets the filename to be used for subsequent calls to
75 * \a __llvm_profile_write_file().
76 *
77 * \c Name is not copied, so it must remain valid. Passing NULL resets the
78 * filename logic to the default behaviour.
79 */
80void __llvm_profile_set_filename(const char *Name);
81
Eric Christopherd641b532015-04-28 22:54:51 +000082/*!
83 * \brief Set the filename for writing instrumentation data, unless the
84 * \c LLVM_PROFILE_FILE environment variable was set.
85 *
86 * Unless overridden, sets the filename to be used for subsequent calls to
87 * \a __llvm_profile_write_file().
88 *
89 * \c Name is not copied, so it must remain valid. Passing NULL resets the
90 * filename logic to the default behaviour (unless the \c LLVM_PROFILE_FILE
91 * was set in which case it has no effect).
92 */
93void __llvm_profile_override_default_filename(const char *Name);
94
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +000095/*! \brief Register to write instrumentation data to file at exit. */
96int __llvm_profile_register_write_file_atexit(void);
97
Duncan P. N. Exon Smith55e4d662014-05-17 01:27:30 +000098/*! \brief Initialize file handling. */
99void __llvm_profile_initialize_file(void);
Duncan P. N. Exon Smith08439882014-05-16 01:30:24 +0000100
Duncan P. N. Exon Smithbe0a5e12014-03-21 18:29:15 +0000101/*! \brief Get the magic token for the file format. */
102uint64_t __llvm_profile_get_magic(void);
103
104/*! \brief Get the version of the file format. */
105uint64_t __llvm_profile_get_version(void);
106
Duncan P. N. Exon Smithf1c93612014-03-21 18:47:23 +0000107#endif /* PROFILE_INSTRPROFILING_H_ */