ndbm fix for trusty
[m6w6/ext-psi] / m4 / psi / psi_decl.m4
1 # psi_add_redir(name, symbol)
2 # Add a function redirection to $PSI_REDIRS.
3 psi_add_redir() {
4 cat >>$PSI_REDIRS <<EOF
5 {"$1", (psi_func_ptr) $2},
6 EOF
7 }
8
9 # psi_add_decl(decl, options)
10 # Add a pre-defined decl to $PSI_VA_DECLS/$PSI_DECLS.
11 psi_add_decl() {
12 case "$2" in
13 *functor*)
14 cat >>$PSI_FN_DECLS <<EOF
15 $1, {0},
16 EOF
17 ;;
18 *vararg*)
19 cat >>$PSI_VA_DECLS <<EOF
20 $1, {0},
21 EOF
22 ;;
23 *)
24 cat >>$PSI_DECLS <<EOF
25 $1, {0},
26 EOF
27 ;;
28 esac
29 }
30
31 dnl PSI_DECL_TYPE(type functor_name, args)
32 dnl Adds a pre-defined functor decl to $PSI_FN_DECLS.
33 AC_DEFUN(PSI_DECL_TYPE, [
34 PSI_DECL_ARGS($1, $2)
35 psi_add_decl "$psi_decl_args" functor
36 ])
37 dnl PSI_REDIR(name, custom symbol)
38 dnl Create a function redirection to an optional custom symbol.
39 AC_DEFUN(PSI_REDIR, [
40 psi_add_redir $1 ifelse([$2],[],[$1],[$2])
41 ])
42
43 dnl PSI_FUNC_LIBC_MAIN()
44 dnl Check for the platforms default stub in executables.
45 AC_DEFUN(PSI_FUNC_LIBC_MAIN, [
46 AC_REQUIRE([AC_PROG_AWK])
47 AC_CACHE_CHECK(for libc start main symbol, psi_cv_libc_main, [
48 psi_libc_main=
49 AC_TRY_LINK(PSI_INCLUDES, [(void)0;], [
50 psi_libc_main=`nm -g conftest$ac_exeext | $AWK -F ' *|@' '/^@<:@@<:@:space:@:>@@:>@+U / {print$[]3; exit}'`
51 ])
52 psi_cv_libc_main=$psi_libc_main
53 ])
54 ])
55
56 dnl PSI_DECL_ARGS(decl args)
57 dnl INTERNAL: build psi_decl_args
58 AC_DEFUN(PSI_DECL_ARGS, [
59 psi_decl_args=
60 PSI_DECL_ARG($1)
61 m4_case([$2],
62 [(void)], [],
63 [()], [],
64 [m4_map_args_sep([PSI_DECL_ARG(m4_normalize(], [))], [], m4_bregexp([$2], [(\(.*\))], [\1]))])
65 ])
66
67 dnl PSI_DECL_ARG(decl arg)
68 dnl INTERNAL: build psi_decl_args
69 AC_DEFUN(PSI_DECL_ARG, [
70 m4_define([member_name], PSI_VAR_NAME($1))
71 m4_define([member_type], PSI_VAR_TYPE($1))
72
73 PSI_TYPE_INDIRECTION([$1],, pl, as)
74 if test -n "$psi_decl_args"; then
75 psi_decl_args="$psi_decl_args, "
76 fi
77 psi_decl_args="[$psi_decl_args{]PSI_TYPE_PAIR(member_type)[, \"]member_name[\",] $pl, $as[}]"
78 ])
79
80 dnl PSI_DECL(type func, args, flags)
81 dnl Check for a function or macro declaration and a possible asm redirection.
82 dnl Adds a pre-defined (vararg) decl to $PSI_VA_DECLS/$PSI_DECLS.
83 dnl Calls PSI_MACRO if PSI_FUNC fails.
84 AC_DEFUN(PSI_DECL, [
85 AC_REQUIRE([PSI_FUNC_LIBC_MAIN])
86 PSI_DECL_ARGS($1, $2)
87
88 psi_symbol="PSI_VAR_NAME($1)"
89 AC_CACHE_CHECK(for PSI_VAR_NAME($1), [psi_cv_fn_]PSI_VAR_NAME($1), [
90 psi_symbol_redirect=
91 AC_TRY_LINK(PSI_INCLUDES, [
92 void (*fn)(void) = (void (*)(void)) $psi_symbol; (*fn)()
93 ], [
94 psi_symbol_redirect=`nm -g conftest$ac_exeext | $AWK -F ' *|@' '/^@<:@@<:@:space:@:>@@:>@+U '$psi_cv_libc_main'/ {next} /^@<:@@<:@:space:@:>@@:>@+U / {print$[]3; exit}'`
95 ])
96 [psi_cv_fn_]PSI_VAR_NAME($1)=$psi_symbol_redirect
97 ])
98 case "$[psi_cv_fn_]PSI_VAR_NAME($1)" in
99 "$psi_symbol"|"_$psi_symbol")
100 case "$PHP_DEBUG-$3" in
101 "1-")
102 PSI_MACRO($1, $2, [
103 psi_add_decl "$psi_decl_args"
104 ])
105 ;;
106 *)
107 psi_add_decl "$psi_decl_args" $3
108 ;;
109 esac
110 ;;
111 "")
112 ifelse([$3], vararg, [
113 AC_MSG_WARN(varargs macro support is not implemented)
114 ],[
115 PSI_MACRO($1, $2, [
116 psi_add_decl "$psi_decl_args"
117 ])
118 ])
119 ;;
120 *)
121 PSI_REDIR($psi_symbol)
122 psi_add_decl "$psi_decl_args" $3
123 ;;
124 esac
125 ])