From: James Greenhalgh Date: Mon, 1 Jun 2015 11:59:03 +0000 (+0000) Subject: [ARM Obvious] Fuseable is not a word -> s/fuseable/fusible/g X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fe0b29c7f4c82db45bd984dfe9463ca0752a35ce;p=gcc.git [ARM Obvious] Fuseable is not a word -> s/fuseable/fusible/g gcc/ * gcc/config/arm/arm-protos.h (tune_params): Rename fuseable_ops to fusible_ops. * gcc/config/arm/arm.c (arm_print_tune_info): Likewise. (arm_macro_fusion_p): Likewise. (arm_macro_fusion_pair_p): Likewise. From-SVN: r223939 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 92b99b86965..51e21e3bda6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,11 @@ +2015-06-01 James Greenhalgh + + * gcc/config/arm/arm-protos.h (tune_params): Rename fuseable_ops + to fusible_ops. + * gcc/config/arm/arm.c (arm_print_tune_info): Likewise. + (arm_macro_fusion_p): Likewise. + (arm_macro_fusion_pair_p): Likewise. + 2015-06-01 James Greenhalgh * config/aarch64/aarch64-protos.h (tune_params): Rename diff --git a/gcc/config/arm/arm-protos.h b/gcc/config/arm/arm-protos.h index 91907b82e48..d1f2d4ecdac 100644 --- a/gcc/config/arm/arm-protos.h +++ b/gcc/config/arm/arm-protos.h @@ -291,14 +291,14 @@ struct tune_params /* Prefer to inline string operations like memset by using Neon. */ enum {PREF_NEON_STRINGOPS_FALSE, PREF_NEON_STRINGOPS_TRUE} string_ops_prefer_neon: 1; - /* Bitfield encoding the fuseable pairs of instructions. Use FUSE_OPS + /* Bitfield encoding the fusible pairs of instructions. Use FUSE_OPS in an initializer if multiple fusion operations are supported on a target. */ enum fuse_ops { FUSE_NOTHING = 0, FUSE_MOVW_MOVT = 1 << 0 - } fuseable_ops: 1; + } fusible_ops: 1; /* Depth of scheduling queue to check for L2 autoprefetcher. */ enum {SCHED_AUTOPREF_OFF, SCHED_AUTOPREF_RANK, SCHED_AUTOPREF_FULL} sched_autopref: 2; diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 888813b9c43..ea1ed43b6ac 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -25522,8 +25522,8 @@ arm_print_tune_info (void) (int) current_tune->string_ops_prefer_neon); asm_fprintf (asm_out_file, "\t\t@max_insns_inline_memset:\t%d\n", current_tune->max_insns_inline_memset); - asm_fprintf (asm_out_file, "\t\t@fuseable_ops:\t%u\n", - current_tune->fuseable_ops); + asm_fprintf (asm_out_file, "\t\t@fusible_ops:\t%u\n", + current_tune->fusible_ops); asm_fprintf (asm_out_file, "\t\t@sched_autopref:\t%d\n", (int) current_tune->sched_autopref); } @@ -29160,7 +29160,7 @@ arm_gen_setmem (rtx *operands) static bool arm_macro_fusion_p (void) { - return current_tune->fuseable_ops != tune_params::FUSE_NOTHING; + return current_tune->fusible_ops != tune_params::FUSE_NOTHING; } @@ -29181,7 +29181,7 @@ aarch_macro_fusion_pair_p (rtx_insn* prev, rtx_insn* curr) if (!arm_macro_fusion_p ()) return false; - if (current_tune->fuseable_ops & tune_params::FUSE_MOVW_MOVT) + if (current_tune->fusible_ops & tune_params::FUSE_MOVW_MOVT) { /* We are trying to fuse movw imm / movt imm