HomeSort by: relevance | last modified time | path
    Searched refs:recording (Results 1 - 22 of 22) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/jit/
jit-recording.cc 1 /* Internals of libgccjit: classes for recording calls made to the JIT API.
31 #include "jit-recording.h"
39 dump::dump (recording::context &ctxt,
119 /* Construct a gcc::jit::recording::location instance for the current
122 recording::location *
203 reproducer (recording::context &ctxt,
207 write_params (const vec <recording::context *> &contexts);
210 write_args (const vec <recording::context *> &contexts);
213 make_identifier (recording::memento *m, const char *prefix);
216 make_tmp_identifier (const char *prefix, recording::memento *m)
4995 namespace recording { namespace in namespace:gcc::jit
5264 namespace recording namespace in namespace:gcc::jit
5992 namespace recording { namespace in namespace:gcc::jit
6099 namespace recording { namespace in namespace:gcc::jit
    [all...]
jit-common.h 45 C API is implemented in terms of a gcc::jit::recording::context,
48 When a gcc_jit_context is compiled, the recording context creates a
54 recording, and those relating to playback:
56 * Visibility: recording objects are exposed back to client code,
59 * Lifetime: recording objects have a lifetime equal to that of the
60 recording context that created them, whereas playback objects only
63 * Memory allocation: recording objects are allocated by the recording
68 * Integration with rest of GCC: recording objects are unrelated to the
70 instances. Hence you can't ask a recording rvalue or lvalue what it
106 namespace recording { namespace in namespace:gcc::jit
    [all...]
jit-builtins.h 113 builtins_manager (recording::context *ctxt);
115 recording::function *
137 recording::function *
140 recording::function *
143 recording::type *
146 recording::type *
149 recording::type*
152 recording::function_type*
158 recording::type*
166 /* Recording fields. *
    [all...]
jit-builtins.cc 131 builtins_manager::builtins_manager (recording::context *ctxt)
140 Create a recording::function of the appropriate type, reusing them
143 recording::function *
157 Create a recording::function of the appropriate type, reusing them
160 recording::function *
170 recording::function *fn = make_builtin_function (builtin_id);
181 /* Create the recording::function for a given builtin function, by ID. */
183 recording::function *
188 recording::type *t = get_type (type_id);
191 recording::function_type *func_type = t->as_a_function_type ()
    [all...]
libgccjit.cc 30 #include "jit-recording.h"
34 of the gcc::jit::recording classes. */
36 struct gcc_jit_context : public gcc::jit::recording::context
47 struct gcc_jit_object : public gcc::jit::recording::memento
51 struct gcc_jit_location : public gcc::jit::recording::location
55 struct gcc_jit_type : public gcc::jit::recording::type
59 struct gcc_jit_struct : public gcc::jit::recording::struct_
63 struct gcc_jit_function_type : public gcc::jit::recording::function_type
67 struct gcc_jit_vector_type : public gcc::jit::recording::vector_type
71 struct gcc_jit_field : public gcc::jit::recording::fiel
    [all...]
jit-playback.h 31 #include "jit-recording.h"
64 context (::gcc::jit::recording::context *ctxt);
72 new_location (recording::location *rloc,
352 vec <recording::requested_dump> *requested_dumps);
356 (vec <recording::requested_dump> *requested_dumps);
392 ::gcc::jit::recording::context *m_recording_ctxt;
409 compile_to_memory (recording::context *ctxt);
421 compile_to_file (recording::context *ctxt,
813 get_location (recording::location *rloc, int column_num);
829 location (recording::location *loc, source_line *line, int column_num)
    [all...]
jit-playback.cc 152 playback::context::context (recording::context *ctxt)
2537 auto_vec <recording::requested_dump> requested_dumps;
2592 playback::compile_to_memory::compile_to_memory (recording::context *ctxt) :
2620 playback::compile_to_file::compile_to_file (recording::context *ctxt,
2839 /* This mutex guards gcc::jit::recording::context::compile, so that only
2890 vec <recording::requested_dump> *requested_dumps)
2957 recording::requested_dump *d;
3035 extract_any_requested_dumps (vec <recording::requested_dump> *requested_dumps)
3040 recording::requested_dump *d;
3370 /* Top-level hook for playing back a recording context
    [all...]
jit-recording.h 1 /* Internals of libgccjit: classes for recording calls made to the JIT API.
45 Recording.
48 namespace recording { namespace in namespace:gcc::jit
59 /* A recording of a call to gcc_jit_context_enable_dump. */
322 get_all_requested_dumps (vec <recording::requested_dump> *out);
491 recording objects, playing them back. The ordering of recording
492 ensures that everything that a recording object refers to has
497 recording::statement. This method can set a new location on a
1126 jit-recording.cc. *
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/
jit-recording.cc 1 /* Internals of libgccjit: classes for recording calls made to the JIT API.
31 #include "jit-recording.h"
39 dump::dump (recording::context &ctxt,
119 /* Construct a gcc::jit::recording::location instance for the current
122 recording::location *
203 reproducer (recording::context &ctxt,
207 write_params (const vec <recording::context *> &contexts);
210 write_args (const vec <recording::context *> &contexts);
213 make_identifier (recording::memento *m, const char *prefix);
216 make_tmp_identifier (const char *prefix, recording::memento *m)
4811 namespace recording { namespace in namespace:gcc::jit
5058 namespace recording namespace in namespace:gcc::jit
5749 namespace recording { namespace in namespace:gcc::jit
5855 namespace recording { namespace in namespace:gcc::jit
    [all...]
jit-common.h 45 C API is implemented in terms of a gcc::jit::recording::context,
48 When a gcc_jit_context is compiled, the recording context creates a
54 recording, and those relating to playback:
56 * Visibility: recording objects are exposed back to client code,
59 * Lifetime: recording objects have a lifetime equal to that of the
60 recording context that created them, whereas playback objects only
63 * Memory allocation: recording objects are allocated by the recording
68 * Integration with rest of GCC: recording objects are unrelated to the
70 instances. Hence you can't ask a recording rvalue or lvalue what it
106 namespace recording { namespace in namespace:gcc::jit
    [all...]
jit-builtins.h 113 builtins_manager (recording::context *ctxt);
115 recording::function *
137 recording::function *
140 recording::function *
143 recording::type *
146 recording::type *
149 recording::type*
152 recording::function_type*
158 recording::type*
166 /* Recording fields. *
    [all...]
jit-builtins.cc 133 builtins_manager::builtins_manager (recording::context *ctxt)
142 Create a recording::function of the appropriate type, reusing them
145 recording::function *
159 Create a recording::function of the appropriate type, reusing them
162 recording::function *
172 recording::function *fn = make_builtin_function (builtin_id);
183 /* Create the recording::function for a given builtin function, by ID. */
185 recording::function *
190 recording::type *t = get_type (type_id);
193 recording::function_type *func_type = t->as_a_function_type ()
    [all...]
libgccjit.cc 30 #include "jit-recording.h"
34 of the gcc::jit::recording classes. */
36 struct gcc_jit_context : public gcc::jit::recording::context
47 struct gcc_jit_object : public gcc::jit::recording::memento
51 struct gcc_jit_location : public gcc::jit::recording::location
55 struct gcc_jit_type : public gcc::jit::recording::type
59 struct gcc_jit_struct : public gcc::jit::recording::struct_
63 struct gcc_jit_function_type : public gcc::jit::recording::function_type
67 struct gcc_jit_vector_type : public gcc::jit::recording::vector_type
71 struct gcc_jit_field : public gcc::jit::recording::fiel
    [all...]
jit-playback.h 29 #include "jit-recording.h"
53 context (::gcc::jit::recording::context *ctxt);
61 new_location (recording::location *rloc,
323 vec <recording::requested_dump> *requested_dumps);
327 (vec <recording::requested_dump> *requested_dumps);
363 ::gcc::jit::recording::context *m_recording_ctxt;
380 compile_to_memory (recording::context *ctxt);
392 compile_to_file (recording::context *ctxt,
777 get_location (recording::location *rloc, int column_num);
793 location (recording::location *loc, source_line *line, int column_num)
    [all...]
jit-playback.cc 150 playback::context::context (recording::context *ctxt)
2351 auto_vec <recording::requested_dump> requested_dumps;
2414 playback::compile_to_memory::compile_to_memory (recording::context *ctxt) :
2442 playback::compile_to_file::compile_to_file (recording::context *ctxt,
2661 /* This mutex guards gcc::jit::recording::context::compile, so that only
2712 vec <recording::requested_dump> *requested_dumps)
2779 recording::requested_dump *d;
2857 extract_any_requested_dumps (vec <recording::requested_dump> *requested_dumps)
2862 recording::requested_dump *d;
3192 /* Top-level hook for playing back a recording context
    [all...]
jit-recording.h 1 /* Internals of libgccjit: classes for recording calls made to the JIT API.
41 Recording.
44 namespace recording { namespace in namespace:gcc::jit
55 /* A recording of a call to gcc_jit_context_enable_dump. */
315 get_all_requested_dumps (vec <recording::requested_dump> *out);
478 recording objects, playing them back. The ordering of recording
479 ensures that everything that a recording object refers to has
484 recording::statement. This method can set a new location on a
1064 jit-recording.cc. *
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
ptwrite.py 44 recording = gdb.current_recording()
45 if recording is not None:
46 recording.clear()
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
ptwrite.py 44 recording = gdb.current_recording()
45 if recording is not None:
46 recording.clear()
  /src/sys/external/bsd/compiler_rt/dist/lib/profile/
InstrProfData.inc 370 /* An array recording the number of values tracked at each site.
  /src/external/gpl3/gdb.old/dist/gdb/
record-full.c 56 Target record has two modes: recording, and replaying.
753 if we delivered it during the recording. Therefore we should
1717 may be inserted while recording, but removed when not replaying nor
1718 recording. In that case, the breakpoint had not been inserted on
1738 when recording. */
1767 when recording. */
1777 /* When recording, we currently always single-step, so we don't
2354 gdb_printf (gdb_stdlog, "Restoring recording from core file.\n");
2759 and we will not hit the end of the recording. */
2896 _("Start full execution recording."), &record_full_cmdlist
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
record-full.c 56 Target record has two modes: recording, and replaying.
753 if we delivered it during the recording. Therefore we should
1717 may be inserted while recording, but removed when not replaying nor
1718 recording. In that case, the breakpoint had not been inserted on
1738 when recording. */
1767 when recording. */
1777 /* When recording, we currently always single-step, so we don't
2350 gdb_printf (gdb_stdlog, "Restoring recording from core file.\n");
2748 and we will not hit the end of the recording. */
2883 _("Start full execution recording."), &record_full_cmdlist
    [all...]
  /src/external/bsd/ipf/dist/
HISTORY 591 fix problem with fragment table not recording rule pointer when called

Completed in 48 milliseconds