Searched refs:speed_p (Results 1 - 25 of 118) sorted by relevance

12345

/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Difcvt.h96 bool speed_p; member in struct:noce_if_info
H A Dlower-subreg.c139 shift_cost (bool speed_p, struct cost_rtxes *rtxes, enum rtx_code code, argument
146 return set_src_cost (rtxes->shift, mode, speed_p);
159 compute_splitting_shift (bool speed_p, struct cost_rtxes *rtxes, argument
167 wide_cost = shift_cost (speed_p, rtxes, code, twice_word_mode,
172 narrow_cost = shift_cost (speed_p, rtxes, code, word_mode, i);
179 upper_cost = shift_cost (speed_p, rtxes, code, word_mode,
196 compute_costs (bool speed_p, struct cost_rtxes *rtxes) argument
203 word_move_zero_cost = set_rtx_cost (rtxes->set, speed_p);
206 word_move_cost = set_rtx_cost (rtxes->set, speed_p);
222 mode_move_cost = set_rtx_cost (rtxes->set, speed_p);
349 simple_move(rtx_insn *insn, bool speed_p) argument
1238 find_decomposable_shift_zext(rtx_insn *insn, bool speed_p) argument
1424 dump_choices(bool speed_p, const char *description) argument
1458 bool speed_p; local
[all...]
H A Dccmp.c209 int speed_p = optimize_insn_for_speed_p (); local
227 cost1 = seq_cost (prep_seq_1, speed_p);
228 cost1 += seq_cost (gen_seq_1, speed_p);
245 cost2 = seq_cost (prep_seq_2, speed_p);
246 cost2 += seq_cost (gen_seq_2, speed_p);
H A Doptabs-query.c673 lshift_cheap_p (bool speed_p) argument
685 if (!init[speed_p])
689 word_mode, speed_p);
690 cheap[speed_p] = cost < COSTS_N_INSNS (3);
691 init[speed_p] = true;
694 return cheap[speed_p];
H A Dtarghooks.c1731 get_move_ratio (bool speed_p ATTRIBUTE_UNUSED)
1735 move_ratio = (unsigned int) MOVE_RATIO (speed_p);
1740 move_ratio = ((speed_p) ? 15 : 3);
1754 bool speed_p)
1763 ratio = CLEAR_RATIO (speed_p);
1767 ratio = get_move_ratio (speed_p);
1771 ratio = SET_RATIO (speed_p);
1775 ratio = get_move_ratio (speed_p);
1780 ratio = speed_p ? 15 : 3;
1751 default_use_by_pieces_infrastructure_p(unsigned HOST_WIDE_INT size, unsigned int alignment, enum by_pieces_operation op, bool speed_p) argument
H A Dtree-ssa-threadbackward.c43 void find_jump_threads_backwards (basic_block bb, bool speed_p);
743 thread_jumps::find_jump_threads_backwards (basic_block bb, bool speed_p) argument
772 m_speed_p = speed_p;
/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Difcvt.h96 bool speed_p; member in struct:noce_if_info
H A Dlower-subreg.cc139 shift_cost (bool speed_p, struct cost_rtxes *rtxes, enum rtx_code code, argument
146 return set_src_cost (rtxes->shift, mode, speed_p);
159 compute_splitting_shift (bool speed_p, struct cost_rtxes *rtxes, argument
167 wide_cost = shift_cost (speed_p, rtxes, code, twice_word_mode,
172 narrow_cost = shift_cost (speed_p, rtxes, code, word_mode, i);
179 upper_cost = shift_cost (speed_p, rtxes, code, word_mode,
196 compute_costs (bool speed_p, struct cost_rtxes *rtxes) argument
203 word_move_zero_cost = set_rtx_cost (rtxes->set, speed_p);
206 word_move_cost = set_rtx_cost (rtxes->set, speed_p);
222 mode_move_cost = set_rtx_cost (rtxes->set, speed_p);
349 simple_move(rtx_insn *insn, bool speed_p) argument
1249 find_decomposable_shift_zext(rtx_insn *insn, bool speed_p) argument
1435 dump_choices(bool speed_p, const char *description) argument
1469 bool speed_p; local
[all...]
H A Dccmp.cc209 int speed_p = optimize_insn_for_speed_p (); local
227 cost1 = seq_cost (prep_seq_1, speed_p);
228 cost1 += seq_cost (gen_seq_1, speed_p);
245 cost2 = seq_cost (prep_seq_2, speed_p);
246 cost2 += seq_cost (gen_seq_2, speed_p);
H A Doptabs-query.cc691 lshift_cheap_p (bool speed_p)
703 if (!init[speed_p])
707 word_mode, speed_p);
708 cheap[speed_p] = cost < COSTS_N_INSNS (3);
709 init[speed_p] = true;
712 return cheap[speed_p];
H A Dtarghooks.cc1926 get_move_ratio (bool speed_p ATTRIBUTE_UNUSED)
1930 move_ratio = (unsigned int) MOVE_RATIO (speed_p);
1935 move_ratio = ((speed_p) ? 15 : 3);
1949 bool speed_p)
1958 ratio = CLEAR_RATIO (speed_p);
1962 ratio = get_move_ratio (speed_p);
1966 ratio = SET_RATIO (speed_p);
1970 ratio = get_move_ratio (speed_p);
1975 ratio = speed_p ? 15 : 3;
1946 default_use_by_pieces_infrastructure_p(unsigned HOST_WIDE_INT size, unsigned int alignment, enum by_pieces_operation op, bool speed_p) argument
H A Difcvt.cc814 bool speed_p = if_info->speed_p;
817 unsigned int cost = seq_cost (seq, speed_p);
824 return speed_p && cost <= if_info->max_seq_cost;
2849 || ((set_src_cost (t, mode, if_info->speed_p)
3106 bool speed_p = optimize_bb_for_speed_p (test_bb);
3111 *cost += pattern_cost (first_set, speed_p);
3127 int potential_cost = pattern_cost (last_set, speed_p);
3147 potential_cost += pattern_cost (sset, speed_p);
3203 *cost = seq_cost (seq, if_info->speed_p);
811 bool speed_p = if_info->speed_p; local
3657 bool speed_p = optimize_bb_for_speed_p (test_bb); local
3778 bool speed_p = optimize_bb_for_speed_p (test_bb); local
4410 bool speed_p = optimize_bb_for_speed_p (test_bb); local
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm.c9906 arm_unspec_cost (rtx x, enum rtx_code /* outer_code */, bool speed_p, int *cost)
9918 if (speed_p)
9924 ADDR_SPACE_GENERIC, speed_p);
9930 if (speed_p)
9934 *cost += rtx_cost (XVECEXP (x, 0, 0), VOIDmode, UNSPEC, 0, speed_p);
9937 ADDR_SPACE_GENERIC, speed_p);
9947 if (speed_p)
9960 #define LIBCALL_COST(N) COSTS_N_INSNS (N + (speed_p ? 18 : 2))
9971 if (speed_p) \
9974 ASHIFT, 1, speed_p); \
9894 arm_unspec_cost(rtx x, enum rtx_code , bool speed_p, int *cost) argument
9981 arm_mem_costs(rtx x, const struct cpu_cost_table *extra_cost, int *cost, bool speed_p) argument
10070 arm_rtx_costs_internal(rtx x, enum rtx_code code, enum rtx_code outer_code, const struct cpu_cost_table *extra_cost, int *cost, bool speed_p) argument
12458 arm_default_branch_cost(bool speed_p, bool predictable_p ATTRIBUTE_UNUSED) argument
12467 arm_cortex_a5_branch_cost(bool speed_p, bool predictable_p) argument
12480 arm_cortex_m_branch_cost(bool speed_p, bool predictable_p) argument
12487 arm_cortex_m7_branch_cost(bool speed_p, bool predictable_p) argument
[all...]
/netbsd-current/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm.cc10054 arm_unspec_cost (rtx x, enum rtx_code /* outer_code */, bool speed_p, int *cost)
10066 if (speed_p)
10072 ADDR_SPACE_GENERIC, speed_p);
10078 if (speed_p)
10082 *cost += rtx_cost (XVECEXP (x, 0, 0), VOIDmode, UNSPEC, 0, speed_p);
10085 ADDR_SPACE_GENERIC, speed_p);
10095 if (speed_p)
10108 #define LIBCALL_COST(N) COSTS_N_INSNS (N + (speed_p ? 18 : 2))
10119 if (speed_p) \
10122 ASHIFT, 1, speed_p); \
[all...]
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/epiphany/
H A Depiphany.h663 #define BRANCH_COST(speed_p, predictable_p) \
664 (speed_p ? epiphany_branch_cost : 1)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/nds32/
H A Dnds32-cost.c713 bool speed_p)
715 if (speed_p)
710 nds32_address_cost_impl(rtx address, machine_mode mode ATTRIBUTE_UNUSED, addr_space_t as ATTRIBUTE_UNUSED, bool speed_p) argument
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/riscv/
H A Driscv.h682 #define BRANCH_COST(speed_p, predictable_p) \
683 ((!(speed_p) || (predictable_p)) ? 2 : riscv_branch_cost)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/csky/
H A Dcsky.h1014 #define BRANCH_COST(speed_p, predictable_p) \
1015 csky_default_branch_cost (speed_p, predictable_p)
/netbsd-current/external/gpl3/gcc/dist/gcc/config/epiphany/
H A Depiphany.h663 #define BRANCH_COST(speed_p, predictable_p) \
664 (speed_p ? epiphany_branch_cost : 1)
/netbsd-current/external/gpl3/gcc/dist/gcc/config/nds32/
H A Dnds32-cost.cc713 bool speed_p)
715 if (speed_p)
710 nds32_address_cost_impl(rtx address, machine_mode mode ATTRIBUTE_UNUSED, addr_space_t as ATTRIBUTE_UNUSED, bool speed_p) argument
/netbsd-current/external/gpl3/gcc/dist/gcc/config/riscv/
H A Driscv.h735 #define BRANCH_COST(speed_p, predictable_p) \
736 ((!(speed_p) || (predictable_p)) ? 2 : riscv_branch_cost)
/netbsd-current/external/gpl3/gcc/dist/gcc/config/csky/
H A Dcsky.h1154 #define BRANCH_COST(speed_p, predictable_p) \
1155 csky_default_branch_cost (speed_p, predictable_p)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/spu/
H A Dspu.h393 #define BRANCH_COST(speed_p, predictable_p) spu_branch_cost
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/ft32/
H A Dft32.h287 #define BRANCH_COST(speed_p, predictable_p) 2
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/pdp11/
H A Dpdp11.h661 #define BRANCH_COST(speed_p, predictable_p) 1

Completed in 527 milliseconds

12345