Merge from mainline (165734:167278).
[official-gcc/graphite-test-results.git] / gcc / java / builtins.c
blob2100f093a49636316e0caa35d44a47a9791f147b
1 /* Built-in and inline functions for gcj
2 Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007, 2009, 2010
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)
10 any later version.
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>. */
27 /* FIXME: Still need to include rtl.h here (see below). */
28 #undef IN_GCC_FRONTEND
30 #include "config.h"
31 #include "system.h"
32 #include "coretypes.h"
33 #include "tm.h"
34 #include "tree.h"
35 #include "ggc.h"
36 #include "flags.h"
37 #include "langhooks.h"
38 #include "java-tree.h"
40 /* FIXME: All these headers are necessary for sync_compare_and_swap.
41 Front ends should never have to look at that. */
42 #include "rtl.h"
43 #include "insn-codes.h"
44 #include "expr.h"
45 #include "optabs.h"
47 static tree max_builtin (tree, tree);
48 static tree min_builtin (tree, tree);
49 static tree abs_builtin (tree, tree);
50 static tree convert_real (tree, tree);
52 static tree java_build_function_call_expr (tree, tree);
54 static tree putObject_builtin (tree, tree);
55 static tree compareAndSwapInt_builtin (tree, tree);
56 static tree compareAndSwapLong_builtin (tree, tree);
57 static tree compareAndSwapObject_builtin (tree, tree);
58 static tree putVolatile_builtin (tree, tree);
59 static tree getVolatile_builtin (tree, tree);
60 static tree VMSupportsCS8_builtin (tree, tree);
63 /* Functions of this type are used to inline a given call. Such a
64 function should either return an expression, if the call is to be
65 inlined, or NULL_TREE if a real call should be emitted. Arguments
66 are method return type and the original CALL_EXPR containing the
67 arguments to the call. */
68 typedef tree builtin_creator_function (tree, tree);
70 /* Hold a char*, before initialization, or a tree, after
71 initialization. */
72 union GTY(()) string_or_tree {
73 const char * GTY ((tag ("0"))) s;
74 tree GTY ((tag ("1"))) t;
77 /* Used to hold a single builtin record. */
78 struct GTY(()) builtin_record {
79 union string_or_tree GTY ((desc ("1"))) class_name;
80 union string_or_tree GTY ((desc ("1"))) method_name;
81 builtin_creator_function * GTY((skip)) creator;
82 enum built_in_function builtin_code;
85 static GTY(()) struct builtin_record java_builtins[] =
87 { { "java.lang.Math" }, { "min" }, min_builtin, (enum built_in_function) 0 },
88 { { "java.lang.Math" }, { "max" }, max_builtin, (enum built_in_function) 0 },
89 { { "java.lang.Math" }, { "abs" }, abs_builtin, (enum built_in_function) 0 },
90 { { "java.lang.Math" }, { "acos" }, NULL, BUILT_IN_ACOS },
91 { { "java.lang.Math" }, { "asin" }, NULL, BUILT_IN_ASIN },
92 { { "java.lang.Math" }, { "atan" }, NULL, BUILT_IN_ATAN },
93 { { "java.lang.Math" }, { "atan2" }, NULL, BUILT_IN_ATAN2 },
94 { { "java.lang.Math" }, { "ceil" }, NULL, BUILT_IN_CEIL },
95 { { "java.lang.Math" }, { "cos" }, NULL, BUILT_IN_COS },
96 { { "java.lang.Math" }, { "exp" }, NULL, BUILT_IN_EXP },
97 { { "java.lang.Math" }, { "floor" }, NULL, BUILT_IN_FLOOR },
98 { { "java.lang.Math" }, { "log" }, NULL, BUILT_IN_LOG },
99 { { "java.lang.Math" }, { "pow" }, NULL, BUILT_IN_POW },
100 { { "java.lang.Math" }, { "sin" }, NULL, BUILT_IN_SIN },
101 { { "java.lang.Math" }, { "sqrt" }, NULL, BUILT_IN_SQRT },
102 { { "java.lang.Math" }, { "tan" }, NULL, BUILT_IN_TAN },
103 { { "java.lang.Float" }, { "intBitsToFloat" }, convert_real,
104 (enum built_in_function) 0 },
105 { { "java.lang.Double" }, { "longBitsToDouble" }, convert_real,
106 (enum built_in_function) 0 },
107 { { "java.lang.Float" }, { "floatToRawIntBits" }, convert_real,
108 (enum built_in_function) 0 },
109 { { "java.lang.Double" }, { "doubleToRawLongBits" }, convert_real,
110 (enum built_in_function) 0 },
111 { { "sun.misc.Unsafe" }, { "putInt" }, putObject_builtin,
112 (enum built_in_function) 0},
113 { { "sun.misc.Unsafe" }, { "putLong" }, putObject_builtin,
114 (enum built_in_function) 0},
115 { { "sun.misc.Unsafe" }, { "putObject" }, putObject_builtin,
116 (enum built_in_function) 0},
117 { { "sun.misc.Unsafe" }, { "compareAndSwapInt" },
118 compareAndSwapInt_builtin, (enum built_in_function) 0},
119 { { "sun.misc.Unsafe" }, { "compareAndSwapLong" },
120 compareAndSwapLong_builtin, (enum built_in_function) 0},
121 { { "sun.misc.Unsafe" }, { "compareAndSwapObject" },
122 compareAndSwapObject_builtin, (enum built_in_function) 0},
123 { { "sun.misc.Unsafe" }, { "putOrderedInt" }, putVolatile_builtin,
124 (enum built_in_function) 0},
125 { { "sun.misc.Unsafe" }, { "putOrderedLong" }, putVolatile_builtin,
126 (enum built_in_function) 0},
127 { { "sun.misc.Unsafe" }, { "putOrderedObject" }, putVolatile_builtin,
128 (enum built_in_function) 0},
129 { { "sun.misc.Unsafe" }, { "putIntVolatile" }, putVolatile_builtin,
130 (enum built_in_function) 0},
131 { { "sun.misc.Unsafe" }, { "putLongVolatile" }, putVolatile_builtin,
132 (enum built_in_function) 0},
133 { { "sun.misc.Unsafe" }, { "putObjectVolatile" }, putVolatile_builtin,
134 (enum built_in_function) 0},
135 { { "sun.misc.Unsafe" }, { "getObjectVolatile" }, getVolatile_builtin,
136 (enum built_in_function) 0},
137 { { "sun.misc.Unsafe" }, { "getIntVolatile" }, getVolatile_builtin,
138 (enum built_in_function) 0},
139 { { "sun.misc.Unsafe" }, { "getLongVolatile" }, getVolatile_builtin, (enum built_in_function) 0},
140 { { "sun.misc.Unsafe" }, { "getLong" }, getVolatile_builtin,
141 (enum built_in_function) 0},
142 { { "java.util.concurrent.atomic.AtomicLong" }, { "VMSupportsCS8" },
143 VMSupportsCS8_builtin, (enum built_in_function) 0},
144 { { NULL }, { NULL }, NULL, END_BUILTINS }
148 /* Internal functions which implement various builtin conversions. */
150 static tree
151 max_builtin (tree method_return_type, tree orig_call)
153 /* MAX_EXPR does not handle -0.0 in the Java style. */
154 if (TREE_CODE (method_return_type) == REAL_TYPE)
155 return NULL_TREE;
156 return fold_build2 (MAX_EXPR, method_return_type,
157 CALL_EXPR_ARG (orig_call, 0),
158 CALL_EXPR_ARG (orig_call, 1));
161 static tree
162 min_builtin (tree method_return_type, tree orig_call)
164 /* MIN_EXPR does not handle -0.0 in the Java style. */
165 if (TREE_CODE (method_return_type) == REAL_TYPE)
166 return NULL_TREE;
167 return fold_build2 (MIN_EXPR, method_return_type,
168 CALL_EXPR_ARG (orig_call, 0),
169 CALL_EXPR_ARG (orig_call, 1));
172 static tree
173 abs_builtin (tree method_return_type, tree orig_call)
175 return fold_build1 (ABS_EXPR, method_return_type,
176 CALL_EXPR_ARG (orig_call, 0));
179 /* Construct a new call to FN using the arguments from ORIG_CALL. */
181 static tree
182 java_build_function_call_expr (tree fn, tree orig_call)
184 int nargs = call_expr_nargs (orig_call);
185 switch (nargs)
187 /* Although we could handle the 0-3 argument cases using the general
188 logic in the default case, splitting them out permits folding to
189 be performed without constructing a temporary CALL_EXPR. */
190 case 0:
191 return build_call_expr (fn, 0);
192 case 1:
193 return build_call_expr (fn, 1, CALL_EXPR_ARG (orig_call, 0));
194 case 2:
195 return build_call_expr (fn, 2,
196 CALL_EXPR_ARG (orig_call, 0),
197 CALL_EXPR_ARG (orig_call, 1));
198 case 3:
199 return build_call_expr (fn, 3,
200 CALL_EXPR_ARG (orig_call, 0),
201 CALL_EXPR_ARG (orig_call, 1),
202 CALL_EXPR_ARG (orig_call, 2));
203 default:
205 tree fntype = TREE_TYPE (fn);
206 fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fn);
207 return fold (build_call_array (TREE_TYPE (fntype),
208 fn, nargs, CALL_EXPR_ARGP (orig_call)));
213 static tree
214 convert_real (tree method_return_type, tree orig_call)
216 return build1 (VIEW_CONVERT_EXPR, method_return_type,
217 CALL_EXPR_ARG (orig_call, 0));
222 /* Provide builtin support for atomic operations. These are
223 documented at length in libjava/sun/misc/Unsafe.java. */
225 /* FIXME. There are still a few things wrong with this logic. In
226 particular, atomic writes of multi-word integers are not truly
227 atomic: this requires more work.
229 In general, double-word compare-and-swap cannot portably be
230 implemented, so we need some kind of fallback for 32-bit machines.
235 /* Macros to unmarshal arguments from a CALL_EXPR into a few
236 variables. We also convert the offset arg from a long to an
237 integer that is the same size as a pointer. */
239 #define UNMARSHAL3(METHOD_CALL) \
240 tree this_arg, obj_arg, offset_arg; \
241 do \
243 tree orig_method_call = METHOD_CALL; \
244 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
245 obj_arg = CALL_EXPR_ARG (orig_method_call, 1); \
246 offset_arg = fold_convert (java_type_for_size (POINTER_SIZE, 0), \
247 CALL_EXPR_ARG (orig_method_call, 2)); \
249 while (0)
251 #define UNMARSHAL4(METHOD_CALL) \
252 tree value_type, this_arg, obj_arg, offset_arg, value_arg; \
253 do \
255 tree orig_method_call = METHOD_CALL; \
256 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
257 obj_arg = CALL_EXPR_ARG (orig_method_call, 1); \
258 offset_arg = fold_convert (java_type_for_size (POINTER_SIZE, 0), \
259 CALL_EXPR_ARG (orig_method_call, 2)); \
260 value_arg = CALL_EXPR_ARG (orig_method_call, 3); \
261 value_type = TREE_TYPE (value_arg); \
263 while (0)
265 #define UNMARSHAL5(METHOD_CALL) \
266 tree value_type, this_arg, obj_arg, offset_arg, expected_arg, value_arg; \
267 do \
269 tree orig_method_call = METHOD_CALL; \
270 this_arg = CALL_EXPR_ARG (orig_method_call, 0); \
271 obj_arg = CALL_EXPR_ARG (orig_method_call, 1); \
272 offset_arg = fold_convert (java_type_for_size (POINTER_SIZE, 0), \
273 CALL_EXPR_ARG (orig_method_call, 2)); \
274 expected_arg = CALL_EXPR_ARG (orig_method_call, 3); \
275 value_arg = CALL_EXPR_ARG (orig_method_call, 4); \
276 value_type = TREE_TYPE (value_arg); \
278 while (0)
280 /* Add an address to an offset, forming a sum. */
282 static tree
283 build_addr_sum (tree type, tree addr, tree offset)
285 tree ptr_type = build_pointer_type (type);
286 return fold_build2 (POINTER_PLUS_EXPR,
287 ptr_type,
288 fold_convert (ptr_type, addr),
289 fold_convert (sizetype, offset));
292 /* Make sure that this-arg is non-NULL. This is a security check. */
294 static tree
295 build_check_this (tree stmt, tree this_arg)
297 return build2 (COMPOUND_EXPR, TREE_TYPE (stmt),
298 java_check_reference (this_arg, 1), stmt);
301 /* Now the builtins. These correspond to the primitive functions in
302 libjava/sun/misc/natUnsafe.cc. */
304 static tree
305 putObject_builtin (tree method_return_type ATTRIBUTE_UNUSED,
306 tree orig_call)
308 tree addr, stmt;
309 UNMARSHAL4 (orig_call);
311 addr = build_addr_sum (value_type, obj_arg, offset_arg);
312 stmt = fold_build2 (MODIFY_EXPR, value_type,
313 build_java_indirect_ref (value_type, addr,
314 flag_check_references),
315 value_arg);
317 return build_check_this (stmt, this_arg);
320 static tree
321 compareAndSwapInt_builtin (tree method_return_type ATTRIBUTE_UNUSED,
322 tree orig_call)
324 enum machine_mode mode = TYPE_MODE (int_type_node);
325 if (direct_optab_handler (sync_compare_and_swap_optab, mode)
326 != CODE_FOR_nothing
327 || flag_use_atomic_builtins)
329 tree addr, stmt;
330 UNMARSHAL5 (orig_call);
331 (void) value_type; /* Avoid set but not used warning. */
333 addr = build_addr_sum (int_type_node, obj_arg, offset_arg);
334 stmt = build_call_expr (built_in_decls[BUILT_IN_BOOL_COMPARE_AND_SWAP_4],
335 3, addr, expected_arg, value_arg);
337 return build_check_this (stmt, this_arg);
339 return NULL_TREE;
342 static tree
343 compareAndSwapLong_builtin (tree method_return_type ATTRIBUTE_UNUSED,
344 tree orig_call)
346 enum machine_mode mode = TYPE_MODE (long_type_node);
347 if (direct_optab_handler (sync_compare_and_swap_optab, mode)
348 != CODE_FOR_nothing
349 || (GET_MODE_SIZE (mode) <= GET_MODE_SIZE (word_mode)
350 && flag_use_atomic_builtins))
351 /* We don't trust flag_use_atomic_builtins for multi-word
352 compareAndSwap. Some machines such as ARM have atomic libfuncs
353 but not the multi-word versions. */
355 tree addr, stmt;
356 UNMARSHAL5 (orig_call);
357 (void) value_type; /* Avoid set but not used warning. */
359 addr = build_addr_sum (long_type_node, obj_arg, offset_arg);
360 stmt = build_call_expr (built_in_decls[BUILT_IN_BOOL_COMPARE_AND_SWAP_8],
361 3, addr, expected_arg, value_arg);
363 return build_check_this (stmt, this_arg);
365 return NULL_TREE;
367 static tree
368 compareAndSwapObject_builtin (tree method_return_type ATTRIBUTE_UNUSED,
369 tree orig_call)
371 enum machine_mode mode = TYPE_MODE (ptr_type_node);
372 if (direct_optab_handler (sync_compare_and_swap_optab, mode)
373 != CODE_FOR_nothing
374 || flag_use_atomic_builtins)
376 tree addr, stmt;
377 int builtin;
379 UNMARSHAL5 (orig_call);
380 builtin = (POINTER_SIZE == 32
381 ? BUILT_IN_BOOL_COMPARE_AND_SWAP_4
382 : BUILT_IN_BOOL_COMPARE_AND_SWAP_8);
384 addr = build_addr_sum (value_type, obj_arg, offset_arg);
385 stmt = build_call_expr (built_in_decls[builtin],
386 3, addr, expected_arg, value_arg);
388 return build_check_this (stmt, this_arg);
390 return NULL_TREE;
393 static tree
394 putVolatile_builtin (tree method_return_type ATTRIBUTE_UNUSED,
395 tree orig_call)
397 tree addr, stmt, modify_stmt;
398 UNMARSHAL4 (orig_call);
400 addr = build_addr_sum (value_type, obj_arg, offset_arg);
401 addr
402 = fold_convert (build_pointer_type (build_type_variant (value_type, 0, 1)),
403 addr);
405 stmt = build_call_expr (built_in_decls[BUILT_IN_SYNCHRONIZE], 0);
406 modify_stmt = fold_build2 (MODIFY_EXPR, value_type,
407 build_java_indirect_ref (value_type, addr,
408 flag_check_references),
409 value_arg);
410 stmt = build2 (COMPOUND_EXPR, TREE_TYPE (modify_stmt),
411 stmt, modify_stmt);
413 return build_check_this (stmt, this_arg);
416 static tree
417 getVolatile_builtin (tree method_return_type ATTRIBUTE_UNUSED,
418 tree orig_call)
420 tree addr, stmt, modify_stmt, tmp;
421 UNMARSHAL3 (orig_call);
422 (void) this_arg; /* Avoid set but not used warning. */
424 addr = build_addr_sum (method_return_type, obj_arg, offset_arg);
425 addr
426 = fold_convert (build_pointer_type (build_type_variant
427 (method_return_type, 0, 1)), addr);
429 stmt = build_call_expr (built_in_decls[BUILT_IN_SYNCHRONIZE], 0);
431 tmp = build_decl (BUILTINS_LOCATION, VAR_DECL, NULL, method_return_type);
432 DECL_IGNORED_P (tmp) = 1;
433 DECL_ARTIFICIAL (tmp) = 1;
434 pushdecl (tmp);
436 modify_stmt = fold_build2 (MODIFY_EXPR, method_return_type,
437 tmp,
438 build_java_indirect_ref (method_return_type, addr,
439 flag_check_references));
441 stmt = build2 (COMPOUND_EXPR, void_type_node, modify_stmt, stmt);
442 stmt = build2 (COMPOUND_EXPR, method_return_type, stmt, tmp);
444 return stmt;
447 static tree
448 VMSupportsCS8_builtin (tree method_return_type,
449 tree orig_call ATTRIBUTE_UNUSED)
451 enum machine_mode mode = TYPE_MODE (long_type_node);
452 gcc_assert (method_return_type == boolean_type_node);
453 if (direct_optab_handler (sync_compare_and_swap_optab, mode)
454 != CODE_FOR_nothing)
455 return boolean_true_node;
456 else
457 return boolean_false_node;
462 #define BUILTIN_NOTHROW 1
463 #define BUILTIN_CONST 2
464 /* Define a single builtin. */
465 static void
466 define_builtin (enum built_in_function val,
467 const char *name,
468 tree type,
469 const char *libname,
470 int flags)
472 tree decl;
474 decl = build_decl (BUILTINS_LOCATION,
475 FUNCTION_DECL, get_identifier (name), type);
476 DECL_EXTERNAL (decl) = 1;
477 TREE_PUBLIC (decl) = 1;
478 SET_DECL_ASSEMBLER_NAME (decl, get_identifier (libname));
479 pushdecl (decl);
480 DECL_BUILT_IN_CLASS (decl) = BUILT_IN_NORMAL;
481 DECL_FUNCTION_CODE (decl) = val;
482 if (flags & BUILTIN_NOTHROW)
483 TREE_NOTHROW (decl) = 1;
484 if (flags & BUILTIN_CONST)
485 TREE_READONLY (decl) = 1;
487 implicit_built_in_decls[val] = decl;
488 built_in_decls[val] = decl;
493 /* Initialize the builtins. */
494 void
495 initialize_builtins (void)
497 tree double_ftype_double, double_ftype_double_double;
498 tree float_ftype_float_float;
499 tree boolean_ftype_boolean_boolean;
500 int i;
502 for (i = 0; java_builtins[i].builtin_code != END_BUILTINS; ++i)
504 tree klass_id = get_identifier (java_builtins[i].class_name.s);
505 tree m = get_identifier (java_builtins[i].method_name.s);
507 java_builtins[i].class_name.t = klass_id;
508 java_builtins[i].method_name.t = m;
511 void_list_node = end_params_node;
513 float_ftype_float_float
514 = build_function_type_list (float_type_node,
515 float_type_node, float_type_node, NULL_TREE);
517 double_ftype_double
518 = build_function_type_list (double_type_node, double_type_node, NULL_TREE);
519 double_ftype_double_double
520 = build_function_type_list (double_type_node,
521 double_type_node, double_type_node, NULL_TREE);
523 define_builtin (BUILT_IN_FMOD, "__builtin_fmod",
524 double_ftype_double_double, "fmod", BUILTIN_CONST);
525 define_builtin (BUILT_IN_FMODF, "__builtin_fmodf",
526 float_ftype_float_float, "fmodf", BUILTIN_CONST);
528 define_builtin (BUILT_IN_ACOS, "__builtin_acos",
529 double_ftype_double, "_ZN4java4lang4Math4acosEJdd",
530 BUILTIN_CONST);
531 define_builtin (BUILT_IN_ASIN, "__builtin_asin",
532 double_ftype_double, "_ZN4java4lang4Math4asinEJdd",
533 BUILTIN_CONST);
534 define_builtin (BUILT_IN_ATAN, "__builtin_atan",
535 double_ftype_double, "_ZN4java4lang4Math4atanEJdd",
536 BUILTIN_CONST);
537 define_builtin (BUILT_IN_ATAN2, "__builtin_atan2",
538 double_ftype_double_double, "_ZN4java4lang4Math5atan2EJddd",
539 BUILTIN_CONST);
540 define_builtin (BUILT_IN_CEIL, "__builtin_ceil",
541 double_ftype_double, "_ZN4java4lang4Math4ceilEJdd",
542 BUILTIN_CONST);
543 define_builtin (BUILT_IN_COS, "__builtin_cos",
544 double_ftype_double, "_ZN4java4lang4Math3cosEJdd",
545 BUILTIN_CONST);
546 define_builtin (BUILT_IN_EXP, "__builtin_exp",
547 double_ftype_double, "_ZN4java4lang4Math3expEJdd",
548 BUILTIN_CONST);
549 define_builtin (BUILT_IN_FLOOR, "__builtin_floor",
550 double_ftype_double, "_ZN4java4lang4Math5floorEJdd",
551 BUILTIN_CONST);
552 define_builtin (BUILT_IN_LOG, "__builtin_log",
553 double_ftype_double, "_ZN4java4lang4Math3logEJdd",
554 BUILTIN_CONST);
555 define_builtin (BUILT_IN_POW, "__builtin_pow",
556 double_ftype_double_double, "_ZN4java4lang4Math3powEJddd",
557 BUILTIN_CONST);
558 define_builtin (BUILT_IN_SIN, "__builtin_sin",
559 double_ftype_double, "_ZN4java4lang4Math3sinEJdd",
560 BUILTIN_CONST);
561 define_builtin (BUILT_IN_SQRT, "__builtin_sqrt",
562 double_ftype_double, "_ZN4java4lang4Math4sqrtEJdd",
563 BUILTIN_CONST);
564 define_builtin (BUILT_IN_TAN, "__builtin_tan",
565 double_ftype_double, "_ZN4java4lang4Math3tanEJdd",
566 BUILTIN_CONST);
568 boolean_ftype_boolean_boolean
569 = build_function_type_list (boolean_type_node,
570 boolean_type_node, boolean_type_node,
571 NULL_TREE);
572 define_builtin (BUILT_IN_EXPECT, "__builtin_expect",
573 boolean_ftype_boolean_boolean,
574 "__builtin_expect",
575 BUILTIN_CONST | BUILTIN_NOTHROW);
576 define_builtin (BUILT_IN_BOOL_COMPARE_AND_SWAP_4,
577 "__sync_bool_compare_and_swap_4",
578 build_function_type_list (boolean_type_node,
579 int_type_node,
580 build_pointer_type (int_type_node),
581 int_type_node, NULL_TREE),
582 "__sync_bool_compare_and_swap_4", 0);
583 define_builtin (BUILT_IN_BOOL_COMPARE_AND_SWAP_8,
584 "__sync_bool_compare_and_swap_8",
585 build_function_type_list (boolean_type_node,
586 long_type_node,
587 build_pointer_type (long_type_node),
588 int_type_node, NULL_TREE),
589 "__sync_bool_compare_and_swap_8", 0);
590 define_builtin (BUILT_IN_SYNCHRONIZE, "__sync_synchronize",
591 build_function_type_list (void_type_node, NULL_TREE),
592 "__sync_synchronize", BUILTIN_NOTHROW);
594 define_builtin (BUILT_IN_RETURN_ADDRESS, "__builtin_return_address",
595 build_function_type_list (ptr_type_node, int_type_node, NULL_TREE),
596 "__builtin_return_address", BUILTIN_NOTHROW);
598 build_common_builtin_nodes ();
601 /* If the call matches a builtin, return the
602 appropriate builtin expression instead. */
603 tree
604 check_for_builtin (tree method, tree call)
606 if (optimize && TREE_CODE (call) == CALL_EXPR)
608 int i;
609 tree method_class = DECL_NAME (TYPE_NAME (DECL_CONTEXT (method)));
610 tree method_name = DECL_NAME (method);
611 tree method_return_type = TREE_TYPE (TREE_TYPE (method));
613 for (i = 0; java_builtins[i].builtin_code != END_BUILTINS; ++i)
615 if (method_class == java_builtins[i].class_name.t
616 && method_name == java_builtins[i].method_name.t)
618 tree fn;
620 if (java_builtins[i].creator != NULL)
622 tree result
623 = (*java_builtins[i].creator) (method_return_type, call);
624 return result == NULL_TREE ? call : result;
627 /* Builtin functions emit a direct call which is incompatible
628 with the BC-ABI. */
629 if (flag_indirect_dispatch)
630 return call;
631 fn = built_in_decls[java_builtins[i].builtin_code];
632 if (fn == NULL_TREE)
633 return call;
634 return java_build_function_call_expr (fn, call);
638 return call;
641 #include "gt-java-builtins.h"