+2015-10-22 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
+
+ PR target/63304
+ * config/aarch64/aarch64.c (aarch64_nopcrelative_literal_loads): New.
+ (aarch64_expand_mov_immediate): Use aarch64_nopcrelative_literal_loads.
+ (aarch64_classify_address): Likewise.
+ (aarch64_secondary_reload): Likewise.
+ (aarch64_override_options_after_change_1): Adjust.
+ * config/aarch64/aarch64.md (aarch64_reload_movcp<GPF_TF:mode><P:mode>):
+ Use aarch64_nopcrelative_literal_loads.
+ (aarch64_reload_movcp<VALL:mode><P:mode>): Likewise.
+ * config/aarch64/aarch64-protos.h (aarch64_nopcrelative_literal_loads): Declare
+
2015-10-21 Martin Sebor <msebor@redhat.com>
PR driver/68043
/* Mask to specify which instruction scheduling options should be used. */
unsigned long aarch64_tune_flags = 0;
+/* Global flag for PC relative loads. */
+bool aarch64_nopcrelative_literal_loads;
+
/* Support for command line parsing of boolean flags in the tuning
structures. */
struct aarch64_flag_desc
we need to expand the literal pool access carefully.
This is something that needs to be done in a number
of places, so could well live as a separate function. */
- if (nopcrelative_literal_loads)
+ if (aarch64_nopcrelative_literal_loads)
{
gcc_assert (can_create_pseudo_p ());
base = gen_reg_rtx (ptr_mode);
return ((GET_CODE (sym) == LABEL_REF
|| (GET_CODE (sym) == SYMBOL_REF
&& CONSTANT_POOL_ADDRESS_P (sym)
- && !nopcrelative_literal_loads)));
+ && !aarch64_nopcrelative_literal_loads)));
}
return false;
if (MEM_P (x) && GET_CODE (x) == SYMBOL_REF && CONSTANT_POOL_ADDRESS_P (x)
&& (SCALAR_FLOAT_MODE_P (GET_MODE (x))
|| targetm.vector_mode_supported_p (GET_MODE (x)))
- && nopcrelative_literal_loads)
+ && aarch64_nopcrelative_literal_loads)
{
sri->icode = aarch64_constant_pool_reload_icode (mode);
return NO_REGS;
else if (opts->x_flag_omit_leaf_frame_pointer)
opts->x_flag_omit_frame_pointer = true;
- /* If not opzimizing for size, set the default
+ /* If not optimizing for size, set the default
alignment to what the target wants. */
if (!opts->x_optimize_size)
{
/* If nopcrelative_literal_loads is set on the command line, this
implies that the user asked for PC relative literal loads. */
- if (nopcrelative_literal_loads == 1)
- nopcrelative_literal_loads = 0;
+ if (opts->x_nopcrelative_literal_loads == 1)
+ aarch64_nopcrelative_literal_loads = false;
/* If it is not set on the command line, we default to no
pc relative literal loads. */
- if (nopcrelative_literal_loads == 2)
- nopcrelative_literal_loads = 1;
+ if (opts->x_nopcrelative_literal_loads == 2)
+ aarch64_nopcrelative_literal_loads = true;
/* In the tiny memory model it makes no sense
to disallow non PC relative literal pool loads
as many other things will break anyway. */
- if (nopcrelative_literal_loads
+ if (opts->x_nopcrelative_literal_loads
&& (aarch64_cmodel == AARCH64_CMODEL_TINY
|| aarch64_cmodel == AARCH64_CMODEL_TINY_PIC))
- nopcrelative_literal_loads = 0;
+ aarch64_nopcrelative_literal_loads = false;
}
/* 'Unpack' up the internal tuning structs and update the options
[(set (match_operand:GPF_TF 0 "register_operand" "=w")
(mem:GPF_TF (match_operand 1 "aarch64_constant_pool_symref" "S")))
(clobber (match_operand:P 2 "register_operand" "=&r"))]
- "TARGET_FLOAT && nopcrelative_literal_loads"
+ "TARGET_FLOAT && aarch64_nopcrelative_literal_loads"
{
aarch64_expand_mov_immediate (operands[2], XEXP (operands[1], 0));
emit_move_insn (operands[0], gen_rtx_MEM (<GPF_TF:MODE>mode, operands[2]));
[(set (match_operand:VALL 0 "register_operand" "=w")
(mem:VALL (match_operand 1 "aarch64_constant_pool_symref" "S")))
(clobber (match_operand:P 2 "register_operand" "=&r"))]
- "TARGET_FLOAT && nopcrelative_literal_loads"
+ "TARGET_FLOAT && aarch64_nopcrelative_literal_loads"
{
aarch64_expand_mov_immediate (operands[2], XEXP (operands[1], 0));
emit_move_insn (operands[0], gen_rtx_MEM (<VALL:MODE>mode, operands[2]));