X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fsgen%2Fsgen-protocol.h;h=8b82dc3794aee3a4eb19c7bf3b06da97f34115db;hb=aabcc3e60ebb0c6ed181398b5b7bb9f12fa889df;hp=5ec3680fc5a58018a358eaa583afdf9613753ddf;hpb=32f2f7c898abd259b447eb318e9664e518ea6807;p=mono.git diff --git a/mono/sgen/sgen-protocol.h b/mono/sgen/sgen-protocol.h index 5ec3680fc5a..8b82dc3794a 100644 --- a/mono/sgen/sgen-protocol.h +++ b/mono/sgen/sgen-protocol.h @@ -1,6 +1,6 @@ -/* - * sgen-protocol.h: Binary protocol of internal activity, to aid - * debugging. +/** + * \file + * Binary protocol of internal activity, to aid debugging. * * Copyright 2001-2003 Ximian, Inc * Copyright 2003-2010 Novell, Inc. @@ -14,6 +14,15 @@ #include "sgen-gc.h" +#define PROTOCOL_HEADER_CHECK 0xde7ec7ab1ec0de +/* + * The version needs to be bumped every time we introduce breaking changes (like + * adding new protocol entries or various format changes). The latest protocol grepper + * should be able to handle all the previous versions, while an old grepper will + * be able to tell if it cannot handle the format. + */ +#define PROTOCOL_HEADER_VERSION 2 + /* Special indices returned by MATCH_INDEX. */ #define BINARY_PROTOCOL_NO_MATCH (-1) #define BINARY_PROTOCOL_MATCH (-2) @@ -22,11 +31,21 @@ #define PROTOCOL_STRUCT(method) method ## _struct #define CLIENT_PROTOCOL_NAME(method) sgen_client_ ## method +#ifndef TYPE_INT #define TYPE_INT int +#endif +#ifndef TYPE_LONGLONG #define TYPE_LONGLONG long long +#endif +#ifndef TYPE_SIZE #define TYPE_SIZE size_t +#endif +#ifndef TYPE_POINTER #define TYPE_POINTER gpointer +#endif +#ifndef TYPE_BOOL #define TYPE_BOOL gboolean +#endif enum { #define BEGIN_PROTOCOL_ENTRY0(method) PROTOCOL_ID(method), @@ -58,31 +77,44 @@ enum { #include "sgen-protocol-def.h" }; +/* We pack all protocol structs by default unless specified otherwise */ +#ifndef PROTOCOL_STRUCT_ATTR + +#define PROTOCOL_PACK_STRUCTS + +#if defined(__GNUC__) +#define PROTOCOL_STRUCT_ATTR __attribute__ ((__packed__)) +#else +#define PROTOCOL_STRUCT_ATTR +#endif + +#endif + #define BEGIN_PROTOCOL_ENTRY0(method) #define BEGIN_PROTOCOL_ENTRY1(method,t1,f1) \ - typedef struct { \ + typedef struct PROTOCOL_STRUCT_ATTR { \ t1 f1; \ } PROTOCOL_STRUCT(method); #define BEGIN_PROTOCOL_ENTRY2(method,t1,f1,t2,f2) \ - typedef struct { \ + typedef struct PROTOCOL_STRUCT_ATTR { \ t1 f1; \ t2 f2; \ } PROTOCOL_STRUCT(method); #define BEGIN_PROTOCOL_ENTRY3(method,t1,f1,t2,f2,t3,f3) \ - typedef struct { \ + typedef struct PROTOCOL_STRUCT_ATTR { \ t1 f1; \ t2 f2; \ t3 f3; \ } PROTOCOL_STRUCT(method); #define BEGIN_PROTOCOL_ENTRY4(method,t1,f1,t2,f2,t3,f3,t4,f4) \ - typedef struct { \ + typedef struct PROTOCOL_STRUCT_ATTR { \ t1 f1; \ t2 f2; \ t3 f3; \ t4 f4; \ } PROTOCOL_STRUCT(method); #define BEGIN_PROTOCOL_ENTRY5(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5) \ - typedef struct { \ + typedef struct PROTOCOL_STRUCT_ATTR { \ t1 f1; \ t2 f2; \ t3 f3; \ @@ -90,7 +122,7 @@ enum { t5 f5; \ } PROTOCOL_STRUCT(method); #define BEGIN_PROTOCOL_ENTRY6(method,t1,f1,t2,f2,t3,f3,t4,f4,t5,f5,t6,f6) \ - typedef struct { \ + typedef struct PROTOCOL_STRUCT_ATTR { \ t1 f1; \ t2 f2; \ t3 f3; \ @@ -125,14 +157,22 @@ enum { #define END_PROTOCOL_ENTRY_FLUSH #define END_PROTOCOL_ENTRY_HEAVY +#if defined(_MSC_VER) && defined(PROTOCOL_PACK_STRUCTS) +#pragma pack(push) +#pragma pack(1) +#endif #include "sgen-protocol-def.h" +#if defined(_MSC_VER) && defined(PROTOCOL_PACK_STRUCTS) +#pragma pack(pop) +#undef PROTOCOL_PACK_STRUCTS +#endif /* missing: finalizers, roots, non-store wbarriers */ void binary_protocol_init (const char *filename, long long limit); gboolean binary_protocol_is_enabled (void); -void binary_protocol_flush_buffers (gboolean force); +gboolean binary_protocol_flush_buffers (gboolean force); #define BEGIN_PROTOCOL_ENTRY0(method) \ void method (void);