* xvasprintf.c: New file.
[official-gcc.git] / gcc / jit / dummy-frontend.c
blob7e3abda1f6fb458bbaaf3eee8fe93ae23f3eb9d6
1 /* jit.c -- Dummy "frontend" for use during JIT-compilation.
2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
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.
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.
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/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "opts.h"
24 #include "signop.h"
25 #include "tree-core.h"
26 #include "stor-layout.h"
27 #include "tree.h"
28 #include "debug.h"
29 #include "langhooks.h"
30 #include "langhooks-def.h"
31 #include "hash-map.h"
32 #include "is-a.h"
33 #include "plugin-api.h"
34 #include "vec.h"
35 #include "hashtab.h"
36 #include "hash-set.h"
37 #include "machmode.h"
38 #include "tm.h"
39 #include "hard-reg-set.h"
40 #include "function.h"
41 #include "ipa-ref.h"
42 #include "dumpfile.h"
43 #include "cgraph.h"
45 #include "jit-common.h"
46 #include "jit-playback.h"
48 #include <mpfr.h>
50 /* Language-dependent contents of a type. */
52 struct GTY(()) lang_type
54 char dummy;
57 /* Language-dependent contents of a decl. */
59 struct GTY((variable_size)) lang_decl
61 char dummy;
64 /* Language-dependent contents of an identifier. This must include a
65 tree_identifier. */
67 struct GTY(()) lang_identifier
69 struct tree_identifier common;
72 /* The resulting tree type. */
74 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
75 chain_next ("CODE_CONTAINS_STRUCT (TREE_CODE (&%h.generic), TS_COMMON) ? ((union lang_tree_node *) TREE_CHAIN (&%h.generic)) : NULL")))
76 lang_tree_node
78 union tree_node GTY((tag ("0"),
79 desc ("tree_node_structure (&%h)"))) generic;
80 struct lang_identifier GTY((tag ("1"))) identifier;
83 /* We don't use language_function. */
85 struct GTY(()) language_function
87 int dummy;
90 /* GC-marking callback for use from jit_root_tab.
92 If there's an active playback context, call its marking method
93 so that it can mark any pointers it references. */
95 static void my_ggc_walker (void *)
97 if (gcc::jit::active_playback_ctxt)
98 gcc::jit::active_playback_ctxt->gt_ggc_mx ();
101 const char *dummy;
103 struct ggc_root_tab jit_root_tab[] =
106 &dummy, 1, 0, my_ggc_walker, NULL
108 LAST_GGC_ROOT_TAB
111 /* Language hooks. */
113 static bool
114 jit_langhook_init (void)
116 static bool registered_root_tab = false;
117 if (!registered_root_tab)
119 ggc_register_root_tab (jit_root_tab);
120 registered_root_tab = true;
123 build_common_tree_nodes (false, false);
125 /* I don't know why this has to be done explicitly. */
126 void_list_node = build_tree_list (NULL_TREE, void_type_node);
128 build_common_builtin_nodes ();
130 /* The default precision for floating point numbers. This is used
131 for floating point constants with abstract type. This may
132 eventually be controllable by a command line option. */
133 mpfr_set_default_prec (256);
135 return true;
138 static void
139 jit_langhook_parse_file (void)
141 /* Replay the activity by the client, recorded on the context. */
142 gcc_assert (gcc::jit::active_playback_ctxt);
143 gcc::jit::active_playback_ctxt->replay ();
146 static tree
147 jit_langhook_type_for_mode (enum machine_mode mode, int unsignedp)
149 if (mode == TYPE_MODE (float_type_node))
150 return float_type_node;
152 if (mode == TYPE_MODE (double_type_node))
153 return double_type_node;
155 if (mode == TYPE_MODE (integer_type_node))
156 return unsignedp ? unsigned_type_node : integer_type_node;
158 if (mode == TYPE_MODE (long_integer_type_node))
159 return unsignedp ? long_unsigned_type_node : long_integer_type_node;
161 if (COMPLEX_MODE_P (mode))
163 if (mode == TYPE_MODE (complex_float_type_node))
164 return complex_float_type_node;
165 if (mode == TYPE_MODE (complex_double_type_node))
166 return complex_double_type_node;
167 if (mode == TYPE_MODE (complex_long_double_type_node))
168 return complex_long_double_type_node;
169 if (mode == TYPE_MODE (complex_integer_type_node) && !unsignedp)
170 return complex_integer_type_node;
173 /* gcc_unreachable */
174 return NULL;
177 static tree
178 jit_langhook_type_for_size (unsigned int bits ATTRIBUTE_UNUSED,
179 int unsignedp ATTRIBUTE_UNUSED)
181 gcc_unreachable ();
182 return NULL;
185 /* Record a builtin function. We just ignore builtin functions. */
187 static tree
188 jit_langhook_builtin_function (tree decl)
190 return decl;
193 static bool
194 jit_langhook_global_bindings_p (void)
196 gcc_unreachable ();
197 return true;
200 static tree
201 jit_langhook_pushdecl (tree decl ATTRIBUTE_UNUSED)
203 gcc_unreachable ();
206 static tree
207 jit_langhook_getdecls (void)
209 return NULL;
212 static void
213 jit_langhook_write_globals (void)
215 /* This is the hook that runs the middle and backends: */
216 symtab->finalize_compilation_unit ();
219 #undef LANG_HOOKS_NAME
220 #define LANG_HOOKS_NAME "libgccjit"
222 #undef LANG_HOOKS_INIT
223 #define LANG_HOOKS_INIT jit_langhook_init
225 #undef LANG_HOOKS_PARSE_FILE
226 #define LANG_HOOKS_PARSE_FILE jit_langhook_parse_file
228 #undef LANG_HOOKS_TYPE_FOR_MODE
229 #define LANG_HOOKS_TYPE_FOR_MODE jit_langhook_type_for_mode
231 #undef LANG_HOOKS_TYPE_FOR_SIZE
232 #define LANG_HOOKS_TYPE_FOR_SIZE jit_langhook_type_for_size
234 #undef LANG_HOOKS_BUILTIN_FUNCTION
235 #define LANG_HOOKS_BUILTIN_FUNCTION jit_langhook_builtin_function
237 #undef LANG_HOOKS_GLOBAL_BINDINGS_P
238 #define LANG_HOOKS_GLOBAL_BINDINGS_P jit_langhook_global_bindings_p
240 #undef LANG_HOOKS_PUSHDECL
241 #define LANG_HOOKS_PUSHDECL jit_langhook_pushdecl
243 #undef LANG_HOOKS_GETDECLS
244 #define LANG_HOOKS_GETDECLS jit_langhook_getdecls
246 #undef LANG_HOOKS_WRITE_GLOBALS
247 #define LANG_HOOKS_WRITE_GLOBALS jit_langhook_write_globals
249 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
251 #include "gt-jit-dummy-frontend.h"
252 #include "gtype-jit.h"