+2014-08-25 David Malcolm <dmalcolm@redhat.com>
+
+ * config/aarch64/aarch64.c (aarch64_load_symref_appropriately):
+ Strengthen local "insns" from rtx to rtx_insn *.
+ (aarch64_set_frame_expr): Likewise for local "insn".
+ (aarch64_save_or_restore_fprs): Likewise.
+ (aarch64_save_or_restore_callee_save_registers): Likewise.
+ (aarch64_expand_prologue): Likewise.
+ (aarch64_expand_epilogue): Likewise.
+ (aarch64_output_mi_thunk): Likewise.
+ (aarch64_split_compare_and_swap): Strengthen locals "label1" and
+ "label2" from rtx to rtx_code_label *.
+ (aarch64_split_atomic_op): Likewise for local "label".
+
2014-08-25 Martin Liska <mliska@suse.cz>
* cgraph.h (symtab_node):
case SYMBOL_SMALL_TLSGD:
{
- rtx insns;
+ rtx_insn *insns;
rtx result = gen_rtx_REG (Pmode, R0_REGNUM);
start_sequence ();
static void
aarch64_set_frame_expr (rtx frame_pattern)
{
- rtx insn;
+ rtx_insn *insn;
insn = get_last_insn ();
RTX_FRAME_RELATED_P (insn) = 1;
aarch64_pushwb_pair_reg (enum machine_mode mode, unsigned regno1,
unsigned regno2, HOST_WIDE_INT adjustment)
{
- rtx insn;
+ rtx_insn *insn;
rtx reg1 = gen_rtx_REG (mode, regno1);
rtx reg2 = gen_rtx_REG (mode, regno2);
aarch64_save_callee_saves (enum machine_mode mode, HOST_WIDE_INT start_offset,
unsigned start, unsigned limit, bool skip_wb)
{
- rtx insn;
+ rtx_insn *insn;
rtx (*gen_mem_ref) (enum machine_mode, rtx) = (frame_pointer_needed
? gen_frame_mem : gen_rtx_MEM);
unsigned regno;
*/
HOST_WIDE_INT frame_size, offset;
HOST_WIDE_INT fp_offset; /* Offset from hard FP to SP. */
- rtx insn;
+ rtx_insn *insn;
aarch64_layout_frame ();
{
HOST_WIDE_INT frame_size, offset;
HOST_WIDE_INT fp_offset;
- rtx insn;
+ rtx_insn *insn;
rtx cfa_reg;
aarch64_layout_frame ();
to return a pointer to an aggregate. On AArch64 a result value
pointer will be in x8. */
int this_regno = R0_REGNUM;
- rtx this_rtx, temp0, temp1, addr, insn, funexp;
+ rtx this_rtx, temp0, temp1, addr, funexp;
+ rtx_insn *insn;
reload_completed = 1;
emit_note (NOTE_INSN_PROLOGUE_END);
rtx rval, mem, oldval, newval, scratch;
enum machine_mode mode;
bool is_weak;
- rtx label1, label2, x, cond;
+ rtx_code_label *label1, *label2;
+ rtx x, cond;
rval = operands[0];
mem = operands[1];
scratch = operands[7];
mode = GET_MODE (mem);
- label1 = NULL_RTX;
+ label1 = NULL;
if (!is_weak)
{
label1 = gen_label_rtx ();
{
enum machine_mode mode = GET_MODE (mem);
enum machine_mode wmode = (mode == DImode ? DImode : SImode);
- rtx label, x;
+ rtx_code_label *label;
+ rtx x;
label = gen_label_rtx ();
emit_label (label);