[runtime] Remove the usage of MONO_INTERNAL, use MONO_API to mark exported functions...
[mono.git] / mono / metadata / sgen-protocol.h
1 /*
2  * sgen-protocol.h: Binary protocol of internal activity, to aid
3  * debugging.
4  *
5  * Copyright 2001-2003 Ximian, Inc
6  * Copyright 2003-2010 Novell, Inc.
7  * Copyright (C) 2012 Xamarin Inc
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License 2.0 as published by the Free Software Foundation;
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License 2.0 along with this library; if not, write to the Free
20  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #ifndef __MONO_SGENPROTOCOL_H__
24 #define __MONO_SGENPROTOCOL_H__
25
26 #include "sgen-gc.h"
27
28 /* Special indices returned by MATCH_INDEX. */
29 #define BINARY_PROTOCOL_NO_MATCH (-1)
30 #define BINARY_PROTOCOL_MATCH (-2)
31
32 #define PROTOCOL_ID(method) method ## _id
33 #define PROTOCOL_STRUCT(method) method ## _struct
34
35 #define TYPE_INT int
36 #define TYPE_LONGLONG long long
37 #define TYPE_SIZE size_t
38 #define TYPE_POINTER gpointer
39
40 enum {
41 #define BEGIN_PROTOCOL_ENTRY0(method) PROTOCOL_ID(method),
42 #define BEGIN_PROTOCOL_ENTRY1(method,t1,f1) PROTOCOL_ID(method),
43 #define BEGIN_PROTOCOL_ENTRY2(method,t1,f1,t2,f2) PROTOCOL_ID(method),
44 #define BEGIN_PROTOCOL_ENTRY3(method,t1,f1,t2,f2,t3,f3) PROTOCOL_ID(method),
45 #define BEGIN_PROTOCOL_ENTRY4(method,t1,f1,t2,f2,t3,f3,t4,f4) PROTOCOL_ID(method),
46 #define BEGIN_PROTOCOL_ENTRY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) PROTOCOL_ID(method),
47 #define BEGIN_PROTOCOL_ENTRY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) PROTOCOL_ID(method),
48 #define BEGIN_PROTOCOL_ENTRY_HEAVY0(method) PROTOCOL_ID(method),
49 #define BEGIN_PROTOCOL_ENTRY_HEAVY1(method,t1,f1) PROTOCOL_ID(method),
50 #define BEGIN_PROTOCOL_ENTRY_HEAVY2(method,t1,f1,t2,f2) PROTOCOL_ID(method),
51 #define BEGIN_PROTOCOL_ENTRY_HEAVY3(method,t1,f1,t2,f2,t3,f3) PROTOCOL_ID(method),
52 #define BEGIN_PROTOCOL_ENTRY_HEAVY4(method,t1,f1,t2,f2,t3,f3,t4,f4) PROTOCOL_ID(method),
53 #define BEGIN_PROTOCOL_ENTRY_HEAVY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) PROTOCOL_ID(method),
54 #define BEGIN_PROTOCOL_ENTRY_HEAVY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) PROTOCOL_ID(method),
55
56 #define FLUSH()
57
58 #define DEFAULT_PRINT()
59 #define CUSTOM_PRINT(_)
60
61 #define IS_ALWAYS_MATCH(_)
62 #define MATCH_INDEX(_)
63 #define IS_VTABLE_MATCH(_)
64
65 #define END_PROTOCOL_ENTRY
66 #define END_PROTOCOL_ENTRY_HEAVY
67
68 #include "sgen-protocol-def.h"
69 };
70
71 #define BEGIN_PROTOCOL_ENTRY0(method)
72 #define BEGIN_PROTOCOL_ENTRY1(method,t1,f1) \
73         typedef struct { \
74                 t1 f1; \
75         } PROTOCOL_STRUCT(method);
76 #define BEGIN_PROTOCOL_ENTRY2(method,t1,f1,t2,f2) \
77         typedef struct { \
78                 t1 f1; \
79                 t2 f2; \
80         } PROTOCOL_STRUCT(method);
81 #define BEGIN_PROTOCOL_ENTRY3(method,t1,f1,t2,f2,t3,f3) \
82         typedef struct { \
83                 t1 f1; \
84                 t2 f2; \
85                 t3 f3; \
86         } PROTOCOL_STRUCT(method);
87 #define BEGIN_PROTOCOL_ENTRY4(method,t1,f1,t2,f2,t3,f3,t4,f4) \
88         typedef struct { \
89                 t1 f1; \
90                 t2 f2; \
91                 t3 f3; \
92                 t4 f4; \
93         } PROTOCOL_STRUCT(method);
94 #define BEGIN_PROTOCOL_ENTRY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) \
95         typedef struct { \
96                 t1 f1; \
97                 t2 f2; \
98                 t3 f3; \
99                 t4 f4; \
100                 t5 f5; \
101         } PROTOCOL_STRUCT(method);
102 #define BEGIN_PROTOCOL_ENTRY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) \
103         typedef struct { \
104                 t1 f1; \
105                 t2 f2; \
106                 t3 f3; \
107                 t4 f4; \
108                 t5 f5; \
109                 t6 f6; \
110         } PROTOCOL_STRUCT(method);
111
112 #define BEGIN_PROTOCOL_ENTRY_HEAVY0(method) \
113         BEGIN_PROTOCOL_ENTRY0 (method)
114 #define BEGIN_PROTOCOL_ENTRY_HEAVY1(method,t1,f1) \
115         BEGIN_PROTOCOL_ENTRY1 (method,t1,f1)
116 #define BEGIN_PROTOCOL_ENTRY_HEAVY2(method,t1,f1,t2,f2) \
117         BEGIN_PROTOCOL_ENTRY2 (method,t1,f1,t2,f2)
118 #define BEGIN_PROTOCOL_ENTRY_HEAVY3(method,t1,f1,t2,f2,t3,f3) \
119         BEGIN_PROTOCOL_ENTRY3 (method,t1,f1,t2,f2,t3,f3)
120 #define BEGIN_PROTOCOL_ENTRY_HEAVY4(method,t1,f1,t2,f2,t3,f3,t4,f4) \
121         BEGIN_PROTOCOL_ENTRY4 (method,t1,f1,t2,f2,t3,f3,t4,f4)
122 #define BEGIN_PROTOCOL_ENTRY_HEAVY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) \
123         BEGIN_PROTOCOL_ENTRY5 (method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5)
124 #define BEGIN_PROTOCOL_ENTRY_HEAVY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) \
125         BEGIN_PROTOCOL_ENTRY6 (method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6)
126
127 #define FLUSH()
128
129 #define DEFAULT_PRINT()
130 #define CUSTOM_PRINT(_)
131
132 #define IS_ALWAYS_MATCH(_)
133 #define MATCH_INDEX(_)
134 #define IS_VTABLE_MATCH(_)
135
136 #define END_PROTOCOL_ENTRY
137 #define END_PROTOCOL_ENTRY_HEAVY
138
139 #include "sgen-protocol-def.h"
140
141 /* missing: finalizers, roots, non-store wbarriers */
142
143 void binary_protocol_init (const char *filename, long long limit);
144 gboolean binary_protocol_is_enabled (void);
145
146 void binary_protocol_flush_buffers (gboolean force);
147
148 #define BEGIN_PROTOCOL_ENTRY0(method) \
149         void method (void);
150 #define BEGIN_PROTOCOL_ENTRY1(method,t1,f1) \
151         void method (t1 f1);
152 #define BEGIN_PROTOCOL_ENTRY2(method,t1,f1,t2,f2) \
153         void method (t1 f1, t2 f2);
154 #define BEGIN_PROTOCOL_ENTRY3(method,t1,f1,t2,f2,t3,f3) \
155         void method (t1 f1, t2 f2, t3 f3);
156 #define BEGIN_PROTOCOL_ENTRY4(method,t1,f1,t2,f2,t3,f3,t4,f4) \
157         void method (t1 f1, t2 f2, t3 f3, t4 f4);
158 #define BEGIN_PROTOCOL_ENTRY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) \
159         void method (t1 f1, t2 f2, t3 f3, t4 f4, t5 f5);
160 #define BEGIN_PROTOCOL_ENTRY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) \
161         void method (t1 f1, t2 f2, t3 f3, t4 f4, t5 f5, t6 f6);
162
163 #ifdef SGEN_HEAVY_BINARY_PROTOCOL
164 #define binary_protocol_is_heavy_enabled()      binary_protocol_is_enabled ()
165
166 #define BEGIN_PROTOCOL_ENTRY_HEAVY0(method) \
167         BEGIN_PROTOCOL_ENTRY0 (method)
168 #define BEGIN_PROTOCOL_ENTRY_HEAVY1(method,t1,f1) \
169         BEGIN_PROTOCOL_ENTRY1 (method,t1,f1)
170 #define BEGIN_PROTOCOL_ENTRY_HEAVY2(method,t1,f1,t2,f2) \
171         BEGIN_PROTOCOL_ENTRY2 (method,t1,f1,t2,f2)
172 #define BEGIN_PROTOCOL_ENTRY_HEAVY3(method,t1,f1,t2,f2,t3,f3) \
173         BEGIN_PROTOCOL_ENTRY3 (method,t1,f1,t2,f2,t3,f3)
174 #define BEGIN_PROTOCOL_ENTRY_HEAVY4(method,t1,f1,t2,f2,t3,f3,t4,f4) \
175         BEGIN_PROTOCOL_ENTRY4 (method,t1,f1,t2,f2,t3,f3,t4,f4)
176 #define BEGIN_PROTOCOL_ENTRY_HEAVY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) \
177         BEGIN_PROTOCOL_ENTRY5 (method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5)
178 #define BEGIN_PROTOCOL_ENTRY_HEAVY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) \
179         BEGIN_PROTOCOL_ENTRY6 (method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6)
180 #else
181 #define binary_protocol_is_heavy_enabled()      FALSE
182
183 #define BEGIN_PROTOCOL_ENTRY_HEAVY0(method) \
184         static inline void method (void) {}
185 #define BEGIN_PROTOCOL_ENTRY_HEAVY1(method,t1,f1) \
186         static inline void method (t1 f1) {}
187 #define BEGIN_PROTOCOL_ENTRY_HEAVY2(method,t1,f1,t2,f2) \
188         static inline void method (t1 f1, t2 f2) {}
189 #define BEGIN_PROTOCOL_ENTRY_HEAVY3(method,t1,f1,t2,f2,t3,f3) \
190         static inline void method (t1 f1, t2 f2, t3 f3) {}
191 #define BEGIN_PROTOCOL_ENTRY_HEAVY4(method,t1,f1,t2,f2,t3,f3,t4,f4) \
192         static inline void method (t1 f1, t2 f2, t3 f3, t4 f4) {}
193 #define BEGIN_PROTOCOL_ENTRY_HEAVY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) \
194         static inline void method (t1 f1, t2 f2, t3 f3, t4 f4, t5 f5) {}
195 #define BEGIN_PROTOCOL_ENTRY_HEAVY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) \
196         static inline void method (t1 f1, t2 f2, t3 f3, t4 f4, t5 f5, t6 f6) {}
197 #endif
198
199 #define FLUSH()
200
201 #define DEFAULT_PRINT()
202 #define CUSTOM_PRINT(_)
203
204 #define IS_ALWAYS_MATCH(_)
205 #define MATCH_INDEX(_)
206 #define IS_VTABLE_MATCH(_)
207
208 #define END_PROTOCOL_ENTRY
209 #define END_PROTOCOL_ENTRY_HEAVY
210
211 #include "sgen-protocol-def.h"
212
213 #undef TYPE_INT
214 #undef TYPE_LONGLONG
215 #undef TYPE_SIZE
216 #undef TYPE_POINTER
217
218 #endif