1 /* Internals of libgccjit: classes for playing back recorded API calls.
2 Copyright (C) 2013-2014 Free Software Foundation, Inc.
3 Contributed by David Malcolm <dmalcolm@redhat.com>.
5 This file is part of GCC.
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)
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.
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/>. */
21 #ifndef JIT_PLAYBACK_H
22 #define JIT_PLAYBACK_H
24 #include <utility> // for std::pair
26 #include "jit-recording.h"
32 /**********************************************************************
34 **********************************************************************/
41 context (::gcc::jit::recording::context
*ctxt
);
49 new_location (recording::location
*rloc
,
55 get_type (enum gcc_jit_types type
);
58 new_array_type (location
*loc
,
63 new_field (location
*loc
,
68 new_compound_type (location
*loc
,
70 bool is_struct
); /* else is union */
73 new_function_type (type
*return_type
,
74 const auto_vec
<type
*> *param_types
,
78 new_param (location
*loc
,
83 new_function (location
*loc
,
84 enum gcc_jit_function_kind kind
,
87 const auto_vec
<param
*> *params
,
89 enum built_in_function builtin_id
);
92 new_global (location
*loc
,
97 new_rvalue_from_int (type
*type
,
101 new_rvalue_from_double (type
*type
,
105 new_rvalue_from_ptr (type
*type
,
109 new_string_literal (const char *value
);
112 new_unary_op (location
*loc
,
113 enum gcc_jit_unary_op op
,
118 new_binary_op (location
*loc
,
119 enum gcc_jit_binary_op op
,
121 rvalue
*a
, rvalue
*b
);
124 new_comparison (location
*loc
,
125 enum gcc_jit_comparison op
,
126 rvalue
*a
, rvalue
*b
);
129 new_call (location
*loc
,
131 const auto_vec
<rvalue
*> *args
);
134 new_call_through_ptr (location
*loc
,
136 const auto_vec
<rvalue
*> *args
);
139 new_cast (location
*loc
,
144 new_array_access (location
*loc
,
149 set_str_option (enum gcc_jit_str_option opt
,
153 set_int_option (enum gcc_jit_int_option opt
,
157 set_bool_option (enum gcc_jit_bool_option opt
,
161 get_str_option (enum gcc_jit_str_option opt
) const
163 return m_recording_ctxt
->get_str_option (opt
);
167 get_int_option (enum gcc_jit_int_option opt
) const
169 return m_recording_ctxt
->get_int_option (opt
);
173 get_bool_option (enum gcc_jit_bool_option opt
) const
175 return m_recording_ctxt
->get_bool_option (opt
);
178 builtins_manager
*get_builtins_manager () const
180 return m_recording_ctxt
->get_builtins_manager ();
187 add_error (location
*loc
, const char *fmt
, ...)
191 add_error_va (location
*loc
, const char *fmt
, va_list ap
)
195 get_first_error () const;
198 set_tree_location (tree t
, location
*loc
);
201 new_field_access (location
*loc
,
206 new_dereference (tree ptr
, location
*loc
);
209 as_truth_value (tree expr
, location
*loc
);
211 bool errors_occurred () const
213 return m_recording_ctxt
->errors_occurred ();
217 void dump_generated_code ();
220 build_call (location
*loc
,
222 const auto_vec
<rvalue
*> *args
);
225 build_cast (location
*loc
,
230 get_source_file (const char *filename
);
232 void handle_locations ();
234 const char * get_path_c_file () const;
235 const char * get_path_s_file () const;
236 const char * get_path_so_file () const;
240 /* Functions for implementing "compile". */
242 void acquire_mutex ();
243 void release_mutex ();
246 make_fake_args (vec
<char *> *argvec
,
247 const char *ctxt_progname
,
248 vec
<recording::requested_dump
> *requested_dumps
);
251 extract_any_requested_dumps
252 (vec
<recording::requested_dump
> *requested_dumps
);
255 read_dump_file (const char *path
);
258 convert_to_dso (const char *ctxt_progname
);
264 ::gcc::jit::recording::context
*m_recording_ctxt
;
268 auto_vec
<function
*> m_functions
;
269 tree m_char_array_type_node
;
270 tree m_const_char_ptr
;
272 /* Source location handling. */
273 auto_vec
<source_file
*> m_source_files
;
275 auto_vec
<std::pair
<tree
, location
*> > m_cached_locations
;
278 /* A temporary wrapper object.
279 These objects are (mostly) only valid during replay.
280 We allocate them on the GC heap, so that they will be cleaned
281 the next time the GC collects.
282 The exception is the "function" class, which is tracked and marked by
283 the jit::context, since it needs to stay alive during post-processing
284 (when the GC could run). */
288 /* Allocate in the GC heap. */
289 void *operator new (size_t sz
);
291 /* Some wrapper subclasses contain vec<> and so need to
292 release them when they are GC-ed. */
293 virtual void finalizer () { }
297 class type
: public wrapper
304 tree
as_tree () const { return m_inner
; }
306 type
*get_pointer () const { return new type (build_pointer_type (m_inner
)); }
308 type
*get_const () const
310 return new type (build_qualified_type (m_inner
, TYPE_QUAL_CONST
));
313 type
*get_volatile () const
315 return new type (build_qualified_type (m_inner
, TYPE_QUAL_VOLATILE
));
322 class compound_type
: public type
325 compound_type (tree inner
)
329 void set_fields (const auto_vec
<field
*> *fields
);
332 class field
: public wrapper
339 tree
as_tree () const { return m_inner
; }
345 class function
: public wrapper
348 function(context
*ctxt
, tree fndecl
, enum gcc_jit_function_kind kind
);
353 tree
get_return_type_as_tree () const;
355 tree
as_fndecl () const { return m_inner_fndecl
; }
357 enum gcc_jit_function_kind
get_kind () const { return m_kind
; }
360 new_local (location
*loc
,
365 new_block (const char *name
);
378 set_tree_location (tree t
, location
*loc
)
380 m_ctxt
->set_tree_location (t
, loc
);
386 tree m_inner_bind_expr
;
387 enum gcc_jit_function_kind m_kind
;
389 tree_stmt_iterator m_stmt_iter
;
390 vec
<block
*> m_blocks
;
393 class block
: public wrapper
396 block (function
*func
,
401 tree
as_label_decl () const { return m_label_decl
; }
404 add_eval (location
*loc
,
408 add_assignment (location
*loc
,
413 add_comment (location
*loc
,
417 add_conditional (location
*loc
,
423 add_block (location
*loc
,
427 add_jump (location
*loc
,
431 add_return (location
*loc
,
436 set_tree_location (tree t
, location
*loc
)
438 m_func
->set_tree_location (t
, loc
);
441 void add_stmt (tree stmt
)
443 /* TODO: use one stmt_list per block. */
444 m_stmts
.safe_push (stmt
);
455 friend class function
;
458 class rvalue
: public wrapper
461 rvalue (context
*ctxt
, tree inner
)
467 as_rvalue () { return this; }
469 tree
as_tree () const { return m_inner
; }
471 context
*get_context () const { return m_ctxt
; }
474 get_type () { return new type (TREE_TYPE (m_inner
)); }
477 access_field (location
*loc
,
481 dereference_field (location
*loc
,
485 dereference (location
*loc
);
492 class lvalue
: public rvalue
495 lvalue (context
*ctxt
, tree inner
)
496 : rvalue(ctxt
, inner
)
500 as_lvalue () { return this; }
503 access_field (location
*loc
,
507 get_address (location
*loc
);
511 class param
: public lvalue
514 param (context
*ctxt
, tree inner
)
515 : lvalue(ctxt
, inner
)
519 /* Dealing with the linemap API.
521 It appears that libcpp requires locations to be created as if by
522 a tokenizer, creating them by filename, in ascending order of
523 line/column, whereas our API doesn't impose any such constraints:
524 we allow client code to create locations in arbitrary orders.
526 To square this circle, we need to cache all location creation,
527 grouping things up by filename/line, and then creating the linemap
528 entries in a post-processing phase. */
530 /* A set of locations, all sharing a filename */
531 class source_file
: public wrapper
534 source_file (tree filename
);
538 get_source_line (int line_num
);
540 tree
filename_as_tree () const { return m_filename
; }
543 get_filename () const { return IDENTIFIER_POINTER (m_filename
); }
545 vec
<source_line
*> m_source_lines
;
551 /* A source line, with one or more locations of interest. */
552 class source_line
: public wrapper
555 source_line (source_file
*file
, int line_num
);
559 get_location (recording::location
*rloc
, int column_num
);
561 int get_line_num () const { return m_line_num
; }
563 vec
<location
*> m_locations
;
566 source_file
*m_source_file
;
570 /* A specific location on a source line. This is what we expose
571 to the client API. */
572 class location
: public wrapper
575 location (recording::location
*loc
, source_line
*line
, int column_num
);
577 int get_column_num () const { return m_column_num
; }
579 recording::location
*get_recording_loc () const { return m_recording_loc
; }
581 source_location m_srcloc
;
584 recording::location
*m_recording_loc
;
589 } // namespace gcc::jit::playback
591 extern playback::context
*active_playback_ctxt
;
593 } // namespace gcc::jit
597 #endif /* JIT_PLAYBACK_H */