From: Wilco Dijkstra Date: Fri, 3 Nov 2017 18:19:33 +0000 (+0000) Subject: Improve aarch64_legitimate_constant_p X-Git-Tag: upstream/12.2.0~35854 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26895c21eb10cfd6c00285e13e6f13a75cccc1d9;p=platform%2Fupstream%2Fgcc.git Improve aarch64_legitimate_constant_p This patch further improves aarch64_legitimate_constant_p. Allow all integer, floating point and vector constants. Allow label references and non-anchor symbols with an immediate offset. This allows such constants to be rematerialized, resulting in smaller code and fewer stack spills. SPEC2006 codesize reduces by 0.08%, SPEC2017 by 0.13%. gcc/ * config/aarch64/aarch64.c (aarch64_legitimate_constant_p): Return true for more constants, symbols and label references. (aarch64_valid_floating_const): Remove unused function. From-SVN: r254388 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9082b85..7dd5653 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,11 @@ 2017-11-03 Wilco Dijkstra + * config/aarch64/aarch64.c (aarch64_legitimate_constant_p): + Return true for more constants, symbols and label references. + (aarch64_valid_floating_const): Remove unused function. + +2017-11-03 Wilco Dijkstra + PR target/82786 * config/aarch64/aarch64.c (aarch64_layout_frame): Undo forcing of LR at bottom of frame. diff --git a/gcc/config/aarch64/aarch64.c b/gcc/config/aarch64/aarch64.c index 12f247d..71c3693 100644 --- a/gcc/config/aarch64/aarch64.c +++ b/gcc/config/aarch64/aarch64.c @@ -10371,51 +10371,49 @@ aarch64_legitimate_pic_operand_p (rtx x) return true; } -/* Return true if X holds either a quarter-precision or - floating-point +0.0 constant. */ -static bool -aarch64_valid_floating_const (rtx x) -{ - if (!CONST_DOUBLE_P (x)) - return false; - - /* This call determines which constants can be used in mov - as integer moves instead of constant loads. */ - if (aarch64_float_const_rtx_p (x)) - return true; - - return aarch64_float_const_representable_p (x); -} +/* Implement TARGET_LEGITIMATE_CONSTANT_P hook. Return true for constants + that should be rematerialized rather than spilled. */ static bool aarch64_legitimate_constant_p (machine_mode mode, rtx x) { + /* Support CSE and rematerialization of common constants. */ + if (CONST_INT_P (x) || CONST_DOUBLE_P (x) || GET_CODE (x) == CONST_VECTOR) + return true; + /* Do not allow vector struct mode constants. We could support 0 and -1 easily, but they need support in aarch64-simd.md. */ - if (TARGET_SIMD && aarch64_vect_struct_mode_p (mode)) + if (aarch64_vect_struct_mode_p (mode)) return false; - /* For these cases we never want to use a literal load. - As such we have to prevent the compiler from forcing these - to memory. */ - if ((GET_CODE (x) == CONST_VECTOR - && aarch64_simd_valid_immediate (x, mode, false, NULL)) - || CONST_INT_P (x) - || aarch64_valid_floating_const (x) - || aarch64_can_const_movi_rtx_p (x, mode) - || aarch64_float_const_rtx_p (x)) - return !targetm.cannot_force_const_mem (mode, x); + /* Do not allow wide int constants - this requires support in movti. */ + if (CONST_WIDE_INT_P (x)) + return false; - if (GET_CODE (x) == HIGH - && aarch64_valid_symref (XEXP (x, 0), GET_MODE (XEXP (x, 0)))) - return true; + /* Do not allow const (plus (anchor_symbol, const_int)). */ + if (GET_CODE (x) == CONST) + { + rtx offset; + + split_const (x, &x, &offset); + + if (SYMBOL_REF_P (x) && SYMBOL_REF_ANCHOR_P (x)) + return false; + } + + if (GET_CODE (x) == HIGH) + x = XEXP (x, 0); /* Treat symbols as constants. Avoid TLS symbols as they are complex, so spilling them is better than rematerialization. */ if (SYMBOL_REF_P (x) && !SYMBOL_REF_TLS_MODEL (x)) return true; - return aarch64_constant_address_p (x); + /* Label references are always constant. */ + if (GET_CODE (x) == LABEL_REF) + return true; + + return false; } rtx