1 /* Built-in and inline functions for gcj
2 Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007
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 3, 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.
21 Java and all Java-based marks are trademarks or registered trademarks
22 of Sun Microsystems, Inc. in the United States and other countries.
23 The Free Software Foundation is independent of Sun Microsystems, Inc. */
25 /* Written by Tom Tromey <tromey@redhat.com>. */
29 #include "coretypes.h"
34 #include "langhooks.h"
35 #include "java-tree.h"
39 #include "insn-codes.h"
43 static tree
max_builtin (tree
, tree
);
44 static tree
min_builtin (tree
, tree
);
45 static tree
abs_builtin (tree
, tree
);
46 static tree
convert_real (tree
, tree
);
48 static tree
java_build_function_call_expr (tree
, tree
);
50 static tree
putObject_builtin (tree
, tree
);
51 static tree
compareAndSwapInt_builtin (tree
, tree
);
52 static tree
compareAndSwapLong_builtin (tree
, tree
);
53 static tree
compareAndSwapObject_builtin (tree
, tree
);
54 static tree
putVolatile_builtin (tree
, tree
);
55 static tree
getVolatile_builtin (tree
, tree
);
56 static tree
VMSupportsCS8_builtin (tree
, tree
);
59 /* Functions of this type are used to inline a given call. Such a
60 function should either return an expression, if the call is to be
61 inlined, or NULL_TREE if a real call should be emitted. Arguments
62 are method return type and the original CALL_EXPR containing the
63 arguments to the call. */
64 typedef tree
builtin_creator_function (tree
, tree
);
66 /* Hold a char*, before initialization, or a tree, after
68 union string_or_tree
GTY(())
70 const char * GTY ((tag ("0"))) s
;
71 tree
GTY ((tag ("1"))) t
;
74 /* Used to hold a single builtin record. */
75 struct builtin_record
GTY(())
77 union string_or_tree
GTY ((desc ("1"))) class_name
;
78 union string_or_tree
GTY ((desc ("1"))) method_name
;
79 builtin_creator_function
* GTY((skip
)) creator
;
80 enum built_in_function builtin_code
;
83 static GTY(()) struct builtin_record java_builtins
[] =
85 { { "java.lang.Math" }, { "min" }, min_builtin
, 0 },
86 { { "java.lang.Math" }, { "max" }, max_builtin
, 0 },
87 { { "java.lang.Math" }, { "abs" }, abs_builtin
, 0 },
88 { { "java.lang.Math" }, { "acos" }, NULL
, BUILT_IN_ACOS
},
89 { { "java.lang.Math" }, { "asin" }, NULL
, BUILT_IN_ASIN
},
90 { { "java.lang.Math" }, { "atan" }, NULL
, BUILT_IN_ATAN
},
91 { { "java.lang.Math" }, { "atan2" }, NULL
, BUILT_IN_ATAN2
},
92 { { "java.lang.Math" }, { "ceil" }, NULL
, BUILT_IN_CEIL
},
93 { { "java.lang.Math" }, { "cos" }, NULL
, BUILT_IN_COS
},
94 { { "java.lang.Math" }, { "exp" }, NULL
, BUILT_IN_EXP
},
95 { { "java.lang.Math" }, { "floor" }, NULL
, BUILT_IN_FLOOR
},
96 { { "java.lang.Math" }, { "log" }, NULL
, BUILT_IN_LOG
},
97 { { "java.lang.Math" }, { "pow" }, NULL
, BUILT_IN_POW
},
98 { { "java.lang.Math" }, { "sin" }, NULL
, BUILT_IN_SIN
},
99 { { "java.lang.Math" }, { "sqrt" }, NULL
, BUILT_IN_SQRT
},
100 { { "java.lang.Math" }, { "tan" }, NULL
, BUILT_IN_TAN
},
101 { { "java.lang.Float" }, { "intBitsToFloat" }, convert_real
, 0 },
102 { { "java.lang.Double" }, { "longBitsToDouble" }, convert_real
, 0 },
103 { { "java.lang.Float" }, { "floatToRawIntBits" }, convert_real
, 0 },
104 { { "java.lang.Double" }, { "doubleToRawLongBits" }, convert_real
, 0 },
105 { { "sun.misc.Unsafe" }, { "putInt" }, putObject_builtin
, 0},
106 { { "sun.misc.Unsafe" }, { "putLong" }, putObject_builtin
, 0},
107 { { "sun.misc.Unsafe" }, { "putObject" }, putObject_builtin
, 0},
108 { { "sun.misc.Unsafe" }, { "compareAndSwapInt" },
109 compareAndSwapInt_builtin
, 0},
110 { { "sun.misc.Unsafe" }, { "compareAndSwapLong" },
111 compareAndSwapLong_builtin
, 0},
112 { { "sun.misc.Unsafe" }, { "compareAndSwapObject" },
113 compareAndSwapObject_builtin
, 0},
114 { { "sun.misc.Unsafe" }, { "putOrderedInt" }, putVolatile_builtin
, 0},
115 { { "sun.misc.Unsafe" }, { "putOrderedLong" }, putVolatile_builtin
, 0},
116 { { "sun.misc.Unsafe" }, { "putOrderedObject" }, putVolatile_builtin
, 0},
117 { { "sun.misc.Unsafe" }, { "putIntVolatile" }, putVolatile_builtin
, 0},
118 { { "sun.misc.Unsafe" }, { "putLongVolatile" }, putVolatile_builtin
, 0},
119 { { "sun.misc.Unsafe" }, { "putObjectVolatile" }, putVolatile_builtin
, 0},
120 { { "sun.misc.Unsafe" }, { "getObjectVolatile" }, getVolatile_builtin
, 0},
121 { { "sun.misc.Unsafe" }, { "getIntVolatile" }, getVolatile_builtin
, 0},
122 { { "sun.misc.Unsafe" }, { "getLongVolatile" }, getVolatile_builtin
, 0},
123 { { "sun.misc.Unsafe" }, { "getLong" }, getVolatile_builtin
, 0},
124 { { "java.util.concurrent.atomic.AtomicLong" }, { "VMSupportsCS8" },
125 VMSupportsCS8_builtin
, 0},
126 { { NULL
}, { NULL
}, NULL
, END_BUILTINS
}
130 /* Internal functions which implement various builtin conversions. */
133 max_builtin (tree method_return_type
, tree orig_call
)
135 /* MAX_EXPR does not handle -0.0 in the Java style. */
136 if (TREE_CODE (method_return_type
) == REAL_TYPE
)
138 return fold_build2 (MAX_EXPR
, method_return_type
,
139 CALL_EXPR_ARG (orig_call
, 0),
140 CALL_EXPR_ARG (orig_call
, 1));
144 min_builtin (tree method_return_type
, tree orig_call
)
146 /* MIN_EXPR does not handle -0.0 in the Java style. */
147 if (TREE_CODE (method_return_type
) == REAL_TYPE
)
149 return fold_build2 (MIN_EXPR
, method_return_type
,
150 CALL_EXPR_ARG (orig_call
, 0),
151 CALL_EXPR_ARG (orig_call
, 1));
155 abs_builtin (tree method_return_type
, tree orig_call
)
157 return fold_build1 (ABS_EXPR
, method_return_type
,
158 CALL_EXPR_ARG (orig_call
, 0));
161 /* Construct a new call to FN using the arguments from ORIG_CALL. */
164 java_build_function_call_expr (tree fn
, tree orig_call
)
166 int nargs
= call_expr_nargs (orig_call
);
169 /* Although we could handle the 0-3 argument cases using the general
170 logic in the default case, splitting them out permits folding to
171 be performed without constructing a temporary CALL_EXPR. */
173 return build_call_expr (fn
, 0);
175 return build_call_expr (fn
, 1, CALL_EXPR_ARG (orig_call
, 0));
177 return build_call_expr (fn
, 2,
178 CALL_EXPR_ARG (orig_call
, 0),
179 CALL_EXPR_ARG (orig_call
, 1));
181 return build_call_expr (fn
, 3,
182 CALL_EXPR_ARG (orig_call
, 0),
183 CALL_EXPR_ARG (orig_call
, 1),
184 CALL_EXPR_ARG (orig_call
, 2));
187 tree fntype
= TREE_TYPE (fn
);
188 fn
= build1 (ADDR_EXPR
, build_pointer_type (fntype
), fn
);
189 return fold (build_call_array (TREE_TYPE (fntype
),
190 fn
, nargs
, CALL_EXPR_ARGP (orig_call
)));
196 convert_real (tree method_return_type
, tree orig_call
)
198 return build1 (VIEW_CONVERT_EXPR
, method_return_type
,
199 CALL_EXPR_ARG (orig_call
, 0));
204 /* Provide builtin support for atomic operations. These are
205 documented at length in libjava/sun/misc/Unsafe.java. */
207 /* FIXME. There are still a few things wrong with this logic. In
208 particular, atomic writes of multi-word integers are not truly
209 atomic: this requires more work.
211 In general, double-word compare-and-swap cannot portably be
212 implemented, so we need some kind of fallback for 32-bit machines.
217 /* Macros to unmarshal arguments from a CALL_EXPR into a few
218 variables. We also convert the offset arg from a long to an
219 integer that is the same size as a pointer. */
221 #define UNMARSHAL3(METHOD_CALL) \
222 tree this_arg, obj_arg, offset_arg; \
225 tree orig_method_call = METHOD_CALL; \
226 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
227 obj_arg = CALL_EXPR_ARG (orig_method_call, 1); \
228 offset_arg = fold_convert (java_type_for_size (POINTER_SIZE, 0), \
229 CALL_EXPR_ARG (orig_method_call, 2)); \
233 #define UNMARSHAL4(METHOD_CALL) \
234 tree value_type, this_arg, obj_arg, offset_arg, value_arg; \
237 tree orig_method_call = METHOD_CALL; \
238 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
239 obj_arg = CALL_EXPR_ARG (orig_method_call, 1); \
240 offset_arg = fold_convert (java_type_for_size (POINTER_SIZE, 0), \
241 CALL_EXPR_ARG (orig_method_call, 2)); \
242 value_arg = CALL_EXPR_ARG (orig_method_call, 3); \
243 value_type = TREE_TYPE (value_arg); \
247 #define UNMARSHAL5(METHOD_CALL) \
248 tree value_type, this_arg, obj_arg, offset_arg, expected_arg, value_arg; \
251 tree orig_method_call = METHOD_CALL; \
252 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
253 obj_arg = CALL_EXPR_ARG (orig_method_call, 1); \
254 offset_arg = fold_convert (java_type_for_size (POINTER_SIZE, 0), \
255 CALL_EXPR_ARG (orig_method_call, 2)); \
256 expected_arg = CALL_EXPR_ARG (orig_method_call, 3); \
257 value_arg = CALL_EXPR_ARG (orig_method_call, 4); \
258 value_type = TREE_TYPE (value_arg); \
262 /* Add an address to an offset, forming a sum. */
265 build_addr_sum (tree type
, tree addr
, tree offset
)
267 tree ptr_type
= build_pointer_type (type
);
268 return fold_build2 (PLUS_EXPR
,
270 fold_convert (ptr_type
, addr
), offset
);
273 /* Make sure that this-arg is non-NULL. This is a security check. */
276 build_check_this (tree stmt
, tree this_arg
)
278 return build2 (COMPOUND_EXPR
, TREE_TYPE (stmt
),
279 java_check_reference (this_arg
, 1), stmt
);
282 /* Now the builtins. These correspond to the primitive functions in
283 libjava/sun/misc/natUnsafe.cc. */
286 putObject_builtin (tree method_return_type ATTRIBUTE_UNUSED
,
290 UNMARSHAL4 (orig_call
);
292 addr
= build_addr_sum (value_type
, obj_arg
, offset_arg
);
293 stmt
= fold_build2 (MODIFY_EXPR
, value_type
,
294 build_java_indirect_ref (value_type
, addr
,
295 flag_check_references
),
298 return build_check_this (stmt
, this_arg
);
302 compareAndSwapInt_builtin (tree method_return_type ATTRIBUTE_UNUSED
,
305 enum machine_mode mode
= TYPE_MODE (int_type_node
);
306 if (sync_compare_and_swap_cc
[mode
] != CODE_FOR_nothing
307 || sync_compare_and_swap
[mode
] != CODE_FOR_nothing
)
310 UNMARSHAL5 (orig_call
);
312 addr
= build_addr_sum (int_type_node
, obj_arg
, offset_arg
);
313 stmt
= build_call_expr (built_in_decls
[BUILT_IN_BOOL_COMPARE_AND_SWAP_4
],
314 3, addr
, expected_arg
, value_arg
);
316 return build_check_this (stmt
, this_arg
);
322 compareAndSwapLong_builtin (tree method_return_type ATTRIBUTE_UNUSED
,
325 enum machine_mode mode
= TYPE_MODE (long_type_node
);
326 if (sync_compare_and_swap_cc
[mode
] != CODE_FOR_nothing
327 || sync_compare_and_swap
[mode
] != CODE_FOR_nothing
)
330 UNMARSHAL5 (orig_call
);
332 addr
= build_addr_sum (long_type_node
, obj_arg
, offset_arg
);
333 stmt
= build_call_expr (built_in_decls
[BUILT_IN_BOOL_COMPARE_AND_SWAP_8
],
334 3, addr
, expected_arg
, value_arg
);
336 return build_check_this (stmt
, this_arg
);
341 compareAndSwapObject_builtin (tree method_return_type ATTRIBUTE_UNUSED
,
344 enum machine_mode mode
= TYPE_MODE (ptr_type_node
);
345 if (sync_compare_and_swap_cc
[mode
] != CODE_FOR_nothing
346 || sync_compare_and_swap
[mode
] != CODE_FOR_nothing
)
351 UNMARSHAL5 (orig_call
);
352 builtin
= (POINTER_SIZE
== 32
353 ? BUILT_IN_BOOL_COMPARE_AND_SWAP_4
354 : BUILT_IN_BOOL_COMPARE_AND_SWAP_8
);
356 addr
= build_addr_sum (value_type
, obj_arg
, offset_arg
);
357 stmt
= build_call_expr (built_in_decls
[builtin
],
358 3, addr
, expected_arg
, value_arg
);
360 return build_check_this (stmt
, this_arg
);
366 putVolatile_builtin (tree method_return_type ATTRIBUTE_UNUSED
,
369 tree addr
, stmt
, modify_stmt
;
370 UNMARSHAL4 (orig_call
);
372 addr
= build_addr_sum (value_type
, obj_arg
, offset_arg
);
374 = fold_convert (build_pointer_type (build_type_variant (value_type
, 0, 1)),
377 stmt
= build_call_expr (built_in_decls
[BUILT_IN_SYNCHRONIZE
], 0);
378 modify_stmt
= fold_build2 (MODIFY_EXPR
, value_type
,
379 build_java_indirect_ref (value_type
, addr
,
380 flag_check_references
),
382 stmt
= build2 (COMPOUND_EXPR
, TREE_TYPE (modify_stmt
),
385 return build_check_this (stmt
, this_arg
);
389 getVolatile_builtin (tree method_return_type ATTRIBUTE_UNUSED
,
392 tree addr
, stmt
, modify_stmt
, tmp
;
393 UNMARSHAL3 (orig_call
);
395 addr
= build_addr_sum (method_return_type
, obj_arg
, offset_arg
);
397 = fold_convert (build_pointer_type (build_type_variant
398 (method_return_type
, 0, 1)), addr
);
400 stmt
= build_call_expr (built_in_decls
[BUILT_IN_SYNCHRONIZE
], 0);
402 tmp
= build_decl (VAR_DECL
, NULL
, method_return_type
);
403 DECL_IGNORED_P (tmp
) = 1;
404 DECL_ARTIFICIAL (tmp
) = 1;
407 modify_stmt
= fold_build2 (MODIFY_EXPR
, method_return_type
,
409 build_java_indirect_ref (method_return_type
, addr
,
410 flag_check_references
));
412 stmt
= build2 (COMPOUND_EXPR
, void_type_node
, modify_stmt
, stmt
);
413 stmt
= build2 (COMPOUND_EXPR
, method_return_type
, stmt
, tmp
);
419 VMSupportsCS8_builtin (tree method_return_type
,
420 tree orig_call ATTRIBUTE_UNUSED
)
422 enum machine_mode mode
= TYPE_MODE (long_type_node
);
423 gcc_assert (method_return_type
== boolean_type_node
);
424 if (sync_compare_and_swap_cc
[mode
] != CODE_FOR_nothing
425 || sync_compare_and_swap
[mode
] != CODE_FOR_nothing
)
426 return boolean_true_node
;
428 return boolean_false_node
;
433 #define BUILTIN_NOTHROW 1
434 #define BUILTIN_CONST 2
435 /* Define a single builtin. */
437 define_builtin (enum built_in_function val
,
445 decl
= build_decl (FUNCTION_DECL
, get_identifier (name
), type
);
446 DECL_EXTERNAL (decl
) = 1;
447 TREE_PUBLIC (decl
) = 1;
448 SET_DECL_ASSEMBLER_NAME (decl
, get_identifier (libname
));
450 DECL_BUILT_IN_CLASS (decl
) = BUILT_IN_NORMAL
;
451 DECL_FUNCTION_CODE (decl
) = val
;
452 if (flags
& BUILTIN_NOTHROW
)
453 TREE_NOTHROW (decl
) = 1;
454 if (flags
& BUILTIN_CONST
)
455 TREE_READONLY (decl
) = 1;
457 implicit_built_in_decls
[val
] = decl
;
458 built_in_decls
[val
] = decl
;
463 /* Initialize the builtins. */
465 initialize_builtins (void)
467 tree double_ftype_double
, double_ftype_double_double
;
468 tree float_ftype_float
, float_ftype_float_float
;
469 tree boolean_ftype_boolean_boolean
;
473 for (i
= 0; java_builtins
[i
].builtin_code
!= END_BUILTINS
; ++i
)
475 tree klass_id
= get_identifier (java_builtins
[i
].class_name
.s
);
476 tree m
= get_identifier (java_builtins
[i
].method_name
.s
);
478 java_builtins
[i
].class_name
.t
= klass_id
;
479 java_builtins
[i
].method_name
.t
= m
;
482 void_list_node
= end_params_node
;
484 t
= tree_cons (NULL_TREE
, float_type_node
, end_params_node
);
485 float_ftype_float
= build_function_type (float_type_node
, t
);
486 t
= tree_cons (NULL_TREE
, float_type_node
, t
);
487 float_ftype_float_float
= build_function_type (float_type_node
, t
);
489 t
= tree_cons (NULL_TREE
, double_type_node
, end_params_node
);
490 double_ftype_double
= build_function_type (double_type_node
, t
);
491 t
= tree_cons (NULL_TREE
, double_type_node
, t
);
492 double_ftype_double_double
= build_function_type (double_type_node
, t
);
494 define_builtin (BUILT_IN_FMOD
, "__builtin_fmod",
495 double_ftype_double_double
, "fmod", BUILTIN_CONST
);
496 define_builtin (BUILT_IN_FMODF
, "__builtin_fmodf",
497 float_ftype_float_float
, "fmodf", BUILTIN_CONST
);
499 define_builtin (BUILT_IN_ACOS
, "__builtin_acos",
500 double_ftype_double
, "_ZN4java4lang4Math4acosEJdd",
502 define_builtin (BUILT_IN_ASIN
, "__builtin_asin",
503 double_ftype_double
, "_ZN4java4lang4Math4asinEJdd",
505 define_builtin (BUILT_IN_ATAN
, "__builtin_atan",
506 double_ftype_double
, "_ZN4java4lang4Math4atanEJdd",
508 define_builtin (BUILT_IN_ATAN2
, "__builtin_atan2",
509 double_ftype_double_double
, "_ZN4java4lang4Math5atan2EJddd",
511 define_builtin (BUILT_IN_CEIL
, "__builtin_ceil",
512 double_ftype_double
, "_ZN4java4lang4Math4ceilEJdd",
514 define_builtin (BUILT_IN_COS
, "__builtin_cos",
515 double_ftype_double
, "_ZN4java4lang4Math3cosEJdd",
517 define_builtin (BUILT_IN_EXP
, "__builtin_exp",
518 double_ftype_double
, "_ZN4java4lang4Math3expEJdd",
520 define_builtin (BUILT_IN_FLOOR
, "__builtin_floor",
521 double_ftype_double
, "_ZN4java4lang4Math5floorEJdd",
523 define_builtin (BUILT_IN_LOG
, "__builtin_log",
524 double_ftype_double
, "_ZN4java4lang4Math3logEJdd",
526 define_builtin (BUILT_IN_POW
, "__builtin_pow",
527 double_ftype_double_double
, "_ZN4java4lang4Math3powEJddd",
529 define_builtin (BUILT_IN_SIN
, "__builtin_sin",
530 double_ftype_double
, "_ZN4java4lang4Math3sinEJdd",
532 define_builtin (BUILT_IN_SQRT
, "__builtin_sqrt",
533 double_ftype_double
, "_ZN4java4lang4Math4sqrtEJdd",
535 define_builtin (BUILT_IN_TAN
, "__builtin_tan",
536 double_ftype_double
, "_ZN4java4lang4Math3tanEJdd",
539 t
= tree_cons (NULL_TREE
, boolean_type_node
, end_params_node
);
540 t
= tree_cons (NULL_TREE
, boolean_type_node
, t
);
541 boolean_ftype_boolean_boolean
= build_function_type (boolean_type_node
, t
);
542 define_builtin (BUILT_IN_EXPECT
, "__builtin_expect",
543 boolean_ftype_boolean_boolean
,
545 BUILTIN_CONST
| BUILTIN_NOTHROW
);
546 define_builtin (BUILT_IN_BOOL_COMPARE_AND_SWAP_4
,
547 "__sync_bool_compare_and_swap_4",
548 build_function_type_list (boolean_type_node
,
550 build_pointer_type (int_type_node
),
551 int_type_node
, NULL_TREE
),
552 "__sync_bool_compare_and_swap_4", 0);
553 define_builtin (BUILT_IN_BOOL_COMPARE_AND_SWAP_8
,
554 "__sync_bool_compare_and_swap_8",
555 build_function_type_list (boolean_type_node
,
557 build_pointer_type (long_type_node
),
558 int_type_node
, NULL_TREE
),
559 "__sync_bool_compare_and_swap_8", 0);
560 define_builtin (BUILT_IN_SYNCHRONIZE
, "__sync_synchronize",
561 build_function_type (void_type_node
, void_list_node
),
562 "__sync_synchronize", BUILTIN_NOTHROW
);
564 define_builtin (BUILT_IN_RETURN_ADDRESS
, "__builtin_return_address",
565 build_function_type_list (ptr_type_node
, int_type_node
, NULL_TREE
),
566 "__builtin_return_address", BUILTIN_NOTHROW
);
568 build_common_builtin_nodes ();
571 /* If the call matches a builtin, return the
572 appropriate builtin expression instead. */
574 check_for_builtin (tree method
, tree call
)
576 if (optimize
&& TREE_CODE (call
) == CALL_EXPR
)
579 tree method_class
= DECL_NAME (TYPE_NAME (DECL_CONTEXT (method
)));
580 tree method_name
= DECL_NAME (method
);
581 tree method_return_type
= TREE_TYPE (TREE_TYPE (method
));
583 for (i
= 0; java_builtins
[i
].builtin_code
!= END_BUILTINS
; ++i
)
585 if (method_class
== java_builtins
[i
].class_name
.t
586 && method_name
== java_builtins
[i
].method_name
.t
)
590 if (java_builtins
[i
].creator
!= NULL
)
593 = (*java_builtins
[i
].creator
) (method_return_type
, call
);
594 return result
== NULL_TREE
? call
: result
;
597 /* Builtin functions emit a direct call which is incompatible
599 if (flag_indirect_dispatch
)
601 fn
= built_in_decls
[java_builtins
[i
].builtin_code
];
604 return java_build_function_call_expr (fn
, call
);
611 #include "gt-java-builtins.h"