| /netbsd-src/external/gpl3/gcc/dist/gcc/jit/ |
| H A D | jit-builtins.cc | 134 : m_ctxt (ctxt) in builtins_manager() 151 m_ctxt->add_error (NULL, "builtin \"%s\" not found", name); in get_builtin_function() 176 m_ctxt->record (fn); in get_builtin_function_by_id() 206 params[i] = m_ctxt->new_param (NULL, in make_builtin_function() 212 new recording::function (m_ctxt, in make_builtin_function() 216 m_ctxt->new_string (asm_name), in make_builtin_function() 464 m_ctxt->add_error (NULL, in make_primitive_type() 469 case BT_VOID: return m_ctxt->get_type (GCC_JIT_TYPE_VOID); in make_primitive_type() 470 case BT_BOOL: return m_ctxt->get_type (GCC_JIT_TYPE_BOOL); in make_primitive_type() 471 case BT_INT: return m_ctxt->get_type (GCC_JIT_TYPE_INT); in make_primitive_type() [all …]
|
| H A D | jit-recording.cc | 42 : m_ctxt (ctxt), in dump() 62 m_ctxt.add_error (NULL, in ~dump() 92 m_ctxt.add_error (NULL, "malloc failure writing to dumpfile %s", in write() 98 m_ctxt.add_error (NULL, "error writing to dump file %s", in write() 125 return m_ctxt.new_location (m_filename, m_line, m_column, in make_location() 2177 string *result = m_ctxt->new_string (tmp, true); in make_debug_string() 2215 return string::from_printf (m_ctxt, in make_debug_string() 2255 m_ctxt->record (m_pointer_to_this_type); in get_pointer() 2269 m_ctxt->record (result); in get_const() 2282 m_ctxt->record (result); in get_volatile() [all …]
|
| H A D | jit-common.h | 173 recording::context &get_context () { return m_ctxt; } in get_context() 186 recording::context &m_ctxt;
|
| H A D | libgccjit.cc | 734 gcc::jit::recording::context *ctxt = function_type->m_ctxt; in gcc_jit_function_type_get_param_type() 936 gcc::jit::recording::context *ctxt = struct_type->m_ctxt; in gcc_jit_struct_set_fields() 1268 gcc::jit::recording::context *ctxt = func->m_ctxt; in gcc_jit_function_get_param() 1293 gcc::jit::recording::context *ctxt = func->m_ctxt; in gcc_jit_function_get_param_count() 1322 gcc::jit::recording::context *ctxt = func->m_ctxt; in gcc_jit_function_dump_to_dot() 2531 gcc::jit::recording::context *ctxt = struct_->m_ctxt; in gcc_jit_lvalue_access_field() 2535 RETURN_NULL_IF_FAIL_PRINTF1 (field->get_container (), field->m_ctxt, loc, in gcc_jit_lvalue_access_field() 2543 struct_->m_ctxt, loc, in gcc_jit_lvalue_access_field() 2563 gcc::jit::recording::context *ctxt = struct_->m_ctxt; in gcc_jit_rvalue_access_field() 2567 RETURN_NULL_IF_FAIL_PRINTF1 (field->get_container (), field->m_ctxt, loc, in gcc_jit_rvalue_access_field() [all …]
|
| H A D | jit-playback.h | 512 context *m_ctxt; 518 m_ctxt->set_tree_location (t, loc); in set_tree_location() 646 : m_ctxt (ctxt), in rvalue() 660 context *get_context () const { return m_ctxt; } in get_context() 677 context *m_ctxt;
|
| H A D | jit-recording.h | 393 context *get_context () { return m_ctxt; } in get_context() 410 : m_ctxt (ctxt), in memento() 417 string *new_string (const char *text) { return m_ctxt->new_string (text); } in new_string() 423 context *m_ctxt; 656 : type (other_type->m_ctxt), in memento_of_get_pointer() 689 : type (other_type->m_ctxt), in decorated_type() 1323 : memento (func->m_ctxt), in block() 2019 : lvalue (func->m_ctxt, loc, type_), in local() 2057 : memento (b->m_ctxt), in statement()
|
| H A D | jit-playback.cc | 1739 : m_ctxt(ctxt), in function() 1812 return new lvalue (m_ctxt, inner); in new_local() 1838 m_ctxt->set_tree_location (t_fnptr, loc); in get_address() 1839 return new rvalue (m_ctxt, t_fnptr); in get_address() 1853 JIT_LOG_SCOPE (m_ctxt->get_logger ()); in build_stmt_list() 1880 JIT_LOG_SCOPE (m_ctxt->get_logger ()); in postprocess() 1882 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess() 1920 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/ |
| H A D | jit-builtins.c | 134 : m_ctxt (ctxt) in builtins_manager() 151 m_ctxt->add_error (NULL, "builtin \"%s\" not found", name); in get_builtin_function() 176 m_ctxt->record (fn); in get_builtin_function_by_id() 206 params[i] = m_ctxt->new_param (NULL, in make_builtin_function() 212 new recording::function (m_ctxt, in make_builtin_function() 216 m_ctxt->new_string (asm_name), in make_builtin_function() 385 m_ctxt->add_error (NULL, in make_primitive_type() 389 case BT_VOID: return m_ctxt->get_type (GCC_JIT_TYPE_VOID); in make_primitive_type() 390 case BT_BOOL: return m_ctxt->get_type (GCC_JIT_TYPE_BOOL); in make_primitive_type() 391 case BT_INT: return m_ctxt->get_type (GCC_JIT_TYPE_INT); in make_primitive_type() [all …]
|
| H A D | jit-recording.c | 42 : m_ctxt (ctxt), in dump() 62 m_ctxt.add_error (NULL, in ~dump() 92 m_ctxt.add_error (NULL, "malloc failure writing to dumpfile %s", in write() 98 m_ctxt.add_error (NULL, "error writing to dump file %s", in write() 125 return m_ctxt.new_location (m_filename, m_line, m_column, in make_location() 2035 string *result = m_ctxt->new_string (tmp); in make_debug_string() 2073 return string::from_printf (m_ctxt, in make_debug_string() 2113 m_ctxt->record (m_pointer_to_this_type); in get_pointer() 2127 m_ctxt->record (result); in get_const() 2140 m_ctxt->record (result); in get_volatile() [all …]
|
| H A D | libgccjit.c | 698 gcc::jit::recording::context *ctxt = struct_type->m_ctxt; in gcc_jit_struct_set_fields() 986 gcc::jit::recording::context *ctxt = func->m_ctxt; in gcc_jit_function_get_param() 1011 gcc::jit::recording::context *ctxt = func->m_ctxt; in gcc_jit_function_dump_to_dot() 1748 gcc::jit::recording::context *ctxt = struct_->m_ctxt; in gcc_jit_lvalue_access_field() 1752 RETURN_NULL_IF_FAIL_PRINTF1 (field->get_container (), field->m_ctxt, loc, in gcc_jit_lvalue_access_field() 1760 struct_->m_ctxt, loc, in gcc_jit_lvalue_access_field() 1780 gcc::jit::recording::context *ctxt = struct_->m_ctxt; in gcc_jit_rvalue_access_field() 1784 RETURN_NULL_IF_FAIL_PRINTF1 (field->get_container (), field->m_ctxt, loc, in gcc_jit_rvalue_access_field() 1792 struct_->m_ctxt, loc, in gcc_jit_rvalue_access_field() 1817 RETURN_NULL_IF_FAIL_PRINTF1 (field->get_container (), field->m_ctxt, loc, in gcc_jit_rvalue_dereference_field() [all …]
|
| H A D | jit-common.h | 171 recording::context &get_context () { return m_ctxt; } in get_context() 184 recording::context &m_ctxt;
|
| H A D | jit-playback.h | 468 context *m_ctxt; 474 m_ctxt->set_tree_location (t, loc); in set_tree_location() 577 : m_ctxt (ctxt), in rvalue() 586 context *get_context () const { return m_ctxt; } in get_context() 603 context *m_ctxt;
|
| H A D | jit-recording.h | 374 context *get_context () { return m_ctxt; } in get_context() 391 : m_ctxt (ctxt), in memento() 398 string *new_string (const char *text) { return m_ctxt->new_string (text); } in new_string() 404 context *m_ctxt; 608 : type (other_type->m_ctxt), in memento_of_get_pointer() 638 : type (other_type->m_ctxt), in decorated_type() 1224 : memento (func->m_ctxt), in block() 1813 : lvalue (func->m_ctxt, loc, type_), in local() 1851 : memento (b->m_ctxt), in statement()
|
| H A D | jit-playback.c | 1357 : m_ctxt(ctxt), in function() 1430 return new lvalue (m_ctxt, inner); in new_local() 1456 m_ctxt->set_tree_location (t_fnptr, loc); in get_address() 1457 return new rvalue (m_ctxt, t_fnptr); in get_address() 1471 JIT_LOG_SCOPE (m_ctxt->get_logger ()); in build_stmt_list() 1498 JIT_LOG_SCOPE (m_ctxt->get_logger ()); in postprocess() 1500 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_TREE)) in postprocess() 1538 if (m_ctxt->get_bool_option (GCC_JIT_BOOL_OPTION_DUMP_INITIAL_GIMPLE)) in postprocess()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/thread/ |
| H A D | fiber.d | 212 assert( Thread.getThis().m_curr is obj.m_ctxt ); in fiber_entryPoint() 214 obj.m_ctxt.tstack = obj.m_ctxt.bstack; in fiber_entryPoint() 766 m_ctxt.tstack = m_ctxt.bstack; 791 m_ctxt.tstack = m_ctxt.bstack; 966 assert( !m_pmem && !m_ctxt ); in allocStack() 982 m_ctxt = new StackContext; 1026 m_ctxt.bstack = pbase; in version() 1027 m_ctxt.tstack = pbase; in version() 1077 m_ctxt.bstack = m_pmem + sz; in version() 1078 m_ctxt.tstack = m_pmem + sz; in version() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/analyzer/ |
| H A D | region-model-impl-calls.cc | 72 : m_call (call), m_model (model), m_ctxt (ctxt), in call_details() 96 if (m_ctxt) in get_uncertainty() 97 return m_ctxt->get_uncertainty (); in get_uncertainty() 112 m_model->set_value (m_lhs_region, result, m_ctxt); in maybe_set_lhs() 149 return m_model->get_rvalue (arg, m_ctxt); in get_arg_svalue() 176 return m_model->get_fndecl_for_call (m_call, m_ctxt); in get_fndecl_for_call() 223 conjured_purge (m_model, m_ctxt)); in get_or_create_conjured_svalue()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | gimple-laddress.cc | 69 opt_pass * clone () { return new pass_laddress (m_ctxt); } in clone()
|
| H A D | pass_manager.h | 108 context *m_ctxt;
|
| H A D | cgraphbuild.cc | 487 opt_pass * clone () { return new pass_rebuild_cgraph_edges (m_ctxt); } in clone() 528 return new pass_remove_cgraph_callee_edges (m_ctxt); in clone()
|
| H A D | tree-ssa-threadbackward.cc | 962 return new pass_early_thread_jumps (m_ctxt); in clone() 990 return new pass_thread_jumps (m_ctxt); in clone() 1018 return new pass_thread_jumps_full (m_ctxt); in clone()
|
| H A D | gimple-harden-conditionals.cc | 73 opt_pass *clone () { return new pass_harden_compares (m_ctxt); } in clone() 104 opt_pass *clone () { return new pass_harden_conditional_branches (m_ctxt); } in clone()
|
| H A D | passes.cc | 111 m_ctxt (ctxt) in opt_pass() 352 gcc::dump_manager *dumps = m_ctxt->get_dumps (); in finish_optimization_passes() 832 gcc::dump_manager *dumps = m_ctxt->get_dumps (); in register_one_dump_file() 1530 gcc::dump_manager *dumps = m_ctxt->get_dumps (); in register_pass() 1570 m_ctxt (ctxt), m_name_to_pass_map (NULL) in pass_manager() 1617 PASS ## _1 = make_##PASS (m_ctxt); \ in pass_manager() 1929 gcc::dump_manager *dumps = m_ctxt->get_dumps (); in dump_profile_report()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | gimple-laddress.c | 69 opt_pass * clone () { return new pass_laddress (m_ctxt); } in clone()
|
| H A D | pass_manager.h | 108 context *m_ctxt;
|
| H A D | cgraphbuild.c | 487 opt_pass * clone () { return new pass_rebuild_cgraph_edges (m_ctxt); } in clone() 528 return new pass_remove_cgraph_callee_edges (m_ctxt); in clone()
|