diff options
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 40935f2..1978e10 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -810,7 +810,12 @@ bool expr_invariant_in_loop_p (struct loop *, tree); bool stmt_invariant_in_loop_p (struct loop *, gimple); bool multiplier_allowed_in_address_p (HOST_WIDE_INT, enum machine_mode, addr_space_t); -unsigned multiply_by_cost (HOST_WIDE_INT, enum machine_mode, bool); +unsigned multiply_by_const_cost (HOST_WIDE_INT, enum machine_mode, bool); +unsigned add_regs_cost (enum machine_mode, bool); +unsigned multiply_regs_cost (enum machine_mode, bool); +unsigned add_const_cost (enum machine_mode, bool); +unsigned extend_or_trunc_reg_cost (tree, tree, bool); +unsigned negate_reg_cost (enum machine_mode, bool); bool may_be_nonaddressable_p (tree expr); /* In tree-ssa-threadupdate.c. */ |