Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
7540598041b8a8170b14ad5698f9cd0ca281457c
[simgrid.git] / acmacro / gras_arch.m4
1 # BEGIN OF GRAS ARCH CHECK
2 dnl
3 dnl GRAS_DO_CHECK_SIZEOF: Get the size of a datatype (even in cross-compile)
4 dnl  1: type tested
5 dnl  2: extra include lines
6 dnl  3: extra sizes to test
7 dnl ("adapted" from openldap)
8 dnl
9 AC_DEFUN([GRAS_DO_CHECK_SIZEOF],
10 [changequote(<<, >>)dnl 
11  dnl The cache variable name (and of the result). 
12  define(<<GRAS_CHECK_SIZEOF_RES>>, translit(ac_cv_sizeof_$1, [ *()], [_pLR]))dnl
13  changequote([, ])dnl 
14  AC_CACHE_VAL(GRAS_CHECK_SIZEOF_RES, 
15  [for ac_size in 4 8 1 2 16 $3 ; do # List sizes in rough order of prevalence. 
16    AC_COMPILE_IFELSE(AC_LANG_PROGRAM([#include "confdefs.h" 
17    #include <sys/types.h> 
18    $2 
19    ], [switch (0) case 0: case (sizeof ($1) == $ac_size):;]), GRAS_CHECK_SIZEOF_RES=$ac_size) 
20    if test x$GRAS_CHECK_SIZEOF_RES != x ; then break; fi 
21   done 
22  ]) 
23 ])
24
25 dnl
26 dnl GRAS_CHECK_SIZEOF: Get the size of a datatype (even in cross-compile), with msg display, and define the result
27 dnl  1: type tested
28 dnl  2: extra include lines
29 dnl  3: extra sizes to test
30 dnl ("adapted" from openldap)
31 dnl
32 AC_DEFUN([GRAS_CHECK_SIZEOF],
33 [AC_MSG_CHECKING(size of $1) 
34 GRAS_DO_CHECK_SIZEOF($1,$2)
35 if test x$GRAS_CHECK_SIZEOF_RES = x ; then 
36   AC_MSG_ERROR([cannot determine a size for $1]) 
37 fi 
38 AC_MSG_RESULT($GRAS_CHECK_SIZEOF_RES) 
39 ])
40
41 dnl
42 dnl GRAS_TWO_COMPLIMENT([type]): Make sure the type is two-compliment
43 dnl warning, this does not work with char (quite logical)
44 dnl
45 AC_DEFUN([GRAS_TWO_COMPLIMENT],
46 [
47 AC_MSG_CHECKING(whether $1 is two-compliment)
48 AC_RUN_IFELSE([AC_LANG_PROGRAM([[#include "confdefs.h"
49 union {
50    signed $1 testInt;
51    unsigned char bytes[sizeof($1)];
52 } intTester;
53 ]],[[
54    intTester.testInt = -2;
55    return ((unsigned int)intTester.bytes[0] +
56            (unsigned int)intTester.bytes[sizeof($1) - 1]) - 509; /* should be 0 */
57 ]])], dnl end of AC LANG PROGRAM
58 [two_compliment=yes],[two_compliment=no] )dnl end of AC COMPILE IFELSE
59
60 AC_MSG_RESULT($two_compliment)
61 if test x$two_compliment != xyes ; then
62   AC_MSG_ERROR([GRAS works only two-compliment integers (yet)])
63 fi
64 ])
65
66 dnl
67 dnl GRAS_SIGNED_SIZEOF: Get the size of the datatype, and make sure that
68 dnl signed, unsigned and unspecified have the same size
69 dnl
70 AC_DEFUN([GRAS_SIGNED_SIZEOF],
71 [AC_MSG_CHECKING(size of $1)
72 GRAS_DO_CHECK_SIZEOF($1,$2)
73 unspecif=$GRAS_CHECK_SIZEOF_RES
74 if test x$unspecif = x ; then
75   AC_MSG_ERROR([cannot determine a size for $1]) 
76 fi 
77
78 GRAS_DO_CHECK_SIZEOF(signed $1,$2)
79 signed=$GRAS_CHECK_SIZEOF_RES
80 if test x$signed = x ; then
81   AC_MSG_ERROR([cannot determine a size for signed $1]) 
82 fi 
83 if test x$unspecif != x$signed ; then
84   AC_MSG_ERROR(['signed $1' and '$1' have different sizes ! ($signed != $unspecif)]) 
85 fi 
86
87 GRAS_DO_CHECK_SIZEOF(unsigned $1,$2)
88 unsigned=$GRAS_CHECK_SIZEOF_RES
89 if test x$unsigned = x ; then
90   AC_MSG_ERROR([cannot determine a size for unsigned $1]) 
91 fi 
92 if test x$unsigned != x$signed ; then
93   AC_MSG_ERROR(['signed $1' and 'unsigned $1' have different sizes ! ($signed != $unsigned)]) 
94 fi 
95
96 AC_MSG_RESULT($GRAS_CHECK_SIZEOF_RES) 
97 ])
98
99 dnl
100 dnl End of CHECK_SIGNED_SIZEOF
101 dnl
102
103 # GRAS_STRUCT_BOUNDARY(): Check the minimal alignment boundary of $1 in structures
104 # ---------------------
105 # (using integer, I hope no arch let it change with the content)
106 AC_DEFUN([GRAS_STRUCT_BOUNDARY],
107 [changequote(<<, >>)dnl 
108  dnl The cache variable name (and of the result). 
109  define(<<GRAS_STRUCT_BOUNDARY_RES>>, translit(ac_cv_struct_boundary_$1, [ *()], [_pLR]))dnl
110  changequote([, ])dnl 
111  AC_MSG_CHECKING(for the minimal structure boundary of $1)
112
113  AC_CACHE_VAL(GRAS_STRUCT_BOUNDARY_RES, 
114  [for ac_size in 1 2 4 8 16 32 64 ; do # List sizes in rough order of prevalence. 
115    AC_COMPILE_IFELSE(AC_LANG_PROGRAM([#include "confdefs.h" 
116      #include <sys/types.h> 
117      struct s { char c; $1 i; };
118      ],[switch (0) case 0: case (sizeof (struct s) == $ac_size+sizeof($1)):;]), GRAS_STRUCT_BOUNDARY_RES=$ac_size)
119    if test x$GRAS_STRUCT_BOUNDARY_RES != x ; then break; fi 
120   done 
121  ])
122  AC_MSG_RESULT($GRAS_STRUCT_BOUNDARY_RES)
123 ])
124
125 # GRAS_ARCH(): check the gras_architecture of this plateform
126 # -----------
127 # The different cases here must be syncronized with the array in src/base/DataDesc/ddt_convert.c
128 #
129 AC_DEFUN([GRAS_ARCH],
130 [
131 # Check for the architecture
132 AC_C_BIGENDIAN(endian=1,endian=0,AC_MSG_ERROR([GRAS works only for little or big endian systems (yet)]))
133 dnl Make sure we don't run on a non-two-compliment arch, since we dunno convert them
134 GRAS_TWO_COMPLIMENT(int)
135 AC_DEFINE_UNQUOTED(GRAS_BIGENDIAN,$endian,[define if big endian])
136           
137 GRAS_SIGNED_SIZEOF(char)              GRAS_STRUCT_BOUNDARY(char)
138 GRAS_SIGNED_SIZEOF(short int)         GRAS_STRUCT_BOUNDARY(short int)
139 GRAS_SIGNED_SIZEOF(int)               GRAS_STRUCT_BOUNDARY(int)
140 GRAS_SIGNED_SIZEOF(long int)          GRAS_STRUCT_BOUNDARY(long int)
141 GRAS_SIGNED_SIZEOF(long long int)     GRAS_STRUCT_BOUNDARY(long long int)
142
143 GRAS_STRUCT_BOUNDARY(float)           GRAS_STRUCT_BOUNDARY(double)
144
145 GRAS_CHECK_SIZEOF(void *)             GRAS_STRUCT_BOUNDARY(void *)
146 GRAS_CHECK_SIZEOF(void (*) (void))    
147                                                                   
148
149 AC_MSG_CHECKING(the GRAS signature of this architecture)
150 if test x$endian = x1 ; then
151   trace_endian=B
152 else
153   trace_endian=l
154 fi
155 gras_arch=unknown
156 trace="$trace_endian"
157
158 trace="${trace}_C:${ac_cv_sizeof_char}/${ac_cv_struct_boundary_char}:"
159
160 trace="${trace}_I:${ac_cv_sizeof_short_int}/${ac_cv_struct_boundary_short_int}"
161 trace="${trace}:${ac_cv_sizeof_int}/${ac_cv_struct_boundary_int}"
162 trace="${trace}:${ac_cv_sizeof_long_int}/${ac_cv_struct_boundary_long_int}"
163 trace="${trace}:${ac_cv_sizeof_long_long_int}/${ac_cv_struct_boundary_long_long_int}:"
164
165 trace="${trace}_P:${ac_cv_sizeof_void_p}/${ac_cv_struct_boundary_void_p}"
166 trace="${trace}:${ac_cv_sizeof_void_LpR_LvoidR}/${ac_cv_struct_boundary_void_p}:"
167
168 trace="${trace}_D:4/${ac_cv_struct_boundary_float}:8/${ac_cv_struct_boundary_double}:"
169
170 # sizeof float/double are not tested since IEEE 754 is assumed.
171 # Check README.IEEE for rational.
172 case $trace in
173   l_C:1/1:_I:2/2:4/4:4/4:8/4:_P:4/4:4/4:_D:4/4:8/4:) gras_arch=0; gras_arch_name=little32;;
174   l_C:1/1:_I:2/2:4/4:8/8:8/8:_P:8/8:8/8:_D:4/4:8/8:) gras_arch=1; gras_arch_name=little64;;
175   B_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/8:) gras_arch=2; gras_arch_name=big32;;
176   B_C:1/1:_I:2/2:4/4:8/8:8/8:_P:8/8:8/8:_D:4/4:8/8:) gras_arch=3; gras_arch_name=big64;;
177   B_C:1/1:_I:2/2:4/4:4/4:8/8:_P:4/4:4/4:_D:4/4:8/4:) gras_arch=4; gras_arch_name=aix
178      AC_MSG_ERROR([GRAS does not work on AIX because  max_align != const])
179    ;;
180 esac
181 if test x$gras_arch = xunknown ; then
182   AC_MSG_RESULT([damnit ($trace)])
183   AC_MSG_ERROR([Impossible to determine the GRAS architecture signature.
184 Please report this architecture trace ($trace) and what it corresponds to.])
185 fi
186 echo "$as_me:$LINENO: GRAS trace of this machine: $trace" >&AS_MESSAGE_LOG_FD
187 AC_DEFINE_UNQUOTED(GRAS_THISARCH,$gras_arch,[defines the GRAS architecture signature of this machine])
188 AC_MSG_RESULT($gras_arch ($gras_arch_name))
189 ])
190 # END OF GRAS ARCH CHECK
191
192 AC_DEFUN([GRAS_CHECK_STRUCT_COMPACTION],
193 [  AC_MSG_CHECKING(whether the struct gets packed)
194    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "confdefs.h" 
195         #include <sys/types.h>
196         #include <stddef.h> /* offsetof() */
197         struct s {char c; double d;}; 
198        ]],[[switch (0) 
199         case 0: 
200         case (sizeof(struct s) == sizeof(double)+sizeof(char)):;
201        ]])],[gras_struct_packed=yes],[gras_struct_packed=no])
202      
203    AC_MSG_RESULT($gras_struct_packed)
204    if test x$gras_struct_packed = "xyes" ; then
205      AC_MSG_ERROR([GRAS does not support packed structures since it leads to nasty misalignments])
206    fi
207    
208    AC_MSG_CHECKING(whether the struct gets compacted)
209    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "confdefs.h" 
210         #include <sys/types.h>
211         #include <stddef.h> /* offsetof() */
212         struct s {double d; int i; char c;}; 
213        ]],[[switch (0) 
214         case 0: 
215         case (offsetof(struct s,c) == sizeof(double)+sizeof(int)):;
216        ]])],[gras_struct_compact=yes],[gras_struct_compact=no])
217      
218    AC_MSG_RESULT($gras_struct_compact)
219    
220    if test x$gras_struct_compact != xyes ; then
221      AC_MSG_ERROR([GRAS works only on structure compacting architectures (yet)])
222    fi
223    AC_DEFINE_UNQUOTED(GRAS_STRUCT_COMPACT, 1,
224       [Defined if structures are compacted when possible.
225           
226        Consider this structure: struct s {double d; int i; char c;}; 
227           
228        If it is allowed, the char is placed just after the int. If not,
229        it has to be on the 8 bytes boundary imposed by the double.
230        
231        For now, GRAS requires the structures to be compacted.
232       ])
233    AC_MSG_CHECKING(whether arrays can straddle struct alignment boundaries)
234
235    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "confdefs.h" 
236       #include <sys/types.h>
237         #include <stddef.h> /* offsetof() */
238         struct s { double d; int i; char c[6]; };
239      ]],[[switch (0) 
240       case 0: 
241       case (offsetof(struct s,c) == sizeof(double)+sizeof(int)):;
242      ]])],[gras_array_straddle_struct=yes],[gras_array_straddle_struct=no])
243      
244    AC_MSG_RESULT($gras_array_straddle_struct)
245
246    if test x$gras_array_straddle_struct = xyes ; then
247      AC_DEFINE_UNQUOTED(GRAS_ARRAY_STRADDLE_STRUCT, 1,
248         [Defined if arrays in struct can straddle struct alignment boundaries.
249         
250          This is like than the structure compaction above, but this time,
251          the argument to be compacted is an array whom each element would be
252          normally compacted. Exemple:
253          
254          struct s { double d; int i; char c[6]; };
255          
256          Arrays can straddle if c is allowed to come just after i.
257          
258          Note that GRAS only support architecture presenting this
259          caracteristic so far.
260         ])
261    else
262      AC_MSG_ERROR([GRAS can only work on architectures allowing array fields to straddle alignment boundaries (yet)])
263    fi
264 ])
265 # END OF GRAS CHECK STRUCT COMPACTION
266
267 AC_DEFUN([GRAS_C_COMPACT_STRUCT],
268 [  AC_MSG_CHECKING(whether the struct gets compacted)
269    AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include "confdefs.h" 
270         #include <sys/types.h>
271         #include <stddef.h> /* offsetof() */
272         struct s {double d; int a; int b;}; 
273        ]],[[switch (0) 
274         case 0: 
275         case (offsetof(struct s,b) == sizeof(double)+sizeof(int)):;
276        ]])],[gras_compact_struct=yes],[gras_compact_struct=no])
277      
278    AC_MSG_RESULT($gras_compact_struct)
279    
280    if test x$gras_compact_struct = xyes ; then
281      AC_DEFINE_UNQUOTED(GRAS_COMPACT_STRUCT, 1,
282           [Defined if structures are compacted when possible])
283    fi     
284 ])
285 # END OF GRAS COMPACT STRUCT
286