]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/xray/xray_interface_internal.h
Merge compiler-rt r291274.
[FreeBSD/FreeBSD.git] / contrib / compiler-rt / lib / xray / xray_interface_internal.h
1 //===-- xray_interface_internal.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 XRay, a dynamic runtime instrumentation system.
11 //
12 // Implementation of the API functions. See also include/xray/xray_interface.h.
13 //
14 //===----------------------------------------------------------------------===//
15 #ifndef XRAY_INTERFACE_INTERNAL_H
16 #define XRAY_INTERFACE_INTERNAL_H
17
18 #include "sanitizer_common/sanitizer_platform.h"
19 #include "xray/xray_interface.h"
20 #include <cstddef>
21 #include <cstdint>
22
23 extern "C" {
24
25 struct XRaySledEntry {
26 #if SANITIZER_WORDSIZE == 64
27   uint64_t Address;
28   uint64_t Function;
29   unsigned char Kind;
30   unsigned char AlwaysInstrument;
31   unsigned char Padding[14]; // Need 32 bytes
32 #elif SANITIZER_WORDSIZE == 32
33   uint32_t Address;
34   uint32_t Function;
35   unsigned char Kind;
36   unsigned char AlwaysInstrument;
37   unsigned char Padding[6]; // Need 16 bytes
38 #else
39 #error "Unsupported word size."
40 #endif
41 };
42 }
43
44 namespace __xray {
45
46 struct XRaySledMap {
47   const XRaySledEntry *Sleds;
48   size_t Entries;
49 };
50
51 uint64_t cycleFrequency();
52
53 bool patchFunctionEntry(bool Enable, uint32_t FuncId,
54                         const XRaySledEntry &Sled);
55 bool patchFunctionExit(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
56 bool patchFunctionTailExit(bool Enable, uint32_t FuncId,
57                            const XRaySledEntry &Sled);
58
59 } // namespace __xray
60
61 extern "C" {
62 // The following functions have to be defined in assembler, on a per-platform
63 // basis. See xray_trampoline_*.S files for implementations.
64 extern void __xray_FunctionEntry();
65 extern void __xray_FunctionExit();
66 extern void __xray_FunctionTailExit();
67 }
68
69 #endif