Branch data Line data Source code
1 : : /* Internals of libgccjit: classes for playing back recorded API calls.
2 : : Copyright (C) 2013-2024 Free Software Foundation, Inc.
3 : : Contributed by David Malcolm <dmalcolm@redhat.com>.
4 : :
5 : : This file is part of GCC.
6 : :
7 : : GCC is free software; you can redistribute it and/or modify it
8 : : 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, but
13 : : WITHOUT ANY WARRANTY; without even the implied warranty of
14 : : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 : : General Public License for more details.
16 : :
17 : : You should have received a copy of the GNU General Public License
18 : : along with GCC; see the file COPYING3. If not see
19 : : <http://www.gnu.org/licenses/>. */
20 : :
21 : : #include "config.h"
22 : : #define INCLUDE_MUTEX
23 : : #include "libgccjit.h"
24 : : #include "system.h"
25 : : #include "coretypes.h"
26 : : #include "target.h"
27 : : #include "tree.h"
28 : : #include "stringpool.h"
29 : : #include "cgraph.h"
30 : : #include "dumpfile.h"
31 : : #include "toplev.h"
32 : : #include "tree-cfg.h"
33 : : #include "convert.h"
34 : : #include "gimple-expr.h"
35 : : #include "stor-layout.h"
36 : : #include "print-tree.h"
37 : : #include "gimplify.h"
38 : : #include "gcc-driver-name.h"
39 : : #include "attribs.h"
40 : : #include "context.h"
41 : : #include "fold-const.h"
42 : : #include "opt-suggestions.h"
43 : : #include "gcc.h"
44 : : #include "diagnostic.h"
45 : : #include "stmt.h"
46 : : #include "realmpfr.h"
47 : :
48 : : #include "jit-playback.h"
49 : : #include "jit-result.h"
50 : : #include "jit-builtins.h"
51 : : #include "jit-tempdir.h"
52 : :
53 : : #ifdef _WIN32
54 : : #include "jit-w32.h"
55 : : #endif
56 : :
57 : : /* Compare with gcc/c-family/c-common.h: DECL_C_BIT_FIELD,
58 : : SET_DECL_C_BIT_FIELD.
59 : : These are redefined here to avoid depending from the C frontend. */
60 : : #define DECL_JIT_BIT_FIELD(NODE) \
61 : : (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) == 1)
62 : : #define SET_DECL_JIT_BIT_FIELD(NODE) \
63 : : (DECL_LANG_FLAG_4 (FIELD_DECL_CHECK (NODE)) = 1)
64 : :
65 : : /* gcc::jit::playback::context::build_cast uses the convert.h API,
66 : : which in turn requires the frontend to provide a "convert"
67 : : function, apparently as a fallback for casts that can be simplified
68 : : (truncation, extension). */
69 : : extern tree convert (tree type, tree expr);
70 : :
71 : : tree
72 : 15 : convert (tree dst_type, tree expr)
73 : : {
74 : 15 : tree t_ret = NULL;
75 : 15 : t_ret = targetm.convert_to_type (dst_type, expr);
76 : 15 : if (t_ret)
77 : : return t_ret;
78 : 15 : switch (TREE_CODE (dst_type))
79 : : {
80 : 15 : case INTEGER_TYPE:
81 : 15 : case ENUMERAL_TYPE:
82 : 15 : return fold (convert_to_integer (dst_type, expr));
83 : :
84 : 0 : default:
85 : 0 : gcc_assert (gcc::jit::active_playback_ctxt);
86 : 0 : gcc::jit::active_playback_ctxt->add_error (NULL, "unhandled conversion");
87 : 0 : fprintf (stderr, "input expression:\n");
88 : 0 : debug_tree (expr);
89 : 0 : fprintf (stderr, "requested type:\n");
90 : 0 : debug_tree (dst_type);
91 : 0 : return error_mark_node;
92 : : }
93 : : }
94 : :
95 : : namespace gcc {
96 : : namespace jit {
97 : :
98 : : /**********************************************************************
99 : : Playback.
100 : : **********************************************************************/
101 : :
102 : : /* Fold a readonly non-volatile variable with an initial constant value,
103 : : to that value.
104 : :
105 : : Otherwise return the argument unchanged.
106 : :
107 : : This fold is needed for setting a variable's DECL_INITIAL to the value
108 : : of a const variable. The c-frontend does this in its own special
109 : : fold (), so we lift this part out and do it explicitly where there is a
110 : : potential for variables to be used as rvalues. */
111 : : static tree
112 : 12871 : fold_const_var (tree node)
113 : : {
114 : : /* See c_fully_fold_internal in c-fold.cc and decl_constant_value_1
115 : : in c-typeck.cc. */
116 : 12871 : if (VAR_P (node)
117 : 4343 : && TREE_READONLY (node)
118 : 50 : && !TREE_THIS_VOLATILE (node)
119 : 50 : && DECL_INITIAL (node) != NULL_TREE
120 : : /* "This is invalid if initial value is not constant.
121 : : If it has either a function call, a memory reference,
122 : : or a variable, then re-evaluating it could give different
123 : : results." */
124 : 12916 : && TREE_CONSTANT (DECL_INITIAL (node)))
125 : : {
126 : 45 : tree ret = DECL_INITIAL (node);
127 : : /* "Avoid unwanted tree sharing between the initializer and current
128 : : function's body where the tree can be modified e.g. by the
129 : : gimplifier." */
130 : 45 : if (TREE_STATIC (node))
131 : 45 : ret = unshare_expr (ret);
132 : :
133 : 45 : return ret;
134 : : }
135 : :
136 : : return node;
137 : : }
138 : :
139 : : /* Build a STRING_CST tree for STR, or return NULL if it is NULL.
140 : : The TREE_TYPE is not initialized. */
141 : :
142 : : static tree
143 : 180 : build_string (const char *str)
144 : : {
145 : 180 : if (str)
146 : 140 : return ::build_string (strlen (str), str);
147 : : else
148 : : return NULL_TREE;
149 : : }
150 : :
151 : : /* The constructor for gcc::jit::playback::context. */
152 : :
153 : 1244 : playback::context::context (recording::context *ctxt)
154 : : : log_user (ctxt->get_logger ()),
155 : 1244 : m_recording_ctxt (ctxt),
156 : 1244 : m_tempdir (NULL),
157 : 1244 : m_const_char_ptr (NULL)
158 : : {
159 : 1244 : JIT_LOG_SCOPE (get_logger ());
160 : 1244 : m_functions.create (0);
161 : 1244 : m_globals.create (0);
162 : 1244 : m_source_files.create (0);
163 : 1244 : m_cached_locations.create (0);
164 : 1244 : }
165 : :
166 : : /* The destructor for gcc::jit::playback::context. */
167 : :
168 : 1244 : playback::context::~context ()
169 : : {
170 : 1244 : JIT_LOG_SCOPE (get_logger ());
171 : :
172 : : /* Normally the playback::context is responsible for cleaning up the
173 : : tempdir (including "fake.so" within the filesystem).
174 : :
175 : : In the normal case, clean it up now.
176 : :
177 : : However m_tempdir can be NULL if the context has handed over
178 : : responsibility for the tempdir cleanup to the jit::result object, so
179 : : that the cleanup can be delayed (see PR jit/64206). If that's the
180 : : case this "delete NULL;" is a no-op. */
181 : 1244 : delete m_tempdir;
182 : :
183 : 1244 : m_functions.release ();
184 : 1244 : }
185 : :
186 : : /* A playback::context can reference GC-managed pointers. Mark them
187 : : ("by hand", rather than by gengtype).
188 : :
189 : : This is called on the active playback context (if any) by the
190 : : my_ggc_walker hook in the jit_root_table in dummy-frontend.cc. */
191 : :
192 : : void
193 : 495343 : playback::context::
194 : : gt_ggc_mx ()
195 : : {
196 : 495343 : int i;
197 : 495343 : function *func;
198 : 35500339 : FOR_EACH_VEC_ELT (m_functions, i, func)
199 : : {
200 : 35004996 : if (ggc_test_and_set_mark (func))
201 : 35004996 : func->gt_ggc_mx ();
202 : : }
203 : 495343 : }
204 : :
205 : : /* Given an enum gcc_jit_types value, get a "tree" type. */
206 : :
207 : : tree
208 : 7769 : playback::context::
209 : : get_tree_node_for_type (enum gcc_jit_types type_)
210 : : {
211 : 7769 : switch (type_)
212 : : {
213 : 1204 : case GCC_JIT_TYPE_VOID:
214 : 1204 : return void_type_node;
215 : :
216 : 70 : case GCC_JIT_TYPE_VOID_PTR:
217 : 70 : return ptr_type_node;
218 : :
219 : 652 : case GCC_JIT_TYPE_BOOL:
220 : 652 : return boolean_type_node;
221 : :
222 : 136 : case GCC_JIT_TYPE_CHAR:
223 : 136 : return char_type_node;
224 : 30 : case GCC_JIT_TYPE_SIGNED_CHAR:
225 : 30 : return signed_char_type_node;
226 : 41 : case GCC_JIT_TYPE_UNSIGNED_CHAR:
227 : 41 : return unsigned_char_type_node;
228 : :
229 : 40 : case GCC_JIT_TYPE_SHORT:
230 : 40 : return short_integer_type_node;
231 : 25 : case GCC_JIT_TYPE_UNSIGNED_SHORT:
232 : 25 : return short_unsigned_type_node;
233 : :
234 : 117 : case GCC_JIT_TYPE_CONST_CHAR_PTR:
235 : 117 : return m_const_char_ptr;
236 : :
237 : 1234 : case GCC_JIT_TYPE_INT:
238 : 1234 : return integer_type_node;
239 : 1204 : case GCC_JIT_TYPE_UNSIGNED_INT:
240 : 1204 : return unsigned_type_node;
241 : :
242 : 15 : case GCC_JIT_TYPE_UINT8_T:
243 : 15 : return unsigned_intQI_type_node;
244 : 15 : case GCC_JIT_TYPE_UINT16_T:
245 : 15 : return uint16_type_node;
246 : 15 : case GCC_JIT_TYPE_UINT32_T:
247 : 15 : return uint32_type_node;
248 : 15 : case GCC_JIT_TYPE_UINT64_T:
249 : 15 : return uint64_type_node;
250 : 15 : case GCC_JIT_TYPE_UINT128_T:
251 : 15 : if (targetm.scalar_mode_supported_p (TImode))
252 : 15 : return uint128_type_node;
253 : :
254 : 0 : add_error (NULL, "gcc_jit_types value unsupported on this target: %i",
255 : : type_);
256 : 0 : return NULL;
257 : :
258 : 15 : case GCC_JIT_TYPE_INT8_T:
259 : 15 : return intQI_type_node;
260 : 15 : case GCC_JIT_TYPE_INT16_T:
261 : 15 : return intHI_type_node;
262 : 15 : case GCC_JIT_TYPE_INT32_T:
263 : 15 : return intSI_type_node;
264 : 15 : case GCC_JIT_TYPE_INT64_T:
265 : 15 : return intDI_type_node;
266 : 15 : case GCC_JIT_TYPE_INT128_T:
267 : 15 : if (targetm.scalar_mode_supported_p (TImode))
268 : 15 : return intTI_type_node;
269 : :
270 : 0 : add_error (NULL, "gcc_jit_types value unsupported on this target: %i",
271 : : type_);
272 : 0 : return NULL;
273 : :
274 : 79 : case GCC_JIT_TYPE_LONG:
275 : 79 : return long_integer_type_node;
276 : 1204 : case GCC_JIT_TYPE_UNSIGNED_LONG:
277 : 1204 : return long_unsigned_type_node;
278 : :
279 : 27 : case GCC_JIT_TYPE_LONG_LONG:
280 : 27 : return long_long_integer_type_node;
281 : 1204 : case GCC_JIT_TYPE_UNSIGNED_LONG_LONG:
282 : 1204 : return long_long_unsigned_type_node;
283 : :
284 : 95 : case GCC_JIT_TYPE_FLOAT:
285 : 95 : return float_type_node;
286 : 5 : case GCC_JIT_TYPE_BFLOAT16:
287 : : #ifndef HAVE_BFmode
288 : : add_error (NULL, "gcc_jit_types value unsupported on this target: %i",
289 : : type_);
290 : : #endif
291 : 5 : return bfloat16_type_node;
292 : 132 : case GCC_JIT_TYPE_DOUBLE:
293 : 132 : return double_type_node;
294 : 15 : case GCC_JIT_TYPE_LONG_DOUBLE:
295 : 15 : return long_double_type_node;
296 : :
297 : 75 : case GCC_JIT_TYPE_SIZE_T:
298 : 75 : return size_type_node;
299 : :
300 : 15 : case GCC_JIT_TYPE_FILE_PTR:
301 : 15 : return fileptr_type_node;
302 : :
303 : 0 : case GCC_JIT_TYPE_COMPLEX_FLOAT:
304 : 0 : return complex_float_type_node;
305 : 15 : case GCC_JIT_TYPE_COMPLEX_DOUBLE:
306 : 15 : return complex_double_type_node;
307 : 0 : case GCC_JIT_TYPE_COMPLEX_LONG_DOUBLE:
308 : 0 : return complex_long_double_type_node;
309 : : }
310 : :
311 : 0 : add_error (NULL, "unrecognized (enum gcc_jit_types) value: %i",
312 : : type_);
313 : :
314 : 0 : return NULL;
315 : : }
316 : :
317 : : /* Construct a playback::type instance (wrapping a tree) for the given
318 : : enum value. */
319 : :
320 : : playback::type *
321 : 7769 : playback::context::
322 : : get_type (enum gcc_jit_types type_)
323 : : {
324 : 7769 : tree type_node = get_tree_node_for_type (type_);
325 : 7769 : if (type_node == NULL)
326 : : return NULL;
327 : :
328 : 7769 : return new type (type_node);
329 : : }
330 : :
331 : : void
332 : 5 : playback::context::
333 : : set_output_ident (const char* ident)
334 : : {
335 : 5 : targetm.asm_out.output_ident (ident);
336 : 5 : }
337 : :
338 : : /* Construct a playback::type instance (wrapping a tree) for the given
339 : : array type. */
340 : :
341 : : playback::type *
342 : 295 : playback::context::
343 : : new_array_type (playback::location *loc,
344 : : playback::type *element_type,
345 : : int num_elements)
346 : : {
347 : 295 : gcc_assert (element_type);
348 : :
349 : 295 : tree t = build_array_type_nelts (element_type->as_tree (),
350 : : num_elements);
351 : 295 : layout_type (t);
352 : :
353 : 295 : if (loc)
354 : 0 : set_tree_location (t, loc);
355 : :
356 : 295 : return new type (t);
357 : : }
358 : :
359 : : /* Construct a playback::field instance (wrapping a tree). */
360 : :
361 : : playback::field *
362 : 1603 : playback::context::
363 : : new_field (location *loc,
364 : : type *type,
365 : : const char *name)
366 : : {
367 : 1603 : gcc_assert (type);
368 : 1603 : gcc_assert (name);
369 : :
370 : : /* compare with c/c-decl.cc:grokfield and grokdeclarator. */
371 : 1603 : tree decl = build_decl (UNKNOWN_LOCATION, FIELD_DECL,
372 : : get_identifier (name), type->as_tree ());
373 : :
374 : 1603 : if (loc)
375 : 0 : set_tree_location (decl, loc);
376 : :
377 : 1603 : return new field (decl);
378 : : }
379 : :
380 : : /* Construct a playback::bitfield instance (wrapping a tree). */
381 : :
382 : : playback::field *
383 : 95 : playback::context::
384 : : new_bitfield (location *loc,
385 : : type *type,
386 : : int width,
387 : : const char *name)
388 : : {
389 : 95 : gcc_assert (type);
390 : 95 : gcc_assert (name);
391 : 95 : gcc_assert (width);
392 : :
393 : : /* compare with c/c-decl.cc:grokfield, grokdeclarator and
394 : : check_bitfield_type_and_width. */
395 : :
396 : 95 : tree tree_type = type->as_tree ();
397 : 95 : gcc_assert (INTEGRAL_TYPE_P (tree_type));
398 : 95 : tree tree_width = build_int_cst (integer_type_node, width);
399 : 95 : if (compare_tree_int (tree_width, TYPE_PRECISION (tree_type)) > 0)
400 : : {
401 : 10 : add_error (
402 : : loc,
403 : : "width of bit-field %s (width: %i) is wider than its type (width: %i)",
404 : 5 : name, width, TYPE_PRECISION (tree_type));
405 : 5 : return NULL;
406 : : }
407 : :
408 : 90 : tree decl = build_decl (UNKNOWN_LOCATION, FIELD_DECL,
409 : : get_identifier (name), type->as_tree ());
410 : 90 : DECL_NONADDRESSABLE_P (decl) = true;
411 : 90 : DECL_INITIAL (decl) = tree_width;
412 : 90 : SET_DECL_JIT_BIT_FIELD (decl);
413 : :
414 : 90 : if (loc)
415 : 0 : set_tree_location (decl, loc);
416 : :
417 : 90 : return new field (decl);
418 : : }
419 : :
420 : : /* Construct a playback::compound_type instance (wrapping a tree). */
421 : :
422 : : playback::compound_type *
423 : 567 : playback::context::
424 : : new_compound_type (location *loc,
425 : : const char *name,
426 : : bool is_struct) /* else is union */
427 : : {
428 : 567 : gcc_assert (name);
429 : :
430 : : /* Compare with c/c-decl.cc: start_struct. */
431 : :
432 : 642 : tree t = make_node (is_struct ? RECORD_TYPE : UNION_TYPE);
433 : 567 : TYPE_NAME (t) = get_identifier (name);
434 : 567 : TYPE_SIZE (t) = 0;
435 : :
436 : 567 : if (loc)
437 : 0 : set_tree_location (t, loc);
438 : :
439 : 567 : return new compound_type (t);
440 : : }
441 : :
442 : : void
443 : 537 : playback::compound_type::set_fields (const auto_vec<playback::field *> *fields)
444 : : {
445 : : /* Compare with c/c-decl.cc: finish_struct. */
446 : 537 : tree t = as_tree ();
447 : :
448 : 537 : tree fieldlist = NULL;
449 : 2225 : for (unsigned i = 0; i < fields->length (); i++)
450 : : {
451 : 1688 : field *f = (*fields)[i];
452 : 1688 : tree x = f->as_tree ();
453 : 1688 : DECL_CONTEXT (x) = t;
454 : 1688 : if (DECL_JIT_BIT_FIELD (x))
455 : : {
456 : 85 : unsigned HOST_WIDE_INT width = tree_to_uhwi (DECL_INITIAL (x));
457 : 85 : DECL_SIZE (x) = bitsize_int (width);
458 : 85 : DECL_BIT_FIELD (x) = 1;
459 : : }
460 : 1688 : fieldlist = chainon (x, fieldlist);
461 : : }
462 : 537 : fieldlist = nreverse (fieldlist);
463 : 537 : TYPE_FIELDS (t) = fieldlist;
464 : :
465 : 537 : layout_type (t);
466 : 537 : }
467 : :
468 : : /* Construct a playback::type instance (wrapping a tree) for a function
469 : : type. */
470 : :
471 : : playback::type *
472 : 5031 : playback::context::
473 : : new_function_type (type *return_type,
474 : : const auto_vec<type *> *param_types,
475 : : int is_variadic)
476 : : {
477 : 5031 : int i;
478 : 5031 : type *param_type;
479 : :
480 : 5031 : tree *arg_types = (tree *)xcalloc(param_types->length (), sizeof(tree*));
481 : :
482 : 14119 : FOR_EACH_VEC_ELT (*param_types, i, param_type)
483 : 4057 : arg_types[i] = param_type->as_tree ();
484 : :
485 : 5031 : tree fn_type;
486 : 5031 : if (is_variadic)
487 : 15 : fn_type =
488 : 15 : build_varargs_function_type_array (return_type->as_tree (),
489 : 15 : param_types->length (),
490 : : arg_types);
491 : : else
492 : 10032 : fn_type = build_function_type_array (return_type->as_tree (),
493 : 8828 : param_types->length (),
494 : : arg_types);
495 : 5031 : free (arg_types);
496 : :
497 : 5031 : return new type (fn_type);
498 : : }
499 : :
500 : : /* Construct a playback::param instance (wrapping a tree). */
501 : :
502 : : playback::param *
503 : 15660 : playback::context::
504 : : new_param (location *loc,
505 : : type *type,
506 : : const char *name)
507 : : {
508 : 15660 : gcc_assert (type);
509 : 15660 : gcc_assert (name);
510 : 15660 : tree inner = build_decl (UNKNOWN_LOCATION, PARM_DECL,
511 : : get_identifier (name), type->as_tree ());
512 : 15660 : if (loc)
513 : 29 : set_tree_location (inner, loc);
514 : :
515 : 15660 : return new param (this, inner);
516 : : }
517 : :
518 : 50 : const char* fn_attribute_to_string (gcc_jit_fn_attribute attr)
519 : : {
520 : 50 : switch (attr)
521 : : {
522 : : case GCC_JIT_FN_ATTRIBUTE_ALIAS:
523 : : return "alias";
524 : 5 : case GCC_JIT_FN_ATTRIBUTE_ALWAYS_INLINE:
525 : 5 : return "always_inline";
526 : : case GCC_JIT_FN_ATTRIBUTE_INLINE:
527 : : return NULL;
528 : 5 : case GCC_JIT_FN_ATTRIBUTE_NOINLINE:
529 : 5 : return "noinline";
530 : 0 : case GCC_JIT_FN_ATTRIBUTE_TARGET:
531 : 0 : return "target";
532 : 5 : case GCC_JIT_FN_ATTRIBUTE_USED:
533 : 5 : return "used";
534 : 0 : case GCC_JIT_FN_ATTRIBUTE_VISIBILITY:
535 : 0 : return "visibility";
536 : 5 : case GCC_JIT_FN_ATTRIBUTE_COLD:
537 : 5 : return "cold";
538 : 0 : case GCC_JIT_FN_ATTRIBUTE_RETURNS_TWICE:
539 : 0 : return "returns_twice";
540 : 5 : case GCC_JIT_FN_ATTRIBUTE_PURE:
541 : 5 : return "pure";
542 : 5 : case GCC_JIT_FN_ATTRIBUTE_CONST:
543 : 5 : return "const";
544 : 5 : case GCC_JIT_FN_ATTRIBUTE_WEAK:
545 : 5 : return "weak";
546 : 5 : case GCC_JIT_FN_ATTRIBUTE_NONNULL:
547 : 5 : return "nonnull";
548 : : case GCC_JIT_FN_ATTRIBUTE_MAX:
549 : : return NULL;
550 : : }
551 : : return NULL;
552 : : }
553 : :
554 : 5 : const char* variable_attribute_to_string (gcc_jit_variable_attribute attr)
555 : : {
556 : 5 : switch (attr)
557 : : {
558 : : case GCC_JIT_VARIABLE_ATTRIBUTE_VISIBILITY:
559 : : return "visibility";
560 : : case GCC_JIT_VARIABLE_ATTRIBUTE_MAX:
561 : : return NULL;
562 : : }
563 : : return NULL;
564 : : }
565 : :
566 : : /* Construct a playback::function instance. */
567 : :
568 : : playback::function *
569 : 15712 : playback::context::
570 : : new_function (location *loc,
571 : : enum gcc_jit_function_kind kind,
572 : : type *return_type,
573 : : const char *name,
574 : : const auto_vec<param *> *params,
575 : : int is_variadic,
576 : : enum built_in_function builtin_id,
577 : : const std::vector<gcc_jit_fn_attribute> &attributes,
578 : : const std::vector<std::pair<gcc_jit_fn_attribute,
579 : : std::string>> &string_attributes,
580 : : const std::vector<std::pair<gcc_jit_fn_attribute,
581 : : std::vector<int>>>
582 : : &int_array_attributes,
583 : : bool is_target_builtin)
584 : : {
585 : 15712 : int i;
586 : 15712 : param *param;
587 : :
588 : : //can return_type be NULL?
589 : 15712 : gcc_assert (name);
590 : :
591 : 15712 : tree *arg_types = (tree *)xcalloc(params->length (), sizeof(tree*));
592 : 47084 : FOR_EACH_VEC_ELT (*params, i, param)
593 : 15660 : arg_types[i] = TREE_TYPE (param->as_tree ());
594 : :
595 : 15712 : tree fn_type;
596 : 15712 : if (is_variadic)
597 : 204 : fn_type = build_varargs_function_type_array (return_type->as_tree (),
598 : 154 : params->length (), arg_types);
599 : : else
600 : 31220 : fn_type = build_function_type_array (return_type->as_tree (),
601 : 29160 : params->length (), arg_types);
602 : 15712 : free (arg_types);
603 : :
604 : : /* FIXME: this uses input_location: */
605 : 15712 : tree fndecl = build_fn_decl (name, fn_type);
606 : :
607 : 15712 : if (loc)
608 : 56 : set_tree_location (fndecl, loc);
609 : :
610 : 15712 : tree resdecl = build_decl (UNKNOWN_LOCATION, RESULT_DECL,
611 : : NULL_TREE, return_type->as_tree ());
612 : 15712 : DECL_ARTIFICIAL (resdecl) = 1;
613 : 15712 : DECL_IGNORED_P (resdecl) = 1;
614 : 15712 : DECL_RESULT (fndecl) = resdecl;
615 : 15712 : DECL_CONTEXT (resdecl) = fndecl;
616 : :
617 : 15712 : tree fn_attributes = NULL_TREE;
618 : :
619 : 15712 : if (is_target_builtin)
620 : : {
621 : 10 : tree *decl = target_builtins.get (name);
622 : 10 : if (decl != NULL)
623 : 10 : fndecl = *decl;
624 : : else
625 : 0 : add_error (loc, "cannot find target builtin %s", name);
626 : : }
627 : :
628 : 15712 : if (builtin_id)
629 : : {
630 : 12250 : gcc_assert (loc == NULL);
631 : 12250 : DECL_SOURCE_LOCATION (fndecl) = BUILTINS_LOCATION;
632 : :
633 : 12250 : built_in_class fclass = builtins_manager::get_class (builtin_id);
634 : 12250 : set_decl_built_in_function (fndecl, fclass, builtin_id);
635 : 12250 : set_builtin_decl (builtin_id, fndecl,
636 : 12250 : builtins_manager::implicit_p (builtin_id));
637 : :
638 : 12250 : builtins_manager *bm = get_builtins_manager ();
639 : 12250 : tree attrs = bm->get_attrs_tree (builtin_id);
640 : 12250 : if (attrs)
641 : 12250 : decl_attributes (&fndecl, attrs, ATTR_FLAG_BUILT_IN);
642 : : else
643 : 0 : decl_attributes (&fndecl, NULL_TREE, 0);
644 : : }
645 : :
646 : 15712 : if (kind != GCC_JIT_FUNCTION_IMPORTED)
647 : : {
648 : : tree param_decl_list = NULL;
649 : 7440 : FOR_EACH_VEC_ELT (*params, i, param)
650 : : {
651 : 4174 : param_decl_list = chainon (param->as_tree (), param_decl_list);
652 : : }
653 : :
654 : : /* The param list was created in reverse order; fix it: */
655 : 3266 : param_decl_list = nreverse (param_decl_list);
656 : :
657 : 3266 : tree t;
658 : 10706 : for (t = param_decl_list; t; t = DECL_CHAIN (t))
659 : : {
660 : 4174 : DECL_CONTEXT (t) = fndecl;
661 : 4174 : DECL_ARG_TYPE (t) = TREE_TYPE (t);
662 : : }
663 : :
664 : : /* Set it up on DECL_ARGUMENTS */
665 : 3266 : DECL_ARGUMENTS(fndecl) = param_decl_list;
666 : : }
667 : :
668 : 3266 : if (kind == GCC_JIT_FUNCTION_ALWAYS_INLINE)
669 : : {
670 : 15 : DECL_DECLARED_INLINE_P (fndecl) = 1;
671 : :
672 : : /* Add attribute "always_inline": */
673 : 15 : fn_attributes = tree_cons (get_identifier ("always_inline"),
674 : : NULL,
675 : : fn_attributes);
676 : : }
677 : :
678 : : /* All attributes need to be declared in `dummy-frontend.cc` and more
679 : : specifically in `jit_attribute_table`. */
680 : 15752 : for (auto attr: attributes)
681 : : {
682 : 40 : if (attr == GCC_JIT_FN_ATTRIBUTE_INLINE)
683 : 5 : DECL_DECLARED_INLINE_P (fndecl) = 1;
684 : :
685 : 40 : const char* attribute = fn_attribute_to_string (attr);
686 : 40 : if (attribute)
687 : : {
688 : 35 : tree ident = get_identifier (attribute);
689 : 35 : fn_attributes = tree_cons (ident, NULL_TREE, fn_attributes);
690 : : }
691 : : }
692 : :
693 : 15717 : for (auto attr: string_attributes)
694 : : {
695 : 5 : gcc_jit_fn_attribute& name = std::get<0>(attr);
696 : 5 : std::string& value = std::get<1>(attr);
697 : 5 : tree attribute_value = build_tree_list (NULL_TREE,
698 : 5 : ::build_string (value.length () + 1, value.c_str ()));
699 : 5 : const char* attribute = fn_attribute_to_string (name);
700 : 10 : tree ident = attribute ? get_identifier (attribute) : NULL;
701 : :
702 : 5 : if (ident)
703 : 5 : fn_attributes = tree_cons (ident, attribute_value, fn_attributes);
704 : 5 : }
705 : :
706 : 15717 : for (auto attr: int_array_attributes)
707 : : {
708 : 5 : gcc_jit_fn_attribute& name = std::get<0>(attr);
709 : 5 : std::vector<int>& values = std::get<1>(attr);
710 : :
711 : 5 : const char* attribute = fn_attribute_to_string (name);
712 : 5 : tree ident = attribute ? get_identifier (attribute) : NULL;
713 : :
714 : 5 : if (!ident)
715 : 0 : continue;
716 : :
717 : 5 : tree tree_list = NULL_TREE;
718 : 5 : tree *p_tree_list = &tree_list;
719 : 10 : for (auto value : values)
720 : : {
721 : 5 : tree int_value = build_int_cst (integer_type_node, value);
722 : 5 : *p_tree_list = build_tree_list (NULL, int_value);
723 : 5 : p_tree_list = &TREE_CHAIN (*p_tree_list);
724 : : }
725 : 5 : fn_attributes = tree_cons (ident, tree_list, fn_attributes);
726 : 5 : }
727 : :
728 : 15712 : decl_attributes (&fndecl, fn_attributes, 0);
729 : 15712 : function *func = new function (this, fndecl, kind);
730 : 15712 : m_functions.safe_push (func);
731 : 15712 : return func;
732 : : }
733 : :
734 : : /* In use by new_global and new_global_initialized. */
735 : :
736 : : tree
737 : 1036 : playback::context::
738 : : global_new_decl (location *loc,
739 : : enum gcc_jit_global_kind kind,
740 : : type *type,
741 : : const char *name,
742 : : enum global_var_flags flags,
743 : : const std::vector<std::pair<gcc_jit_variable_attribute,
744 : : std::string>> &attributes,
745 : : bool readonly)
746 : : {
747 : 1036 : gcc_assert (type);
748 : 1036 : gcc_assert (name);
749 : :
750 : 1036 : tree type_tree = type->as_tree ();
751 : :
752 : 1036 : tree inner = build_decl (UNKNOWN_LOCATION, VAR_DECL,
753 : : get_identifier (name),
754 : : type_tree);
755 : :
756 : 1036 : TREE_PUBLIC (inner) = (kind != GCC_JIT_GLOBAL_INTERNAL);
757 : :
758 : :
759 : 1036 : int will_be_init = flags & (GLOBAL_VAR_FLAGS_WILL_BE_RVAL_INIT |
760 : : GLOBAL_VAR_FLAGS_WILL_BE_BLOB_INIT);
761 : :
762 : : /* A VAR_DECL with DECL_INITIAL will not end up in .common section. */
763 : 1036 : if (!will_be_init)
764 : 171 : DECL_COMMON (inner) = 1;
765 : :
766 : 1036 : switch (kind)
767 : : {
768 : 0 : default:
769 : 0 : gcc_unreachable ();
770 : :
771 : 895 : case GCC_JIT_GLOBAL_EXPORTED:
772 : 895 : TREE_STATIC (inner) = 1;
773 : 895 : break;
774 : :
775 : 96 : case GCC_JIT_GLOBAL_INTERNAL:
776 : 96 : TREE_STATIC (inner) = 1;
777 : 96 : break;
778 : :
779 : 45 : case GCC_JIT_GLOBAL_IMPORTED:
780 : 45 : DECL_EXTERNAL (inner) = 1;
781 : 45 : break;
782 : : }
783 : :
784 : 1036 : if (TYPE_READONLY (type_tree) || readonly)
785 : 145 : TREE_READONLY (inner) = 1;
786 : :
787 : 1036 : if (loc)
788 : 5 : set_tree_location (inner, loc);
789 : :
790 : 1036 : set_variable_string_attribute (attributes, inner);
791 : :
792 : 1036 : return inner;
793 : : }
794 : :
795 : : void
796 : 3153 : playback::
797 : : set_variable_string_attribute (
798 : : const std::vector<std::pair<gcc_jit_variable_attribute,
799 : : std::string>> &string_attributes,
800 : : tree decl)
801 : : {
802 : 3153 : tree var_attributes = NULL_TREE;
803 : 3158 : for (auto attr: string_attributes)
804 : : {
805 : 5 : gcc_jit_variable_attribute& name = std::get<0>(attr);
806 : 5 : std::string& value = std::get<1>(attr);
807 : 5 : tree attribute_value = build_tree_list (NULL_TREE,
808 : 5 : ::build_string (value.length () + 1, value.c_str ()));
809 : 5 : tree ident = get_identifier (variable_attribute_to_string (name));
810 : 5 : if (ident)
811 : 5 : var_attributes = tree_cons (ident, attribute_value, var_attributes);
812 : 5 : }
813 : 3153 : decl_attributes (&decl, var_attributes, 0);
814 : 3153 : }
815 : :
816 : : /* In use by new_global and new_global_initialized. */
817 : :
818 : : playback::lvalue *
819 : 1036 : playback::context::
820 : : global_finalize_lvalue (tree inner)
821 : : {
822 : 1036 : m_globals.safe_push (inner);
823 : :
824 : 1036 : return new lvalue (this, inner);
825 : : }
826 : :
827 : : /* Construct a playback::lvalue instance (wrapping a tree). */
828 : :
829 : : playback::lvalue *
830 : 1021 : playback::context::
831 : : new_global (location *loc,
832 : : enum gcc_jit_global_kind kind,
833 : : type *type,
834 : : const char *name,
835 : : enum global_var_flags flags,
836 : : const std::vector<std::pair<gcc_jit_variable_attribute,
837 : : std::string>> &attributes,
838 : : bool readonly)
839 : : {
840 : 1021 : tree inner =
841 : 1021 : global_new_decl (loc, kind, type, name, flags, attributes, readonly);
842 : :
843 : 1021 : return global_finalize_lvalue (inner);
844 : : }
845 : :
846 : : void
847 : 850 : playback::context::
848 : : global_set_init_rvalue (lvalue* variable,
849 : : rvalue* init)
850 : : {
851 : 850 : tree inner = variable->as_tree ();
852 : :
853 : : /* We need to fold all expressions as much as possible. The code
854 : : for a DECL_INITIAL only handles some operations,
855 : : etc addition, minus, 'address of'. See output_addressed_constants ()
856 : : in varasm.cc. */
857 : 850 : tree init_tree = init->as_tree ();
858 : 850 : tree folded = fold_const_var (init_tree);
859 : :
860 : 850 : if (!TREE_CONSTANT (folded))
861 : : {
862 : 15 : tree name = DECL_NAME (inner);
863 : :
864 : 15 : if (name != NULL_TREE)
865 : 15 : add_error (NULL,
866 : : "unable to convert initial value for the global variable %s"
867 : : " to a compile-time constant",
868 : 15 : IDENTIFIER_POINTER (name));
869 : : else
870 : 0 : add_error (NULL,
871 : : "unable to convert initial value for global variable"
872 : : " to a compile-time constant");
873 : 15 : return;
874 : : }
875 : :
876 : 835 : DECL_INITIAL (inner) = folded;
877 : : }
878 : :
879 : : playback::rvalue *
880 : 660 : playback::context::
881 : : new_ctor (location *loc,
882 : : type *type,
883 : : const auto_vec<field*> *fields,
884 : : const auto_vec<rvalue*> *rvalues)
885 : : {
886 : 660 : tree type_tree = type->as_tree ();
887 : :
888 : : /* Handle empty ctors first. I.e. set everything to 0. */
889 : 660 : if (rvalues->length () == 0)
890 : 60 : return new rvalue (this, build_constructor (type_tree, NULL));
891 : :
892 : : /* Handle arrays (and return). */
893 : 600 : if (TREE_CODE (type_tree) == ARRAY_TYPE)
894 : : {
895 : 225 : int n = rvalues->length ();
896 : : /* The vec for the constructor node. */
897 : 225 : vec<constructor_elt, va_gc> *v = NULL;
898 : 225 : vec_alloc (v, n);
899 : :
900 : 960 : for (int i = 0; i < n; i++)
901 : : {
902 : 735 : rvalue *rv = (*rvalues)[i];
903 : : /* null rvalues indicate that the element should be zeroed. */
904 : 735 : if (rv)
905 : 660 : CONSTRUCTOR_APPEND_ELT (v,
906 : : build_int_cst (size_type_node, i),
907 : : rv->as_tree ());
908 : : else
909 : 810 : CONSTRUCTOR_APPEND_ELT (v,
910 : : build_int_cst (size_type_node, i),
911 : : build_zero_cst (TREE_TYPE (type_tree)));
912 : : }
913 : :
914 : 225 : tree ctor = build_constructor (type_tree, v);
915 : :
916 : 225 : if (loc)
917 : 0 : set_tree_location (ctor, loc);
918 : :
919 : 225 : return new rvalue (this, ctor);
920 : : }
921 : :
922 : : /* Handle structs and unions. */
923 : 375 : int n = fields->length ();
924 : :
925 : : /* The vec for the constructor node. */
926 : 375 : vec<constructor_elt, va_gc> *v = NULL;
927 : 375 : vec_alloc (v, n);
928 : :
929 : : /* Iterate over the fields, building initializations. */
930 : 990 : for (int i = 0;i < n; i++)
931 : : {
932 : 615 : tree field = (*fields)[i]->as_tree ();
933 : 615 : rvalue *rv = (*rvalues)[i];
934 : : /* If the value is NULL, it means we should zero the field. */
935 : 615 : if (rv)
936 : 525 : CONSTRUCTOR_APPEND_ELT (v, field, rv->as_tree ());
937 : : else
938 : : {
939 : 90 : tree zero_cst = build_zero_cst (TREE_TYPE (field));
940 : 705 : CONSTRUCTOR_APPEND_ELT (v, field, zero_cst);
941 : : }
942 : : }
943 : :
944 : 375 : tree ctor = build_constructor (type_tree, v);
945 : :
946 : 375 : if (loc)
947 : 0 : set_tree_location (ctor, loc);
948 : :
949 : 375 : return new rvalue (this, build_constructor (type_tree, v));
950 : : }
951 : :
952 : : /* Fill 'constructor_elements' with the memory content of
953 : : 'initializer'. Each element of the initializer is of the size of
954 : : type T. In use by new_global_initialized.*/
955 : :
956 : : template<typename T>
957 : : static void
958 : 15 : load_blob_in_ctor (vec<constructor_elt, va_gc> *&constructor_elements,
959 : : size_t num_elem,
960 : : const void *initializer)
961 : : {
962 : : /* Loosely based on 'output_init_element' c-typeck.cc:9691. */
963 : 15 : const T *p = (const T *)initializer;
964 : 15 : tree node = make_unsigned_type (BITS_PER_UNIT * sizeof (T));
965 : 20555 : for (size_t i = 0; i < num_elem; i++)
966 : : {
967 : 41080 : constructor_elt celt =
968 : 20540 : { build_int_cst (long_unsigned_type_node, i),
969 : 20540 : build_int_cst (node, p[i]) };
970 : 20540 : vec_safe_push (constructor_elements, celt);
971 : : }
972 : 15 : }
973 : :
974 : : /* Construct an initialized playback::lvalue instance (wrapping a
975 : : tree). */
976 : :
977 : : playback::lvalue *
978 : 15 : playback::context::
979 : : new_global_initialized (location *loc,
980 : : enum gcc_jit_global_kind kind,
981 : : type *type,
982 : : size_t element_size,
983 : : size_t initializer_num_elem,
984 : : const void *initializer,
985 : : const char *name,
986 : : enum global_var_flags flags,
987 : : const std::vector<std::pair<gcc_jit_variable_attribute,
988 : : std::string>> &attributes,
989 : : bool readonly)
990 : : {
991 : 15 : tree inner = global_new_decl (loc, kind, type, name, flags, attributes, readonly);
992 : :
993 : 15 : vec<constructor_elt, va_gc> *constructor_elements = NULL;
994 : :
995 : 15 : switch (element_size)
996 : : {
997 : 10 : case 1:
998 : 10 : load_blob_in_ctor<uint8_t> (constructor_elements, initializer_num_elem,
999 : : initializer);
1000 : 10 : break;
1001 : 0 : case 2:
1002 : 0 : load_blob_in_ctor<uint16_t> (constructor_elements, initializer_num_elem,
1003 : : initializer);
1004 : 0 : break;
1005 : 5 : case 4:
1006 : 5 : load_blob_in_ctor<uint32_t> (constructor_elements, initializer_num_elem,
1007 : : initializer);
1008 : 5 : break;
1009 : 0 : case 8:
1010 : 0 : load_blob_in_ctor<uint64_t> (constructor_elements, initializer_num_elem,
1011 : : initializer);
1012 : 0 : break;
1013 : 0 : default:
1014 : : /* This function is serving on sizes returned by 'get_size',
1015 : : these are all covered by the previous cases. */
1016 : 0 : gcc_unreachable ();
1017 : : }
1018 : : /* Compare with 'pop_init_level' c-typeck.cc:8780. */
1019 : 15 : tree ctor = build_constructor (type->as_tree (), constructor_elements);
1020 : 15 : constructor_elements = NULL;
1021 : :
1022 : : /* Compare with 'store_init_value' c-typeck.cc:7555. */
1023 : 15 : DECL_INITIAL (inner) = ctor;
1024 : :
1025 : 15 : return global_finalize_lvalue (inner);
1026 : : }
1027 : :
1028 : : /* Implementation of the various
1029 : : gcc::jit::playback::context::new_rvalue_from_const <HOST_TYPE>
1030 : : methods.
1031 : : Each of these constructs a playback::rvalue instance (wrapping a tree).
1032 : :
1033 : : These specializations are required to be in the same namespace
1034 : : as the template, hence we now have to enter the gcc::jit::playback
1035 : : namespace. */
1036 : :
1037 : : namespace playback
1038 : : {
1039 : :
1040 : : /* Specialization of making an rvalue from a const, for host <int>. */
1041 : :
1042 : : template <>
1043 : : rvalue *
1044 : 5924 : context::
1045 : : new_rvalue_from_const <int> (type *type,
1046 : : int value)
1047 : : {
1048 : : // FIXME: type-checking, or coercion?
1049 : 5924 : tree inner_type = type->as_tree ();
1050 : 5924 : if (INTEGRAL_TYPE_P (inner_type))
1051 : : {
1052 : 5347 : tree inner = build_int_cst (inner_type, value);
1053 : 5347 : return new rvalue (this, inner);
1054 : : }
1055 : : else
1056 : : {
1057 : 577 : REAL_VALUE_TYPE real_value;
1058 : 577 : real_from_integer (&real_value, VOIDmode, value, SIGNED);
1059 : 577 : tree inner = build_real (inner_type, real_value);
1060 : 577 : return new rvalue (this, inner);
1061 : : }
1062 : : }
1063 : :
1064 : : /* Specialization of making an rvalue from a const, for host <long>. */
1065 : :
1066 : : template <>
1067 : : rvalue *
1068 : 75 : context::
1069 : : new_rvalue_from_const <long> (type *type,
1070 : : long value)
1071 : : {
1072 : : // FIXME: type-checking, or coercion?
1073 : 75 : tree inner_type = type->as_tree ();
1074 : 75 : if (INTEGRAL_TYPE_P (inner_type))
1075 : : {
1076 : 75 : tree inner = build_int_cst (inner_type, value);
1077 : 75 : return new rvalue (this, inner);
1078 : : }
1079 : : else
1080 : : {
1081 : 0 : REAL_VALUE_TYPE real_value;
1082 : 0 : real_from_integer (&real_value, VOIDmode, value, SIGNED);
1083 : 0 : tree inner = build_real (inner_type, real_value);
1084 : 0 : return new rvalue (this, inner);
1085 : : }
1086 : : }
1087 : :
1088 : : /* Specialization of making an rvalue from a const, for host <double>. */
1089 : :
1090 : : template <>
1091 : : rvalue *
1092 : 125 : context::
1093 : : new_rvalue_from_const <double> (type *type,
1094 : : double value)
1095 : : {
1096 : : // FIXME: type-checking, or coercion?
1097 : 125 : tree inner_type = type->as_tree ();
1098 : :
1099 : 125 : mpfr_t mpf_value;
1100 : :
1101 : 125 : mpfr_init2 (mpf_value, 64);
1102 : 125 : mpfr_set_d (mpf_value, value, MPFR_RNDN);
1103 : :
1104 : : /* We have a "double", we want a REAL_VALUE_TYPE.
1105 : :
1106 : : realmpfr.cc:real_from_mpfr. */
1107 : 125 : REAL_VALUE_TYPE real_value;
1108 : 125 : real_from_mpfr (&real_value, mpf_value, inner_type, MPFR_RNDN);
1109 : 125 : tree inner = build_real (inner_type, real_value);
1110 : 125 : return new rvalue (this, inner);
1111 : : }
1112 : :
1113 : : /* Specialization of making an rvalue from a const, for host <void *>. */
1114 : :
1115 : : template <>
1116 : : rvalue *
1117 : 145 : context::
1118 : : new_rvalue_from_const <void *> (type *type,
1119 : : void *value)
1120 : : {
1121 : 145 : tree inner_type = type->as_tree ();
1122 : : /* FIXME: how to ensure we have a wide enough type? */
1123 : 145 : tree inner = build_int_cstu (inner_type, (unsigned HOST_WIDE_INT)value);
1124 : 145 : return new rvalue (this, inner);
1125 : : }
1126 : :
1127 : : /* We're done implementing the specializations of
1128 : : gcc::jit::playback::context::new_rvalue_from_const <T>
1129 : : so we can exit the gcc::jit::playback namespace. */
1130 : :
1131 : : } // namespace playback
1132 : :
1133 : : /* Construct a playback::rvalue instance (wrapping a tree). */
1134 : :
1135 : : playback::rvalue *
1136 : 15 : playback::context::
1137 : : new_sizeof (type *type)
1138 : : {
1139 : 15 : tree inner = TYPE_SIZE_UNIT (type->as_tree ());
1140 : 15 : return new rvalue (this, inner);
1141 : : }
1142 : :
1143 : : /* Construct a playback::rvalue instance (wrapping a tree). */
1144 : :
1145 : : playback::rvalue *
1146 : 15 : playback::context::
1147 : : new_alignof (type *type)
1148 : : {
1149 : 15 : int alignment = TYPE_ALIGN (type->as_tree ()) / BITS_PER_UNIT;
1150 : 15 : tree inner = build_int_cst (integer_type_node, alignment);
1151 : 15 : return new rvalue (this, inner);
1152 : : }
1153 : :
1154 : : /* Construct a playback::rvalue instance (wrapping a tree). */
1155 : :
1156 : : playback::rvalue *
1157 : 187 : playback::context::
1158 : : new_string_literal (const char *value)
1159 : : {
1160 : : /* Compare with c-family/c-common.cc: fix_string_type. */
1161 : 187 : size_t len = strlen (value);
1162 : 187 : tree i_type = build_index_type (size_int (len));
1163 : 187 : tree a_type = build_array_type (char_type_node, i_type);
1164 : : /* build_string len parameter must include NUL terminator when
1165 : : building C strings. */
1166 : 187 : tree t_str = ::build_string (len + 1, value);
1167 : 187 : TREE_TYPE (t_str) = a_type;
1168 : :
1169 : : /* Convert to (const char*), loosely based on
1170 : : c/c-typeck.cc: array_to_pointer_conversion,
1171 : : by taking address of start of string. */
1172 : 187 : tree t_addr = build1 (ADDR_EXPR, m_const_char_ptr, t_str);
1173 : :
1174 : 187 : return new rvalue (this, t_addr);
1175 : : }
1176 : :
1177 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1178 : : vector. */
1179 : :
1180 : : playback::rvalue *
1181 : 120 : playback::context::new_rvalue_from_vector (location *,
1182 : : type *type,
1183 : : const auto_vec<rvalue *> &elements)
1184 : : {
1185 : 120 : vec<constructor_elt, va_gc> *v;
1186 : 240 : vec_alloc (v, elements.length ());
1187 : 600 : for (unsigned i = 0; i < elements.length (); ++i)
1188 : 480 : CONSTRUCTOR_APPEND_ELT (v, NULL_TREE, elements[i]->as_tree ());
1189 : 120 : tree t_ctor = build_constructor (type->as_tree (), v);
1190 : 120 : return new rvalue (this, t_ctor);
1191 : : }
1192 : :
1193 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1194 : : vector perm. */
1195 : :
1196 : : playback::rvalue *
1197 : 15 : playback::context::new_rvalue_vector_perm (location *loc,
1198 : : rvalue* elements1,
1199 : : rvalue* elements2,
1200 : : rvalue* mask)
1201 : : {
1202 : 15 : tree t_elements1 = elements1->as_tree ();
1203 : 15 : tree t_elements2 = elements2->as_tree ();
1204 : 15 : tree t_mask = mask->as_tree ();
1205 : :
1206 : 15 : tree t_vector_perm = build3 (VEC_PERM_EXPR, TREE_TYPE (t_elements1),
1207 : : t_elements1, t_elements2, t_mask);
1208 : 15 : if (loc)
1209 : 0 : set_tree_location (t_vector_perm, loc);
1210 : 15 : return new rvalue (this, t_vector_perm);
1211 : : }
1212 : :
1213 : : /* Coerce a tree expression into a boolean tree expression. */
1214 : :
1215 : : tree
1216 : 620 : playback::context::
1217 : : as_truth_value (tree expr, location *loc)
1218 : : {
1219 : : /* Compare to c-typeck.cc:c_objc_common_truthvalue_conversion */
1220 : 620 : tree typed_zero = fold_build1 (CONVERT_EXPR,
1221 : : TREE_TYPE (expr),
1222 : : integer_zero_node);
1223 : 620 : if (loc)
1224 : 0 : set_tree_location (typed_zero, loc);
1225 : :
1226 : 620 : tree type = TREE_TYPE (expr);
1227 : 620 : expr = fold_build2_loc (UNKNOWN_LOCATION,
1228 : : NE_EXPR, type, expr, typed_zero);
1229 : 620 : if (loc)
1230 : 0 : set_tree_location (expr, loc);
1231 : :
1232 : 620 : return expr;
1233 : : }
1234 : :
1235 : : /* Add a "top-level" basic asm statement (i.e. one outside of any functions)
1236 : : containing ASM_STMTS.
1237 : :
1238 : : Compare with c_parser_asm_definition. */
1239 : :
1240 : : void
1241 : 5 : playback::context::add_top_level_asm (const char *asm_stmts)
1242 : : {
1243 : 5 : tree asm_str = build_string (asm_stmts);
1244 : 5 : symtab->finalize_toplevel_asm (asm_str);
1245 : 5 : }
1246 : :
1247 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1248 : : unary op. */
1249 : :
1250 : : playback::rvalue *
1251 : 128 : playback::context::
1252 : : new_unary_op (location *loc,
1253 : : enum gcc_jit_unary_op op,
1254 : : type *result_type,
1255 : : rvalue *a)
1256 : : {
1257 : : // FIXME: type-checking, or coercion?
1258 : 128 : enum tree_code inner_op;
1259 : :
1260 : 128 : gcc_assert (result_type);
1261 : 128 : gcc_assert (a);
1262 : :
1263 : 128 : tree node = a->as_tree ();
1264 : 128 : node = fold_const_var (node);
1265 : :
1266 : 128 : tree inner_result = NULL;
1267 : :
1268 : 128 : switch (op)
1269 : : {
1270 : 0 : default:
1271 : 0 : add_error (loc, "unrecognized (enum gcc_jit_unary_op) value: %i", op);
1272 : 0 : return NULL;
1273 : :
1274 : : case GCC_JIT_UNARY_OP_MINUS:
1275 : : inner_op = NEGATE_EXPR;
1276 : : break;
1277 : :
1278 : 30 : case GCC_JIT_UNARY_OP_BITWISE_NEGATE:
1279 : 30 : inner_op = BIT_NOT_EXPR;
1280 : 30 : break;
1281 : :
1282 : 20 : case GCC_JIT_UNARY_OP_LOGICAL_NEGATE:
1283 : 20 : node = as_truth_value (node, loc);
1284 : 20 : inner_result = invert_truthvalue (node);
1285 : 20 : if (loc)
1286 : 0 : set_tree_location (inner_result, loc);
1287 : 20 : return new rvalue (this, inner_result);
1288 : :
1289 : 15 : case GCC_JIT_UNARY_OP_ABS:
1290 : 15 : inner_op = ABS_EXPR;
1291 : 15 : break;
1292 : : }
1293 : :
1294 : 108 : inner_result = build1 (inner_op,
1295 : : result_type->as_tree (),
1296 : : node);
1297 : :
1298 : : /* Try to fold. */
1299 : 108 : inner_result = fold (inner_result);
1300 : :
1301 : 108 : if (loc)
1302 : 0 : set_tree_location (inner_result, loc);
1303 : :
1304 : 108 : return new rvalue (this, inner_result);
1305 : : }
1306 : :
1307 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1308 : : binary op. */
1309 : :
1310 : : playback::rvalue *
1311 : 3804 : playback::context::
1312 : : new_binary_op (location *loc,
1313 : : enum gcc_jit_binary_op op,
1314 : : type *result_type,
1315 : : rvalue *a, rvalue *b)
1316 : : {
1317 : : // FIXME: type-checking, or coercion?
1318 : 3804 : enum tree_code inner_op;
1319 : :
1320 : 3804 : gcc_assert (result_type);
1321 : 3804 : gcc_assert (a);
1322 : 3804 : gcc_assert (b);
1323 : :
1324 : 3804 : tree node_a = a->as_tree ();
1325 : 3804 : node_a = fold_const_var (node_a);
1326 : :
1327 : 3804 : tree node_b = b->as_tree ();
1328 : 3804 : node_b = fold_const_var (node_b);
1329 : :
1330 : 3804 : switch (op)
1331 : : {
1332 : 0 : default:
1333 : 0 : add_error (loc, "unrecognized (enum gcc_jit_binary_op) value: %i", op);
1334 : 0 : return NULL;
1335 : :
1336 : : case GCC_JIT_BINARY_OP_PLUS:
1337 : : inner_op = PLUS_EXPR;
1338 : : break;
1339 : :
1340 : 273 : case GCC_JIT_BINARY_OP_MINUS:
1341 : 273 : inner_op = MINUS_EXPR;
1342 : 273 : break;
1343 : :
1344 : 1230 : case GCC_JIT_BINARY_OP_MULT:
1345 : 1230 : inner_op = MULT_EXPR;
1346 : 1230 : break;
1347 : :
1348 : 159 : case GCC_JIT_BINARY_OP_DIVIDE:
1349 : 159 : if (FLOAT_TYPE_P (result_type->as_tree ()))
1350 : : /* Floating-point division: */
1351 : : inner_op = RDIV_EXPR;
1352 : : else
1353 : : /* Truncating to zero: */
1354 : : inner_op = TRUNC_DIV_EXPR;
1355 : : break;
1356 : :
1357 : 15 : case GCC_JIT_BINARY_OP_MODULO:
1358 : 15 : inner_op = TRUNC_MOD_EXPR;
1359 : 15 : break;
1360 : :
1361 : 215 : case GCC_JIT_BINARY_OP_BITWISE_AND:
1362 : 215 : inner_op = BIT_AND_EXPR;
1363 : 215 : break;
1364 : :
1365 : 30 : case GCC_JIT_BINARY_OP_BITWISE_XOR:
1366 : 30 : inner_op = BIT_XOR_EXPR;
1367 : 30 : break;
1368 : :
1369 : 30 : case GCC_JIT_BINARY_OP_BITWISE_OR:
1370 : 30 : inner_op = BIT_IOR_EXPR;
1371 : 30 : break;
1372 : :
1373 : 240 : case GCC_JIT_BINARY_OP_LOGICAL_AND:
1374 : 240 : node_a = as_truth_value (node_a, loc);
1375 : 240 : node_b = as_truth_value (node_b, loc);
1376 : 240 : inner_op = TRUTH_ANDIF_EXPR;
1377 : 240 : break;
1378 : :
1379 : 60 : case GCC_JIT_BINARY_OP_LOGICAL_OR:
1380 : 60 : node_a = as_truth_value (node_a, loc);
1381 : 60 : node_b = as_truth_value (node_b, loc);
1382 : 60 : inner_op = TRUTH_ORIF_EXPR;
1383 : 60 : break;
1384 : :
1385 : 30 : case GCC_JIT_BINARY_OP_LSHIFT:
1386 : 30 : inner_op = LSHIFT_EXPR;
1387 : 30 : break;
1388 : :
1389 : 40 : case GCC_JIT_BINARY_OP_RSHIFT:
1390 : 40 : inner_op = RSHIFT_EXPR;
1391 : 40 : break;
1392 : : }
1393 : :
1394 : 3804 : tree inner_expr = build2 (inner_op,
1395 : : result_type->as_tree (),
1396 : : node_a,
1397 : : node_b);
1398 : :
1399 : : /* Try to fold the expression. */
1400 : 3804 : inner_expr = fold (inner_expr);
1401 : :
1402 : 3804 : if (loc)
1403 : 265 : set_tree_location (inner_expr, loc);
1404 : :
1405 : 3804 : return new rvalue (this, inner_expr);
1406 : : }
1407 : :
1408 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1409 : : comparison. */
1410 : :
1411 : : playback::rvalue *
1412 : 1494 : playback::context::
1413 : : new_comparison (location *loc,
1414 : : enum gcc_jit_comparison op,
1415 : : rvalue *a, rvalue *b, type *vec_result_type)
1416 : : {
1417 : : // FIXME: type-checking, or coercion?
1418 : 1494 : enum tree_code inner_op;
1419 : :
1420 : 1494 : gcc_assert (a);
1421 : 1494 : gcc_assert (b);
1422 : :
1423 : 1494 : switch (op)
1424 : : {
1425 : 0 : default:
1426 : 0 : add_error (loc, "unrecognized (enum gcc_jit_comparison) value: %i", op);
1427 : 0 : return NULL;
1428 : :
1429 : : case GCC_JIT_COMPARISON_EQ:
1430 : : inner_op = EQ_EXPR;
1431 : : break;
1432 : : case GCC_JIT_COMPARISON_NE:
1433 : : inner_op = NE_EXPR;
1434 : : break;
1435 : : case GCC_JIT_COMPARISON_LT:
1436 : : inner_op = LT_EXPR;
1437 : : break;
1438 : : case GCC_JIT_COMPARISON_LE:
1439 : : inner_op = LE_EXPR;
1440 : : break;
1441 : : case GCC_JIT_COMPARISON_GT:
1442 : : inner_op = GT_EXPR;
1443 : : break;
1444 : : case GCC_JIT_COMPARISON_GE:
1445 : : inner_op = GE_EXPR;
1446 : : break;
1447 : : }
1448 : :
1449 : 1494 : tree node_a = a->as_tree ();
1450 : 1494 : node_a = fold_const_var (node_a);
1451 : 1494 : tree node_b = b->as_tree ();
1452 : 1494 : node_b = fold_const_var (node_b);
1453 : :
1454 : 1494 : tree inner_expr;
1455 : 1494 : tree a_type = TREE_TYPE (node_a);
1456 : 1494 : if (VECTOR_TYPE_P (a_type))
1457 : : {
1458 : : /* Build a vector comparison. See build_vec_cmp in c-typeck.cc for
1459 : : reference. */
1460 : 135 : tree t_vec_result_type = vec_result_type->as_tree ();
1461 : 135 : tree zero_vec = build_zero_cst (t_vec_result_type);
1462 : 135 : tree minus_one_vec = build_minus_one_cst (t_vec_result_type);
1463 : 135 : tree cmp_type = truth_type_for (a_type);
1464 : 135 : tree cmp = build2 (inner_op, cmp_type, node_a, node_b);
1465 : 135 : inner_expr = build3 (VEC_COND_EXPR, t_vec_result_type, cmp, minus_one_vec,
1466 : : zero_vec);
1467 : : }
1468 : : else
1469 : : {
1470 : 1359 : inner_expr = build2 (inner_op,
1471 : : boolean_type_node,
1472 : : node_a,
1473 : : node_b);
1474 : : }
1475 : :
1476 : : /* Try to fold. */
1477 : 1494 : inner_expr = fold (inner_expr);
1478 : :
1479 : 1494 : if (loc)
1480 : 21 : set_tree_location (inner_expr, loc);
1481 : 1494 : return new rvalue (this, inner_expr);
1482 : : }
1483 : :
1484 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1485 : : function call. */
1486 : :
1487 : : playback::rvalue *
1488 : 815 : playback::context::
1489 : : build_call (location *loc,
1490 : : tree fn_ptr,
1491 : : const auto_vec<rvalue *> *args,
1492 : : bool require_tail_call)
1493 : : {
1494 : 815 : vec<tree, va_gc> *tree_args;
1495 : 1535 : vec_alloc (tree_args, args->length ());
1496 : 1977 : for (unsigned i = 0; i < args->length (); i++)
1497 : 1162 : tree_args->quick_push ((*args)[i]->as_tree ());
1498 : :
1499 : 815 : if (loc)
1500 : 37 : set_tree_location (fn_ptr, loc);
1501 : :
1502 : 815 : tree fn = TREE_TYPE (fn_ptr);
1503 : 815 : tree fn_type = TREE_TYPE (fn);
1504 : 815 : tree return_type = TREE_TYPE (fn_type);
1505 : :
1506 : 815 : tree call = build_call_vec (return_type,
1507 : : fn_ptr, tree_args);
1508 : :
1509 : 815 : if (require_tail_call)
1510 : 15 : CALL_EXPR_MUST_TAIL_CALL (call) = 1;
1511 : :
1512 : 815 : return new rvalue (this, call);
1513 : :
1514 : : /* see c-typeck.cc: build_function_call
1515 : : which calls build_function_call_vec
1516 : :
1517 : : which does lots of checking, then:
1518 : : result = build_call_array_loc (loc, TREE_TYPE (fntype),
1519 : : function, nargs, argarray);
1520 : : which is in tree.cc
1521 : : (see also build_call_vec)
1522 : : */
1523 : : }
1524 : :
1525 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1526 : : call to a specific function. */
1527 : :
1528 : : playback::rvalue *
1529 : 800 : playback::context::
1530 : : new_call (location *loc,
1531 : : function *func,
1532 : : const auto_vec<rvalue *> *args,
1533 : : bool require_tail_call)
1534 : : {
1535 : 800 : tree fndecl;
1536 : :
1537 : 800 : gcc_assert (func);
1538 : :
1539 : 800 : fndecl = func->as_fndecl ();
1540 : :
1541 : 800 : tree fntype = TREE_TYPE (fndecl);
1542 : :
1543 : 800 : tree fn = build1 (ADDR_EXPR, build_pointer_type (fntype), fndecl);
1544 : :
1545 : 800 : return build_call (loc, fn, args, require_tail_call);
1546 : : }
1547 : :
1548 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1549 : : call through a function pointer. */
1550 : :
1551 : : playback::rvalue *
1552 : 15 : playback::context::
1553 : : new_call_through_ptr (location *loc,
1554 : : rvalue *fn_ptr,
1555 : : const auto_vec<rvalue *> *args,
1556 : : bool require_tail_call)
1557 : : {
1558 : 15 : gcc_assert (fn_ptr);
1559 : 15 : tree t_fn_ptr = fn_ptr->as_tree ();
1560 : :
1561 : 15 : return build_call (loc, t_fn_ptr, args, require_tail_call);
1562 : : }
1563 : :
1564 : : /* Construct a tree for a cast. */
1565 : :
1566 : : tree
1567 : 379 : playback::context::build_cast (playback::location *loc,
1568 : : playback::rvalue *expr,
1569 : : playback::type *type_)
1570 : : {
1571 : : /* For comparison, see:
1572 : : - c/c-typeck.cc:build_c_cast
1573 : : - c/c-convert.cc: convert
1574 : : - convert.h
1575 : :
1576 : : Only some kinds of cast are currently supported here. */
1577 : 379 : tree t_expr = expr->as_tree ();
1578 : 379 : t_expr = fold_const_var (t_expr);
1579 : :
1580 : 379 : tree t_dst_type = type_->as_tree ();
1581 : 379 : tree t_ret = NULL;
1582 : 379 : t_ret = targetm.convert_to_type (t_dst_type, t_expr);
1583 : 379 : if (t_ret)
1584 : : return t_ret;
1585 : 379 : enum tree_code dst_code = TREE_CODE (t_dst_type);
1586 : 379 : switch (dst_code)
1587 : : {
1588 : 155 : case INTEGER_TYPE:
1589 : 155 : case ENUMERAL_TYPE:
1590 : 155 : t_ret = convert_to_integer (t_dst_type, t_expr);
1591 : 155 : goto maybe_fold;
1592 : :
1593 : 34 : case BOOLEAN_TYPE:
1594 : : /* Compare with c_objc_common_truthvalue_conversion and
1595 : : c_common_truthvalue_conversion. */
1596 : : /* For now, convert to: (t_expr != 0) */
1597 : 34 : t_ret = build2 (NE_EXPR, t_dst_type,
1598 : : t_expr,
1599 : 34 : build_int_cst (TREE_TYPE (t_expr), 0));
1600 : 34 : goto maybe_fold;
1601 : :
1602 : 15 : case REAL_TYPE:
1603 : 15 : t_ret = convert_to_real (t_dst_type, t_expr);
1604 : 15 : goto maybe_fold;
1605 : :
1606 : 175 : case POINTER_TYPE:
1607 : 175 : t_ret = build1 (NOP_EXPR, t_dst_type, t_expr);
1608 : 175 : goto maybe_fold;
1609 : :
1610 : 0 : default:
1611 : 0 : add_error (loc, "couldn't handle cast during playback");
1612 : 0 : fprintf (stderr, "input expression:\n");
1613 : 0 : debug_tree (t_expr);
1614 : 0 : fprintf (stderr, "requested type:\n");
1615 : 0 : debug_tree (t_dst_type);
1616 : 0 : return error_mark_node;
1617 : :
1618 : 379 : maybe_fold:
1619 : 379 : if (TREE_CODE (t_ret) != C_MAYBE_CONST_EXPR)
1620 : 379 : t_ret = fold (t_ret);
1621 : : return t_ret;
1622 : : }
1623 : : }
1624 : :
1625 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1626 : : cast. */
1627 : :
1628 : : playback::rvalue *
1629 : 379 : playback::context::
1630 : : new_cast (playback::location *loc,
1631 : : playback::rvalue *expr,
1632 : : playback::type *type_)
1633 : : {
1634 : :
1635 : 379 : tree t_cast = build_cast (loc, expr, type_);
1636 : 379 : if (loc)
1637 : 9 : set_tree_location (t_cast, loc);
1638 : 379 : return new rvalue (this, t_cast);
1639 : : }
1640 : :
1641 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1642 : : bitcast. */
1643 : :
1644 : : playback::rvalue *
1645 : 25 : playback::context::
1646 : : new_bitcast (location *loc,
1647 : : rvalue *expr,
1648 : : type *type_)
1649 : : {
1650 : 25 : tree expr_size = TYPE_SIZE (expr->get_type ()->as_tree ());
1651 : 25 : tree type_size = TYPE_SIZE (type_->as_tree ());
1652 : 25 : tree t_expr = expr->as_tree ();
1653 : 25 : tree t_dst_type = type_->as_tree ();
1654 : 25 : if (expr_size != type_size)
1655 : : {
1656 : 10 : active_playback_ctxt->add_error (loc,
1657 : : "bitcast with types of different sizes");
1658 : 10 : fprintf (stderr, "input expression (size: " HOST_WIDE_INT_PRINT_DEC "):\n",
1659 : : tree_to_uhwi (expr_size));
1660 : 10 : debug_tree (t_expr);
1661 : 10 : fprintf (stderr, "requested type (size: " HOST_WIDE_INT_PRINT_DEC "):\n",
1662 : : tree_to_uhwi (type_size));
1663 : 10 : debug_tree (t_dst_type);
1664 : : }
1665 : 25 : tree t_bitcast = build1 (VIEW_CONVERT_EXPR, t_dst_type, t_expr);
1666 : 25 : if (loc)
1667 : 0 : set_tree_location (t_bitcast, loc);
1668 : 25 : return new rvalue (this, t_bitcast);
1669 : : }
1670 : :
1671 : : /* Construct a playback::lvalue instance (wrapping a tree) for an
1672 : : array access. */
1673 : :
1674 : : playback::lvalue *
1675 : 459 : playback::context::
1676 : : new_array_access (location *loc,
1677 : : rvalue *ptr,
1678 : : rvalue *index)
1679 : : {
1680 : 459 : gcc_assert (ptr);
1681 : 459 : gcc_assert (index);
1682 : :
1683 : : /* For comparison, see:
1684 : : c/c-typeck.cc: build_array_ref
1685 : : c-family/c-common.cc: pointer_int_sum
1686 : : */
1687 : 459 : tree t_ptr = ptr->as_tree ();
1688 : 459 : t_ptr = fold_const_var (t_ptr);
1689 : 459 : tree t_index = index->as_tree ();
1690 : 459 : t_index = fold_const_var (t_index);
1691 : :
1692 : 459 : tree t_type_ptr = TREE_TYPE (t_ptr);
1693 : 459 : tree t_type_star_ptr = TREE_TYPE (t_type_ptr);
1694 : :
1695 : 459 : if (TREE_CODE (t_type_ptr) == ARRAY_TYPE)
1696 : : {
1697 : 284 : tree t_result = build4 (ARRAY_REF, t_type_star_ptr, t_ptr, t_index,
1698 : : NULL_TREE, NULL_TREE);
1699 : 284 : t_result = fold (t_result);
1700 : 284 : if (loc)
1701 : 209 : set_tree_location (t_result, loc);
1702 : 284 : return new lvalue (this, t_result);
1703 : : }
1704 : : else
1705 : : {
1706 : : /* Convert index to an offset in bytes. */
1707 : 175 : tree t_sizeof = size_in_bytes (t_type_star_ptr);
1708 : 175 : t_index = fold_build1 (CONVERT_EXPR, sizetype, t_index);
1709 : 175 : tree t_offset = fold_build2_loc (UNKNOWN_LOCATION,
1710 : : MULT_EXPR, sizetype, t_index, t_sizeof);
1711 : :
1712 : : /* Locate (ptr + offset). */
1713 : 175 : tree t_address = fold_build2_loc (UNKNOWN_LOCATION,
1714 : : POINTER_PLUS_EXPR, t_type_ptr, t_ptr, t_offset);
1715 : :
1716 : 175 : tree t_indirection = fold_build1 (INDIRECT_REF, t_type_star_ptr, t_address);
1717 : 175 : if (loc)
1718 : : {
1719 : 0 : set_tree_location (t_sizeof, loc);
1720 : 0 : set_tree_location (t_offset, loc);
1721 : 0 : set_tree_location (t_address, loc);
1722 : 0 : set_tree_location (t_indirection, loc);
1723 : : }
1724 : :
1725 : 175 : return new lvalue (this, t_indirection);
1726 : : }
1727 : : }
1728 : :
1729 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1730 : : vector conversion. */
1731 : :
1732 : : playback::rvalue *
1733 : 15 : playback::context::
1734 : : convert_vector (location *loc,
1735 : : rvalue *vector,
1736 : : type *type)
1737 : : {
1738 : 15 : gcc_assert (vector);
1739 : 15 : gcc_assert (type);
1740 : :
1741 : : /* For comparison, see:
1742 : : c/c-common.cc: c_build_vec_convert
1743 : : */
1744 : :
1745 : 15 : tree t_vector = vector->as_tree ();
1746 : :
1747 : 15 : tree t_result =
1748 : 15 : build_call_expr_internal_loc (UNKNOWN_LOCATION, IFN_VEC_CONVERT,
1749 : : type->as_tree (), 1, t_vector);
1750 : :
1751 : 15 : if (loc)
1752 : 0 : set_tree_location (t_result, loc);
1753 : :
1754 : 15 : return new rvalue (this, t_result);
1755 : : }
1756 : :
1757 : : /* The following functions come from c-common.h. */
1758 : : /* Like c_mark_addressable but don't check register qualifier. */
1759 : : void
1760 : 15 : common_mark_addressable_vec (tree t)
1761 : : {
1762 : 15 : while (handled_component_p (t) || TREE_CODE (t) == C_MAYBE_CONST_EXPR)
1763 : : {
1764 : 0 : t = TREE_OPERAND (t, 0);
1765 : : }
1766 : 15 : if (!VAR_P (t)
1767 : 15 : && TREE_CODE (t) != PARM_DECL
1768 : 15 : && TREE_CODE (t) != COMPOUND_LITERAL_EXPR
1769 : 15 : && TREE_CODE (t) != TARGET_EXPR)
1770 : : return;
1771 : 0 : if (!VAR_P (t) || !DECL_HARD_REGISTER (t))
1772 : 0 : TREE_ADDRESSABLE (t) = 1;
1773 : 0 : if (TREE_CODE (t) == COMPOUND_LITERAL_EXPR)
1774 : 0 : TREE_ADDRESSABLE (COMPOUND_LITERAL_EXPR_DECL (t)) = 1;
1775 : 0 : else if (TREE_CODE (t) == TARGET_EXPR)
1776 : 0 : TREE_ADDRESSABLE (TARGET_EXPR_SLOT (t)) = 1;
1777 : : }
1778 : :
1779 : : /* Return true if TYPE is a vector type that should be subject to the GNU
1780 : : vector extensions (as opposed to a vector type that is used only for
1781 : : the purposes of defining target-specific built-in functions). */
1782 : :
1783 : : inline bool
1784 : 15 : gnu_vector_type_p (const_tree type)
1785 : : {
1786 : 15 : return TREE_CODE (type) == VECTOR_TYPE && !TYPE_INDIVISIBLE_P (type);
1787 : : }
1788 : :
1789 : : /* Return nonzero if REF is an lvalue valid for this language.
1790 : : Lvalues can be assigned, unless their type has TYPE_READONLY.
1791 : : Lvalues can have their address taken, unless they have C_DECL_REGISTER. */
1792 : :
1793 : : bool
1794 : 15 : lvalue_p (const_tree ref)
1795 : : {
1796 : 15 : const enum tree_code code = TREE_CODE (ref);
1797 : :
1798 : 15 : switch (code)
1799 : : {
1800 : 0 : case REALPART_EXPR:
1801 : 0 : case IMAGPART_EXPR:
1802 : 0 : case COMPONENT_REF:
1803 : 0 : return lvalue_p (TREE_OPERAND (ref, 0));
1804 : :
1805 : 0 : case C_MAYBE_CONST_EXPR:
1806 : 0 : return lvalue_p (TREE_OPERAND (ref, 1));
1807 : :
1808 : : case COMPOUND_LITERAL_EXPR:
1809 : : case STRING_CST:
1810 : : return true;
1811 : :
1812 : 0 : case MEM_REF:
1813 : 0 : case TARGET_MEM_REF:
1814 : : /* MEM_REFs can appear from -fgimple parsing or folding, so allow them
1815 : : here as well. */
1816 : 0 : case INDIRECT_REF:
1817 : 0 : case ARRAY_REF:
1818 : 0 : case VAR_DECL:
1819 : 0 : case PARM_DECL:
1820 : 0 : case RESULT_DECL:
1821 : 0 : case ERROR_MARK:
1822 : 0 : return (TREE_CODE (TREE_TYPE (ref)) != FUNCTION_TYPE
1823 : 0 : && TREE_CODE (TREE_TYPE (ref)) != METHOD_TYPE);
1824 : :
1825 : 0 : case BIND_EXPR:
1826 : 0 : return TREE_CODE (TREE_TYPE (ref)) == ARRAY_TYPE;
1827 : :
1828 : : default:
1829 : : return false;
1830 : : }
1831 : : }
1832 : :
1833 : : bool
1834 : 15 : convert_vector_to_array_for_subscript (tree *vecp)
1835 : : {
1836 : 15 : bool ret = false;
1837 : 15 : if (gnu_vector_type_p (TREE_TYPE (*vecp)))
1838 : : {
1839 : 15 : tree type = TREE_TYPE (*vecp);
1840 : :
1841 : 15 : ret = !lvalue_p (*vecp);
1842 : :
1843 : : /* We are building an ARRAY_REF so mark the vector as addressable
1844 : : to not run into the gimplifiers premature setting of DECL_GIMPLE_REG_P
1845 : : for function parameters. */
1846 : : /* NOTE: that was the missing piece for making vector access work with
1847 : : optimizations enabled. */
1848 : 15 : common_mark_addressable_vec (*vecp);
1849 : :
1850 : 30 : *vecp = build1 (VIEW_CONVERT_EXPR,
1851 : 15 : build_array_type_nelts (TREE_TYPE (type),
1852 : : TYPE_VECTOR_SUBPARTS (type)),
1853 : : *vecp);
1854 : : }
1855 : 15 : return ret;
1856 : : }
1857 : :
1858 : : /* Construct a playback::lvalue instance (wrapping a tree) for a
1859 : : vector access. */
1860 : :
1861 : : playback::lvalue *
1862 : 15 : playback::context::
1863 : : new_vector_access (location *loc,
1864 : : rvalue *vector,
1865 : : rvalue *index)
1866 : : {
1867 : 15 : gcc_assert (vector);
1868 : 15 : gcc_assert (index);
1869 : :
1870 : : /* For comparison, see:
1871 : : c/c-typeck.cc: build_array_ref
1872 : : */
1873 : :
1874 : 15 : tree t_vector = vector->as_tree ();
1875 : 15 : bool non_lvalue = convert_vector_to_array_for_subscript (&t_vector);
1876 : 15 : tree type = TREE_TYPE (TREE_TYPE (t_vector));
1877 : 15 : tree t_result = build4 (ARRAY_REF, type, t_vector, index->as_tree (),
1878 : : NULL_TREE, NULL_TREE);
1879 : 15 : if (non_lvalue)
1880 : 15 : t_result = non_lvalue (t_result);
1881 : :
1882 : 15 : if (loc)
1883 : 0 : set_tree_location (t_result, loc);
1884 : 15 : return new lvalue (this, t_result);
1885 : : }
1886 : :
1887 : : /* Construct a tree for a field access. */
1888 : :
1889 : : tree
1890 : 1776 : playback::context::
1891 : : new_field_access (location *loc,
1892 : : tree datum,
1893 : : field *field)
1894 : : {
1895 : 1776 : gcc_assert (datum);
1896 : 1776 : gcc_assert (field);
1897 : :
1898 : : /* Compare with c/c-typeck.cc:lookup_field, build_indirect_ref, and
1899 : : build_component_ref. */
1900 : 1776 : tree type = TREE_TYPE (datum);
1901 : 1776 : gcc_assert (type);
1902 : 1776 : gcc_assert (TREE_CODE (type) != POINTER_TYPE);
1903 : :
1904 : 1776 : tree t_field = field->as_tree ();
1905 : 1776 : tree ref = build3 (COMPONENT_REF, TREE_TYPE (t_field), datum,
1906 : : t_field, NULL_TREE);
1907 : 1776 : if (loc)
1908 : 0 : set_tree_location (ref, loc);
1909 : 1776 : return ref;
1910 : : }
1911 : :
1912 : : /* Construct a tree for a dereference. */
1913 : :
1914 : : tree
1915 : 2127 : playback::context::
1916 : : new_dereference (tree ptr,
1917 : : location *loc)
1918 : : {
1919 : 2127 : gcc_assert (ptr);
1920 : :
1921 : 2127 : tree type = TREE_TYPE (TREE_TYPE(ptr));
1922 : 2127 : tree datum = fold_build1 (INDIRECT_REF, type, ptr);
1923 : 2127 : if (loc)
1924 : 0 : set_tree_location (datum, loc);
1925 : 2127 : return datum;
1926 : : }
1927 : :
1928 : : /* Construct a playback::type instance (wrapping a tree)
1929 : : with the given alignment. */
1930 : :
1931 : : playback::type *
1932 : 160 : playback::type::
1933 : : get_aligned (size_t alignment_in_bytes) const
1934 : : {
1935 : 160 : tree t_new_type = build_variant_type_copy (m_inner);
1936 : :
1937 : 160 : SET_TYPE_ALIGN (t_new_type, alignment_in_bytes * BITS_PER_UNIT);
1938 : 160 : TYPE_USER_ALIGN (t_new_type) = 1;
1939 : :
1940 : 160 : return new type (t_new_type);
1941 : : }
1942 : :
1943 : : /* Construct a playback::type instance (wrapping a tree)
1944 : : for the given vector type. */
1945 : :
1946 : : playback::type *
1947 : 375 : playback::type::
1948 : : get_vector (size_t num_units) const
1949 : : {
1950 : 375 : tree t_new_type = build_vector_type (m_inner, num_units);
1951 : 375 : return new type (t_new_type);
1952 : : }
1953 : :
1954 : : /* Construct a playback::lvalue instance (wrapping a tree) for a
1955 : : field access. */
1956 : :
1957 : : playback::lvalue *
1958 : 199 : playback::lvalue::
1959 : : access_field (location *loc,
1960 : : field *field)
1961 : : {
1962 : 199 : tree datum = as_tree ();
1963 : 199 : tree ref = get_context ()->new_field_access (loc, datum, field);
1964 : 199 : if (!ref)
1965 : : return NULL;
1966 : 199 : return new lvalue (get_context (), ref);
1967 : : }
1968 : :
1969 : : /* Construct a playback::rvalue instance (wrapping a tree) for a
1970 : : field access. */
1971 : :
1972 : : playback::rvalue *
1973 : 134 : playback::rvalue::
1974 : : access_field (location *loc,
1975 : : field *field)
1976 : : {
1977 : 134 : tree datum = as_tree ();
1978 : 134 : tree ref = get_context ()->new_field_access (loc, datum, field);
1979 : 134 : if (!ref)
1980 : : return NULL;
1981 : 134 : return new rvalue (get_context (), ref);
1982 : : }
1983 : :
1984 : : /* Construct a playback::lvalue instance (wrapping a tree) for a
1985 : : dereferenced field access. */
1986 : :
1987 : : playback::lvalue *
1988 : 1443 : playback::rvalue::
1989 : : dereference_field (location *loc,
1990 : : field *field)
1991 : : {
1992 : 1443 : tree ptr = as_tree ();
1993 : 1443 : tree datum = get_context ()->new_dereference (ptr, loc);
1994 : 1443 : if (!datum)
1995 : : return NULL;
1996 : 1443 : tree ref = get_context ()->new_field_access (loc, datum, field);
1997 : 1443 : if (!ref)
1998 : : return NULL;
1999 : 1443 : return new lvalue (get_context (), ref);
2000 : : }
2001 : :
2002 : : /* Construct a playback::lvalue instance (wrapping a tree) for a
2003 : : dereference. */
2004 : :
2005 : : playback::lvalue *
2006 : 684 : playback::rvalue::
2007 : : dereference (location *loc)
2008 : : {
2009 : 684 : tree ptr = as_tree ();
2010 : 684 : tree datum = get_context ()->new_dereference (ptr, loc);
2011 : 684 : return new lvalue (get_context (), datum);
2012 : : }
2013 : :
2014 : : /* Mark the lvalue saying that we need to be able to take the
2015 : : address of it; it should not be allocated in a register.
2016 : : Compare with e.g. c/c-typeck.cc: c_mark_addressable really_atomic_lvalue.
2017 : : Returns false if a failure occurred (an error will already have been
2018 : : added to the active context for this case). */
2019 : :
2020 : : bool
2021 : 498 : playback::lvalue::
2022 : : mark_addressable (location *loc)
2023 : : {
2024 : 498 : tree x = as_tree ();
2025 : :
2026 : 558 : while (1)
2027 : 528 : switch (TREE_CODE (x))
2028 : : {
2029 : 5 : case COMPONENT_REF:
2030 : 5 : if (DECL_JIT_BIT_FIELD (TREE_OPERAND (x, 1)))
2031 : : {
2032 : 5 : gcc_assert (gcc::jit::active_playback_ctxt);
2033 : 5 : gcc::jit::
2034 : 5 : active_playback_ctxt->add_error (loc,
2035 : : "cannot take address of "
2036 : : "bit-field");
2037 : 5 : return false;
2038 : : }
2039 : : /* fallthrough */
2040 : 30 : case ADDR_EXPR:
2041 : 30 : case ARRAY_REF:
2042 : 30 : case REALPART_EXPR:
2043 : 30 : case IMAGPART_EXPR:
2044 : 30 : x = TREE_OPERAND (x, 0);
2045 : 30 : break;
2046 : :
2047 : 0 : case COMPOUND_LITERAL_EXPR:
2048 : 0 : case CONSTRUCTOR:
2049 : 0 : TREE_ADDRESSABLE (x) = 1;
2050 : 0 : return true;
2051 : :
2052 : 433 : case VAR_DECL:
2053 : 433 : case CONST_DECL:
2054 : 433 : case PARM_DECL:
2055 : 433 : case RESULT_DECL:
2056 : : /* (we don't have a concept of a "register" declaration) */
2057 : : /* fallthrough */
2058 : 433 : case FUNCTION_DECL:
2059 : 433 : TREE_ADDRESSABLE (x) = 1;
2060 : : /* fallthrough */
2061 : : default:
2062 : : return true;
2063 : : }
2064 : : }
2065 : :
2066 : : /* Construct a playback::rvalue instance (wrapping a tree) for an
2067 : : address-lookup. */
2068 : :
2069 : : playback::rvalue *
2070 : 498 : playback::lvalue::
2071 : : get_address (location *loc)
2072 : : {
2073 : 498 : tree t_lvalue = as_tree ();
2074 : 498 : tree t_thistype = TREE_TYPE (t_lvalue);
2075 : 498 : tree t_ptrtype = build_pointer_type (t_thistype);
2076 : 498 : tree ptr = fold_build1 (ADDR_EXPR, t_ptrtype, t_lvalue);
2077 : 498 : if (loc)
2078 : 0 : get_context ()->set_tree_location (ptr, loc);
2079 : 498 : if (mark_addressable (loc))
2080 : 493 : return new rvalue (get_context (), ptr);
2081 : : else
2082 : : return NULL;
2083 : : }
2084 : :
2085 : : /* The wrapper subclasses are GC-managed, but can own non-GC memory.
2086 : : Provide this finalization hook for calling then they are collected,
2087 : : which calls the finalizer vfunc. This allows them to call "release"
2088 : : on any vec<> within them. */
2089 : :
2090 : : static void
2091 : 74030 : wrapper_finalizer (void *ptr)
2092 : : {
2093 : 74030 : playback::wrapper *wrapper = reinterpret_cast <playback::wrapper *> (ptr);
2094 : 74030 : wrapper->finalizer ();
2095 : 74030 : }
2096 : :
2097 : : /* gcc::jit::playback::wrapper subclasses are GC-managed:
2098 : : allocate them using ggc_internal_cleared_alloc. */
2099 : :
2100 : : void *
2101 : 77158 : playback::wrapper::
2102 : : operator new (size_t sz)
2103 : : {
2104 : 77158 : return ggc_internal_cleared_alloc (sz, wrapper_finalizer, 0, 1);
2105 : :
2106 : : }
2107 : :
2108 : : /* Constructor for gcc:jit::playback::function. */
2109 : :
2110 : 15712 : playback::function::
2111 : : function (context *ctxt,
2112 : : tree fndecl,
2113 : 15712 : enum gcc_jit_function_kind kind)
2114 : 15712 : : m_ctxt(ctxt),
2115 : 15712 : m_inner_fndecl (fndecl),
2116 : 15712 : m_inner_bind_expr (NULL),
2117 : 15712 : m_kind (kind),
2118 : 15712 : m_blocks ()
2119 : : {
2120 : 15712 : if (m_kind != GCC_JIT_FUNCTION_IMPORTED)
2121 : : {
2122 : : /* Create a BIND_EXPR, and within it, a statement list. */
2123 : 3266 : m_stmt_list = alloc_stmt_list ();
2124 : 3266 : m_stmt_iter = tsi_start (m_stmt_list);
2125 : 3266 : m_inner_block = make_node (BLOCK);
2126 : 3266 : m_inner_bind_expr =
2127 : 3266 : build3 (BIND_EXPR, void_type_node, NULL, m_stmt_list, m_inner_block);
2128 : : }
2129 : : else
2130 : : {
2131 : 12446 : m_inner_block = NULL;
2132 : 12446 : m_stmt_list = NULL;
2133 : : }
2134 : 15712 : }
2135 : :
2136 : : /* Hand-written GC-marking hook for playback functions. */
2137 : :
2138 : : void
2139 : 35004996 : playback::function::
2140 : : gt_ggc_mx ()
2141 : : {
2142 : 35004996 : gt_ggc_m_9tree_node (m_inner_fndecl);
2143 : 35004996 : gt_ggc_m_9tree_node (m_inner_bind_expr);
2144 : 35004996 : gt_ggc_m_9tree_node (m_stmt_list);
2145 : 35004996 : gt_ggc_m_9tree_node (m_inner_block);
2146 : 35004996 : }
2147 : :
2148 : : /* Don't leak vec's internal buffer (in non-GC heap) when we are
2149 : : GC-ed. */
2150 : :
2151 : : void
2152 : 14002 : playback::function::finalizer ()
2153 : : {
2154 : 14002 : m_blocks.release ();
2155 : 14002 : }
2156 : :
2157 : : /* Get the return type of a playback function, in tree form. */
2158 : :
2159 : : tree
2160 : 3612 : playback::function::
2161 : : get_return_type_as_tree () const
2162 : : {
2163 : 3612 : return TREE_TYPE (TREE_TYPE(m_inner_fndecl));
2164 : : }
2165 : :
2166 : : /* Construct a new local within this playback::function. */
2167 : :
2168 : : playback::lvalue *
2169 : 2117 : playback::function::
2170 : : new_local (location *loc,
2171 : : type *type,
2172 : : const char *name,
2173 : : const std::vector<std::pair<gcc_jit_variable_attribute,
2174 : : std::string>> &attributes)
2175 : : {
2176 : 2117 : gcc_assert (type);
2177 : 2117 : tree inner;
2178 : 2117 : if (name)
2179 : 2112 : inner = build_decl (UNKNOWN_LOCATION, VAR_DECL,
2180 : : get_identifier (name),
2181 : : type->as_tree ());
2182 : : else
2183 : : {
2184 : 5 : inner = build_decl (UNKNOWN_LOCATION, VAR_DECL,
2185 : : create_tmp_var_name ("JITTMP"),
2186 : : type->as_tree ());
2187 : 5 : DECL_ARTIFICIAL (inner) = 1;
2188 : 5 : DECL_IGNORED_P (inner) = 1;
2189 : 5 : DECL_NAMELESS (inner) = 1;
2190 : : }
2191 : 2117 : DECL_CONTEXT (inner) = this->m_inner_fndecl;
2192 : :
2193 : : /* Prepend to BIND_EXPR_VARS: */
2194 : 2117 : DECL_CHAIN (inner) = BIND_EXPR_VARS (m_inner_bind_expr);
2195 : 2117 : BIND_EXPR_VARS (m_inner_bind_expr) = inner;
2196 : :
2197 : 2117 : set_variable_string_attribute (attributes, inner);
2198 : :
2199 : 2117 : if (loc)
2200 : 21 : set_tree_location (inner, loc);
2201 : 2117 : return new lvalue (m_ctxt, inner);
2202 : : }
2203 : :
2204 : : /* Construct a new block within this playback::function. */
2205 : :
2206 : : playback::block *
2207 : 5688 : playback::function::
2208 : : new_block (const char *name)
2209 : : {
2210 : 5688 : gcc_assert (m_kind != GCC_JIT_FUNCTION_IMPORTED);
2211 : :
2212 : 5688 : block *result = new playback::block (this, name);
2213 : 5688 : m_blocks.safe_push (result);
2214 : 5688 : return result;
2215 : : }
2216 : :
2217 : : /* Construct a playback::rvalue instance wrapping an ADDR_EXPR for
2218 : : this playback::function. */
2219 : :
2220 : : playback::rvalue *
2221 : 15 : playback::function::get_address (location *loc)
2222 : : {
2223 : 15 : tree t_fndecl = as_fndecl ();
2224 : 15 : tree t_fntype = TREE_TYPE (t_fndecl);
2225 : 15 : tree t_fnptr = build1 (ADDR_EXPR, build_pointer_type (t_fntype), t_fndecl);
2226 : 15 : if (loc)
2227 : 0 : m_ctxt->set_tree_location (t_fnptr, loc);
2228 : 15 : return new rvalue (m_ctxt, t_fnptr);
2229 : : }
2230 : :
2231 : : /* Build a statement list for the function as a whole out of the
2232 : : lists of statements for the individual blocks, building labels
2233 : : for each block. */
2234 : :
2235 : : void
2236 : 15697 : playback::function::
2237 : : build_stmt_list ()
2238 : : {
2239 : 15697 : int i;
2240 : 15697 : block *b;
2241 : :
2242 : 15697 : JIT_LOG_SCOPE (m_ctxt->get_logger ());
2243 : :
2244 : 21370 : FOR_EACH_VEC_ELT (m_blocks, i, b)
2245 : : {
2246 : 5673 : int j;
2247 : 5673 : tree stmt;
2248 : :
2249 : 5673 : b->m_label_expr = build1 (LABEL_EXPR,
2250 : : void_type_node,
2251 : : b->as_label_decl ());
2252 : 5673 : tsi_link_after (&m_stmt_iter, b->m_label_expr, TSI_CONTINUE_LINKING);
2253 : :
2254 : 22467 : FOR_EACH_VEC_ELT (b->m_stmts, j, stmt)
2255 : 11121 : tsi_link_after (&m_stmt_iter, stmt, TSI_CONTINUE_LINKING);
2256 : : }
2257 : 15697 : }
2258 : :
2259 : : /* Finish compiling the given function, potentially running the
2260 : : garbage-collector.
2261 : : The function will have a statement list by now.
2262 : : Amongst other things, this gimplifies the statement list,
2263 : : and calls cgraph_node::finalize_function on the function. */
2264 : :
2265 : : void
2266 : 15697 : playback::function::
2267 : : postprocess ()
2268 : : {
2269 : 15697 : JIT_LOG_SCOPE (m_ctxt->get_logger ());
2270 : :
2271 : 15697 : if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE))
2272 : 0 : debug_tree (m_stmt_list);
2273 : :
2274 : : /* Do we need this to force cgraphunit.cc to output the function? */
2275 : 15697 : if (m_kind == GCC_JIT_FUNCTION_EXPORTED)
2276 : : {
2277 : 3111 : DECL_EXTERNAL (m_inner_fndecl) = 0;
2278 : 3111 : DECL_PRESERVE_P (m_inner_fndecl) = 1;
2279 : : }
2280 : :
2281 : 15697 : if (m_kind == GCC_JIT_FUNCTION_INTERNAL
2282 : 15697 : ||m_kind == GCC_JIT_FUNCTION_ALWAYS_INLINE)
2283 : : {
2284 : 140 : DECL_EXTERNAL (m_inner_fndecl) = 0;
2285 : 140 : TREE_PUBLIC (m_inner_fndecl) = 0;
2286 : : }
2287 : :
2288 : 15697 : if (m_kind != GCC_JIT_FUNCTION_IMPORTED)
2289 : : {
2290 : : /* Seem to need this in gimple-low.cc: */
2291 : 3251 : gcc_assert (m_inner_block);
2292 : 3251 : DECL_INITIAL (m_inner_fndecl) = m_inner_block;
2293 : :
2294 : : /* how to add to function? the following appears to be how to
2295 : : set the body of a m_inner_fndecl: */
2296 : 3251 : DECL_SAVED_TREE(m_inner_fndecl) = m_inner_bind_expr;
2297 : :
2298 : : /* Ensure that locals appear in the debuginfo. */
2299 : 3251 : BLOCK_VARS (m_inner_block) = BIND_EXPR_VARS (m_inner_bind_expr);
2300 : :
2301 : : //debug_tree (m_inner_fndecl);
2302 : :
2303 : : /* Convert to gimple: */
2304 : : //printf("about to gimplify_function_tree\n");
2305 : 3251 : gimplify_function_tree (m_inner_fndecl);
2306 : : //printf("finished gimplify_function_tree\n");
2307 : :
2308 : 3251 : current_function_decl = m_inner_fndecl;
2309 : 3251 : if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE))
2310 : 0 : dump_function_to_file (m_inner_fndecl, stderr, TDF_VOPS|TDF_MEMSYMS|TDF_LINENO);
2311 : : //debug_tree (m_inner_fndecl);
2312 : :
2313 : : //printf("about to add to cgraph\n");
2314 : : /* Add to cgraph: */
2315 : 3251 : cgraph_node::finalize_function (m_inner_fndecl, false);
2316 : : /* This can trigger a collection, so we need to have all of
2317 : : the funcs as roots. */
2318 : :
2319 : 3251 : current_function_decl = NULL;
2320 : : }
2321 : : else
2322 : : /* Add to cgraph to output aliases: */
2323 : 12446 : rest_of_decl_compilation (m_inner_fndecl, true, 0);
2324 : 15697 : }
2325 : :
2326 : : /* Don't leak vec's internal buffer (in non-GC heap) when we are
2327 : : GC-ed. */
2328 : :
2329 : : void
2330 : 5613 : playback::block::finalizer ()
2331 : : {
2332 : 5613 : m_stmts.release ();
2333 : 5613 : }
2334 : :
2335 : : /* Add an eval of the rvalue to the function's statement list. */
2336 : :
2337 : : void
2338 : 256 : playback::block::
2339 : : add_eval (location *loc,
2340 : : rvalue *rvalue)
2341 : : {
2342 : 256 : gcc_assert (rvalue);
2343 : :
2344 : 256 : if (loc)
2345 : 9 : set_tree_location (rvalue->as_tree (), loc);
2346 : :
2347 : 256 : add_stmt (rvalue->as_tree ());
2348 : 256 : }
2349 : :
2350 : : /* Add an assignment to the function's statement list. */
2351 : :
2352 : : void
2353 : 4734 : playback::block::
2354 : : add_assignment (location *loc,
2355 : : lvalue *lvalue,
2356 : : rvalue *rvalue)
2357 : : {
2358 : 4734 : gcc_assert (lvalue);
2359 : 4734 : gcc_assert (rvalue);
2360 : :
2361 : 4734 : tree t_lvalue = lvalue->as_tree ();
2362 : 4734 : tree t_rvalue = rvalue->as_tree ();
2363 : 4734 : if (TREE_TYPE (t_rvalue) != TREE_TYPE (t_lvalue))
2364 : : {
2365 : 320 : t_rvalue = build1 (CONVERT_EXPR,
2366 : 320 : TREE_TYPE (t_lvalue),
2367 : : t_rvalue);
2368 : 320 : if (loc)
2369 : 0 : set_tree_location (t_rvalue, loc);
2370 : : }
2371 : :
2372 : 4734 : tree stmt =
2373 : 4734 : build2 (MODIFY_EXPR, TREE_TYPE (t_lvalue),
2374 : : t_lvalue, t_rvalue);
2375 : 4734 : if (loc)
2376 : 390 : set_tree_location (stmt, loc);
2377 : 4734 : add_stmt (stmt);
2378 : 4734 : }
2379 : :
2380 : : /* Add a comment to the function's statement list.
2381 : : For now this is done by adding a dummy label. */
2382 : :
2383 : : void
2384 : 423 : playback::block::
2385 : : add_comment (location *loc,
2386 : : const char *text)
2387 : : {
2388 : : /* Wrap the text in C-style comment delimiters. */
2389 : 423 : size_t sz =
2390 : : (3 /* opening delim */
2391 : 423 : + strlen (text)
2392 : : + 3 /* closing delim */
2393 : : + 1 /* terminator */);
2394 : 423 : char *wrapped = (char *)ggc_internal_alloc (sz);
2395 : 423 : snprintf (wrapped, sz, "/* %s */", text);
2396 : :
2397 : : /* For now we simply implement this by adding a dummy label with a name
2398 : : containing the given text. */
2399 : 423 : tree identifier = get_identifier (wrapped);
2400 : 423 : tree label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
2401 : : identifier, void_type_node);
2402 : 423 : DECL_CONTEXT (label_decl) = m_func->as_fndecl ();
2403 : :
2404 : 423 : tree label_expr = build1 (LABEL_EXPR, void_type_node, label_decl);
2405 : 423 : if (loc)
2406 : 202 : set_tree_location (label_expr, loc);
2407 : 423 : add_stmt (label_expr);
2408 : 423 : }
2409 : :
2410 : : /* Add a conditional jump statement to the function's statement list. */
2411 : :
2412 : : void
2413 : 864 : playback::block::
2414 : : add_conditional (location *loc,
2415 : : rvalue *boolval,
2416 : : block *on_true,
2417 : : block *on_false)
2418 : : {
2419 : 864 : gcc_assert (boolval);
2420 : 864 : gcc_assert (on_true);
2421 : 864 : gcc_assert (on_false);
2422 : :
2423 : : /* COND_EXPR wants statement lists for the true/false operands, but we
2424 : : want labels.
2425 : : Shim it by creating jumps to the labels */
2426 : 864 : tree true_jump = build1 (GOTO_EXPR, void_type_node,
2427 : : on_true->as_label_decl ());
2428 : 864 : if (loc)
2429 : 37 : set_tree_location (true_jump, loc);
2430 : :
2431 : 864 : tree false_jump = build1 (GOTO_EXPR, void_type_node,
2432 : : on_false->as_label_decl ());
2433 : 864 : if (loc)
2434 : 37 : set_tree_location (false_jump, loc);
2435 : :
2436 : 864 : tree stmt =
2437 : 864 : build3 (COND_EXPR, void_type_node, boolval->as_tree (),
2438 : : true_jump, false_jump);
2439 : 864 : if (loc)
2440 : 37 : set_tree_location (stmt, loc);
2441 : 864 : add_stmt (stmt);
2442 : 864 : }
2443 : :
2444 : : /* Add an unconditional jump statement to the function's statement list. */
2445 : :
2446 : : void
2447 : 1182 : playback::block::
2448 : : add_jump (location *loc,
2449 : : block *target)
2450 : : {
2451 : 1182 : gcc_assert (target);
2452 : :
2453 : : // see c_finish_loop
2454 : : //tree top = build1 (LABEL_EXPR, void_type_node, NULL_TREE);
2455 : : //add_stmt (top);
2456 : :
2457 : : //tree stmt = build_and_jump (&LABEL_EXPR_LABEL (target->label_));
2458 : 1182 : TREE_USED (target->as_label_decl ()) = 1;
2459 : 1182 : tree stmt = build1 (GOTO_EXPR, void_type_node, target->as_label_decl ());
2460 : 1182 : if (loc)
2461 : 48 : set_tree_location (stmt, loc);
2462 : 1182 : add_stmt (stmt);
2463 : :
2464 : : /*
2465 : : from c-typeck.cc:
2466 : : tree
2467 : : c_finish_goto_label (location_t loc, tree label)
2468 : : {
2469 : : tree decl = lookup_label_for_goto (loc, label);
2470 : : if (!decl)
2471 : : return NULL_TREE;
2472 : : TREE_USED (decl) = 1;
2473 : : {
2474 : : tree t = build1 (GOTO_EXPR, void_type_node, decl);
2475 : : SET_EXPR_LOCATION (t, loc);
2476 : : return add_stmt (t);
2477 : : }
2478 : : }
2479 : : */
2480 : :
2481 : 1182 : }
2482 : :
2483 : : /* Add a return statement to the function's statement list. */
2484 : :
2485 : : void
2486 : 3612 : playback::block::
2487 : : add_return (location *loc,
2488 : : rvalue *rvalue)
2489 : : {
2490 : 3612 : tree modify_retval = NULL;
2491 : 3612 : tree return_type = m_func->get_return_type_as_tree ();
2492 : 3612 : if (rvalue)
2493 : : {
2494 : 3133 : tree t_lvalue = DECL_RESULT (m_func->as_fndecl ());
2495 : 3133 : tree t_rvalue = rvalue->as_tree ();
2496 : 3133 : if (TREE_TYPE (t_rvalue) != TREE_TYPE (t_lvalue))
2497 : 110 : t_rvalue = build1 (CONVERT_EXPR,
2498 : 110 : TREE_TYPE (t_lvalue),
2499 : : t_rvalue);
2500 : 3133 : modify_retval = build2 (MODIFY_EXPR, return_type,
2501 : : t_lvalue, t_rvalue);
2502 : 3133 : if (loc)
2503 : 68 : set_tree_location (modify_retval, loc);
2504 : : }
2505 : 3612 : tree return_stmt = build1 (RETURN_EXPR, return_type,
2506 : : modify_retval);
2507 : 3612 : if (loc)
2508 : 80 : set_tree_location (return_stmt, loc);
2509 : :
2510 : 3612 : add_stmt (return_stmt);
2511 : 3612 : }
2512 : :
2513 : : /* Helper function for playback::block::add_switch.
2514 : : Construct a case label for the given range, followed by a goto stmt
2515 : : to the given block, appending them to stmt list *ptr_t_switch_body. */
2516 : :
2517 : : static void
2518 : 100 : add_case (tree *ptr_t_switch_body,
2519 : : tree t_low_value,
2520 : : tree t_high_value,
2521 : : playback::block *dest_block)
2522 : : {
2523 : 100 : tree t_label = create_artificial_label (UNKNOWN_LOCATION);
2524 : 100 : DECL_CONTEXT (t_label) = dest_block->get_function ()->as_fndecl ();
2525 : :
2526 : 100 : tree t_case_label =
2527 : 100 : build_case_label (t_low_value, t_high_value, t_label);
2528 : 100 : append_to_statement_list (t_case_label, ptr_t_switch_body);
2529 : :
2530 : 100 : tree t_goto_stmt =
2531 : 100 : build1 (GOTO_EXPR, void_type_node, dest_block->as_label_decl ());
2532 : 100 : append_to_statement_list (t_goto_stmt, ptr_t_switch_body);
2533 : 100 : }
2534 : :
2535 : : /* Add a switch statement to the function's statement list.
2536 : :
2537 : : We create a switch body, and populate it with case labels, each
2538 : : followed by a goto to the desired block. */
2539 : :
2540 : : void
2541 : 20 : playback::block::
2542 : : add_switch (location *loc,
2543 : : rvalue *expr,
2544 : : block *default_block,
2545 : : const auto_vec <case_> *cases)
2546 : : {
2547 : : /* Compare with:
2548 : : - c/c-typeck.cc: c_start_case
2549 : : - c-family/c-common.cc:c_add_case_label
2550 : : - java/expr.cc:expand_java_switch and expand_java_add_case
2551 : : We've already rejected overlaps and duplicates in
2552 : : libgccjit.cc:case_range_validator::validate. */
2553 : :
2554 : 20 : tree t_expr = expr->as_tree ();
2555 : 20 : tree t_type = TREE_TYPE (t_expr);
2556 : :
2557 : 20 : tree t_switch_body = alloc_stmt_list ();
2558 : :
2559 : 20 : int i;
2560 : 20 : case_ *c;
2561 : 100 : FOR_EACH_VEC_ELT (*cases, i, c)
2562 : : {
2563 : 80 : tree t_low_value = c->m_min_value->as_tree ();
2564 : 80 : tree t_high_value = c->m_max_value->as_tree ();
2565 : 80 : add_case (&t_switch_body, t_low_value, t_high_value, c->m_dest_block);
2566 : : }
2567 : : /* Default label. */
2568 : 20 : add_case (&t_switch_body, NULL_TREE, NULL_TREE, default_block);
2569 : :
2570 : 20 : tree switch_stmt = build2 (SWITCH_EXPR, t_type, t_expr, t_switch_body);
2571 : 20 : if (loc)
2572 : 0 : set_tree_location (switch_stmt, loc);
2573 : 20 : add_stmt (switch_stmt);
2574 : 20 : }
2575 : :
2576 : : /* Convert OPERANDS to a tree-based chain suitable for creating an
2577 : : extended asm stmt.
2578 : : Compare with c_parser_asm_operands. */
2579 : :
2580 : : static tree
2581 : 80 : build_operand_chain (const auto_vec <playback::asm_operand> *operands)
2582 : : {
2583 : 80 : tree result = NULL_TREE;
2584 : 80 : unsigned i;
2585 : 80 : playback::asm_operand *asm_op;
2586 : 130 : FOR_EACH_VEC_ELT (*operands, i, asm_op)
2587 : : {
2588 : 50 : tree name = build_string (asm_op->m_asm_symbolic_name);
2589 : 50 : tree str = build_string (asm_op->m_constraint);
2590 : 50 : tree value = asm_op->m_expr;
2591 : 50 : result = chainon (result,
2592 : : build_tree_list (build_tree_list (name, str),
2593 : : value));
2594 : : }
2595 : 80 : return result;
2596 : : }
2597 : :
2598 : : /* Convert CLOBBERS to a tree-based list suitable for creating an
2599 : : extended asm stmt.
2600 : : Compare with c_parser_asm_clobbers. */
2601 : :
2602 : : static tree
2603 : 40 : build_clobbers (const auto_vec <const char *> *clobbers)
2604 : : {
2605 : 40 : tree list = NULL_TREE;
2606 : 40 : unsigned i;
2607 : 40 : const char *clobber;
2608 : 65 : FOR_EACH_VEC_ELT (*clobbers, i, clobber)
2609 : : {
2610 : 25 : tree str = build_string (clobber);
2611 : 25 : list = tree_cons (NULL_TREE, str, list);
2612 : : }
2613 : 40 : return list;
2614 : : }
2615 : :
2616 : : /* Convert BLOCKS to a tree-based list suitable for creating an
2617 : : extended asm stmt.
2618 : : Compare with c_parser_asm_goto_operands. */
2619 : :
2620 : : static tree
2621 : 40 : build_goto_operands (const auto_vec <playback::block *> *blocks)
2622 : : {
2623 : 40 : tree list = NULL_TREE;
2624 : 40 : unsigned i;
2625 : 40 : playback::block *b;
2626 : 50 : FOR_EACH_VEC_ELT (*blocks, i, b)
2627 : : {
2628 : 10 : tree label = b->as_label_decl ();
2629 : 10 : tree name = build_string (IDENTIFIER_POINTER (DECL_NAME (label)));
2630 : 10 : TREE_USED (label) = 1;
2631 : 10 : list = tree_cons (name, label, list);
2632 : : }
2633 : 40 : return nreverse (list);
2634 : : }
2635 : :
2636 : : /* Add an extended asm statement to this block.
2637 : :
2638 : : Compare with c_parser_asm_statement (in c/c-parser.cc)
2639 : : and build_asm_expr (in c/c-typeck.cc). */
2640 : :
2641 : : void
2642 : 40 : playback::block::add_extended_asm (location *loc,
2643 : : const char *asm_template,
2644 : : bool is_volatile,
2645 : : bool is_inline,
2646 : : const auto_vec <asm_operand> *outputs,
2647 : : const auto_vec <asm_operand> *inputs,
2648 : : const auto_vec <const char *> *clobbers,
2649 : : const auto_vec <block *> *goto_blocks)
2650 : : {
2651 : 40 : tree t_string = build_string (asm_template);
2652 : 40 : tree t_outputs = build_operand_chain (outputs);
2653 : 40 : tree t_inputs = build_operand_chain (inputs);
2654 : 40 : tree t_clobbers = build_clobbers (clobbers);
2655 : 40 : tree t_labels = build_goto_operands (goto_blocks);
2656 : 40 : t_string
2657 : 40 : = resolve_asm_operand_names (t_string, t_outputs, t_inputs, t_labels);
2658 : 40 : tree asm_stmt
2659 : 40 : = build5 (ASM_EXPR, void_type_node,
2660 : : t_string, t_outputs, t_inputs, t_clobbers, t_labels);
2661 : :
2662 : : /* asm statements without outputs, including simple ones, are treated
2663 : : as volatile. */
2664 : 60 : ASM_VOLATILE_P (asm_stmt) = (outputs->length () == 0);
2665 : 40 : ASM_BASIC_P (asm_stmt) = 0;
2666 : 40 : ASM_INLINE_P (asm_stmt) = is_inline;
2667 : 40 : if (is_volatile)
2668 : 10 : ASM_VOLATILE_P (asm_stmt) = 1;
2669 : 40 : if (loc)
2670 : 0 : set_tree_location (asm_stmt, loc);
2671 : 40 : add_stmt (asm_stmt);
2672 : 40 : }
2673 : :
2674 : : /* Constructor for gcc::jit::playback::block. */
2675 : :
2676 : 5688 : playback::block::
2677 : : block (function *func,
2678 : 5688 : const char *name)
2679 : 5688 : : m_func (func),
2680 : 5688 : m_stmts ()
2681 : : {
2682 : 5688 : tree identifier;
2683 : :
2684 : 5688 : gcc_assert (func);
2685 : : // name can be NULL
2686 : 5688 : if (name)
2687 : 4761 : identifier = get_identifier (name);
2688 : : else
2689 : : identifier = NULL;
2690 : 5688 : m_label_decl = build_decl (UNKNOWN_LOCATION, LABEL_DECL,
2691 : : identifier, void_type_node);
2692 : 5688 : DECL_CONTEXT (m_label_decl) = func->as_fndecl ();
2693 : 5688 : m_label_expr = NULL;
2694 : 5688 : }
2695 : :
2696 : : // This is basically std::lock_guard but it can call the private lock/unlock
2697 : : // members of playback::context.
2698 : : struct playback::context::scoped_lock
2699 : : {
2700 : 1244 : scoped_lock (context &ctx) : m_ctx (&ctx) { m_ctx->lock (); }
2701 : 2488 : ~scoped_lock () { m_ctx->unlock (); }
2702 : :
2703 : : context *m_ctx;
2704 : :
2705 : : // Not movable or copyable.
2706 : : scoped_lock (scoped_lock &&) = delete;
2707 : : scoped_lock &operator= (scoped_lock &&) = delete;
2708 : : };
2709 : :
2710 : : /* Compile a playback::context:
2711 : :
2712 : : - Use the context's options to cconstruct command-line options, and
2713 : : call into the rest of GCC (toplev::main).
2714 : : - Assuming it succeeds, we have a .s file.
2715 : : - We then run the "postprocess" vfunc:
2716 : :
2717 : : (A) In-memory compile ("gcc_jit_context_compile")
2718 : :
2719 : : For an in-memory compile we have the playback::compile_to_memory
2720 : : subclass; "postprocess" will convert the .s file to a .so DSO,
2721 : : and load it in memory (via dlopen), wrapping the result up as
2722 : : a jit::result and returning it.
2723 : :
2724 : : (B) Compile to file ("gcc_jit_context_compile_to_file")
2725 : :
2726 : : When compiling to a file, we have the playback::compile_to_file
2727 : : subclass; "postprocess" will either copy the .s file to the
2728 : : destination (for GCC_JIT_OUTPUT_KIND_ASSEMBLER), or invoke
2729 : : the driver to convert it as necessary, copying the result. */
2730 : :
2731 : : void
2732 : 1244 : playback::context::
2733 : : compile ()
2734 : : {
2735 : 1244 : JIT_LOG_SCOPE (get_logger ());
2736 : :
2737 : 1244 : const char *ctxt_progname;
2738 : :
2739 : 1244 : int keep_intermediates =
2740 : 1244 : get_bool_option (GCC_JIT_BOOL_OPTION_KEEP_INTERMEDIATES);
2741 : :
2742 : 1244 : m_tempdir = new tempdir (get_logger (), keep_intermediates);
2743 : 1244 : if (!m_tempdir->create ())
2744 : : return;
2745 : :
2746 : : /* Call into the rest of gcc.
2747 : : For now, we have to assemble command-line options to pass into
2748 : : toplev::main, so that they can be parsed. */
2749 : :
2750 : : /* Pass in user-provided program name as argv0, if any, so that it
2751 : : makes it into GCC's "progname" global, used in various diagnostics. */
2752 : 1244 : ctxt_progname = get_str_option (GCC_JIT_STR_OPTION_PROGNAME);
2753 : :
2754 : 1244 : if (!ctxt_progname)
2755 : 87 : ctxt_progname = "libgccjit.so";
2756 : :
2757 : 1244 : auto_vec <recording::requested_dump> requested_dumps;
2758 : 1244 : m_recording_ctxt->get_all_requested_dumps (&requested_dumps);
2759 : :
2760 : : /* Acquire the JIT mutex and set "this" as the active playback ctxt. */
2761 : 1244 : scoped_lock lock(*this);
2762 : :
2763 : 1244 : auto_string_vec fake_args;
2764 : 1244 : make_fake_args (&fake_args, ctxt_progname, &requested_dumps);
2765 : 1244 : if (errors_occurred ())
2766 : : return;
2767 : :
2768 : : /* This runs the compiler. */
2769 : 1244 : toplev toplev (get_timer (), /* external_timer */
2770 : 1244 : false); /* init_signals */
2771 : 1244 : enter_scope ("toplev::main");
2772 : 1244 : if (get_logger ())
2773 : 6599 : for (unsigned i = 0; i < fake_args.length (); i++)
2774 : 6032 : get_logger ()->log ("argv[%i]: %s", i, fake_args[i]);
2775 : :
2776 : : /* Add a trailing null to argvec; this is not counted in argc. */
2777 : 1244 : fake_args.safe_push (nullptr);
2778 : 2488 : toplev.main (/* The trailing null is not counted in argv. */
2779 : 1244 : fake_args.length () - 1,
2780 : : const_cast <char **> (fake_args.address ()));
2781 : 1244 : exit_scope ("toplev::main");
2782 : :
2783 : : /* Extracting dumps makes use of the gcc::dump_manager, hence we
2784 : : need to do it between toplev::main (which creates the dump manager)
2785 : : and toplev::finalize (which deletes it). */
2786 : 1244 : extract_any_requested_dumps (&requested_dumps);
2787 : :
2788 : : /* Clean up the compiler. */
2789 : 1244 : enter_scope ("toplev::finalize");
2790 : 1244 : toplev.finalize ();
2791 : 1244 : exit_scope ("toplev::finalize");
2792 : :
2793 : : /* Ideally we would release the jit mutex here, but we can't yet since
2794 : : followup activities use timevars, which are global state. */
2795 : :
2796 : 1244 : if (errors_occurred ())
2797 : 55 : return;
2798 : :
2799 : 1189 : if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_GENERATED_CODE))
2800 : 0 : dump_generated_code ();
2801 : :
2802 : : /* We now have a .s file.
2803 : :
2804 : : Run any postprocessing steps. This will either convert the .s file to
2805 : : a .so DSO, and load it in memory (playback::compile_to_memory), or
2806 : : convert the .s file to the requested output format, and copy it to a
2807 : : given file (playback::compile_to_file). */
2808 : 1189 : postprocess (ctxt_progname);
2809 : 1244 : }
2810 : :
2811 : : /* Implementation of class gcc::jit::playback::compile_to_memory,
2812 : : a subclass of gcc::jit::playback::context. */
2813 : :
2814 : : /* playback::compile_to_memory's trivial constructor. */
2815 : :
2816 : 1123 : playback::compile_to_memory::compile_to_memory (recording::context *ctxt) :
2817 : : playback::context (ctxt),
2818 : 1123 : m_result (NULL)
2819 : : {
2820 : 1123 : JIT_LOG_SCOPE (get_logger ());
2821 : 1123 : }
2822 : :
2823 : : /* Implementation of the playback::context::process vfunc for compiling
2824 : : to memory.
2825 : :
2826 : : Convert the .s file to a .so DSO, and load it in memory (via dlopen),
2827 : : wrapping the result up as a jit::result and returning it. */
2828 : :
2829 : : void
2830 : 1068 : playback::compile_to_memory::postprocess (const char *ctxt_progname)
2831 : : {
2832 : 1068 : JIT_LOG_SCOPE (get_logger ());
2833 : 1068 : convert_to_dso (ctxt_progname);
2834 : 1068 : if (errors_occurred ())
2835 : 5 : return;
2836 : 1063 : m_result = dlopen_built_dso ();
2837 : 1068 : }
2838 : :
2839 : : /* Implementation of class gcc::jit::playback::compile_to_file,
2840 : : a subclass of gcc::jit::playback::context. */
2841 : :
2842 : : /* playback::compile_to_file's trivial constructor. */
2843 : :
2844 : 121 : playback::compile_to_file::compile_to_file (recording::context *ctxt,
2845 : : enum gcc_jit_output_kind output_kind,
2846 : 121 : const char *output_path) :
2847 : : playback::context (ctxt),
2848 : 121 : m_output_kind (output_kind),
2849 : 121 : m_output_path (output_path)
2850 : : {
2851 : 121 : JIT_LOG_SCOPE (get_logger ());
2852 : 121 : }
2853 : :
2854 : : /* Implementation of the playback::context::process vfunc for compiling
2855 : : to a file.
2856 : :
2857 : : Either copy the .s file to the given destination (for
2858 : : GCC_JIT_OUTPUT_KIND_ASSEMBLER), or invoke the driver to convert it
2859 : : as necessary, copying the result. */
2860 : :
2861 : : void
2862 : 121 : playback::compile_to_file::postprocess (const char *ctxt_progname)
2863 : : {
2864 : 121 : JIT_LOG_SCOPE (get_logger ());
2865 : :
2866 : : /* The driver takes different actions based on the filename, so
2867 : : we provide a filename with an appropriate suffix for the
2868 : : output kind, and then copy it up to the user-provided path,
2869 : : rather than directly compiling it to the requested output path. */
2870 : :
2871 : 121 : switch (m_output_kind)
2872 : : {
2873 : 0 : default:
2874 : 0 : gcc_unreachable ();
2875 : :
2876 : 100 : case GCC_JIT_OUTPUT_KIND_ASSEMBLER:
2877 : 100 : copy_file (get_tempdir ()->get_path_s_file (),
2878 : : m_output_path);
2879 : : /* The .s file is automatically unlinked by tempdir::~tempdir. */
2880 : 100 : break;
2881 : :
2882 : 5 : case GCC_JIT_OUTPUT_KIND_OBJECT_FILE:
2883 : 5 : {
2884 : 5 : char *tmp_o_path = ::concat (get_tempdir ()->get_path (),
2885 : : "/fake.o",
2886 : : NULL);
2887 : 5 : invoke_driver (ctxt_progname,
2888 : : get_tempdir ()->get_path_s_file (),
2889 : : tmp_o_path,
2890 : : TV_ASSEMBLE,
2891 : : false, /* bool shared, */
2892 : : false);/* bool run_linker */
2893 : 5 : if (!errors_occurred ())
2894 : : {
2895 : 5 : copy_file (tmp_o_path,
2896 : : m_output_path);
2897 : 5 : get_tempdir ()->add_temp_file (tmp_o_path);
2898 : : }
2899 : : else
2900 : 0 : free (tmp_o_path);
2901 : : }
2902 : : break;
2903 : :
2904 : 5 : case GCC_JIT_OUTPUT_KIND_DYNAMIC_LIBRARY:
2905 : 5 : invoke_driver (ctxt_progname,
2906 : : get_tempdir ()->get_path_s_file (),
2907 : : get_tempdir ()->get_path_so_file (),
2908 : : TV_ASSEMBLE,
2909 : : true, /* bool shared, */
2910 : : true);/* bool run_linker */
2911 : 5 : if (!errors_occurred ())
2912 : 5 : copy_file (get_tempdir ()->get_path_so_file (),
2913 : : m_output_path);
2914 : : /* The .so file is automatically unlinked by tempdir::~tempdir. */
2915 : : break;
2916 : :
2917 : 11 : case GCC_JIT_OUTPUT_KIND_EXECUTABLE:
2918 : 11 : {
2919 : 11 : char *tmp_exe_path = ::concat (get_tempdir ()->get_path (),
2920 : : "/fake.exe",
2921 : : NULL);
2922 : 11 : invoke_driver (ctxt_progname,
2923 : : get_tempdir ()->get_path_s_file (),
2924 : : tmp_exe_path,
2925 : : TV_ASSEMBLE,
2926 : : false, /* bool shared, */
2927 : : true);/* bool run_linker */
2928 : 11 : if (!errors_occurred ())
2929 : : {
2930 : 11 : copy_file (tmp_exe_path,
2931 : : m_output_path);
2932 : 11 : get_tempdir ()->add_temp_file (tmp_exe_path);
2933 : : }
2934 : : else
2935 : 0 : free (tmp_exe_path);
2936 : : }
2937 : : break;
2938 : :
2939 : : }
2940 : :
2941 : 121 : }
2942 : :
2943 : : /* Copy SRC_PATH to DST_PATH, preserving permission bits (in particular,
2944 : : the "executable" bits).
2945 : :
2946 : : Any errors that occur are reported on the context and hence count as
2947 : : a failure of the compile.
2948 : :
2949 : : We can't in general hardlink or use "rename" from the tempdir since
2950 : : it might be on a different filesystem to the destination. For example,
2951 : : I get EXDEV: "Invalid cross-device link". */
2952 : :
2953 : : void
2954 : 121 : playback::compile_to_file::copy_file (const char *src_path,
2955 : : const char *dst_path)
2956 : : {
2957 : 121 : JIT_LOG_SCOPE (get_logger ());
2958 : 121 : if (get_logger ())
2959 : : {
2960 : 120 : get_logger ()->log ("src_path: %s", src_path);
2961 : 120 : get_logger ()->log ("dst_path: %s", dst_path);
2962 : : }
2963 : :
2964 : 121 : FILE *f_in = NULL;
2965 : 121 : FILE *f_out = NULL;
2966 : 121 : size_t total_sz_in = 0;
2967 : 121 : size_t total_sz_out = 0;
2968 : 121 : char buf[4096];
2969 : 121 : size_t sz_in;
2970 : 121 : struct stat stat_buf;
2971 : :
2972 : 121 : f_in = fopen (src_path, "rb");
2973 : 121 : if (!f_in)
2974 : : {
2975 : 0 : add_error (NULL,
2976 : : "unable to open %s for reading: %s",
2977 : : src_path,
2978 : 0 : xstrerror (errno));
2979 : 0 : return;
2980 : : }
2981 : :
2982 : : /* Use stat on the filedescriptor to get the mode,
2983 : : so that we can copy it over (in particular, the
2984 : : "executable" bits). */
2985 : 121 : if (fstat (fileno (f_in), &stat_buf) == -1)
2986 : : {
2987 : 0 : add_error (NULL,
2988 : : "unable to fstat %s: %s",
2989 : : src_path,
2990 : 0 : xstrerror (errno));
2991 : 0 : fclose (f_in);
2992 : 0 : return;
2993 : : }
2994 : :
2995 : 121 : f_out = fopen (dst_path, "wb");
2996 : 121 : if (!f_out)
2997 : : {
2998 : 0 : add_error (NULL,
2999 : : "unable to open %s for writing: %s",
3000 : : dst_path,
3001 : 0 : xstrerror (errno));
3002 : 0 : fclose (f_in);
3003 : 0 : return;
3004 : : }
3005 : :
3006 : 317 : while ( (sz_in = fread (buf, 1, sizeof (buf), f_in)) )
3007 : : {
3008 : 196 : total_sz_in += sz_in;
3009 : 196 : size_t sz_out_remaining = sz_in;
3010 : 196 : size_t sz_out_so_far = 0;
3011 : 392 : while (sz_out_remaining)
3012 : : {
3013 : 196 : size_t sz_out = fwrite (buf + sz_out_so_far,
3014 : : 1,
3015 : : sz_out_remaining,
3016 : : f_out);
3017 : 196 : gcc_assert (sz_out <= sz_out_remaining);
3018 : 196 : if (!sz_out)
3019 : : {
3020 : 0 : add_error (NULL,
3021 : : "error writing to %s: %s",
3022 : : dst_path,
3023 : 0 : xstrerror (errno));
3024 : 0 : fclose (f_in);
3025 : 0 : fclose (f_out);
3026 : 0 : return;
3027 : : }
3028 : 196 : total_sz_out += sz_out;
3029 : 196 : sz_out_so_far += sz_out;
3030 : 196 : sz_out_remaining -= sz_out;
3031 : : }
3032 : 196 : gcc_assert (sz_out_so_far == sz_in);
3033 : : }
3034 : :
3035 : 121 : if (!feof (f_in))
3036 : 0 : add_error (NULL,
3037 : : "error reading from %s: %s",
3038 : : src_path,
3039 : 0 : xstrerror (errno));
3040 : :
3041 : 121 : fclose (f_in);
3042 : :
3043 : 121 : gcc_assert (total_sz_in == total_sz_out);
3044 : 121 : if (get_logger ())
3045 : 120 : get_logger ()->log ("total bytes copied: %zu", total_sz_out);
3046 : :
3047 : : /* fchmod does not exist in Windows. */
3048 : : #ifndef _WIN32
3049 : : /* Set the permissions of the copy to those of the original file,
3050 : : in particular the "executable" bits. */
3051 : 121 : if (fchmod (fileno (f_out), stat_buf.st_mode) == -1)
3052 : 0 : add_error (NULL,
3053 : : "error setting mode of %s: %s",
3054 : : dst_path,
3055 : 0 : xstrerror (errno));
3056 : : #endif
3057 : :
3058 : 121 : fclose (f_out);
3059 : 121 : }
3060 : :
3061 : : /* Helper functions for gcc::jit::playback::context::compile. */
3062 : :
3063 : : /* This mutex guards gcc::jit::recording::context::compile, so that only
3064 : : one thread can be accessing the bulk of GCC's state at once. */
3065 : :
3066 : : static std::mutex jit_mutex;
3067 : :
3068 : : /* Acquire jit_mutex and set "this" as the active playback ctxt. */
3069 : :
3070 : : void
3071 : 1244 : playback::context::lock ()
3072 : : {
3073 : 1244 : auto_timevar tv (get_timer (), TV_JIT_ACQUIRING_MUTEX);
3074 : :
3075 : : /* Acquire the big GCC mutex. */
3076 : 1244 : JIT_LOG_SCOPE (get_logger ());
3077 : 1244 : jit_mutex.lock ();
3078 : 1244 : gcc_assert (active_playback_ctxt == NULL);
3079 : 1244 : active_playback_ctxt = this;
3080 : 1244 : }
3081 : :
3082 : : /* Release jit_mutex and clear the active playback ctxt. */
3083 : :
3084 : : void
3085 : 1244 : playback::context::unlock ()
3086 : : {
3087 : : /* Release the big GCC mutex. */
3088 : 1244 : JIT_LOG_SCOPE (get_logger ());
3089 : 1244 : gcc_assert (active_playback_ctxt == this);
3090 : 1244 : active_playback_ctxt = NULL;
3091 : 1244 : jit_mutex.unlock ();
3092 : 1244 : }
3093 : :
3094 : : /* Callback used by gcc::jit::playback::context::make_fake_args when
3095 : : invoking driver_get_configure_time_options.
3096 : : Populate a vec <char * > with the configure-time options. */
3097 : :
3098 : : static void
3099 : 246 : append_arg_from_driver (const char *option, void *user_data)
3100 : : {
3101 : 246 : gcc_assert (option);
3102 : 246 : gcc_assert (user_data);
3103 : 246 : vec <char *> *argvec = static_cast <vec <char *> *> (user_data);
3104 : 246 : argvec->safe_push (concat ("-", option, NULL));
3105 : 246 : }
3106 : :
3107 : : /* Build a fake argv for toplev::main from the options set
3108 : : by the user on the context . */
3109 : :
3110 : : void
3111 : 1244 : playback::context::
3112 : : make_fake_args (vec <char *> *argvec,
3113 : : const char *ctxt_progname,
3114 : : vec <recording::requested_dump> *requested_dumps)
3115 : : {
3116 : 1244 : JIT_LOG_SCOPE (get_logger ());
3117 : :
3118 : : #define ADD_ARG(arg) argvec->safe_push (xstrdup (arg))
3119 : : #define ADD_ARG_TAKE_OWNERSHIP(arg) argvec->safe_push (arg)
3120 : :
3121 : 1244 : ADD_ARG (ctxt_progname);
3122 : 1244 : ADD_ARG (get_path_c_file ());
3123 : 1244 : ADD_ARG ("-fPIC");
3124 : :
3125 : : /* Handle int options: */
3126 : 1244 : switch (get_int_option (GCC_JIT_INT_OPTION_OPTIMIZATION_LEVEL))
3127 : : {
3128 : 0 : default:
3129 : 0 : add_error (NULL,
3130 : : "unrecognized optimization level: %i",
3131 : : get_int_option (GCC_JIT_INT_OPTION_OPTIMIZATION_LEVEL));
3132 : 0 : return;
3133 : :
3134 : 142 : case 0:
3135 : 142 : ADD_ARG ("-O0");
3136 : 142 : break;
3137 : :
3138 : 105 : case 1:
3139 : 105 : ADD_ARG ("-O1");
3140 : 105 : break;
3141 : :
3142 : 120 : case 2:
3143 : 120 : ADD_ARG ("-O2");
3144 : 120 : break;
3145 : :
3146 : 877 : case 3:
3147 : 877 : ADD_ARG ("-O3");
3148 : 877 : break;
3149 : : }
3150 : : /* What about -Os? */
3151 : :
3152 : : /* Handle bool options: */
3153 : 1244 : if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO))
3154 : 772 : ADD_ARG ("-g");
3155 : :
3156 : : /* Suppress timing (and other) info. */
3157 : 1244 : if (!get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_SUMMARY))
3158 : : {
3159 : 1244 : ADD_ARG ("-quiet");
3160 : 1244 : quiet_flag = 1;
3161 : : }
3162 : :
3163 : : /* Aggressively garbage-collect, to shake out bugs: */
3164 : 1244 : if (get_bool_option (GCC_JIT_BOOL_OPTION_SELFCHECK_GC))
3165 : : {
3166 : 762 : ADD_ARG ("--param=ggc-min-expand=0");
3167 : 762 : ADD_ARG ("--param=ggc-min-heapsize=0");
3168 : : }
3169 : :
3170 : 1244 : if (get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_EVERYTHING))
3171 : : {
3172 : 0 : ADD_ARG ("-fdump-tree-all");
3173 : 0 : ADD_ARG ("-fdump-rtl-all");
3174 : 0 : ADD_ARG ("-fdump-ipa-all");
3175 : : }
3176 : :
3177 : : /* Add "-fdump-" options for any calls to
3178 : : gcc_jit_context_enable_dump. */
3179 : : {
3180 : : int i;
3181 : : recording::requested_dump *d;
3182 : 1294 : FOR_EACH_VEC_ELT (*requested_dumps, i, d)
3183 : : {
3184 : 50 : char *arg = concat ("-fdump-", d->m_dumpname, NULL);
3185 : 50 : ADD_ARG_TAKE_OWNERSHIP (arg);
3186 : : }
3187 : : }
3188 : :
3189 : : /* PR jit/64810: Add any target-specific default options
3190 : : from OPTION_DEFAULT_SPECS, normally provided by the driver
3191 : : in the non-jit case.
3192 : :
3193 : : The target-specific code can define OPTION_DEFAULT_SPECS:
3194 : : default command options in the form of spec macros for the
3195 : : driver to expand ().
3196 : :
3197 : : For cc1 etc, the driver processes OPTION_DEFAULT_SPECS and,
3198 : : if not overriden, injects the defaults as extra arguments to
3199 : : cc1 etc.
3200 : : For the jit case, we need to add these arguments here. The
3201 : : input format (using the specs language) means that we have to run
3202 : : part of the driver code here (driver_get_configure_time_options).
3203 : :
3204 : : To avoid running the spec-expansion code every time, we just do
3205 : : it the first time (via a function-static flag), saving the result
3206 : : into a function-static vec.
3207 : : This flag and vec are global state (i.e. per-process).
3208 : : They are guarded by the jit mutex. */
3209 : 1244 : {
3210 : 1244 : static bool have_configure_time_options = false;
3211 : 1244 : static vec <char *> configure_time_options;
3212 : :
3213 : 1244 : if (have_configure_time_options)
3214 : 1121 : log ("reusing cached configure-time options");
3215 : : else
3216 : : {
3217 : 123 : have_configure_time_options = true;
3218 : 123 : log ("getting configure-time options from driver");
3219 : 123 : driver_get_configure_time_options (append_arg_from_driver,
3220 : : &configure_time_options);
3221 : : }
3222 : :
3223 : 1244 : int i;
3224 : 1244 : char *opt;
3225 : :
3226 : 1244 : if (get_logger ())
3227 : 1701 : FOR_EACH_VEC_ELT (configure_time_options, i, opt)
3228 : 1134 : log ("configure_time_options[%i]: %s", i, opt);
3229 : :
3230 : : /* configure_time_options should now contain the expanded options
3231 : : from OPTION_DEFAULT_SPECS (if any). */
3232 : 3732 : FOR_EACH_VEC_ELT (configure_time_options, i, opt)
3233 : : {
3234 : 2488 : gcc_assert (opt);
3235 : 2488 : gcc_assert (opt[0] == '-');
3236 : 2488 : ADD_ARG (opt);
3237 : : }
3238 : : }
3239 : :
3240 : 1244 : if (get_timer ())
3241 : 400 : ADD_ARG ("-ftime-report");
3242 : :
3243 : : /* Add any user-provided extra options, starting with any from
3244 : : parent contexts. */
3245 : 1244 : m_recording_ctxt->append_command_line_options (argvec);
3246 : :
3247 : : #undef ADD_ARG
3248 : : #undef ADD_ARG_TAKE_OWNERSHIP
3249 : 1244 : }
3250 : :
3251 : : /* The second half of the implementation of gcc_jit_context_enable_dump.
3252 : : Iterate through the requested dumps, reading the underlying files
3253 : : into heap-allocated buffers, writing pointers to the buffers into
3254 : : the char ** pointers provided by client code.
3255 : : Client code is responsible for calling free on the results. */
3256 : :
3257 : : void
3258 : 1244 : playback::context::
3259 : : extract_any_requested_dumps (vec <recording::requested_dump> *requested_dumps)
3260 : : {
3261 : 1244 : JIT_LOG_SCOPE (get_logger ());
3262 : :
3263 : 1244 : int i;
3264 : 1244 : recording::requested_dump *d;
3265 : 1294 : FOR_EACH_VEC_ELT (*requested_dumps, i, d)
3266 : : {
3267 : 50 : dump_file_info *dfi;
3268 : 50 : char *filename;
3269 : 50 : char *content;
3270 : :
3271 : 50 : dfi = g->get_dumps ()->get_dump_file_info_by_switch (d->m_dumpname);
3272 : 50 : if (!dfi)
3273 : : {
3274 : 5 : add_error (NULL, "unrecognized dump: %s", d->m_dumpname);
3275 : 5 : continue;
3276 : : }
3277 : :
3278 : 45 : filename = g->get_dumps ()->get_dump_file_name (dfi);
3279 : 45 : content = read_dump_file (filename);
3280 : 45 : *(d->m_out_ptr) = content;
3281 : 45 : m_tempdir->add_temp_file (filename);
3282 : : }
3283 : 1244 : }
3284 : :
3285 : : /* Helper function for playback::context::extract_any_requested_dumps
3286 : : (itself for use in implementation of gcc_jit_context_enable_dump).
3287 : :
3288 : : Attempt to read the complete file at the given path, returning the
3289 : : bytes found there as a buffer.
3290 : : The caller is responsible for calling free on the result.
3291 : : Errors will be reported on the context, and lead to NULL being
3292 : : returned; an out-of-memory error will terminate the process. */
3293 : :
3294 : : char *
3295 : 45 : playback::context::read_dump_file (const char *path)
3296 : : {
3297 : 45 : char *result = NULL;
3298 : 45 : size_t total_sz = 0;
3299 : 45 : char buf[4096];
3300 : 45 : size_t sz;
3301 : 45 : FILE *f_in;
3302 : :
3303 : 45 : f_in = fopen (path, "r");
3304 : 45 : if (!f_in)
3305 : : {
3306 : 0 : add_error (NULL, "unable to open %s for reading", path);
3307 : 0 : return NULL;
3308 : : }
3309 : :
3310 : 5280 : while ( (sz = fread (buf, 1, sizeof (buf), f_in)) )
3311 : : {
3312 : 5235 : size_t old_total_sz = total_sz;
3313 : 5235 : total_sz += sz;
3314 : 5235 : result = reinterpret_cast <char *> (xrealloc (result, total_sz + 1));
3315 : 5235 : memcpy (result + old_total_sz, buf, sz);
3316 : : }
3317 : :
3318 : 45 : if (!feof (f_in))
3319 : : {
3320 : 0 : add_error (NULL, "error reading from %s", path);
3321 : 0 : free (result);
3322 : 0 : fclose (f_in);
3323 : 0 : return NULL;
3324 : : }
3325 : :
3326 : 45 : fclose (f_in);
3327 : :
3328 : 45 : if (result)
3329 : : {
3330 : 45 : result[total_sz] = '\0';
3331 : 45 : return result;
3332 : : }
3333 : : else
3334 : 0 : return xstrdup ("");
3335 : : }
3336 : :
3337 : : /* Part of playback::context::compile ().
3338 : :
3339 : : We have a .s file; we want a .so file.
3340 : : We could reuse parts of gcc/gcc.cc to do this.
3341 : : For now, just use the driver binary from the install, as
3342 : : named in gcc-driver-name.h
3343 : : e.g. "x86_64-unknown-linux-gnu-gcc-5.0.0". */
3344 : :
3345 : : void
3346 : 1068 : playback::context::
3347 : : convert_to_dso (const char *ctxt_progname)
3348 : : {
3349 : 1068 : JIT_LOG_SCOPE (get_logger ());
3350 : :
3351 : 1068 : invoke_driver (ctxt_progname,
3352 : 1068 : m_tempdir->get_path_s_file (),
3353 : 1068 : m_tempdir->get_path_so_file (),
3354 : : TV_ASSEMBLE,
3355 : : true, /* bool shared, */
3356 : : true);/* bool run_linker */
3357 : 1068 : }
3358 : :
3359 : : static const char * const gcc_driver_name = GCC_DRIVER_NAME;
3360 : :
3361 : : void
3362 : 1089 : playback::context::
3363 : : invoke_driver (const char *ctxt_progname,
3364 : : const char *input_file,
3365 : : const char *output_file,
3366 : : timevar_id_t tv_id,
3367 : : bool shared,
3368 : : bool run_linker)
3369 : : {
3370 : 1089 : JIT_LOG_SCOPE (get_logger ());
3371 : :
3372 : 1089 : bool embedded_driver
3373 : 1089 : = !get_inner_bool_option (INNER_BOOL_OPTION_USE_EXTERNAL_DRIVER);
3374 : :
3375 : : /* Currently this lumps together both assembling and linking into
3376 : : TV_ASSEMBLE. */
3377 : 1089 : auto_timevar assemble_timevar (get_timer (), tv_id);
3378 : 1089 : auto_string_vec argvec;
3379 : : #define ADD_ARG(arg) argvec.safe_push (xstrdup (arg))
3380 : :
3381 : 1089 : ADD_ARG (gcc_driver_name);
3382 : :
3383 : 1089 : add_multilib_driver_arguments (&argvec);
3384 : :
3385 : 1089 : if (shared)
3386 : 1073 : ADD_ARG ("-shared");
3387 : :
3388 : 1089 : if (!run_linker)
3389 : 5 : ADD_ARG ("-c");
3390 : :
3391 : 1089 : ADD_ARG (input_file);
3392 : 1089 : ADD_ARG ("-o");
3393 : 1089 : ADD_ARG (output_file);
3394 : :
3395 : : /* Don't use the linker plugin.
3396 : : If running with just a "make" and not a "make install", then we'd
3397 : : run into
3398 : : "fatal error: -fuse-linker-plugin, but liblto_plugin.so not found"
3399 : : libto_plugin is a .la at build time, with it becoming installed with
3400 : : ".so" suffix: i.e. it doesn't exist with a .so suffix until install
3401 : : time. */
3402 : 1089 : ADD_ARG ("-fno-use-linker-plugin");
3403 : :
3404 : : #if defined (DARWIN_X86) || defined (DARWIN_PPC)
3405 : : /* macOS's linker defaults to treating undefined symbols as errors.
3406 : : If the context has any imported functions or globals they will be
3407 : : undefined until the .so is dynamically-linked into the process.
3408 : : Ensure that the driver passes in "-undefined dynamic_lookup" to the
3409 : : linker. */
3410 : : ADD_ARG ("-Wl,-undefined,dynamic_lookup");
3411 : : #endif
3412 : :
3413 : 1089 : if (0)
3414 : : ADD_ARG ("-v");
3415 : :
3416 : : /* Add any user-provided driver extra options. */
3417 : :
3418 : 1089 : m_recording_ctxt->append_driver_options (&argvec);
3419 : :
3420 : : #undef ADD_ARG
3421 : :
3422 : : /* pex_one's error-handling requires pname to be non-NULL. */
3423 : 1089 : gcc_assert (ctxt_progname);
3424 : :
3425 : 1089 : if (get_logger ())
3426 : 3301 : for (unsigned i = 0; i < argvec.length (); i++)
3427 : 2889 : get_logger ()->log ("argv[%i]: %s", i, argvec[i]);
3428 : :
3429 : 1089 : if (embedded_driver)
3430 : 1084 : invoke_embedded_driver (&argvec);
3431 : : else
3432 : 5 : invoke_external_driver (ctxt_progname, &argvec);
3433 : 1089 : }
3434 : :
3435 : : void
3436 : 1084 : playback::context::
3437 : : invoke_embedded_driver (const vec <char *> *argvec)
3438 : : {
3439 : 1084 : JIT_LOG_SCOPE (get_logger ());
3440 : 1084 : driver d (true, /* can_finalize */
3441 : 1084 : false); /* debug */
3442 : 2168 : int result = d.main (argvec->length (),
3443 : 1084 : const_cast <char **> (argvec->address ()));
3444 : 1084 : d.finalize ();
3445 : 1084 : if (result)
3446 : 0 : add_error (NULL, "error invoking gcc driver");
3447 : 1084 : }
3448 : :
3449 : : void
3450 : 5 : playback::context::
3451 : : invoke_external_driver (const char *ctxt_progname,
3452 : : vec <char *> *argvec)
3453 : : {
3454 : 5 : JIT_LOG_SCOPE (get_logger ());
3455 : 5 : const char *errmsg;
3456 : 5 : int exit_status = 0;
3457 : 5 : int err = 0;
3458 : :
3459 : : /* pex argv arrays are NULL-terminated. */
3460 : 5 : argvec->safe_push (NULL);
3461 : :
3462 : 5 : errmsg = pex_one (PEX_SEARCH, /* int flags, */
3463 : : gcc_driver_name,
3464 : 5 : const_cast <char *const *> (argvec->address ()),
3465 : : ctxt_progname, /* const char *pname */
3466 : : NULL, /* const char *outname */
3467 : : NULL, /* const char *errname */
3468 : : &exit_status, /* int *status */
3469 : : &err); /* int *err*/
3470 : 5 : if (errmsg)
3471 : : {
3472 : 5 : add_error (NULL, "error invoking gcc driver: %s", errmsg);
3473 : 5 : return;
3474 : : }
3475 : :
3476 : : /* pex_one can return a NULL errmsg when the executable wasn't
3477 : : found (or doesn't exist), so trap these cases also. */
3478 : 0 : if (exit_status || err)
3479 : : {
3480 : 0 : add_error (NULL,
3481 : : "error invoking gcc driver: exit_status: %i err: %i",
3482 : : exit_status, err);
3483 : 0 : add_error (NULL,
3484 : : "whilst attempting to run a driver named: %s",
3485 : : gcc_driver_name);
3486 : 0 : add_error (NULL,
3487 : : "PATH was: %s",
3488 : : getenv ("PATH"));
3489 : 0 : return;
3490 : : }
3491 : 5 : }
3492 : :
3493 : : /* Extract the target-specific MULTILIB_DEFAULTS to
3494 : : multilib_defaults_raw for use by
3495 : : playback::context::add_multilib_driver_arguments (). */
3496 : :
3497 : : #ifndef MULTILIB_DEFAULTS
3498 : : #define MULTILIB_DEFAULTS { "" }
3499 : : #endif
3500 : :
3501 : : static const char *const multilib_defaults_raw[] = MULTILIB_DEFAULTS;
3502 : :
3503 : : /* Helper function for playback::context::invoke_driver ().
3504 : :
3505 : : 32-bit and 64-bit multilib peer builds of libgccjit.so may share
3506 : : a driver binary. We need to pass in options to the shared driver
3507 : : to get the appropriate assembler/linker options for this multilib
3508 : : peer. */
3509 : :
3510 : : void
3511 : 1089 : playback::context::
3512 : : add_multilib_driver_arguments (vec <char *> *argvec)
3513 : : {
3514 : 1089 : JIT_LOG_SCOPE (get_logger ());
3515 : :
3516 : : /* Add copies of the arguments in multilib_defaults_raw to argvec,
3517 : : prepending each with a "-". */
3518 : 2178 : for (size_t i = 0; i < ARRAY_SIZE (multilib_defaults_raw); i++)
3519 : 1089 : if (multilib_defaults_raw[i][0])
3520 : 1089 : argvec->safe_push (concat ("-", multilib_defaults_raw[i], NULL));
3521 : 1089 : }
3522 : :
3523 : : /* Dynamically-link the built DSO file into this process, using dlopen.
3524 : : Wrap it up within a jit::result *, and return that.
3525 : : Return NULL if any errors occur, reporting them on this context. */
3526 : :
3527 : : result *
3528 : 1063 : playback::context::
3529 : : dlopen_built_dso ()
3530 : : {
3531 : 1063 : JIT_LOG_SCOPE (get_logger ());
3532 : 1063 : auto_timevar load_timevar (get_timer (), TV_LOAD);
3533 : 1063 : result::handle handle = NULL;
3534 : 1063 : result *result_obj = NULL;
3535 : :
3536 : : #ifdef _WIN32
3537 : : /* Clear any existing error. */
3538 : : SetLastError(0);
3539 : :
3540 : : handle = LoadLibrary(m_tempdir->get_path_so_file ());
3541 : : if (GetLastError() != 0) {
3542 : : print_last_error();
3543 : : }
3544 : : #else
3545 : 1063 : const char *error = NULL;
3546 : : /* Clear any existing error. */
3547 : 1063 : dlerror ();
3548 : :
3549 : 1063 : handle = dlopen (m_tempdir->get_path_so_file (),
3550 : : RTLD_NOW | RTLD_LOCAL);
3551 : 1063 : if ((error = dlerror()) != NULL) {
3552 : 0 : add_error (NULL, "%s", error);
3553 : : }
3554 : : #endif
3555 : :
3556 : 1063 : if (handle)
3557 : : {
3558 : : /* We've successfully dlopened the result; create a
3559 : : jit::result object to wrap it.
3560 : :
3561 : : We're done with the tempdir for now, but if the user
3562 : : has requested debugging, the user's debugger might not
3563 : : be capable of dealing with the .so file being unlinked
3564 : : immediately, so keep it around until after the result
3565 : : is released. We do this by handing over ownership of
3566 : : the jit::tempdir to the result. See PR jit/64206. */
3567 : 1063 : tempdir *handover_tempdir;
3568 : 1063 : if (get_bool_option (GCC_JIT_BOOL_OPTION_DEBUGINFO))
3569 : : {
3570 : 656 : handover_tempdir = m_tempdir;
3571 : 656 : m_tempdir = NULL;
3572 : : /* The tempdir will eventually be cleaned up in the
3573 : : jit::result's dtor. */
3574 : 656 : log ("GCC_JIT_BOOL_OPTION_DEBUGINFO was set:"
3575 : : " handing over tempdir to jit::result");
3576 : : }
3577 : : else
3578 : : {
3579 : 407 : handover_tempdir = NULL;
3580 : : /* ... and retain ownership of m_tempdir so we clean it
3581 : : up it the playback::context's dtor. */
3582 : 407 : log ("GCC_JIT_BOOL_OPTION_DEBUGINFO was not set:"
3583 : : " retaining ownership of tempdir");
3584 : : }
3585 : :
3586 : 1063 : result_obj = new result (get_logger (), handle, handover_tempdir);
3587 : : }
3588 : : else
3589 : : result_obj = NULL;
3590 : :
3591 : 2126 : return result_obj;
3592 : 1063 : }
3593 : :
3594 : : /* Top-level hook for playing back a recording context.
3595 : :
3596 : : This plays back m_recording_ctxt, and, if no errors
3597 : : occurred builds statement lists for and then postprocesses
3598 : : every function in the result. */
3599 : :
3600 : : void
3601 : 1239 : playback::context::
3602 : : replay ()
3603 : : {
3604 : 1239 : JIT_LOG_SCOPE (get_logger ());
3605 : :
3606 : 1239 : init_types ();
3607 : :
3608 : : /* Replay the recorded events: */
3609 : 1239 : timevar_push (TV_JIT_REPLAY);
3610 : :
3611 : : /* Ensure that builtins that could be needed during optimization
3612 : : get created ahead of time. */
3613 : 1239 : builtins_manager *bm = m_recording_ctxt->get_builtins_manager ();
3614 : 1239 : bm->ensure_optimization_builtins_exist ();
3615 : :
3616 : 1239 : m_recording_ctxt->replay_into (this);
3617 : :
3618 : : /* Clean away the temporary references from recording objects
3619 : : to playback objects. We have to do this now since the
3620 : : latter are GC-allocated, but the former don't mark these
3621 : : refs. Hence we must stop using them before the GC can run. */
3622 : 1239 : m_recording_ctxt->disassociate_from_playback ();
3623 : :
3624 : : /* The builtins_manager is associated with the recording::context
3625 : : and might be reused for future compiles on other playback::contexts,
3626 : : but its m_attributes array is not GTY-labeled and hence will become
3627 : : nonsense if the GC runs. Purge this state. */
3628 : 1239 : bm->finish_playback ();
3629 : :
3630 : 1239 : timevar_pop (TV_JIT_REPLAY);
3631 : :
3632 : 1239 : if (!errors_occurred ())
3633 : : {
3634 : 1204 : int i;
3635 : 1204 : function *func;
3636 : 1204 : tree global;
3637 : : /* No GC can happen yet; process the cached source locations. */
3638 : 1204 : handle_locations ();
3639 : :
3640 : : /* Finalize globals. See how FORTRAN 95 does it in gfc_be_parse_file()
3641 : : for a simple reference. */
3642 : 3414 : FOR_EACH_VEC_ELT (m_globals, i, global)
3643 : 1006 : rest_of_decl_compilation (global, true, true);
3644 : :
3645 : 1325 : wrapup_global_declarations (m_globals.address(), m_globals.length());
3646 : :
3647 : : /* We've now created tree nodes for the stmts in the various blocks
3648 : : in each function, but we haven't built each function's single stmt
3649 : : list yet. Do so now. */
3650 : 18105 : FOR_EACH_VEC_ELT (m_functions, i, func)
3651 : 15697 : func->build_stmt_list ();
3652 : :
3653 : : /* No GC can have happened yet. */
3654 : :
3655 : : /* Postprocess the functions. This could trigger GC. */
3656 : 16901 : FOR_EACH_VEC_ELT (m_functions, i, func)
3657 : : {
3658 : 15697 : gcc_assert (func);
3659 : 15697 : func->postprocess ();
3660 : : }
3661 : : }
3662 : 1239 : }
3663 : :
3664 : : /* Dump the generated .s file to stderr. */
3665 : :
3666 : : void
3667 : 0 : playback::context::
3668 : : dump_generated_code ()
3669 : : {
3670 : 0 : JIT_LOG_SCOPE (get_logger ());
3671 : 0 : char buf[4096];
3672 : 0 : size_t sz;
3673 : 0 : FILE *f_in = fopen (get_path_s_file (), "r");
3674 : 0 : if (!f_in)
3675 : 0 : return;
3676 : :
3677 : 0 : while ( (sz = fread (buf, 1, sizeof (buf), f_in)) )
3678 : 0 : fwrite (buf, 1, sz, stderr);
3679 : :
3680 : 0 : fclose (f_in);
3681 : 0 : }
3682 : :
3683 : : /* Get the supposed path of the notional "fake.c" file within the
3684 : : tempdir. This file doesn't exist, but the rest of the compiler
3685 : : needs a name. */
3686 : :
3687 : : const char *
3688 : 1244 : playback::context::
3689 : : get_path_c_file () const
3690 : : {
3691 : 1244 : return m_tempdir->get_path_c_file ();
3692 : : }
3693 : :
3694 : : /* Get the path of the assembler output file "fake.s" file within the
3695 : : tempdir. */
3696 : :
3697 : : const char *
3698 : 0 : playback::context::
3699 : : get_path_s_file () const
3700 : : {
3701 : 0 : return m_tempdir->get_path_s_file ();
3702 : : }
3703 : :
3704 : : /* Get the path of the DSO object file "fake.so" file within the
3705 : : tempdir. */
3706 : :
3707 : : const char *
3708 : 0 : playback::context::
3709 : : get_path_so_file () const
3710 : : {
3711 : 0 : return m_tempdir->get_path_so_file ();
3712 : : }
3713 : :
3714 : : /* qsort comparator for comparing pairs of playback::source_line *,
3715 : : ordering them by line number. */
3716 : :
3717 : : static int
3718 : 5518 : line_comparator (const void *lhs, const void *rhs)
3719 : : {
3720 : 5518 : const playback::source_line *line_lhs = \
3721 : : *static_cast<const playback::source_line * const*> (lhs);
3722 : 5518 : const playback::source_line *line_rhs = \
3723 : : *static_cast<const playback::source_line * const*> (rhs);
3724 : 5518 : return line_lhs->get_line_num () - line_rhs->get_line_num ();
3725 : : }
3726 : :
3727 : : /* qsort comparator for comparing pairs of playback::location *,
3728 : : ordering them by column number. */
3729 : :
3730 : : static int
3731 : 6713 : location_comparator (const void *lhs, const void *rhs)
3732 : : {
3733 : 6713 : const playback::location *loc_lhs = \
3734 : : *static_cast<const playback::location * const *> (lhs);
3735 : 6713 : const playback::location *loc_rhs = \
3736 : : *static_cast<const playback::location * const *> (rhs);
3737 : 6713 : return loc_lhs->get_column_num () - loc_rhs->get_column_num ();
3738 : : }
3739 : :
3740 : : /* Initialize the NAME_TYPE of the primitive types as well as some
3741 : : others. */
3742 : : void
3743 : 1239 : playback::context::
3744 : : init_types ()
3745 : : {
3746 : : /* See lto_init () in lto-lang.cc or void visit (TypeBasic *t) in D's types.cc
3747 : : for reference. If TYPE_NAME is not set, debug info will not contain types */
3748 : : #define NAME_TYPE(t,n) \
3749 : : if (t) \
3750 : : TYPE_NAME (t) = build_decl (UNKNOWN_LOCATION, TYPE_DECL, \
3751 : : get_identifier (n), t)
3752 : :
3753 : 1239 : NAME_TYPE (integer_type_node, "int");
3754 : 1239 : NAME_TYPE (char_type_node, "char");
3755 : 1239 : NAME_TYPE (long_integer_type_node, "long int");
3756 : 1239 : NAME_TYPE (unsigned_type_node, "unsigned int");
3757 : 1239 : NAME_TYPE (long_unsigned_type_node, "long unsigned int");
3758 : 1239 : NAME_TYPE (long_long_integer_type_node, "long long int");
3759 : 1239 : NAME_TYPE (long_long_unsigned_type_node, "long long unsigned int");
3760 : 1239 : NAME_TYPE (short_integer_type_node, "short int");
3761 : 1239 : NAME_TYPE (short_unsigned_type_node, "short unsigned int");
3762 : 1239 : if (signed_char_type_node != char_type_node)
3763 : 1239 : NAME_TYPE (signed_char_type_node, "signed char");
3764 : 1239 : if (unsigned_char_type_node != char_type_node)
3765 : 1239 : NAME_TYPE (unsigned_char_type_node, "unsigned char");
3766 : 1239 : NAME_TYPE (float_type_node, "float");
3767 : 1239 : NAME_TYPE (double_type_node, "double");
3768 : 1239 : NAME_TYPE (long_double_type_node, "long double");
3769 : 1239 : NAME_TYPE (void_type_node, "void");
3770 : 1239 : NAME_TYPE (boolean_type_node, "bool");
3771 : 1239 : NAME_TYPE (complex_float_type_node, "complex float");
3772 : 1239 : NAME_TYPE (complex_double_type_node, "complex double");
3773 : 1239 : NAME_TYPE (complex_long_double_type_node, "complex long double");
3774 : :
3775 : 1239 : m_const_char_ptr = build_pointer_type(
3776 : : build_qualified_type (char_type_node, TYPE_QUAL_CONST));
3777 : :
3778 : 1239 : NAME_TYPE (m_const_char_ptr, "char");
3779 : 1239 : NAME_TYPE (size_type_node, "size_t");
3780 : 1239 : NAME_TYPE (fileptr_type_node, "FILE");
3781 : : #undef NAME_TYPE
3782 : 1239 : }
3783 : :
3784 : : /* Our API allows locations to be created in arbitrary orders, but the
3785 : : linemap API requires locations to be created in ascending order
3786 : : as if we were tokenizing files.
3787 : :
3788 : : This hook sorts all of the locations that have been created, and
3789 : : calls into the linemap API, creating linemap entries in sorted order
3790 : : for our locations. */
3791 : :
3792 : : void
3793 : 1204 : playback::context::
3794 : : handle_locations ()
3795 : : {
3796 : : /* Create the source code locations, following the ordering rules
3797 : : imposed by the linemap API.
3798 : :
3799 : : line_table is a global. */
3800 : 1204 : JIT_LOG_SCOPE (get_logger ());
3801 : 1204 : int i;
3802 : 1204 : source_file *file;
3803 : :
3804 : 1266 : FOR_EACH_VEC_ELT (m_source_files, i, file)
3805 : : {
3806 : 62 : linemap_add (line_table, LC_ENTER, false, file->get_filename (), 0);
3807 : :
3808 : : /* Sort lines by ascending line numbers. */
3809 : 62 : file->m_source_lines.qsort (&line_comparator);
3810 : :
3811 : : int j;
3812 : : source_line *line;
3813 : 455 : FOR_EACH_VEC_ELT (file->m_source_lines, j, line)
3814 : : {
3815 : 393 : int k;
3816 : 393 : location *loc;
3817 : :
3818 : : /* Sort locations in line by ascending column numbers. */
3819 : 393 : line->m_locations.qsort (&location_comparator);
3820 : :
3821 : : /* Determine maximum column within this line. */
3822 : 393 : gcc_assert (line->m_locations.length () > 0);
3823 : 393 : location *final_column =
3824 : 393 : line->m_locations[line->m_locations.length () - 1];
3825 : 393 : int max_col = final_column->get_column_num ();
3826 : :
3827 : 393 : linemap_line_start (line_table, line->get_line_num (), max_col);
3828 : 1916 : FOR_EACH_VEC_ELT (line->m_locations, k, loc)
3829 : : {
3830 : 737 : loc->m_srcloc = \
3831 : 737 : linemap_position_for_column (line_table, loc->get_column_num ());
3832 : : }
3833 : : }
3834 : :
3835 : 62 : linemap_add (line_table, LC_LEAVE, false, NULL, 0);
3836 : : }
3837 : :
3838 : : /* line_table should now be populated; every playback::location should
3839 : : now have an m_srcloc. */
3840 : :
3841 : : /* Now assign them to tree nodes as appropriate. */
3842 : : std::pair<tree, location *> *cached_location;
3843 : :
3844 : 2764 : FOR_EACH_VEC_ELT (m_cached_locations, i, cached_location)
3845 : : {
3846 : 1560 : tree t = cached_location->first;
3847 : 1560 : location_t srcloc = cached_location->second->m_srcloc;
3848 : :
3849 : : /* This covers expressions: */
3850 : 1560 : if (CAN_HAVE_LOCATION_P (t))
3851 : 1449 : SET_EXPR_LOCATION (t, srcloc);
3852 : 111 : else if (CODE_CONTAINS_STRUCT(TREE_CODE(t), TS_DECL_MINIMAL))
3853 : 111 : DECL_SOURCE_LOCATION (t) = srcloc;
3854 : : else
3855 : : {
3856 : : /* Don't know how to set location on this node. */
3857 : : }
3858 : : }
3859 : 1204 : }
3860 : :
3861 : : /* We handle errors on a playback::context by adding them to the
3862 : : corresponding recording::context. */
3863 : :
3864 : : void
3865 : 45 : playback::context::
3866 : : add_error (location *loc, const char *fmt, ...)
3867 : : {
3868 : 45 : va_list ap;
3869 : 45 : va_start (ap, fmt);
3870 : 45 : m_recording_ctxt->add_error_va (loc ? loc->get_recording_loc () : NULL,
3871 : : fmt, ap);
3872 : 45 : va_end (ap);
3873 : 45 : }
3874 : :
3875 : : /* We handle errors on a playback::context by adding them to the
3876 : : corresponding recording::context. */
3877 : :
3878 : : void
3879 : 0 : playback::context::
3880 : : add_error_va (location *loc, const char *fmt, va_list ap)
3881 : : {
3882 : 0 : m_recording_ctxt->add_error_va (loc ? loc->get_recording_loc () : NULL,
3883 : : fmt, ap);
3884 : 0 : }
3885 : :
3886 : : /* Report a diagnostic up to the jit context as an error,
3887 : : so that the compilation is treated as a failure.
3888 : : For now, any kind of diagnostic is treated as an error by the jit
3889 : : API. */
3890 : :
3891 : : void
3892 : 20 : playback::context::
3893 : : add_diagnostic (const char *text,
3894 : : const diagnostic_info &diagnostic)
3895 : : {
3896 : : /* Get location information (if any) from the diagnostic.
3897 : : The recording::context::add_error[_va] methods require a
3898 : : recording::location. We can't lookup the playback::location
3899 : : from the file/line/column since any playback location instances
3900 : : may have been garbage-collected away by now, so instead we create
3901 : : another recording::location directly. */
3902 : 20 : location_t gcc_loc = diagnostic_location (&diagnostic);
3903 : 20 : recording::location *rec_loc = NULL;
3904 : 20 : if (gcc_loc)
3905 : : {
3906 : 5 : expanded_location exploc = expand_location (gcc_loc);
3907 : 5 : if (exploc.file)
3908 : 5 : rec_loc = m_recording_ctxt->new_location (exploc.file,
3909 : : exploc.line,
3910 : : exploc.column,
3911 : : false);
3912 : : }
3913 : :
3914 : 20 : m_recording_ctxt->add_error (rec_loc, "%s", text);
3915 : 20 : }
3916 : :
3917 : : /* Dealing with the linemap API. */
3918 : :
3919 : : /* Construct a playback::location for a recording::location, if it
3920 : : doesn't exist already. */
3921 : :
3922 : : playback::location *
3923 : 965 : playback::context::
3924 : : new_location (recording::location *rloc,
3925 : : const char *filename,
3926 : : int line,
3927 : : int column)
3928 : : {
3929 : : /* Get the source_file for filename, creating if necessary. */
3930 : 965 : source_file *src_file = get_source_file (filename);
3931 : : /* Likewise for the line within the file. */
3932 : 965 : source_line *src_line = src_file->get_source_line (line);
3933 : : /* Likewise for the column within the line. */
3934 : 965 : location *loc = src_line->get_location (rloc, column);
3935 : 965 : return loc;
3936 : : }
3937 : :
3938 : : /* Deferred setting of the location for a given tree, by adding the
3939 : : (tree, playback::location) pair to a list of deferred associations.
3940 : : We will actually set the location on the tree later on once
3941 : : the location_t for the playback::location exists. */
3942 : :
3943 : : void
3944 : 1560 : playback::context::
3945 : : set_tree_location (tree t, location *loc)
3946 : : {
3947 : 1560 : gcc_assert (loc);
3948 : 1560 : m_cached_locations.safe_push (std::make_pair (t, loc));
3949 : 1560 : }
3950 : :
3951 : :
3952 : : /* Construct a playback::source_file for the given source
3953 : : filename, if it doesn't exist already. */
3954 : :
3955 : : playback::source_file *
3956 : 965 : playback::context::
3957 : : get_source_file (const char *filename)
3958 : : {
3959 : : /* Locate the file.
3960 : : For simplicitly, this is currently a linear search.
3961 : : Replace with a hash if this shows up in the profile. */
3962 : 965 : int i;
3963 : 965 : source_file *file;
3964 : 965 : tree ident_filename = get_identifier (filename);
3965 : :
3966 : 2698 : FOR_EACH_VEC_ELT (m_source_files, i, file)
3967 : 1671 : if (file->filename_as_tree () == ident_filename)
3968 : : return file;
3969 : :
3970 : : /* Not found. */
3971 : 62 : file = new source_file (ident_filename);
3972 : 62 : m_source_files.safe_push (file);
3973 : 62 : return file;
3974 : : }
3975 : :
3976 : : /* Constructor for gcc::jit::playback::source_file. */
3977 : :
3978 : 62 : playback::source_file::source_file (tree filename) :
3979 : 62 : m_source_lines (),
3980 : 62 : m_filename (filename)
3981 : : {
3982 : 62 : }
3983 : :
3984 : : /* Don't leak vec's internal buffer (in non-GC heap) when we are
3985 : : GC-ed. */
3986 : :
3987 : : void
3988 : 57 : playback::source_file::finalizer ()
3989 : : {
3990 : 57 : m_source_lines.release ();
3991 : 57 : }
3992 : :
3993 : : /* Construct a playback::source_line for the given line
3994 : : within this source file, if one doesn't exist already. */
3995 : :
3996 : : playback::source_line *
3997 : 965 : playback::source_file::
3998 : : get_source_line (int line_num)
3999 : : {
4000 : : /* Locate the line.
4001 : : For simplicitly, this is currently a linear search.
4002 : : Replace with a hash if this shows up in the profile. */
4003 : 965 : int i;
4004 : 965 : source_line *line;
4005 : :
4006 : 7404 : FOR_EACH_VEC_ELT (m_source_lines, i, line)
4007 : 7011 : if (line->get_line_num () == line_num)
4008 : : return line;
4009 : :
4010 : : /* Not found. */
4011 : 393 : line = new source_line (this, line_num);
4012 : 393 : m_source_lines.safe_push (line);
4013 : 393 : return line;
4014 : : }
4015 : :
4016 : : /* Constructor for gcc::jit::playback::source_line. */
4017 : :
4018 : 393 : playback::source_line::source_line (source_file *file, int line_num) :
4019 : 393 : m_locations (),
4020 : 393 : m_source_file (file),
4021 : 393 : m_line_num (line_num)
4022 : : {
4023 : 393 : }
4024 : :
4025 : : /* Don't leak vec's internal buffer (in non-GC heap) when we are
4026 : : GC-ed. */
4027 : :
4028 : : void
4029 : 328 : playback::source_line::finalizer ()
4030 : : {
4031 : 328 : m_locations.release ();
4032 : 328 : }
4033 : :
4034 : : /* Construct a playback::location for the given column
4035 : : within this line of a specific source file, if one doesn't exist
4036 : : already. */
4037 : :
4038 : : playback::location *
4039 : 965 : playback::source_line::
4040 : : get_location (recording::location *rloc, int column_num)
4041 : : {
4042 : 965 : int i;
4043 : 965 : location *loc;
4044 : :
4045 : : /* Another linear search that probably should be a hash table. */
4046 : 5376 : FOR_EACH_VEC_ELT (m_locations, i, loc)
4047 : 4639 : if (loc->get_column_num () == column_num)
4048 : : return loc;
4049 : :
4050 : : /* Not found. */
4051 : 737 : loc = new location (rloc, this, column_num);
4052 : 737 : m_locations.safe_push (loc);
4053 : 737 : return loc;
4054 : : }
4055 : :
4056 : : /* Constructor for gcc::jit::playback::location. */
4057 : :
4058 : 737 : playback::location::location (recording::location *loc,
4059 : : source_line *line,
4060 : 737 : int column_num) :
4061 : 737 : m_srcloc (UNKNOWN_LOCATION),
4062 : 737 : m_recording_loc (loc),
4063 : 737 : m_line (line),
4064 : 737 : m_column_num(column_num)
4065 : : {
4066 : 737 : }
4067 : :
4068 : : /* The active gcc::jit::playback::context instance. This is a singleton,
4069 : : guarded by jit_mutex. */
4070 : :
4071 : : playback::context *active_playback_ctxt;
4072 : :
4073 : : } // namespace gcc::jit
4074 : :
4075 : : } // namespace gcc
|