]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/compiler-rt/lib/xray/xray_interface_internal.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r304149, and update
[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 struct XRayFunctionSledIndex {
44   const XRaySledEntry* Begin;
45   const XRaySledEntry* End;
46 };
47 }
48
49 namespace __xray {
50
51 struct XRaySledMap {
52   const XRaySledEntry *Sleds;
53   size_t Entries;
54   const XRayFunctionSledIndex *SledsIndex;
55   size_t Functions;
56 };
57
58 bool patchFunctionEntry(bool Enable, uint32_t FuncId,
59                         const XRaySledEntry &Sled, void (*Trampoline)());
60 bool patchFunctionExit(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
61 bool patchFunctionTailExit(bool Enable, uint32_t FuncId,
62                            const XRaySledEntry &Sled);
63 bool patchCustomEvent(bool Enable, uint32_t FuncId, const XRaySledEntry &Sled);
64
65 } // namespace __xray
66
67 extern "C" {
68 // The following functions have to be defined in assembler, on a per-platform
69 // basis. See xray_trampoline_*.S files for implementations.
70 extern void __xray_FunctionEntry();
71 extern void __xray_FunctionExit();
72 extern void __xray_FunctionTailExit();
73 extern void __xray_ArgLoggerEntry();
74 extern void __xray_CustomEvent();
75 }
76
77 #endif