1 /* Built-in and inline functions for gcj
2 Copyright (C) 2001, 2003, 2004, 2005
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 GCC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA.
22 Java and all Java-based marks are trademarks or registered trademarks
23 of Sun Microsystems, Inc. in the United States and other countries.
24 The Free Software Foundation is independent of Sun Microsystems, Inc. */
26 /* Written by Tom Tromey <tromey@redhat.com>. */
30 #include "coretypes.h"
35 #include "langhooks.h"
36 #include "java-tree.h"
39 static tree
max_builtin (tree
, tree
);
40 static tree
min_builtin (tree
, tree
);
41 static tree
abs_builtin (tree
, tree
);
43 static tree
java_build_function_call_expr (tree
, tree
);
44 static void define_builtin (enum built_in_function
, const char *,
49 /* Functions of this type are used to inline a given call. Such a
50 function should either return an expression, if the call is to be
51 inlined, or NULL_TREE if a real call should be emitted. Arguments
52 are method return type and arguments to call. */
53 typedef tree
builtin_creator_function (tree
, tree
);
55 /* Hold a char*, before initialization, or a tree, after
57 union string_or_tree
GTY(())
59 const char * GTY ((tag ("0"))) s
;
60 tree
GTY ((tag ("1"))) t
;
63 /* Used to hold a single builtin record. */
64 struct builtin_record
GTY(())
66 union string_or_tree
GTY ((desc ("1"))) class_name
;
67 union string_or_tree
GTY ((desc ("1"))) method_name
;
68 builtin_creator_function
* GTY((skip
)) creator
;
69 enum built_in_function builtin_code
;
72 static GTY(()) struct builtin_record java_builtins
[] =
74 { { "java.lang.Math" }, { "min" }, min_builtin
, 0 },
75 { { "java.lang.Math" }, { "max" }, max_builtin
, 0 },
76 { { "java.lang.Math" }, { "abs" }, abs_builtin
, 0 },
77 { { "java.lang.Math" }, { "acos" }, NULL
, BUILT_IN_ACOS
},
78 { { "java.lang.Math" }, { "asin" }, NULL
, BUILT_IN_ASIN
},
79 { { "java.lang.Math" }, { "atan" }, NULL
, BUILT_IN_ATAN
},
80 { { "java.lang.Math" }, { "atan2" }, NULL
, BUILT_IN_ATAN2
},
81 { { "java.lang.Math" }, { "ceil" }, NULL
, BUILT_IN_CEIL
},
82 { { "java.lang.Math" }, { "cos" }, NULL
, BUILT_IN_COS
},
83 { { "java.lang.Math" }, { "exp" }, NULL
, BUILT_IN_EXP
},
84 { { "java.lang.Math" }, { "floor" }, NULL
, BUILT_IN_FLOOR
},
85 { { "java.lang.Math" }, { "log" }, NULL
, BUILT_IN_LOG
},
86 { { "java.lang.Math" }, { "pow" }, NULL
, BUILT_IN_POW
},
87 { { "java.lang.Math" }, { "sin" }, NULL
, BUILT_IN_SIN
},
88 { { "java.lang.Math" }, { "sqrt" }, NULL
, BUILT_IN_SQRT
},
89 { { "java.lang.Math" }, { "tan" }, NULL
, BUILT_IN_TAN
},
90 { { NULL
}, { NULL
}, NULL
, END_BUILTINS
}
94 /* Internal functions which implement various builtin conversions. */
97 max_builtin (tree method_return_type
, tree method_arguments
)
99 return fold (build2 (MAX_EXPR
, method_return_type
,
100 TREE_VALUE (method_arguments
),
101 TREE_VALUE (TREE_CHAIN (method_arguments
))));
105 min_builtin (tree method_return_type
, tree method_arguments
)
107 return fold (build2 (MIN_EXPR
, method_return_type
,
108 TREE_VALUE (method_arguments
),
109 TREE_VALUE (TREE_CHAIN (method_arguments
))));
113 abs_builtin (tree method_return_type
, tree method_arguments
)
115 return fold (build1 (ABS_EXPR
, method_return_type
,
116 TREE_VALUE (method_arguments
)));
119 /* Mostly copied from ../builtins.c. */
121 java_build_function_call_expr (tree fn
, tree arglist
)
125 call_expr
= build1 (ADDR_EXPR
, build_pointer_type (TREE_TYPE (fn
)), fn
);
126 call_expr
= build3 (CALL_EXPR
, TREE_TYPE (TREE_TYPE (fn
)),
127 call_expr
, arglist
, NULL_TREE
);
128 TREE_SIDE_EFFECTS (call_expr
) = 1;
129 return fold (call_expr
);
134 /* Define a single builtin. */
136 define_builtin (enum built_in_function val
,
143 decl
= build_decl (FUNCTION_DECL
, get_identifier (name
), type
);
144 DECL_EXTERNAL (decl
) = 1;
145 TREE_PUBLIC (decl
) = 1;
146 SET_DECL_ASSEMBLER_NAME (decl
, get_identifier (libname
));
147 make_decl_rtl (decl
);
149 DECL_BUILT_IN_CLASS (decl
) = BUILT_IN_NORMAL
;
150 DECL_FUNCTION_CODE (decl
) = val
;
152 implicit_built_in_decls
[val
] = decl
;
153 built_in_decls
[val
] = decl
;
158 /* Initialize the builtins. */
160 initialize_builtins (void)
162 tree double_ftype_double
, double_ftype_double_double
;
163 tree float_ftype_float
, float_ftype_float_float
;
167 for (i
= 0; java_builtins
[i
].builtin_code
!= END_BUILTINS
; ++i
)
169 tree klass_id
= get_identifier (java_builtins
[i
].class_name
.s
);
170 tree m
= get_identifier (java_builtins
[i
].method_name
.s
);
172 java_builtins
[i
].class_name
.t
= klass_id
;
173 java_builtins
[i
].method_name
.t
= m
;
176 void_list_node
= end_params_node
;
178 t
= tree_cons (NULL_TREE
, float_type_node
, end_params_node
);
179 float_ftype_float
= build_function_type (float_type_node
, t
);
180 t
= tree_cons (NULL_TREE
, float_type_node
, t
);
181 float_ftype_float_float
= build_function_type (float_type_node
, t
);
183 t
= tree_cons (NULL_TREE
, double_type_node
, end_params_node
);
184 double_ftype_double
= build_function_type (double_type_node
, t
);
185 t
= tree_cons (NULL_TREE
, double_type_node
, t
);
186 double_ftype_double_double
= build_function_type (double_type_node
, t
);
188 define_builtin (BUILT_IN_FMOD
, "__builtin_fmod",
189 double_ftype_double_double
, "fmod");
190 define_builtin (BUILT_IN_FMODF
, "__builtin_fmodf",
191 float_ftype_float_float
, "fmodf");
193 define_builtin (BUILT_IN_ACOS
, "__builtin_acos",
194 double_ftype_double
, "_ZN4java4lang4Math4acosEd");
195 define_builtin (BUILT_IN_ASIN
, "__builtin_asin",
196 double_ftype_double
, "_ZN4java4lang4Math4asinEd");
197 define_builtin (BUILT_IN_ATAN
, "__builtin_atan",
198 double_ftype_double
, "_ZN4java4lang4Math4atanEd");
199 define_builtin (BUILT_IN_ATAN2
, "__builtin_atan2",
200 double_ftype_double_double
, "_ZN4java4lang4Math5atan2Edd");
201 define_builtin (BUILT_IN_CEIL
, "__builtin_ceil",
202 double_ftype_double
, "_ZN4java4lang4Math4ceilEd");
203 define_builtin (BUILT_IN_COS
, "__builtin_cos",
204 double_ftype_double
, "_ZN4java4lang4Math3cosEd");
205 define_builtin (BUILT_IN_EXP
, "__builtin_exp",
206 double_ftype_double
, "_ZN4java4lang4Math3expEd");
207 define_builtin (BUILT_IN_FLOOR
, "__builtin_floor",
208 double_ftype_double
, "_ZN4java4lang4Math5floorEd");
209 define_builtin (BUILT_IN_LOG
, "__builtin_log",
210 double_ftype_double
, "_ZN4java4lang4Math3logEd");
211 define_builtin (BUILT_IN_POW
, "__builtin_pow",
212 double_ftype_double_double
, "_ZN4java4lang4Math3powEdd");
213 define_builtin (BUILT_IN_SIN
, "__builtin_sin",
214 double_ftype_double
, "_ZN4java4lang4Math3sinEd");
215 define_builtin (BUILT_IN_SQRT
, "__builtin_sqrt",
216 double_ftype_double
, "_ZN4java4lang4Math4sqrtEd");
217 define_builtin (BUILT_IN_TAN
, "__builtin_tan",
218 double_ftype_double
, "_ZN4java4lang4Math3tanEd");
220 build_common_builtin_nodes ();
223 /* If the call matches a builtin, return the
224 appropriate builtin expression instead. */
226 check_for_builtin (tree method
, tree call
)
228 if (! flag_emit_class_files
&& optimize
&& TREE_CODE (call
) == CALL_EXPR
)
231 tree method_arguments
= TREE_OPERAND (call
, 1);
232 tree method_class
= DECL_NAME (TYPE_NAME (DECL_CONTEXT (method
)));
233 tree method_name
= DECL_NAME (method
);
234 tree method_return_type
= TREE_TYPE (TREE_TYPE (method
));
236 for (i
= 0; java_builtins
[i
].builtin_code
!= END_BUILTINS
; ++i
)
238 if (method_class
== java_builtins
[i
].class_name
.t
239 && method_name
== java_builtins
[i
].method_name
.t
)
243 if (java_builtins
[i
].creator
!= NULL
)
244 return (*java_builtins
[i
].creator
) (method_return_type
,
246 fn
= built_in_decls
[java_builtins
[i
].builtin_code
];
249 return java_build_function_call_expr (fn
, method_arguments
);
256 #include "gt-java-builtins.h"