OSDN Git Service

2011-07-06 Richard Guenther <rguenther@suse.de>
[pf3gnuchains/gcc-fork.git] / gcc / go / go-lang.c
1 /* go-lang.c -- Go frontend gcc interface.
2    Copyright (C) 2009, 2010, 2011 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3.  If not see
18 <http://www.gnu.org/licenses/>.  */
19
20 #include "config.h"
21 #include "system.h"
22 #include "ansidecl.h"
23 #include "coretypes.h"
24 #include "opts.h"
25 #include "tree.h"
26 #include "gimple.h"
27 #include "ggc.h"
28 #include "toplev.h"
29 #include "debug.h"
30 #include "options.h"
31 #include "flags.h"
32 #include "convert.h"
33 #include "diagnostic.h"
34 #include "langhooks.h"
35 #include "langhooks-def.h"
36 #include "except.h"
37 #include "target.h"
38 #include "common/common-target.h"
39
40 #include <mpfr.h>
41
42 #include "go-c.h"
43
44 /* Language-dependent contents of a type.  */
45
46 struct GTY(()) lang_type
47 {
48   char dummy;
49 };
50
51 /* Language-dependent contents of a decl.  */
52
53 struct GTY(()) lang_decl
54 {
55   char dummy;
56 };
57
58 /* Language-dependent contents of an identifier.  This must include a
59    tree_identifier.  */
60
61 struct GTY(()) lang_identifier
62 {
63   struct tree_identifier common;
64 };
65
66 /* The resulting tree type.  */
67
68 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
69            chain_next ("CODE_CONTAINS_STRUCT (TREE_CODE (&%h.generic), TS_COMMON) ? ((union lang_tree_node *) TREE_CHAIN (&%h.generic)) : NULL")))
70 lang_tree_node
71 {
72   union tree_node GTY((tag ("0"),
73                        desc ("tree_node_structure (&%h)"))) generic;
74   struct lang_identifier GTY((tag ("1"))) identifier;
75 };
76
77 /* We don't use language_function.  */
78
79 struct GTY(()) language_function
80 {
81   int dummy;
82 };
83
84 /* Language hooks.  */
85
86 static bool
87 go_langhook_init (void)
88 {
89   build_common_tree_nodes (false, false);
90
91   /* We must create the gogo IR after calling build_common_tree_nodes
92      (because Gogo::define_builtin_function_trees refers indirectly
93      to, e.g., unsigned_char_type_node) but before calling
94      build_common_builtin_nodes (because it calls, indirectly,
95      go_type_for_size).  */
96   go_create_gogo (INT_TYPE_SIZE, POINTER_SIZE);
97
98   build_common_builtin_nodes ();
99
100   /* I don't know why this is not done by any of the above.  */
101   void_list_node = build_tree_list (NULL_TREE, void_type_node);
102
103   /* The default precision for floating point numbers.  This is used
104      for floating point constants with abstract type.  This may
105      eventually be controllable by a command line option.  */
106   mpfr_set_default_prec (128);
107
108   /* Go uses exceptions.  */
109   using_eh_for_cleanups ();
110
111   return true;
112 }
113
114 /* The option mask.  */
115
116 static unsigned int
117 go_langhook_option_lang_mask (void)
118 {
119   return CL_Go;
120 }
121
122 /* Initialize the options structure.  */
123
124 static void
125 go_langhook_init_options_struct (struct gcc_options *opts)
126 {
127   /* Go says that signed overflow is precisely defined.  */
128   opts->x_flag_wrapv = 1;
129
130   /* We default to using strict aliasing, since Go pointers are safe.
131      This is turned off for code that imports the "unsafe" package,
132      because using unsafe.pointer violates C style aliasing
133      requirements.  */
134   opts->x_flag_strict_aliasing = 1;
135
136   /* Default to avoiding range issues for complex multiply and
137      divide.  */
138   opts->x_flag_complex_method = 2;
139
140   /* The builtin math functions should not set errno.  */
141   opts->x_flag_errno_math = 0;
142   opts->frontend_set_flag_errno_math = true;
143
144   /* We turn on stack splitting if we can.  */
145   if (targetm_common.supports_split_stack (false, opts))
146     opts->x_flag_split_stack = 1;
147
148   /* Exceptions are used to handle recovering from panics.  */
149   opts->x_flag_exceptions = 1;
150   opts->x_flag_non_call_exceptions = 1;
151 }
152
153 /* Infrastructure for a VEC of char * pointers.  */
154
155 typedef const char *go_char_p;
156 DEF_VEC_P(go_char_p);
157 DEF_VEC_ALLOC_P(go_char_p, heap);
158
159 /* The list of directories to search after all the Go specific
160    directories have been searched.  */
161
162 static VEC(go_char_p, heap) *go_search_dirs;
163
164 /* Handle Go specific options.  Return 0 if we didn't do anything.  */
165
166 static bool
167 go_langhook_handle_option (
168     size_t scode,
169     const char *arg,
170     int value ATTRIBUTE_UNUSED,
171     int kind ATTRIBUTE_UNUSED,
172     location_t loc ATTRIBUTE_UNUSED,
173     const struct cl_option_handlers *handlers ATTRIBUTE_UNUSED)
174 {
175   enum opt_code code = (enum opt_code) scode;
176   bool ret = true;
177
178   switch (code)
179     {
180     case OPT_I:
181       go_add_search_path (arg);
182       break;
183
184     case OPT_L:
185       /* A -L option is assumed to come from the compiler driver.
186          This is a system directory.  We search the following
187          directories, if they exist, before this one:
188            dir/go/VERSION
189            dir/go/VERSION/MACHINE
190          This is like include/c++.  */
191       {
192         static const char dir_separator_str[] = { DIR_SEPARATOR, 0 };
193         size_t len;
194         char *p;
195         struct stat st;
196
197         len = strlen (arg);
198         p = XALLOCAVEC (char,
199                         (len + sizeof "go" + sizeof DEFAULT_TARGET_VERSION
200                          + sizeof DEFAULT_TARGET_MACHINE + 3));
201         strcpy (p, arg);
202         if (len > 0 && !IS_DIR_SEPARATOR (p[len - 1]))
203           strcat (p, dir_separator_str);
204         strcat (p, "go");
205         strcat (p, dir_separator_str);
206         strcat (p, DEFAULT_TARGET_VERSION);
207         if (stat (p, &st) == 0 && S_ISDIR (st.st_mode))
208           {
209             go_add_search_path (p);
210             strcat (p, dir_separator_str);
211             strcat (p, DEFAULT_TARGET_MACHINE);
212             if (stat (p, &st) == 0 && S_ISDIR (st.st_mode))
213               go_add_search_path (p);
214           }
215
216         /* Search ARG too, but only after we've searched to Go
217            specific directories for all -L arguments.  */
218         VEC_safe_push (go_char_p, heap, go_search_dirs, arg);
219       }
220       break;
221
222     case OPT_fgo_dump_:
223       ret = go_enable_dump (arg) ? true : false;
224       break;
225
226     case OPT_fgo_prefix_:
227       go_set_prefix (arg);
228       break;
229
230     default:
231       /* Just return 1 to indicate that the option is valid.  */
232       break;
233     }
234
235   return ret;
236 }
237
238 /* Run after parsing options.  */
239
240 static bool
241 go_langhook_post_options (const char **pfilename ATTRIBUTE_UNUSED)
242 {
243   unsigned int ix;
244   const char *dir;
245
246   gcc_assert (num_in_fnames > 0);
247
248   FOR_EACH_VEC_ELT (go_char_p, go_search_dirs, ix, dir)
249     go_add_search_path (dir);
250   VEC_free (go_char_p, heap, go_search_dirs);
251   go_search_dirs = NULL;
252
253   if (flag_excess_precision_cmdline == EXCESS_PRECISION_DEFAULT)
254     flag_excess_precision_cmdline = EXCESS_PRECISION_STANDARD;
255
256   /* Returning false means that the backend should be used.  */
257   return false;
258 }
259
260 static void
261 go_langhook_parse_file (void)
262 {
263   go_parse_input_files (in_fnames, num_in_fnames, flag_syntax_only,
264                         go_require_return_statement);
265 }
266
267 static tree
268 go_langhook_type_for_size (unsigned int bits, int unsignedp)
269 {
270   return go_type_for_size (bits, unsignedp);
271 }
272
273 static tree
274 go_langhook_type_for_mode (enum machine_mode mode, int unsignedp)
275 {
276   /* Go has no vector types.  Build them here.  FIXME: It does not
277      make sense for the middle-end to ask the frontend for a type
278      which the frontend does not support.  However, at least for now
279      it is required.  See PR 46805.  */
280   if (VECTOR_MODE_P (mode))
281     {
282       tree inner;
283
284       inner = go_langhook_type_for_mode (GET_MODE_INNER (mode), unsignedp);
285       if (inner != NULL_TREE)
286         return build_vector_type_for_mode (inner, mode);
287       return NULL_TREE;
288     }
289
290   return go_type_for_mode (mode, unsignedp);
291 }
292
293 /* Record a builtin function.  We just ignore builtin functions.  */
294
295 static tree
296 go_langhook_builtin_function (tree decl)
297 {
298   return decl;
299 }
300
301 /* Return true if we are in the global binding level.  */
302
303 static bool
304 go_langhook_global_bindings_p (void)
305 {
306   return current_function_decl == NULL_TREE;
307 }
308
309 /* Push a declaration into the current binding level.  We can't
310    usefully implement this since we don't want to convert from tree
311    back to one of our internal data structures.  I think the only way
312    this is used is to record a decl which is to be returned by
313    getdecls, and we could implement it for that purpose if
314    necessary.  */
315
316 static tree
317 go_langhook_pushdecl (tree decl ATTRIBUTE_UNUSED)
318 {
319   gcc_unreachable ();
320 }
321
322 /* This hook is used to get the current list of declarations as trees.
323    We don't support that; instead we use the write_globals hook.  This
324    can't simply crash because it is called by -gstabs.  */
325
326 static tree
327 go_langhook_getdecls (void)
328 {
329   return NULL;
330 }
331
332 /* Write out globals.  */
333
334 static void
335 go_langhook_write_globals (void)
336 {
337   go_write_globals ();
338 }
339
340 /* Go specific gimplification.  We need to gimplify
341    CALL_EXPR_STATIC_CHAIN, because the gimplifier doesn't handle
342    it.  */
343
344 static int
345 go_langhook_gimplify_expr (tree *expr_p, gimple_seq *pre_p, gimple_seq *post_p)
346 {
347   if (TREE_CODE (*expr_p) == CALL_EXPR
348       && CALL_EXPR_STATIC_CHAIN (*expr_p) != NULL_TREE)
349     gimplify_expr (&CALL_EXPR_STATIC_CHAIN (*expr_p), pre_p, post_p,
350                    is_gimple_val, fb_rvalue);
351   return GS_UNHANDLED;
352 }
353
354 /* Return a decl for the exception personality function.  The function
355    itself is implemented in libgo/runtime/go-unwind.c.  */
356
357 static tree
358 go_langhook_eh_personality (void)
359 {
360   static tree personality_decl;
361   if (personality_decl == NULL_TREE)
362     {
363       personality_decl = build_personality_function ("gccgo");
364       go_preserve_from_gc (personality_decl);
365     }
366   return personality_decl;
367 }
368
369 /* Functions called directly by the generic backend.  */
370
371 tree
372 convert (tree type, tree expr)
373 {
374   if (type == error_mark_node
375       || expr == error_mark_node
376       || TREE_TYPE (expr) == error_mark_node)
377     return error_mark_node;
378
379   if (type == TREE_TYPE (expr))
380     return expr;
381
382   if (TYPE_MAIN_VARIANT (type) == TYPE_MAIN_VARIANT (TREE_TYPE (expr)))
383     return fold_convert (type, expr);
384
385   switch (TREE_CODE (type))
386     {
387     case VOID_TYPE:
388     case BOOLEAN_TYPE:
389       return fold_convert (type, expr);
390     case INTEGER_TYPE:
391       return fold (convert_to_integer (type, expr));
392     case POINTER_TYPE:
393       return fold (convert_to_pointer (type, expr));
394     case REAL_TYPE:
395       return fold (convert_to_real (type, expr));
396     case COMPLEX_TYPE:
397       return fold (convert_to_complex (type, expr));
398     default:
399       break;
400     }
401
402   gcc_unreachable ();
403 }
404
405 /* FIXME: This is a hack to preserve trees that we create from the
406    garbage collector.  */
407
408 static GTY(()) tree go_gc_root;
409
410 void
411 go_preserve_from_gc (tree t)
412 {
413   go_gc_root = tree_cons (NULL_TREE, t, go_gc_root);
414 }
415
416 /* Convert an identifier for use in an error message.  */
417
418 const char *
419 go_localize_identifier (const char *ident)
420 {
421   return identifier_to_locale (ident);
422 }
423
424 #undef LANG_HOOKS_NAME
425 #undef LANG_HOOKS_INIT
426 #undef LANG_HOOKS_OPTION_LANG_MASK
427 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
428 #undef LANG_HOOKS_HANDLE_OPTION
429 #undef LANG_HOOKS_POST_OPTIONS
430 #undef LANG_HOOKS_PARSE_FILE
431 #undef LANG_HOOKS_TYPE_FOR_MODE
432 #undef LANG_HOOKS_TYPE_FOR_SIZE
433 #undef LANG_HOOKS_BUILTIN_FUNCTION
434 #undef LANG_HOOKS_GLOBAL_BINDINGS_P
435 #undef LANG_HOOKS_PUSHDECL
436 #undef LANG_HOOKS_GETDECLS
437 #undef LANG_HOOKS_WRITE_GLOBALS
438 #undef LANG_HOOKS_GIMPLIFY_EXPR
439 #undef LANG_HOOKS_EH_PERSONALITY
440
441 #define LANG_HOOKS_NAME                 "GNU Go"
442 #define LANG_HOOKS_INIT                 go_langhook_init
443 #define LANG_HOOKS_OPTION_LANG_MASK     go_langhook_option_lang_mask
444 #define LANG_HOOKS_INIT_OPTIONS_STRUCT  go_langhook_init_options_struct
445 #define LANG_HOOKS_HANDLE_OPTION        go_langhook_handle_option
446 #define LANG_HOOKS_POST_OPTIONS         go_langhook_post_options
447 #define LANG_HOOKS_PARSE_FILE           go_langhook_parse_file
448 #define LANG_HOOKS_TYPE_FOR_MODE        go_langhook_type_for_mode
449 #define LANG_HOOKS_TYPE_FOR_SIZE        go_langhook_type_for_size
450 #define LANG_HOOKS_BUILTIN_FUNCTION     go_langhook_builtin_function
451 #define LANG_HOOKS_GLOBAL_BINDINGS_P    go_langhook_global_bindings_p
452 #define LANG_HOOKS_PUSHDECL             go_langhook_pushdecl
453 #define LANG_HOOKS_GETDECLS             go_langhook_getdecls
454 #define LANG_HOOKS_WRITE_GLOBALS        go_langhook_write_globals
455 #define LANG_HOOKS_GIMPLIFY_EXPR        go_langhook_gimplify_expr
456 #define LANG_HOOKS_EH_PERSONALITY       go_langhook_eh_personality
457
458 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
459
460 #include "gt-go-go-lang.h"
461 #include "gtype-go.h"