OSDN Git Service

PR c++/18071
[pf3gnuchains/gcc-fork.git] / gcc / java / builtins.c
1 /* Built-in and inline functions for gcj
2    Copyright (C) 2001, 2003, 2004, 2005, 2006, 2007
3    Free Software Foundation, Inc.
4
5 This file is part of GCC.
6
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.
11
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.
16
17 .
18
19 .  
20
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.  */
24
25 /* Written by Tom Tromey <tromey@redhat.com>.  */
26
27 #include "config.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "tm.h"
31 #include "tree.h"
32 #include "ggc.h"
33 #include "flags.h"
34 #include "langhooks.h"
35 #include "java-tree.h"
36 #include <stdarg.h>
37 #include "convert.h"
38 #include "rtl.h"
39 #include "insn-codes.h"
40 #include "expr.h"
41 #include "optabs.h"
42
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);
47
48 static tree java_build_function_call_expr (tree, tree);
49
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);
57 \f
58
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);
65
66 /* Hold a char*, before initialization, or a tree, after
67    initialization.  */
68 union string_or_tree GTY(())
69 {
70   const char * GTY ((tag ("0"))) s;
71   tree GTY ((tag ("1"))) t;
72 };
73
74 /* Used to hold a single builtin record.  */
75 struct builtin_record GTY(())
76 {
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;
81 };
82
83 static GTY(()) struct builtin_record java_builtins[] =
84 {
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 }
127 };
128
129 \f
130 /* Internal functions which implement various builtin conversions.  */
131
132 static tree
133 max_builtin (tree method_return_type, tree orig_call)
134 {
135   /* MAX_EXPR does not handle -0.0 in the Java style.  */
136   if (TREE_CODE (method_return_type) == REAL_TYPE)
137     return NULL_TREE;
138   return fold_build2 (MAX_EXPR, method_return_type,
139                       CALL_EXPR_ARG (orig_call, 0),
140                       CALL_EXPR_ARG (orig_call, 1));
141 }
142
143 static tree
144 min_builtin (tree method_return_type, tree orig_call)
145 {
146   /* MIN_EXPR does not handle -0.0 in the Java style.  */
147   if (TREE_CODE (method_return_type) == REAL_TYPE)
148     return NULL_TREE;
149   return fold_build2 (MIN_EXPR, method_return_type,
150                       CALL_EXPR_ARG (orig_call, 0),
151                       CALL_EXPR_ARG (orig_call, 1));
152 }
153
154 static tree
155 abs_builtin (tree method_return_type, tree orig_call)
156 {
157   return fold_build1 (ABS_EXPR, method_return_type,
158                       CALL_EXPR_ARG (orig_call, 0));
159 }
160
161 /* Construct a new call to FN using the arguments from ORIG_CALL.  */
162
163 static tree
164 java_build_function_call_expr (tree fn, tree orig_call)
165 {
166   int nargs = call_expr_nargs (orig_call);
167   switch (nargs)
168     {
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.  */
172     case 0:
173       return build_call_expr (fn, 0);
174     case 1:
175       return build_call_expr (fn, 1, CALL_EXPR_ARG (orig_call, 0));
176     case 2:
177       return build_call_expr (fn, 2,
178                               CALL_EXPR_ARG (orig_call, 0),
179                               CALL_EXPR_ARG (orig_call, 1));
180     case 3:
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));
185     default:
186       {
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)));
191       }
192     }
193 }
194
195 static tree
196 convert_real (tree method_return_type, tree orig_call)
197 {
198   return build1 (VIEW_CONVERT_EXPR, method_return_type,
199                  CALL_EXPR_ARG (orig_call, 0));
200 }
201
202 \f
203
204 /* Provide builtin support for atomic operations.  These are
205    documented at length in libjava/sun/misc/Unsafe.java.  */
206
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.
210
211    In general, double-word compare-and-swap cannot portably be
212    implemented, so we need some kind of fallback for 32-bit machines.
213
214 */
215
216
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.  */
220
221 #define UNMARSHAL3(METHOD_CALL)                                 \
222 tree this_arg, obj_arg, offset_arg;                                     \
223 do                                                                      \
224 {                                                                       \
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));      \
230 }                                                                       \
231 while (0)
232
233 #define UNMARSHAL4(METHOD_CALL)                                 \
234 tree value_type, this_arg, obj_arg, offset_arg, value_arg;              \
235 do                                                                      \
236 {                                                                       \
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);                                   \
244 }                                                                       \
245 while (0)
246
247 #define UNMARSHAL5(METHOD_CALL)                                 \
248 tree value_type, this_arg, obj_arg, offset_arg, expected_arg, value_arg; \
249 do                                                                      \
250 {                                                                       \
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);                                   \
259 }                                                                       \
260 while (0)
261
262 /* Add an address to an offset, forming a sum.  */
263
264 static tree
265 build_addr_sum (tree type, tree addr, tree offset)
266 {
267   tree ptr_type = build_pointer_type (type);
268   return  fold_build2 (PLUS_EXPR, 
269                        ptr_type, 
270                        fold_convert (ptr_type, addr), offset);
271 }
272
273 /* Make sure that this-arg is non-NULL.  This is a security check.  */
274
275 static tree
276 build_check_this (tree stmt, tree this_arg)
277 {
278   return build2 (COMPOUND_EXPR, TREE_TYPE (stmt), 
279                  java_check_reference (this_arg, 1), stmt);
280 }
281
282 /* Now the builtins.  These correspond to the primitive functions in
283    libjava/sun/misc/natUnsafe.cc.  */
284
285 static tree
286 putObject_builtin (tree method_return_type ATTRIBUTE_UNUSED, 
287                    tree orig_call)
288 {
289   tree addr, stmt;
290   UNMARSHAL4 (orig_call);
291
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),
296                       value_arg);
297
298   return build_check_this (stmt, this_arg);
299 }
300
301 static tree
302 compareAndSwapInt_builtin (tree method_return_type ATTRIBUTE_UNUSED,
303                            tree orig_call)
304 {
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)
308     {
309       tree addr, stmt;
310       UNMARSHAL5 (orig_call);
311
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);
315
316       return build_check_this (stmt, this_arg);
317     }
318   return NULL_TREE;
319 }
320
321 static tree
322 compareAndSwapLong_builtin (tree method_return_type ATTRIBUTE_UNUSED,
323                             tree orig_call)
324 {
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)
328     {
329       tree addr, stmt;
330       UNMARSHAL5 (orig_call);
331
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);
335
336       return build_check_this (stmt, this_arg);
337     }
338   return NULL_TREE;
339 }
340 static tree
341 compareAndSwapObject_builtin (tree method_return_type ATTRIBUTE_UNUSED, 
342                               tree orig_call)
343 {
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)
347   {
348     tree addr, stmt;
349     int builtin;
350
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);
355
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);
359
360     return build_check_this (stmt, this_arg);
361   }
362   return NULL_TREE;
363 }
364
365 static tree
366 putVolatile_builtin (tree method_return_type ATTRIBUTE_UNUSED, 
367                      tree orig_call)
368 {
369   tree addr, stmt, modify_stmt;
370   UNMARSHAL4 (orig_call);
371   
372   addr = build_addr_sum (value_type, obj_arg, offset_arg);
373   addr 
374     = fold_convert (build_pointer_type (build_type_variant (value_type, 0, 1)),
375                     addr);
376   
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),
381                              value_arg);
382   stmt = build2 (COMPOUND_EXPR, TREE_TYPE (modify_stmt), 
383                  stmt, modify_stmt);
384
385   return build_check_this (stmt, this_arg);
386 }
387
388 static tree
389 getVolatile_builtin (tree method_return_type ATTRIBUTE_UNUSED, 
390                      tree orig_call)
391 {
392   tree addr, stmt, modify_stmt, tmp;
393   UNMARSHAL3 (orig_call);
394   
395   addr = build_addr_sum (method_return_type, obj_arg, offset_arg);
396   addr 
397     = fold_convert (build_pointer_type (build_type_variant 
398                                         (method_return_type, 0, 1)), addr);
399   
400   stmt = build_call_expr (built_in_decls[BUILT_IN_SYNCHRONIZE], 0);
401   
402   tmp = build_decl (VAR_DECL, NULL, method_return_type);
403   DECL_IGNORED_P (tmp) = 1;
404   DECL_ARTIFICIAL (tmp) = 1;
405   pushdecl (tmp);
406
407   modify_stmt = fold_build2 (MODIFY_EXPR, method_return_type,
408                              tmp,
409                              build_java_indirect_ref (method_return_type, addr,
410                                                       flag_check_references));
411
412   stmt = build2 (COMPOUND_EXPR, void_type_node, modify_stmt, stmt);
413   stmt = build2 (COMPOUND_EXPR, method_return_type, stmt, tmp);
414   
415   return stmt;
416 }
417
418 static tree
419 VMSupportsCS8_builtin (tree method_return_type, 
420                        tree orig_call ATTRIBUTE_UNUSED)
421 {
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;
427   else
428     return boolean_false_node;
429 }  
430
431 \f
432
433 #define BUILTIN_NOTHROW 1
434 #define BUILTIN_CONST 2
435 /* Define a single builtin.  */
436 static void
437 define_builtin (enum built_in_function val,
438                 const char *name,
439                 tree type,
440                 const char *libname,
441                 int flags)
442 {
443   tree decl;
444
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));
449   pushdecl (decl);
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;
456
457   implicit_built_in_decls[val] = decl;
458   built_in_decls[val] = decl;
459 }
460
461 \f
462
463 /* Initialize the builtins.  */
464 void
465 initialize_builtins (void)
466 {
467   tree double_ftype_double, double_ftype_double_double;
468   tree float_ftype_float, float_ftype_float_float;
469   tree boolean_ftype_boolean_boolean;
470   tree t;
471   int i;
472
473   for (i = 0; java_builtins[i].builtin_code != END_BUILTINS; ++i)
474     {
475       tree klass_id = get_identifier (java_builtins[i].class_name.s);
476       tree m = get_identifier (java_builtins[i].method_name.s);
477
478       java_builtins[i].class_name.t = klass_id;
479       java_builtins[i].method_name.t = m;
480     }
481
482   void_list_node = end_params_node;
483
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);
488
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);
493
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);
498
499   define_builtin (BUILT_IN_ACOS, "__builtin_acos",
500                   double_ftype_double, "_ZN4java4lang4Math4acosEJdd",
501                   BUILTIN_CONST);
502   define_builtin (BUILT_IN_ASIN, "__builtin_asin",
503                   double_ftype_double, "_ZN4java4lang4Math4asinEJdd",
504                   BUILTIN_CONST);
505   define_builtin (BUILT_IN_ATAN, "__builtin_atan",
506                   double_ftype_double, "_ZN4java4lang4Math4atanEJdd",
507                   BUILTIN_CONST);
508   define_builtin (BUILT_IN_ATAN2, "__builtin_atan2",
509                   double_ftype_double_double, "_ZN4java4lang4Math5atan2EJddd",
510                   BUILTIN_CONST);
511   define_builtin (BUILT_IN_CEIL, "__builtin_ceil",
512                   double_ftype_double, "_ZN4java4lang4Math4ceilEJdd",
513                   BUILTIN_CONST);
514   define_builtin (BUILT_IN_COS, "__builtin_cos",
515                   double_ftype_double, "_ZN4java4lang4Math3cosEJdd",
516                   BUILTIN_CONST);
517   define_builtin (BUILT_IN_EXP, "__builtin_exp",
518                   double_ftype_double, "_ZN4java4lang4Math3expEJdd",
519                   BUILTIN_CONST);
520   define_builtin (BUILT_IN_FLOOR, "__builtin_floor",
521                   double_ftype_double, "_ZN4java4lang4Math5floorEJdd",
522                   BUILTIN_CONST);
523   define_builtin (BUILT_IN_LOG, "__builtin_log",
524                   double_ftype_double, "_ZN4java4lang4Math3logEJdd",
525                   BUILTIN_CONST);
526   define_builtin (BUILT_IN_POW, "__builtin_pow",
527                   double_ftype_double_double, "_ZN4java4lang4Math3powEJddd",
528                   BUILTIN_CONST);
529   define_builtin (BUILT_IN_SIN, "__builtin_sin",
530                   double_ftype_double, "_ZN4java4lang4Math3sinEJdd",
531                   BUILTIN_CONST);
532   define_builtin (BUILT_IN_SQRT, "__builtin_sqrt",
533                   double_ftype_double, "_ZN4java4lang4Math4sqrtEJdd",
534                   BUILTIN_CONST);
535   define_builtin (BUILT_IN_TAN, "__builtin_tan",
536                   double_ftype_double, "_ZN4java4lang4Math3tanEJdd",
537                   BUILTIN_CONST);
538   
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,
544                   "__builtin_expect",
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,
549                                             int_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,
556                                             long_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);
563   
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);
567
568   build_common_builtin_nodes ();
569 }
570
571 /* If the call matches a builtin, return the
572    appropriate builtin expression instead.  */
573 tree
574 check_for_builtin (tree method, tree call)
575 {
576   if (optimize && TREE_CODE (call) == CALL_EXPR)
577     {
578       int i;
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));
582
583       for (i = 0; java_builtins[i].builtin_code != END_BUILTINS; ++i)
584         {
585           if (method_class == java_builtins[i].class_name.t
586               && method_name == java_builtins[i].method_name.t)
587             {
588               tree fn;
589
590               if (java_builtins[i].creator != NULL)
591                 {
592                   tree result
593                     = (*java_builtins[i].creator) (method_return_type, call);
594                   return result == NULL_TREE ? call : result;
595                 }
596
597               /* Builtin functions emit a direct call which is incompatible
598                  with the BC-ABI.  */
599               if (flag_indirect_dispatch)
600                 return call;
601               fn = built_in_decls[java_builtins[i].builtin_code];
602               if (fn == NULL_TREE)
603                 return call;
604               return java_build_function_call_expr (fn, call);
605             }
606         }
607     }
608   return call;
609 }
610
611 #include "gt-java-builtins.h"