Home
last modified time | relevance | path

Searched refs:num_ops (Results 1 – 25 of 46) sorted by relevance

12

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple-match.h130 unsigned int num_ops; variable
139 num_ops (0) in gimple_match_op()
151 num_ops (num_ops_in) in gimple_match_op()
162 num_ops (1) in gimple_match_op()
172 num_ops (2) in gimple_match_op()
183 num_ops (3) in gimple_match_op()
195 num_ops (4) in gimple_match_op()
209 num_ops (5) in gimple_match_op()
228 num_ops = num_ops_in; in set_op()
239 num_ops = 1; in set_op()
[all …]
H A Dgimple-match-head.c104 unsigned int num_ops = orig_op->num_ops; in convert_conditional_op() local
105 new_op->set_op (as_combined_fn (ifn), orig_op->type, num_ops + 2); in convert_conditional_op()
107 for (unsigned int i = 0; i < num_ops; ++i) in convert_conditional_op()
112 num_ops, orig_op->ops); in convert_conditional_op()
113 new_op->ops[num_ops + 1] = else_value; in convert_conditional_op()
486 switch (num_ops) in resimplify()
544 return gimple_build_call_internal (fn, res_op->num_ops, in build_call_internal()
561 unsigned num_ops = res_op->num_ops; in maybe_push_res_to_seq() local
587 for (unsigned int i = 0; i < num_ops; ++i) in maybe_push_res_to_seq()
592 if (num_ops > 0 && COMPARISON_CLASS_P (ops[0])) in maybe_push_res_to_seq()
[all …]
H A Dgimplify-me.c155 size_t i, num_ops; in gimple_regimplify_operands() local
224 num_ops = gimple_num_ops (stmt); in gimple_regimplify_operands()
225 for (i = num_ops; i > 0; i--) in gimple_regimplify_operands()
234 && num_ops == 2 in gimple_regimplify_operands()
259 && num_ops == 2 in gimple_regimplify_operands()
H A Dgimple-streamer-in.c91 unsigned HOST_WIDE_INT num_ops; in input_gimple_stmt() local
100 num_ops = bp_unpack_var_len_unsigned (&bp); in input_gimple_stmt()
101 stmt = gimple_alloc (code, num_ops); in input_gimple_stmt()
154 for (i = 0; i < num_ops; i++) in input_gimple_stmt()
H A Dgimple.c114 gimple_size (enum gimple_code code, unsigned num_ops) in gimple_size() argument
117 if (num_ops > 0) in gimple_size()
118 size += (sizeof (tree) * (num_ops - 1)); in gimple_size()
125 gimple_init (gimple *g, enum gimple_code code, unsigned num_ops) in gimple_init() argument
128 gimple_set_num_ops (g, num_ops); in gimple_init()
140 gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL) in gimple_alloc()
145 size = gimple_size (code, num_ops); in gimple_alloc()
154 gimple_init (stmt, code, num_ops); in gimple_alloc()
180 unsigned num_ops MEM_STAT_DECL) in gimple_build_with_ops_stat()
182 gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT); in gimple_build_with_ops_stat()
[all …]
H A Dgimple.h271 unsigned num_ops;
1513 size_t gimple_size (enum gimple_code code, unsigned num_ops = 0);
1514 void gimple_init (gimple *g, enum gimple_code code, unsigned num_ops);
2474 return gs->num_ops;
2481 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2483 gs->num_ops = num_ops;
4652 unsigned num_ops;
4654 num_ops = gimple_num_ops (gs);
4655 gcc_gimple_checking_assert (num_ops > 1);
4656 return num_ops - 1;
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dgimple-match.h162 unsigned int num_ops; variable
171 num_ops (0) in gimple_match_op()
183 num_ops (num_ops_in) in gimple_match_op()
194 num_ops (1) in gimple_match_op()
204 num_ops (2) in gimple_match_op()
215 num_ops (3) in gimple_match_op()
227 num_ops (4) in gimple_match_op()
241 num_ops (5) in gimple_match_op()
260 num_ops = num_ops_in; in set_op()
271 num_ops = 1; in set_op()
[all …]
H A Dgimple-match-head.cc108 unsigned int num_ops = orig_op->num_ops; in convert_conditional_op() local
109 new_op->set_op (as_combined_fn (ifn), orig_op->type, num_ops + 2); in convert_conditional_op()
111 for (unsigned int i = 0; i < num_ops; ++i) in convert_conditional_op()
116 num_ops, orig_op->ops); in convert_conditional_op()
117 new_op->ops[num_ops + 1] = else_value; in convert_conditional_op()
511 switch (num_ops) in resimplify()
569 return gimple_build_call_internal (fn, res_op->num_ops, in build_call_internal()
586 unsigned num_ops = res_op->num_ops; in maybe_push_res_to_seq() local
612 for (unsigned int i = 0; i < num_ops; ++i) in maybe_push_res_to_seq()
617 if (num_ops > 0 && COMPARISON_CLASS_P (ops[0])) in maybe_push_res_to_seq()
[all …]
H A Dgimplify-me.cc155 size_t i, num_ops; in gimple_regimplify_operands() local
224 num_ops = gimple_num_ops (stmt); in gimple_regimplify_operands()
225 for (i = num_ops; i > 0; i--) in gimple_regimplify_operands()
234 && num_ops == 2) in gimple_regimplify_operands()
257 && num_ops == 2) in gimple_regimplify_operands()
H A Dgimple-streamer-in.cc91 unsigned HOST_WIDE_INT num_ops; in input_gimple_stmt() local
100 num_ops = bp_unpack_var_len_unsigned (&bp); in input_gimple_stmt()
101 stmt = gimple_alloc (code, num_ops); in input_gimple_stmt()
154 for (i = 0; i < num_ops; i++) in input_gimple_stmt()
H A Dgimple.cc117 gimple_size (enum gimple_code code, unsigned num_ops) in gimple_size() argument
120 if (num_ops > 0) in gimple_size()
121 size += (sizeof (tree) * (num_ops - 1)); in gimple_size()
128 gimple_init (gimple *g, enum gimple_code code, unsigned num_ops) in gimple_init() argument
131 gimple_set_num_ops (g, num_ops); in gimple_init()
143 gimple_alloc (enum gimple_code code, unsigned num_ops MEM_STAT_DECL) in gimple_alloc()
148 size = gimple_size (code, num_ops); in gimple_alloc()
157 gimple_init (stmt, code, num_ops); in gimple_alloc()
183 unsigned num_ops MEM_STAT_DECL) in gimple_build_with_ops_stat()
185 gimple *s = gimple_alloc (code, num_ops PASS_MEM_STAT); in gimple_build_with_ops_stat()
[all …]
H A Dgimple.h273 unsigned num_ops;
1515 size_t gimple_size (enum gimple_code code, unsigned num_ops = 0);
1516 void gimple_init (gimple *g, enum gimple_code code, unsigned num_ops);
2504 return gs->num_ops;
2511 gimple_set_num_ops (gimple *gs, unsigned num_ops)
2513 gs->num_ops = num_ops;
4781 unsigned num_ops;
4783 num_ops = gimple_num_ops (gs);
4784 gcc_gimple_checking_assert (num_ops > 1);
4785 return num_ops - 1;
H A Dtree-vect-loop.cc3462 unsigned int opi = op.num_ops; in check_reduction_path()
3468 for (opi = 0; opi < op.num_ops; ++opi) in check_reduction_path()
3474 for (opi = 0; opi < op.num_ops; ++opi) in check_reduction_path()
3478 if (opi == op.num_ops) in check_reduction_path()
6807 slp_tree *slp_op = XALLOCAVEC (slp_tree, op.num_ops); in vectorizable_reduction()
6813 for (i = 0; i < (int) op.num_ops; i++) in vectorizable_reduction()
7364 for (i = 0; i < (int) op.num_ops; i++) in vectorizable_reduction()
7536 op.num_ops == 3 in vect_transform_reduction()
7573 if (op.num_ops == 3) in vect_transform_reduction()
7585 op.num_ops, in vect_transform_reduction()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
H A Dgen-mul-tables.cc1091 int num_ops (ExpressionTree *s) in num_ops() function
1106 tilepro_emit (int multiplier, int num_ops) in tilepro_emit() argument
1141 if (num_ops <= 2) in tilepro_emit()
1157 tilegx_emit (long long multiplier, int num_ops) in tilegx_emit() argument
1166 if (num_ops > 3) in tilegx_emit()
1205 if (num_ops <= 2) in tilegx_emit()
1291 if (!tilepro_emit (n, num_ops (s))) in main()
1294 if (!tilegx_emit (n, num_ops (s))) in main()
H A Dtilepro.c1868 int num_ops; in tilepro_expand_constant_multiply_given_sequence() local
1879 num_ops = tilepro_multiply_get_num_ops (seq); in tilepro_expand_constant_multiply_given_sequence()
1880 gcc_assert (num_ops > 0 in tilepro_expand_constant_multiply_given_sequence()
1881 && num_ops <= tilepro_multiply_insn_seq_MAX_OPERATIONS); in tilepro_expand_constant_multiply_given_sequence()
1883 for (i = 0; i < num_ops; i++) in tilepro_expand_constant_multiply_given_sequence()
1888 const bool is_last_op = (i + 1 == num_ops); in tilepro_expand_constant_multiply_given_sequence()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/tilepro/
H A Dgen-mul-tables.cc1091 int num_ops (ExpressionTree *s) in num_ops() function
1106 tilepro_emit (int multiplier, int num_ops) in tilepro_emit() argument
1141 if (num_ops <= 2) in tilepro_emit()
1157 tilegx_emit (long long multiplier, int num_ops) in tilegx_emit() argument
1166 if (num_ops > 3) in tilegx_emit()
1205 if (num_ops <= 2) in tilegx_emit()
1293 if (!tilepro_emit (n, num_ops (s))) in main()
1296 if (!tilegx_emit (n, num_ops (s))) in main()
H A Dtilepro.cc1868 int num_ops; in tilepro_expand_constant_multiply_given_sequence() local
1879 num_ops = tilepro_multiply_get_num_ops (seq); in tilepro_expand_constant_multiply_given_sequence()
1880 gcc_assert (num_ops > 0 in tilepro_expand_constant_multiply_given_sequence()
1881 && num_ops <= tilepro_multiply_insn_seq_MAX_OPERATIONS); in tilepro_expand_constant_multiply_given_sequence()
1883 for (i = 0; i < num_ops; i++) in tilepro_expand_constant_multiply_given_sequence()
1888 const bool is_last_op = (i + 1 == num_ops); in tilepro_expand_constant_multiply_given_sequence()
/netbsd-src/external/gpl3/binutils/dist/gas/
H A Ddw2gencfi.c1418 int num_ops = 0; in dot_cfi_fde_data() local
1423 num_ops = 0; in dot_cfi_fde_data()
1430 num_ops++; in dot_cfi_fde_data()
1439 else if (num_ops <= 3 && last_fde->per_encoding == DW_EH_PE_omit) in dot_cfi_fde_data()
1445 num_ops = 3; in dot_cfi_fde_data()
1447 last_fde->eh_data_size = num_ops; in dot_cfi_fde_data()
1448 last_fde->eh_data = XNEWVEC (bfd_byte, num_ops); in dot_cfi_fde_data()
1449 num_ops = 0; in dot_cfi_fde_data()
1454 last_fde->eh_data[num_ops++] = e->exp.X_add_number; in dot_cfi_fde_data()
1458 while (num_ops < 3) in dot_cfi_fde_data()
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/gas/
H A Ddw2gencfi.c1399 int num_ops = 0; in dot_cfi_fde_data() local
1404 num_ops = 0; in dot_cfi_fde_data()
1411 num_ops++; in dot_cfi_fde_data()
1420 else if (num_ops <= 3 && last_fde->per_encoding == DW_EH_PE_omit) in dot_cfi_fde_data()
1426 num_ops = 3; in dot_cfi_fde_data()
1428 last_fde->eh_data_size = num_ops; in dot_cfi_fde_data()
1429 last_fde->eh_data = XNEWVEC (bfd_byte, num_ops); in dot_cfi_fde_data()
1430 num_ops = 0; in dot_cfi_fde_data()
1435 last_fde->eh_data[num_ops++] = e->exp.X_add_number; in dot_cfi_fde_data()
1439 while (num_ops < 3) in dot_cfi_fde_data()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
H A Dtilegx.c2117 int num_ops; in tilegx_expand_constant_multiply_given_sequence() local
2128 num_ops = tilegx_multiply_get_num_ops (seq); in tilegx_expand_constant_multiply_given_sequence()
2129 gcc_assert (num_ops > 0 in tilegx_expand_constant_multiply_given_sequence()
2130 && num_ops <= tilegx_multiply_insn_seq_MAX_OPERATIONS); in tilegx_expand_constant_multiply_given_sequence()
2132 for (i = 0; i < num_ops; i++) in tilegx_expand_constant_multiply_given_sequence()
2137 const bool is_last_op = (i + 1 == num_ops); in tilegx_expand_constant_multiply_given_sequence()
/netbsd-src/external/gpl3/gcc/dist/gcc/config/tilegx/
H A Dtilegx.cc2118 int num_ops; in tilegx_expand_constant_multiply_given_sequence() local
2129 num_ops = tilegx_multiply_get_num_ops (seq); in tilegx_expand_constant_multiply_given_sequence()
2130 gcc_assert (num_ops > 0 in tilegx_expand_constant_multiply_given_sequence()
2131 && num_ops <= tilegx_multiply_insn_seq_MAX_OPERATIONS); in tilegx_expand_constant_multiply_given_sequence()
2133 for (i = 0; i < num_ops; i++) in tilegx_expand_constant_multiply_given_sequence()
2138 const bool is_last_op = (i + 1 == num_ops); in tilegx_expand_constant_multiply_given_sequence()
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/riscv/
H A Driscv.c1362 int i, num_ops; in riscv_move_integer() local
1373 num_ops = riscv_build_integer (codes, value, orig_mode); in riscv_move_integer()
1375 if (can_create_pseudo && num_ops > 2 /* not a simple constant */ in riscv_move_integer()
1376 && num_ops >= riscv_split_integer_cost (value)) in riscv_move_integer()
1383 for (i = 1; i < num_ops; i++) in riscv_move_integer()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp62 StringRef fmt, size_t num_ops) const;
/netbsd-src/external/gpl3/gcc/dist/gcc/config/riscv/
H A Driscv.cc1529 int i, num_ops; in riscv_move_integer() local
1540 num_ops = riscv_build_integer (codes, value, orig_mode); in riscv_move_integer()
1542 if (can_create_pseudo && num_ops > 2 /* not a simple constant */ in riscv_move_integer()
1543 && num_ops >= riscv_split_integer_cost (value)) in riscv_move_integer()
1550 for (i = 1; i < num_ops; i++) in riscv_move_integer()
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dgimple.texi118 @item @code{num_ops} @tab 32
181 @item @code{num_ops}
216 @multitable {@code{def_ops}} {48 + 8 * @code{num_ops} bytes}
220 @item @code{op} @tab @code{num_ops} * 64
221 @item Total size @tab 48 + 8 * @code{num_ops} bytes
239 Array of trees with @code{num_ops} slots.
252 @multitable {@code{vdef_ops}} {80 + 8 * @code{num_ops} bytes}
261 @item @code{op} @tab @code{num_ops} * 64
262 @item Total size @tab 80 + 8 * @code{num_ops} bytes

12