xref: /PHP-8.0/Zend/Zend.m4 (revision 3725717d)
1dnl This file contains Zend specific autoconf macros.
2
3dnl
4dnl ZEND_CHECK_FLOAT_PRECISION
5dnl
6dnl x87 floating point internal precision control checks
7dnl See: http://wiki.php.net/rfc/rounding
8dnl
9AC_DEFUN([ZEND_CHECK_FLOAT_PRECISION],[
10  AC_MSG_CHECKING([for usable _FPU_SETCW])
11  AC_LINK_IFELSE([AC_LANG_PROGRAM([[
12    #include <fpu_control.h>
13  ]],[[
14    fpu_control_t fpu_oldcw, fpu_cw;
15    volatile double result;
16    double a = 2877.0;
17    volatile double b = 1000000.0;
18
19    _FPU_GETCW(fpu_oldcw);
20    fpu_cw = (fpu_oldcw & ~_FPU_EXTENDED & ~_FPU_SINGLE) | _FPU_DOUBLE;
21    _FPU_SETCW(fpu_cw);
22    result = a / b;
23    _FPU_SETCW(fpu_oldcw);
24  ]])],[ac_cfp_have__fpu_setcw=yes],[ac_cfp_have__fpu_setcw=no])
25  if test "$ac_cfp_have__fpu_setcw" = "yes" ; then
26    AC_DEFINE(HAVE__FPU_SETCW, 1, [whether _FPU_SETCW is present and usable])
27    AC_MSG_RESULT(yes)
28  else
29    AC_MSG_RESULT(no)
30  fi
31
32  AC_MSG_CHECKING([for usable fpsetprec])
33  AC_LINK_IFELSE([AC_LANG_PROGRAM([[
34    #include <machine/ieeefp.h>
35  ]],[[
36    fp_prec_t fpu_oldprec;
37    volatile double result;
38    double a = 2877.0;
39    volatile double b = 1000000.0;
40
41    fpu_oldprec = fpgetprec();
42    fpsetprec(FP_PD);
43    result = a / b;
44    fpsetprec(fpu_oldprec);
45  ]])], [ac_cfp_have_fpsetprec=yes], [ac_cfp_have_fpsetprec=no])
46  if test "$ac_cfp_have_fpsetprec" = "yes" ; then
47    AC_DEFINE(HAVE_FPSETPREC, 1, [whether fpsetprec is present and usable])
48    AC_MSG_RESULT(yes)
49  else
50    AC_MSG_RESULT(no)
51  fi
52
53  AC_MSG_CHECKING([for usable _controlfp])
54  AC_LINK_IFELSE([AC_LANG_PROGRAM([[
55    #include <float.h>
56  ]],[[
57    unsigned int fpu_oldcw;
58    volatile double result;
59    double a = 2877.0;
60    volatile double b = 1000000.0;
61
62    fpu_oldcw = _controlfp(0, 0);
63    _controlfp(_PC_53, _MCW_PC);
64    result = a / b;
65    _controlfp(fpu_oldcw, _MCW_PC);
66  ]])], [ac_cfp_have__controlfp=yes], [ac_cfp_have__controlfp=no])
67  if test "$ac_cfp_have__controlfp" = "yes" ; then
68    AC_DEFINE(HAVE__CONTROLFP, 1, [whether _controlfp is present usable])
69    AC_MSG_RESULT(yes)
70  else
71    AC_MSG_RESULT(no)
72  fi
73
74  AC_MSG_CHECKING([for usable _controlfp_s])
75  AC_LINK_IFELSE([AC_LANG_PROGRAM([[
76   #include <float.h>
77  ]],[[
78    unsigned int fpu_oldcw, fpu_cw;
79    volatile double result;
80    double a = 2877.0;
81    volatile double b = 1000000.0;
82
83    _controlfp_s(&fpu_cw, 0, 0);
84    fpu_oldcw = fpu_cw;
85    _controlfp_s(&fpu_cw, _PC_53, _MCW_PC);
86    result = a / b;
87    _controlfp_s(&fpu_cw, fpu_oldcw, _MCW_PC);
88  ]])], [ac_cfp_have__controlfp_s=yes], [ac_cfp_have__controlfp_s=no])
89  if test "$ac_cfp_have__controlfp_s" = "yes" ; then
90    AC_DEFINE(HAVE__CONTROLFP_S, 1, [whether _controlfp_s is present and usable])
91    AC_MSG_RESULT(yes)
92  else
93    AC_MSG_RESULT(no)
94  fi
95
96  AC_MSG_CHECKING([whether FPU control word can be manipulated by inline assembler])
97  AC_LINK_IFELSE([AC_LANG_PROGRAM([[
98    /* nothing */
99  ]],[[
100    unsigned int oldcw, cw;
101    volatile double result;
102    double a = 2877.0;
103    volatile double b = 1000000.0;
104
105    __asm__ __volatile__ ("fnstcw %0" : "=m" (*&oldcw));
106    cw = (oldcw & ~0x0 & ~0x300) | 0x200;
107    __asm__ __volatile__ ("fldcw %0" : : "m" (*&cw));
108
109    result = a / b;
110
111    __asm__ __volatile__ ("fldcw %0" : : "m" (*&oldcw));
112  ]])], [ac_cfp_have_fpu_inline_asm_x86=yes], [ac_cfp_have_fpu_inline_asm_x86=no])
113  if test "$ac_cfp_have_fpu_inline_asm_x86" = "yes" ; then
114    AC_DEFINE(HAVE_FPU_INLINE_ASM_X86, 1, [whether FPU control word can be manipulated by inline assembler])
115    AC_MSG_RESULT(yes)
116  else
117    AC_MSG_RESULT(no)
118  fi
119])
120
121dnl
122dnl LIBZEND_BASIC_CHECKS
123dnl
124dnl Basic checks specific for the Zend engine library.
125dnl
126AC_DEFUN([LIBZEND_BASIC_CHECKS],[
127AC_REQUIRE([AC_PROG_CC])
128
129AC_CHECK_HEADERS([cpuid.h])
130
131dnl
132dnl LIBZEND_DLSYM_CHECK
133dnl
134dnl Ugly hack to check if dlsym() requires a leading underscore in symbol name.
135dnl
136AC_DEFUN([LIBZEND_DLSYM_CHECK],[
137AC_MSG_CHECKING([whether dlsym() requires a leading underscore in symbol names])
138_LT_AC_TRY_DLOPEN_SELF([
139  AC_MSG_RESULT(no)
140], [
141  AC_MSG_RESULT(yes)
142  AC_DEFINE(DLSYM_NEEDS_UNDERSCORE, 1, [Define if dlsym() requires a leading underscore in symbol names. ])
143], [
144  AC_MSG_RESULT(no)
145], [])
146])
147
148dnl Checks for library functions.
149AC_CHECK_FUNCS(getpid kill sigsetjmp)
150
151ZEND_CHECK_FLOAT_PRECISION
152])
153
154dnl
155dnl LIBZEND_OTHER_CHECKS
156dnl
157AC_DEFUN([LIBZEND_OTHER_CHECKS],[
158
159AC_MSG_CHECKING(whether to enable thread-safety)
160AC_MSG_RESULT($ZEND_ZTS)
161
162AC_MSG_CHECKING(whether to enable Zend debugging)
163AC_MSG_RESULT($ZEND_DEBUG)
164
165if test "$ZEND_DEBUG" = "yes"; then
166  AC_DEFINE(ZEND_DEBUG,1,[ ])
167  echo " $CFLAGS" | grep ' -g' >/dev/null || DEBUG_CFLAGS="-g"
168  if test "$CFLAGS" = "-g -O2"; then
169  	CFLAGS=-g
170  fi
171else
172  AC_DEFINE(ZEND_DEBUG,0,[ ])
173fi
174
175test -n "$GCC" && CFLAGS="-Wall -Wextra -Wno-strict-aliasing -Wno-implicit-fallthrough -Wno-unused-parameter -Wno-sign-compare $CFLAGS"
176dnl Check if compiler supports -Wno-clobbered (only GCC)
177AX_CHECK_COMPILE_FLAG([-Wno-clobbered], CFLAGS="-Wno-clobbered $CFLAGS", , [-Werror])
178
179test -n "$DEBUG_CFLAGS" && CFLAGS="$CFLAGS $DEBUG_CFLAGS"
180
181if test "$ZEND_ZTS" = "yes"; then
182  AC_DEFINE(ZTS,1,[ ])
183  CFLAGS="$CFLAGS -DZTS"
184fi
185
186AC_C_INLINE
187
188AC_MSG_CHECKING(target system is Darwin)
189if echo "$target" | grep "darwin" > /dev/null; then
190  AC_DEFINE([DARWIN], 1, [Define if the target system is darwin])
191  AC_MSG_RESULT(yes)
192else
193  AC_MSG_RESULT(no)
194fi
195
196dnl Test and set the alignment define for ZEND_MM. This also does the
197dnl logarithmic test for ZEND_MM.
198AC_MSG_CHECKING(for MM alignment and log values)
199
200AC_RUN_IFELSE([AC_LANG_SOURCE([[
201#include <stdio.h>
202#include <stdlib.h>
203
204typedef union _mm_align_test {
205  void *ptr;
206  double dbl;
207  long lng;
208} mm_align_test;
209
210#if (defined (__GNUC__) && __GNUC__ >= 2)
211#define ZEND_MM_ALIGNMENT (__alignof__ (mm_align_test))
212#else
213#define ZEND_MM_ALIGNMENT (sizeof(mm_align_test))
214#endif
215
216int main()
217{
218  int i = ZEND_MM_ALIGNMENT;
219  int zeros = 0;
220  FILE *fp;
221
222  while (i & ~0x1) {
223    zeros++;
224    i = i >> 1;
225  }
226
227  fp = fopen("conftest.zend", "w");
228  fprintf(fp, "%d %d\n", ZEND_MM_ALIGNMENT, zeros);
229  fclose(fp);
230
231  return 0;
232}
233]])], [
234  LIBZEND_MM_ALIGN=`cat conftest.zend | cut -d ' ' -f 1`
235  LIBZEND_MM_ALIGN_LOG2=`cat conftest.zend | cut -d ' ' -f 2`
236  AC_DEFINE_UNQUOTED(ZEND_MM_ALIGNMENT, $LIBZEND_MM_ALIGN, [ ])
237  AC_DEFINE_UNQUOTED(ZEND_MM_ALIGNMENT_LOG2, $LIBZEND_MM_ALIGN_LOG2, [ ])
238], [], [
239  dnl Cross compilation needs something here.
240  LIBZEND_MM_ALIGN=8
241])
242
243AC_MSG_RESULT(done)
244
245AC_CHECK_FUNCS(mremap)
246
247AC_ARG_ENABLE([zend-signals],
248  [AS_HELP_STRING([--disable-zend-signals],
249    [whether to enable zend signal handling])],
250  [ZEND_SIGNALS=$enableval],
251  [ZEND_SIGNALS=yes])
252
253AC_CHECK_FUNCS([sigaction], [], [
254  ZEND_SIGNALS=no
255])
256if test "$ZEND_SIGNALS" = "yes"; then
257	AC_DEFINE(ZEND_SIGNALS, 1, [Use zend signal handling])
258	CFLAGS="$CFLAGS -DZEND_SIGNALS"
259fi
260
261AC_MSG_CHECKING(whether to enable zend signal handling)
262AC_MSG_RESULT($ZEND_SIGNALS)
263
264])
265
266AC_MSG_CHECKING(whether /dev/urandom exists)
267if test -r "/dev/urandom" && test -c "/dev/urandom"; then
268  AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define if the target system has /dev/urandom device])
269  AC_MSG_RESULT(yes)
270else
271  AC_MSG_RESULT(no)
272fi
273
274AC_ARG_ENABLE([gcc-global-regs],
275  [AS_HELP_STRING([--disable-gcc-global-regs],
276    [whether to enable GCC global register variables])],
277  [ZEND_GCC_GLOBAL_REGS=$enableval],
278  [ZEND_GCC_GLOBAL_REGS=yes])
279
280AC_MSG_CHECKING(for global register variables support)
281if test "$ZEND_GCC_GLOBAL_REGS" != "no"; then
282  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
283#if defined(__GNUC__)
284# define ZEND_GCC_VERSION (__GNUC__ * 1000 + __GNUC_MINOR__)
285#else
286# define ZEND_GCC_VERSION 0
287#endif
288#if defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(i386)
289# define ZEND_VM_FP_GLOBAL_REG "%esi"
290# define ZEND_VM_IP_GLOBAL_REG "%edi"
291#elif defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(__x86_64__)
292# define ZEND_VM_FP_GLOBAL_REG "%r14"
293# define ZEND_VM_IP_GLOBAL_REG "%r15"
294#elif defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(__powerpc64__)
295# define ZEND_VM_FP_GLOBAL_REG "r28"
296# define ZEND_VM_IP_GLOBAL_REG "r29"
297#elif defined(__IBMC__) && ZEND_GCC_VERSION >= 4002 && defined(__powerpc64__)
298# define ZEND_VM_FP_GLOBAL_REG "r28"
299# define ZEND_VM_IP_GLOBAL_REG "r29"
300#elif defined(__GNUC__) && ZEND_GCC_VERSION >= 4008 && defined(__aarch64__)
301# define ZEND_VM_FP_GLOBAL_REG "x27"
302# define ZEND_VM_IP_GLOBAL_REG "x28"
303#else
304# error "global register variables are not supported"
305#endif
306typedef int (*opcode_handler_t)(void);
307register void *FP  __asm__(ZEND_VM_FP_GLOBAL_REG);
308register const opcode_handler_t *IP __asm__(ZEND_VM_IP_GLOBAL_REG);
309int emu(const opcode_handler_t *ip, void *fp) {
310	const opcode_handler_t *orig_ip = IP;
311	void *orig_fp = FP;
312	IP = ip;
313	FP = fp;
314	while ((*ip)());
315	FP = orig_fp;
316	IP = orig_ip;
317}
318  ]], [[
319  ]])], [
320    ZEND_GCC_GLOBAL_REGS=yes
321  ], [
322    ZEND_GCC_GLOBAL_REGS=no
323  ])
324fi
325if test "$ZEND_GCC_GLOBAL_REGS" = "yes"; then
326  AC_DEFINE([HAVE_GCC_GLOBAL_REGS], 1, [Define if the target system has support for global register variables])
327else
328  HAVE_GCC_GLOBAL_REGS=no
329fi
330AC_MSG_RESULT($ZEND_GCC_GLOBAL_REGS)
331
332dnl Check whether __cpuid_count is available.
333AC_CACHE_CHECK(whether __cpuid_count is available, ac_cv_cpuid_count_available, [
334AC_LINK_IFELSE([AC_LANG_PROGRAM([[
335  #include <cpuid.h>
336]], [[
337  unsigned eax, ebx, ecx, edx;
338  __cpuid_count(0, 0, eax, ebx, ecx, edx);
339]])], [
340  ac_cv_cpuid_count_available=yes
341], [
342  ac_cv_cpuid_count_available=no
343])])
344if test "$ac_cv_cpuid_count_available" = "yes"; then
345  AC_DEFINE([HAVE_CPUID_COUNT], 1, [whether __cpuid_count is available])
346fi
347