diff options
Diffstat (limited to 'gcc/config')
50 files changed, 261 insertions, 261 deletions
diff --git a/gcc/config/alpha/alpha.c b/gcc/config/alpha/alpha.c index 867bb08dd5c..ed44a88d9ec 100644 --- a/gcc/config/alpha/alpha.c +++ b/gcc/config/alpha/alpha.c @@ -7072,7 +7072,7 @@ alpha_sa_mask (unsigned long *imaskP, unsigned long *fmaskP) /* When outputting a thunk, we don't have valid register life info, but assemble_start_function wants to output .frame and .mask directives. */ - if (current_function_is_thunk) + if (crtl->is_thunk) { *imaskP = 0; *fmaskP = 0; @@ -7095,7 +7095,7 @@ alpha_sa_mask (unsigned long *imaskP, unsigned long *fmaskP) } /* We need to restore these for the handler. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { for (i = 0; ; ++i) { @@ -7149,7 +7149,7 @@ alpha_sa_size (void) alpha_procedure_type = (sa_size || get_frame_size() != 0 || crtl->outgoing_args_size - || current_function_stdarg || current_function_calls_alloca + || cfun->stdarg || cfun->calls_alloca || frame_pointer_needed) ? PT_STACK : PT_REGISTER; @@ -7182,7 +7182,7 @@ alpha_sa_size (void) vms_base_regno = (frame_pointer_needed - || current_function_has_nonlocal_label + || cfun->has_nonlocal_label || alpha_procedure_type == PT_STACK || crtl->outgoing_args_size) ? REG_PV : HARD_FRAME_POINTER_REGNUM; @@ -7298,18 +7298,18 @@ alpha_does_function_need_gp (void) return 0; /* We need the gp to load the address of __mcount. */ - if (TARGET_PROFILING_NEEDS_GP && current_function_profile) + if (TARGET_PROFILING_NEEDS_GP && crtl->profile) return 1; /* The code emitted by alpha_output_mi_thunk_osf uses the gp. */ - if (current_function_is_thunk) + if (crtl->is_thunk) return 1; /* The nonlocal receiver pattern assumes that the gp is valid for the nested function. Reasonable because it's almost always set correctly already. For the cases where that's wrong, make sure the nested function loads its gp on entry. */ - if (current_function_has_nonlocal_goto) + if (crtl->has_nonlocal_goto) return 1; /* If we need a GP (we have a LDSYM insn or a CALL_INSN), load it first. @@ -7479,7 +7479,7 @@ alpha_expand_prologue (void) the call to mcount ourselves, rather than having the linker do it magically in response to -pg. Since _mcount has special linkage, don't represent the call as a call. */ - if (TARGET_PROFILING_NEEDS_GP && current_function_profile) + if (TARGET_PROFILING_NEEDS_GP && crtl->profile) emit_insn (gen_prologue_mcount ()); if (TARGET_ABI_UNICOSMK) @@ -7825,7 +7825,7 @@ alpha_start_function (FILE *file, const char *fnname, Otherwise, do it here. */ if (TARGET_ABI_OSF && ! alpha_function_needs_gp - && ! current_function_is_thunk) + && ! crtl->is_thunk) { putc ('$', file); assemble_name (file, fnname); @@ -7936,7 +7936,7 @@ alpha_output_function_end_prologue (FILE *file) fputs ("\t.prologue 0\n", file); else if (!flag_inhibit_size_directive) fprintf (file, "\t.prologue %d\n", - alpha_function_needs_gp || current_function_is_thunk); + alpha_function_needs_gp || crtl->is_thunk); } /* Write function epilogue. */ @@ -8002,7 +8002,7 @@ alpha_expand_epilogue (void) fp_offset = 0; sa_reg = stack_pointer_rtx; - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) eh_ofs = EH_RETURN_STACKADJ_RTX; else eh_ofs = NULL_RTX; @@ -8113,7 +8113,7 @@ alpha_expand_epilogue (void) register so as not to interfere with a potential fp restore, which must be consecutive with an SP restore. */ if (frame_size < 32768 - && ! (TARGET_ABI_UNICOSMK && current_function_calls_alloca)) + && ! (TARGET_ABI_UNICOSMK && cfun->calls_alloca)) sp_adj2 = GEN_INT (frame_size); else if (TARGET_ABI_UNICOSMK) { diff --git a/gcc/config/alpha/predicates.md b/gcc/config/alpha/predicates.md index 8b00633a44a..bc6fc842980 100644 --- a/gcc/config/alpha/predicates.md +++ b/gcc/config/alpha/predicates.md @@ -268,7 +268,7 @@ tree op_decl, cfun_sec, op_sec; /* If profiling is implemented via linker tricks, we can't jump - to the nogp alternate entry point. Note that current_function_profile + to the nogp alternate entry point. Note that crtl->profile would not be correct, since that doesn't indicate if the target function uses profiling. */ /* ??? TARGET_PROFILING_NEEDS_GP isn't really the right test, diff --git a/gcc/config/arc/arc.c b/gcc/config/arc/arc.c index cf0f7b64dfa..b5e2cb96547 100644 --- a/gcc/config/arc/arc.c +++ b/gcc/config/arc/arc.c @@ -1283,7 +1283,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size) unsigned int pretend_size = current_frame_info.pretend_size; unsigned int frame_size = size - pretend_size; int restored, fp_restored_p; - int can_trust_sp_p = !current_function_calls_alloca; + int can_trust_sp_p = !cfun->calls_alloca; const char *sp_str = reg_names[STACK_POINTER_REGNUM]; const char *fp_str = reg_names[FRAME_POINTER_REGNUM]; diff --git a/gcc/config/arc/arc.h b/gcc/config/arc/arc.h index 06aa4035d1b..ea40fb23ab7 100644 --- a/gcc/config/arc/arc.h +++ b/gcc/config/arc/arc.h @@ -520,7 +520,7 @@ extern enum reg_class arc_regno_reg_class[FIRST_PSEUDO_REGISTER]; frame pointer. This expression is evaluated in the reload pass. If its value is nonzero the function will have a frame pointer. */ #define FRAME_POINTER_REQUIRED \ -(current_function_calls_alloca) +(cfun->calls_alloca) /* C statement to store the difference between the frame pointer and the stack pointer values immediately after the function prologue. */ diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index d788af6740f..82f8352eac2 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -1656,9 +1656,9 @@ use_return_insn (int iscond, rtx sibling) if (crtl->args.pretend_args_size || cfun->machine->uses_anonymous_args /* Or if the function calls __builtin_eh_return () */ - || current_function_calls_eh_return + || crtl->calls_eh_return /* Or if the function calls alloca */ - || current_function_calls_alloca + || cfun->calls_alloca /* Or if there is a stack adjustment. However, if the stack pointer is saved on the stack, we can use a pre-incrementing stack load. */ || !(stack_adjust == 0 || (TARGET_APCS_FRAME && frame_pointer_needed @@ -3373,7 +3373,7 @@ require_pic_register (void) We don't want those calls to affect any assumptions about the real function; and further, we can't call entry_of_function() until we start the real expansion process. */ - if (!current_function_uses_pic_offset_table) + if (!crtl->uses_pic_offset_table) { gcc_assert (can_create_pseudo_p ()); if (arm_pic_register != INVALID_REGNUM) @@ -3384,7 +3384,7 @@ require_pic_register (void) if we are being called as part of the cost-estimation process. */ if (current_ir_type () != IR_GIMPLE) - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; } else { @@ -3397,7 +3397,7 @@ require_pic_register (void) process. */ if (current_ir_type () != IR_GIMPLE) { - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; start_sequence (); arm_load_pic_register (0UL); @@ -3595,7 +3595,7 @@ arm_load_pic_register (unsigned long saved_regs ATTRIBUTE_UNUSED) rtx l1, labelno, pic_tmp, pic_tmp2, pic_rtx, pic_reg; rtx global_offset_table; - if (current_function_uses_pic_offset_table == 0 || TARGET_SINGLE_PIC_BASE) + if (crtl->uses_pic_offset_table == 0 || TARGET_SINGLE_PIC_BASE) return; gcc_assert (flag_pic); @@ -10734,7 +10734,7 @@ arm_compute_save_reg0_reg12_mask (void) if (flag_pic && !TARGET_SINGLE_PIC_BASE && arm_pic_register != INVALID_REGNUM - && current_function_uses_pic_offset_table) + && crtl->uses_pic_offset_table) save_reg_mask |= 1 << PIC_OFFSET_TABLE_REGNUM; } else @@ -10755,7 +10755,7 @@ arm_compute_save_reg0_reg12_mask (void) && !TARGET_SINGLE_PIC_BASE && arm_pic_register != INVALID_REGNUM && (df_regs_ever_live_p (PIC_OFFSET_TABLE_REGNUM) - || current_function_uses_pic_offset_table)) + || crtl->uses_pic_offset_table)) save_reg_mask |= 1 << PIC_OFFSET_TABLE_REGNUM; /* The prologue will copy SP into R0, so save it. */ @@ -10764,7 +10764,7 @@ arm_compute_save_reg0_reg12_mask (void) } /* Save registers so the exception handler can modify them. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i; @@ -10825,7 +10825,7 @@ arm_compute_save_reg_mask (void) || (save_reg_mask && optimize_size && ARM_FUNC_TYPE (func_type) == ARM_FT_NORMAL - && !current_function_calls_eh_return)) + && !crtl->calls_eh_return)) save_reg_mask |= 1 << LR_REGNUM; if (cfun->machine->lr_save_eliminated) @@ -10887,7 +10887,7 @@ thumb1_compute_save_reg_mask (void) if (flag_pic && !TARGET_SINGLE_PIC_BASE && arm_pic_register != INVALID_REGNUM - && current_function_uses_pic_offset_table) + && crtl->uses_pic_offset_table) mask |= 1 << PIC_OFFSET_TABLE_REGNUM; /* See if we might need r11 for calls to _interwork_r11_call_via_rN(). */ @@ -11002,7 +11002,7 @@ output_return_instruction (rtx operand, int really_return, int reverse) return ""; } - gcc_assert (!current_function_calls_alloca || really_return); + gcc_assert (!cfun->calls_alloca || really_return); sprintf (conditional, "%%?%%%c0", reverse ? 'D' : 'd'); @@ -11268,7 +11268,7 @@ arm_output_function_prologue (FILE *f, HOST_WIDE_INT frame_size) if (cfun->machine->lr_save_eliminated) asm_fprintf (f, "\t%@ link register save eliminated.\n"); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) asm_fprintf (f, "\t@ Calls __builtin_eh_return.\n"); return_used_this_function = 0; @@ -11315,7 +11315,7 @@ arm_output_epilogue (rtx sibling) /* If we are throwing an exception, then we really must be doing a return, so we can't tail-call. */ - gcc_assert (!current_function_calls_eh_return || really_return); + gcc_assert (!crtl->calls_eh_return || really_return); offsets = arm_get_frame_offsets (); saved_regs_mask = offsets->saved_regs_mask; @@ -11446,7 +11446,7 @@ arm_output_epilogue (rtx sibling) special function exit sequence, or we are not really returning. */ if (really_return && ARM_FUNC_TYPE (func_type) == ARM_FT_NORMAL - && !current_function_calls_eh_return) + && !crtl->calls_eh_return) /* Delete the LR from the register mask, so that the LR on the stack is loaded into the PC in the register mask. */ saved_regs_mask &= ~ (1 << LR_REGNUM); @@ -11463,7 +11463,7 @@ arm_output_epilogue (rtx sibling) occur. If the stack pointer already points at the right place, then omit the subtraction. */ if (offsets->outgoing_args != (1 + (int) bit_count (saved_regs_mask)) - || current_function_calls_alloca) + || cfun->calls_alloca) asm_fprintf (f, "\tsub\t%r, %r, #%d\n", SP_REGNUM, FP_REGNUM, 4 * bit_count (saved_regs_mask)); print_multi_reg (f, "ldmfd\t%r, ", SP_REGNUM, saved_regs_mask, 0); @@ -11523,10 +11523,10 @@ arm_output_epilogue (rtx sibling) count = offsets->saved_regs - offsets->saved_args; if (optimize_size && count != 0 - && !current_function_calls_eh_return + && !crtl->calls_eh_return && bit_count(saved_regs_mask) * 4 == count && !IS_INTERRUPT (func_type) - && !cfun->tail_call_emit) + && !crtl->tail_call_emit) { unsigned long mask; mask = (1 << (arm_size_return_regs() / 4)) - 1; @@ -11628,7 +11628,7 @@ arm_output_epilogue (rtx sibling) && really_return && crtl->args.pretend_args_size == 0 && saved_regs_mask & (1 << LR_REGNUM) - && !current_function_calls_eh_return) + && !crtl->calls_eh_return) { saved_regs_mask &= ~ (1 << LR_REGNUM); saved_regs_mask |= (1 << PC_REGNUM); @@ -11675,7 +11675,7 @@ arm_output_epilogue (rtx sibling) return ""; /* Stack adjustment for exception handler. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) asm_fprintf (f, "\tadd\t%r, %r, %r\n", SP_REGNUM, SP_REGNUM, ARM_EH_STACKADJ_REGNUM); @@ -12133,7 +12133,7 @@ arm_get_frame_offsets (void) } if (reg == -1 && arm_size_return_regs () <= 12 - && !cfun->tail_call_emit) + && !crtl->tail_call_emit) { /* Push/pop an argument register (r3) if all callee saved registers are already being pushed. */ @@ -12664,7 +12664,7 @@ arm_expand_prologue (void) scheduling in the prolog. Similarly if we want non-call exceptions using the EABI unwinder, to prevent faulting instructions from being swapped with a stack adjustment. */ - if (current_function_profile || !TARGET_SCHED_PROLOG + if (crtl->profile || !TARGET_SCHED_PROLOG || (ARM_EABI_UNWIND_TABLES && flag_non_call_exceptions)) emit_insn (gen_blockage ()); @@ -16180,7 +16180,7 @@ thumb_pushpop (FILE *f, unsigned long mask, int push, int *cfa_offset, { /* Catch popping the PC. */ if (TARGET_INTERWORK || TARGET_BACKTRACE - || current_function_calls_eh_return) + || crtl->calls_eh_return) { /* The PC is never poped directly, instead it is popped into r3 and then BX is used. */ @@ -16255,7 +16255,7 @@ thumb_exit (FILE *f, int reg_containing_return_addr) return. */ if (pops_needed == 0) { - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) asm_fprintf (f, "\tadd\t%r, %r\n", SP_REGNUM, ARM_EH_STACKADJ_REGNUM); asm_fprintf (f, "\tbx\t%r\n", reg_containing_return_addr); @@ -16267,7 +16267,7 @@ thumb_exit (FILE *f, int reg_containing_return_addr) else if (!TARGET_INTERWORK && !TARGET_BACKTRACE && !is_called_in_ARM_mode (current_function_decl) - && !current_function_calls_eh_return) + && !crtl->calls_eh_return) { asm_fprintf (f, "\tpop\t{%r}\n", PC_REGNUM); return; @@ -16278,7 +16278,7 @@ thumb_exit (FILE *f, int reg_containing_return_addr) /* If returning via __builtin_eh_return, the bottom three registers all contain information needed for the return. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) size = 12; else { @@ -16489,7 +16489,7 @@ thumb_exit (FILE *f, int reg_containing_return_addr) asm_fprintf (f, "\tmov\t%r, %r\n", LAST_ARG_REGNUM, IP_REGNUM); } - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) asm_fprintf (f, "\tadd\t%r, %r\n", SP_REGNUM, ARM_EH_STACKADJ_REGNUM); /* Return to caller. */ @@ -16995,7 +16995,7 @@ thumb1_expand_prologue (void) scheduling in the prolog. Similarly if we want non-call exceptions using the EABI unwinder, to prevent faulting instructions from being swapped with a stack adjustment. */ - if (current_function_profile || !TARGET_SCHED_PROLOG + if (crtl->profile || !TARGET_SCHED_PROLOG || (ARM_EABI_UNWIND_TABLES && flag_non_call_exceptions)) emit_insn (gen_blockage ()); @@ -17045,7 +17045,7 @@ thumb1_expand_epilogue (void) the stack adjustment will not be deleted. */ emit_insn (gen_prologue_use (stack_pointer_rtx)); - if (current_function_profile || !TARGET_SCHED_PROLOG) + if (crtl->profile || !TARGET_SCHED_PROLOG) emit_insn (gen_blockage ()); /* Emit a clobber for each insn that will be restored in the epilogue, @@ -18633,7 +18633,7 @@ arm_unwind_emit (FILE * asm_out_file, rtx insn) if (!ARM_EABI_UNWIND_TABLES) return; - if (!(flag_unwind_tables || cfun->uses_eh_lsda) + if (!(flag_unwind_tables || crtl->uses_eh_lsda) && (TREE_NOTHROW (current_function_decl) || cfun->all_throwers_are_sibcalls)) return; @@ -18722,7 +18722,7 @@ arm_output_fn_unwind (FILE * f, bool prologue) /* If this function will never be unwound, then mark it as such. The came condition is used in arm_unwind_emit to suppress the frame annotations. */ - if (!(flag_unwind_tables || cfun->uses_eh_lsda) + if (!(flag_unwind_tables || crtl->uses_eh_lsda) && (TREE_NOTHROW (current_function_decl) || cfun->all_throwers_are_sibcalls)) fputs("\t.cantunwind\n", f); diff --git a/gcc/config/arm/arm.h b/gcc/config/arm/arm.h index a340441d386..b6e182c0d22 100644 --- a/gcc/config/arm/arm.h +++ b/gcc/config/arm/arm.h @@ -999,7 +999,7 @@ extern int arm_structure_size_boundary; #endif #define FRAME_POINTER_REQUIRED \ - (current_function_has_nonlocal_label \ + (cfun->has_nonlocal_label \ || SUBTARGET_FRAME_POINTER_REQUIRED \ || (TARGET_ARM && TARGET_APCS_FRAME && ! leaf_function_p ())) @@ -2402,7 +2402,7 @@ extern int making_const_table; { \ if (is_called_in_ARM_mode (DECL) \ || (TARGET_THUMB1 && !TARGET_THUMB1_ONLY \ - && current_function_is_thunk)) \ + && crtl->is_thunk)) \ fprintf (STREAM, "\t.code 32\n") ; \ else if (TARGET_THUMB1) \ fprintf (STREAM, "\t.code\t16\n\t.thumb_func\n") ; \ diff --git a/gcc/config/arm/arm.md b/gcc/config/arm/arm.md index dcac1346281..c66ea74d2af 100644 --- a/gcc/config/arm/arm.md +++ b/gcc/config/arm/arm.md @@ -10397,7 +10397,7 @@ [(clobber (const_int 0))] "TARGET_EITHER" " - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_prologue_use (gen_rtx_REG (Pmode, 2))); if (TARGET_THUMB1) thumb1_expand_epilogue (); diff --git a/gcc/config/arm/linux-elf.h b/gcc/config/arm/linux-elf.h index 54eba14436f..ca56f7bb669 100644 --- a/gcc/config/arm/linux-elf.h +++ b/gcc/config/arm/linux-elf.h @@ -114,7 +114,7 @@ emit_insn (gen_rtx_CLOBBER (VOIDmode, gen_rtx_REG (SImode, LR_REGNUM))) /* The GNU/Linux profiler needs a frame pointer. */ -#define SUBTARGET_FRAME_POINTER_REQUIRED current_function_profile +#define SUBTARGET_FRAME_POINTER_REQUIRED crtl->profile /* Add .note.GNU-stack. */ #undef NEED_INDICATE_EXEC_STACK diff --git a/gcc/config/avr/avr.c b/gcc/config/avr/avr.c index c440729b422..7248fd6a27c 100644 --- a/gcc/config/avr/avr.c +++ b/gcc/config/avr/avr.c @@ -2735,7 +2735,7 @@ out_movhi_mr_r (rtx insn, rtx op[], int *l) int frame_pointer_required_p (void) { - return (current_function_calls_alloca + return (cfun->calls_alloca || crtl->args.info.nregs == 0 || get_frame_size () > 0); } diff --git a/gcc/config/bfin/bfin.c b/gcc/config/bfin/bfin.c index d1a5c80d2a8..87a1d9360b4 100644 --- a/gcc/config/bfin/bfin.c +++ b/gcc/config/bfin/bfin.c @@ -307,7 +307,7 @@ legitimize_pic_address (rtx orig, rtx reg, rtx picreg) emit_move_insn (reg, new); if (picreg == pic_offset_table_rtx) - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; return reg; } @@ -364,7 +364,7 @@ must_save_p (bool is_inthandler, unsigned regno) if (D_REGNO_P (regno)) { bool is_eh_return_reg = false; - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned j; for (j = 0; ; j++) @@ -389,7 +389,7 @@ must_save_p (bool is_inthandler, unsigned regno) && (is_inthandler || !call_used_regs[regno])) || (!TARGET_FDPIC && regno == PIC_OFFSET_TABLE_REGNUM - && (current_function_uses_pic_offset_table + && (crtl->uses_pic_offset_table || (TARGET_ID_SHARED_LIBRARY && !current_function_is_leaf)))); } else @@ -452,7 +452,7 @@ stack_frame_needed_p (void) { /* EH return puts a new return address into the frame using an address relative to the frame pointer. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) return true; return frame_pointer_needed; } @@ -854,7 +854,7 @@ add_to_reg (rtx reg, HOST_WIDE_INT value, int frame, int epilogue_p) if ((df_regs_ever_live_p (i) && ! call_used_regs[i]) || (!TARGET_FDPIC && i == PIC_OFFSET_TABLE_REGNUM - && (current_function_uses_pic_offset_table + && (crtl->uses_pic_offset_table || (TARGET_ID_SHARED_LIBRARY && ! current_function_is_leaf)))) break; @@ -1167,13 +1167,13 @@ bfin_expand_prologue (void) return; } - if (current_function_limit_stack + if (crtl->limit_stack || TARGET_STACK_CHECK_L1) { HOST_WIDE_INT offset = bfin_initial_elimination_offset (ARG_POINTER_REGNUM, STACK_POINTER_REGNUM); - rtx lim = current_function_limit_stack ? stack_limit_rtx : NULL_RTX; + rtx lim = crtl->limit_stack ? stack_limit_rtx : NULL_RTX; rtx p2reg = gen_rtx_REG (Pmode, REG_P2); if (!lim) @@ -1219,7 +1219,7 @@ bfin_expand_prologue (void) if (TARGET_ID_SHARED_LIBRARY && !TARGET_SEP_DATA - && (current_function_uses_pic_offset_table + && (crtl->uses_pic_offset_table || !current_function_is_leaf)) bfin_load_pic_reg (pic_offset_table_rtx); } diff --git a/gcc/config/cris/cris.c b/gcc/config/cris/cris.c index 87fef5a2f90..b197956b774 100644 --- a/gcc/config/cris/cris.c +++ b/gcc/config/cris/cris.c @@ -412,13 +412,13 @@ cris_conditional_register_usage (void) reg_names[CRIS_CC0_REGNUM] = "ccr"; } -/* Return current_function_uses_pic_offset_table. For use in cris.md, +/* Return crtl->uses_pic_offset_table. For use in cris.md, since some generated files do not include function.h. */ int cris_cfun_uses_pic_table (void) { - return current_function_uses_pic_offset_table; + return crtl->uses_pic_offset_table; } /* Given an rtx, return the text string corresponding to the CODE of X. @@ -604,7 +604,7 @@ cris_reg_saved_in_regsave_area (unsigned int regno, bool got_really_used) && !call_used_regs[regno + 1])))) && (regno != FRAME_POINTER_REGNUM || !frame_pointer_needed) && regno != CRIS_SRP_REGNUM) - || (current_function_calls_eh_return + || (crtl->calls_eh_return && (regno == EH_RETURN_DATA_REGNO (0) || regno == EH_RETURN_DATA_REGNO (1) || regno == EH_RETURN_DATA_REGNO (2) @@ -1188,7 +1188,7 @@ cris_initial_frame_pointer_offset (void) int offs = 0; bool got_really_used = false; - if (current_function_uses_pic_offset_table) + if (crtl->uses_pic_offset_table) { push_topmost_sequence (); got_really_used @@ -1703,7 +1703,7 @@ cris_simple_epilogue (void) || crtl->args.pretend_args_size || crtl->args.size || crtl->outgoing_args_size - || current_function_calls_eh_return + || crtl->calls_eh_return /* If we're not supposed to emit prologue and epilogue, we must not emit return-type instructions. */ @@ -1714,7 +1714,7 @@ cris_simple_epilogue (void) if (TARGET_V32 && cris_return_address_on_stack ()) return false; - if (current_function_uses_pic_offset_table) + if (crtl->uses_pic_offset_table) { push_topmost_sequence (); got_really_used @@ -2751,7 +2751,7 @@ cris_expand_prologue (void) CRIS_ASSERT (size >= 0); - if (current_function_uses_pic_offset_table) + if (crtl->uses_pic_offset_table) { /* A reference may have been optimized out (like the abort () in fde_split in unwind-dw2-fde.c, at least 3.2.1) so check that @@ -3030,7 +3030,7 @@ cris_expand_epilogue (void) if (!TARGET_PROLOGUE_EPILOGUE) return; - if (current_function_uses_pic_offset_table) + if (crtl->uses_pic_offset_table) { /* A reference may have been optimized out (like the abort () in fde_split in unwind-dw2-fde.c, at least 3.2.1) so check that @@ -3173,7 +3173,7 @@ cris_expand_epilogue (void) the return address on the stack. */ if (return_address_on_stack && pretend == 0) { - if (TARGET_V32 || current_function_calls_eh_return) + if (TARGET_V32 || crtl->calls_eh_return) { rtx mem; rtx insn; @@ -3189,7 +3189,7 @@ cris_expand_epilogue (void) REG_NOTES (insn) = alloc_EXPR_LIST (REG_INC, stack_pointer_rtx, REG_NOTES (insn)); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_addsi3 (stack_pointer_rtx, stack_pointer_rtx, gen_rtx_raw_REG (SImode, @@ -3231,7 +3231,7 @@ cris_expand_epilogue (void) } /* Perform the "physical" unwinding that the EH machinery calculated. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_addsi3 (stack_pointer_rtx, stack_pointer_rtx, gen_rtx_raw_REG (SImode, @@ -3484,7 +3484,7 @@ cris_expand_pic_call_address (rtx *opp) for v32. */ rtx tem, rm, ro; gcc_assert (can_create_pseudo_p ()); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; tem = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, op), TARGET_V32 ? CRIS_UNSPEC_PLT_PCREL @@ -3519,7 +3519,7 @@ cris_expand_pic_call_address (rtx *opp) rtx tem, mem, rm, ro; gcc_assert (can_create_pseudo_p ()); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; tem = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, op), CRIS_UNSPEC_PLTGOTREAD); rm = gen_reg_rtx (Pmode); @@ -3591,7 +3591,7 @@ cris_asm_output_symbol_ref (FILE *file, rtx x) assemble_name (file, str); /* Sanity check. */ - if (!TARGET_V32 && !current_function_uses_pic_offset_table) + if (!TARGET_V32 && !crtl->uses_pic_offset_table) output_operand_lossage ("PIC register isn't set up"); } else @@ -3608,7 +3608,7 @@ cris_asm_output_label_ref (FILE *file, char *buf) assemble_name (file, buf); /* Sanity check. */ - if (!TARGET_V32 && !current_function_uses_pic_offset_table) + if (!TARGET_V32 && !crtl->uses_pic_offset_table) internal_error ("emitting PIC operand, but PIC register isn't set up"); } else diff --git a/gcc/config/cris/cris.md b/gcc/config/cris/cris.md index 97353cd8df0..e466204786e 100644 --- a/gcc/config/cris/cris.md +++ b/gcc/config/cris/cris.md @@ -995,7 +995,7 @@ /* FIXME: add a REG_EQUAL (or is it REG_EQUIV) note to the destination register for the symbol. It might not be worth it. Measure. */ - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; if (t == cris_rel_symbol) { /* Change a "move.d sym(+offs),rN" into (allocate register rM) @@ -1025,7 +1025,7 @@ { /* We still uses GOT-relative addressing for pre-v32. */ - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; tem = gen_rtx_UNSPEC (Pmode, gen_rtvec (1, sym), CRIS_UNSPEC_GOTREL); if (offs != 0) diff --git a/gcc/config/crx/crx.h b/gcc/config/crx/crx.h index c636dec3fd4..c3e1e203113 100644 --- a/gcc/config/crx/crx.h +++ b/gcc/config/crx/crx.h @@ -277,7 +277,7 @@ enum reg_class #define FIRST_PARM_OFFSET(FNDECL) 0 -#define FRAME_POINTER_REQUIRED (current_function_calls_alloca) +#define FRAME_POINTER_REQUIRED (cfun->calls_alloca) #define ELIMINABLE_REGS \ { \ diff --git a/gcc/config/darwin.c b/gcc/config/darwin.c index 6c2de252fe3..38899833341 100644 --- a/gcc/config/darwin.c +++ b/gcc/config/darwin.c @@ -278,7 +278,7 @@ machopic_function_base_name (void) if (function_base == NULL) function_base = ggc_alloc_string ("<pic base>", sizeof ("<pic base>")); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; return function_base; } diff --git a/gcc/config/fr30/fr30.c b/gcc/config/fr30/fr30.c index 78f7775c658..1dd1a523ac0 100644 --- a/gcc/config/fr30/fr30.c +++ b/gcc/config/fr30/fr30.c @@ -140,7 +140,7 @@ static int fr30_arg_partial_bytes (CUMULATIVE_ARGS *, enum machine_mode, && ! call_used_regs [regno] ) #define MUST_SAVE_FRAME_POINTER (df_regs_ever_live_p (FRAME_POINTER_REGNUM) || frame_pointer_needed) -#define MUST_SAVE_RETURN_POINTER (df_regs_ever_live_p (RETURN_POINTER_REGNUM) || current_function_profile) +#define MUST_SAVE_RETURN_POINTER (df_regs_ever_live_p (RETURN_POINTER_REGNUM) || crtl->profile) #if UNITS_PER_WORD == 4 #define WORD_ALIGN(SIZE) (((SIZE) + 3) & ~3) @@ -349,7 +349,7 @@ fr30_expand_prologue (void) RTX_FRAME_RELATED_P (insn) = 1; } - if (current_function_profile) + if (crtl->profile) emit_insn (gen_blockage ()); } diff --git a/gcc/config/frv/frv.c b/gcc/config/frv/frv.c index badc45e7ab6..a89c8bb9416 100644 --- a/gcc/config/frv/frv.c +++ b/gcc/config/frv/frv.c @@ -1172,7 +1172,7 @@ frv_stack_info (void) for (regno = first; regno <= last; regno++) { if ((df_regs_ever_live_p (regno) && !call_used_regs[regno]) - || (current_function_calls_eh_return + || (crtl->calls_eh_return && (regno >= FIRST_EH_REGNUM && regno <= LAST_EH_REGNUM)) || (!TARGET_FDPIC && flag_pic && cfun->uses_pic_offset_table && regno == PIC_REGNO)) @@ -1957,7 +1957,7 @@ frv_expand_epilogue (bool emit_return) } /* If this function uses eh_return, add the final stack adjustment now. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_stack_adjust (sp, sp, EH_RETURN_STACKADJ_RTX)); if (emit_return) diff --git a/gcc/config/i386/i386.c b/gcc/config/i386/i386.c index 70b650b1658..2df9683f457 100644 --- a/gcc/config/i386/i386.c +++ b/gcc/config/i386/i386.c @@ -5783,7 +5783,7 @@ ix86_frame_pointer_required (void) || ix86_current_function_calls_tls_descriptor)) return 1; - if (current_function_profile) + if (crtl->profile) return 1; return 0; @@ -5993,7 +5993,7 @@ gen_push (rtx arg) static unsigned int ix86_select_alt_pic_regnum (void) { - if (current_function_is_leaf && !current_function_profile + if (current_function_is_leaf && !crtl->profile && !ix86_current_function_calls_tls_descriptor) { int i; @@ -6012,16 +6012,16 @@ ix86_save_reg (unsigned int regno, int maybe_eh_return) if (pic_offset_table_rtx && regno == REAL_PIC_OFFSET_TABLE_REGNUM && (df_regs_ever_live_p (REAL_PIC_OFFSET_TABLE_REGNUM) - || current_function_profile - || current_function_calls_eh_return - || current_function_uses_const_pool)) + || crtl->profile + || crtl->calls_eh_return + || crtl->uses_const_pool)) { if (ix86_select_alt_pic_regnum () != INVALID_REGNUM) return 0; return 1; } - if (current_function_calls_eh_return && maybe_eh_return) + if (crtl->calls_eh_return && maybe_eh_return) { unsigned i; for (i = 0; ; i++) @@ -6185,7 +6185,7 @@ ix86_compute_frame_layout (struct ix86_frame *frame) expander assumes that last crtl->outgoing_args_size of stack frame are unused. */ if (ACCUMULATE_OUTGOING_ARGS - && (!current_function_is_leaf || current_function_calls_alloca + && (!current_function_is_leaf || cfun->calls_alloca || ix86_current_function_calls_tls_descriptor)) { offset += crtl->outgoing_args_size; @@ -6196,7 +6196,7 @@ ix86_compute_frame_layout (struct ix86_frame *frame) /* Align stack boundary. Only needed if we're calling another function or using alloca. */ - if (!current_function_is_leaf || current_function_calls_alloca + if (!current_function_is_leaf || cfun->calls_alloca || ix86_current_function_calls_tls_descriptor) frame->padding2 = ((offset + preferred_alignment - 1) & -preferred_alignment) - offset; @@ -6246,7 +6246,7 @@ ix86_compute_frame_layout (struct ix86_frame *frame) (long)frame->hard_frame_pointer_offset); fprintf (stderr, "stack_pointer_offset: %ld\n", (long)frame->stack_pointer_offset); fprintf (stderr, "current_function_is_leaf: %ld\n", (long)current_function_is_leaf); - fprintf (stderr, "current_function_calls_alloca: %ld\n", (long)current_function_calls_alloca); + fprintf (stderr, "cfun->calls_alloca: %ld\n", (long)cfun->calls_alloca); fprintf (stderr, "x86_current_function_calls_tls_descriptor: %ld\n", (long)ix86_current_function_calls_tls_descriptor); #endif } @@ -6531,7 +6531,7 @@ ix86_expand_prologue (void) pic_reg_used = false; if (pic_offset_table_rtx && (df_regs_ever_live_p (REAL_PIC_OFFSET_TABLE_REGNUM) - || current_function_profile)) + || crtl->profile)) { unsigned int alt_pic_reg_used = ix86_select_alt_pic_regnum (); @@ -6566,7 +6566,7 @@ ix86_expand_prologue (void) /* Prevent function calls from being scheduled before the call to mcount. In the pic_reg_used case, make sure that the got load isn't deleted. */ - if (current_function_profile) + if (crtl->profile) { if (pic_reg_used) emit_insn (gen_prologue_use (pic_offset_table_rtx)); @@ -6621,7 +6621,7 @@ ix86_expand_epilogue (int style) eh_return: the eax and edx registers are marked as saved, but not restored along this path. */ offset = frame.nregs; - if (current_function_calls_eh_return && style != 2) + if (crtl->calls_eh_return && style != 2) offset -= 2; offset *= -UNITS_PER_WORD; @@ -6643,7 +6643,7 @@ ix86_expand_epilogue (int style) || (frame_pointer_needed && TARGET_USE_LEAVE && cfun->machine->use_fast_prologue_epilogue && frame.nregs == 1) - || current_function_calls_eh_return) + || crtl->calls_eh_return) { /* Restore registers. We can use ebp or esp to address the memory locations. If both are available, default to ebp, since offsets diff --git a/gcc/config/i386/linux.h b/gcc/config/i386/linux.h index ac8149885fc..ec5dc4e2230 100644 --- a/gcc/config/i386/linux.h +++ b/gcc/config/i386/linux.h @@ -55,7 +55,7 @@ along with GCC; see the file COPYING3. If not see frame, so we cannot allow profiling without a frame pointer. */ #undef SUBTARGET_FRAME_POINTER_REQUIRED -#define SUBTARGET_FRAME_POINTER_REQUIRED current_function_profile +#define SUBTARGET_FRAME_POINTER_REQUIRED crtl->profile #undef SIZE_TYPE #define SIZE_TYPE "unsigned int" diff --git a/gcc/config/ia64/ia64.c b/gcc/config/ia64/ia64.c index 5b48eba14f5..22d0c0a3ce1 100644 --- a/gcc/config/ia64/ia64.c +++ b/gcc/config/ia64/ia64.c @@ -2379,7 +2379,7 @@ ia64_compute_frame_size (HOST_WIDE_INT size) Likewise for -a profiling for the bb_init_func argument. For -ax profiling, we need two output registers for the two bb_init_trace_func arguments. */ - if (current_function_profile) + if (crtl->profile) i = MAX (i, 1); #endif current_frame_info.n_output_regs = i; @@ -2460,7 +2460,7 @@ ia64_compute_frame_size (HOST_WIDE_INT size) /* Similarly for gp. Note that if we're calling setjmp, the stacked registers are clobbered, so we fall back to the stack. */ current_frame_info.r[reg_save_gp] - = (current_function_calls_setjmp ? 0 : find_gr_spill (reg_save_gp, 1)); + = (cfun->calls_setjmp ? 0 : find_gr_spill (reg_save_gp, 1)); if (current_frame_info.r[reg_save_gp] == 0) { SET_HARD_REG_BIT (mask, GR_REG (1)); @@ -5058,7 +5058,7 @@ ia64_secondary_reload_class (enum reg_class class, /* ??? This happens if we cse/gcse a BImode value across a call, and the function has a nonlocal goto. This is because global does not allocate call crossing pseudos to hard registers when - current_function_has_nonlocal_goto is true. This is relatively + crtl->has_nonlocal_goto is true. This is relatively common for C++ programs that use exceptions. To reproduce, return NO_REGS and compile libstdc++. */ if (GET_CODE (x) == MEM) diff --git a/gcc/config/iq2000/iq2000.c b/gcc/config/iq2000/iq2000.c index 1baf6eb73bb..995b93bdc1d 100644 --- a/gcc/config/iq2000/iq2000.c +++ b/gcc/config/iq2000/iq2000.c @@ -1619,7 +1619,7 @@ compute_frame_size (HOST_WIDE_INT size) /* If a function dynamically allocates the stack and has 0 for STACK_DYNAMIC_OFFSET then allocate some stack space. */ - if (args_size == 0 && current_function_calls_alloca) + if (args_size == 0 && cfun->calls_alloca) args_size = 4 * UNITS_PER_WORD; total_size = var_size + args_size + extra_size; @@ -1635,7 +1635,7 @@ compute_frame_size (HOST_WIDE_INT size) } /* We need to restore these for the handler. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i; @@ -2064,7 +2064,7 @@ iq2000_expand_epilogue (void) save_restore_insns (0); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { rtx eh_ofs = EH_RETURN_STACKADJ_RTX; emit_insn (gen_addsi3 (eh_ofs, eh_ofs, tsize_rtx)); @@ -2073,14 +2073,14 @@ iq2000_expand_epilogue (void) emit_insn (gen_blockage ()); - if (tsize != 0 || current_function_calls_eh_return) + if (tsize != 0 || crtl->calls_eh_return) { emit_insn (gen_addsi3 (stack_pointer_rtx, stack_pointer_rtx, tsize_rtx)); } } - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { /* Perform the additional bump for __throw. */ emit_move_insn (gen_rtx_REG (Pmode, HARD_FRAME_POINTER_REGNUM), diff --git a/gcc/config/m32r/m32r.c b/gcc/config/m32r/m32r.c index ea4e7f85c5c..64b7e5f63ab 100644 --- a/gcc/config/m32r/m32r.c +++ b/gcc/config/m32r/m32r.c @@ -1253,7 +1253,7 @@ static struct m32r_frame_info zero_frame_info; && (df_regs_ever_live_p (regno) && (!call_really_used_regs[regno] || interrupt_p))) #define MUST_SAVE_FRAME_POINTER (df_regs_ever_live_p (FRAME_POINTER_REGNUM)) -#define MUST_SAVE_RETURN_ADDR (df_regs_ever_live_p (RETURN_ADDR_REGNUM) || current_function_profile) +#define MUST_SAVE_RETURN_ADDR (df_regs_ever_live_p (RETURN_ADDR_REGNUM) || crtl->profile) #define SHORT_INSN_SIZE 2 /* Size of small instructions. */ #define LONG_INSN_SIZE 4 /* Size of long instructions. */ @@ -1272,8 +1272,8 @@ m32r_compute_frame_size (int size) /* # of var. bytes allocated. */ unsigned int gmask; enum m32r_function_type fn_type; int interrupt_p; - int pic_reg_used = flag_pic && (current_function_uses_pic_offset_table - | current_function_profile); + int pic_reg_used = flag_pic && (crtl->uses_pic_offset_table + | crtl->profile); var_size = M32R_STACK_ALIGN (size); args_size = M32R_STACK_ALIGN (crtl->outgoing_args_size); @@ -1372,8 +1372,8 @@ m32r_expand_prologue (void) int regno; int frame_size; unsigned int gmask; - int pic_reg_used = flag_pic && (current_function_uses_pic_offset_table - | current_function_profile); + int pic_reg_used = flag_pic && (crtl->uses_pic_offset_table + | crtl->profile); if (! current_frame_info.initialized) m32r_compute_frame_size (get_frame_size ()); @@ -1434,7 +1434,7 @@ m32r_expand_prologue (void) if (frame_pointer_needed) emit_insn (gen_movsi (frame_pointer_rtx, stack_pointer_rtx)); - if (current_function_profile) + if (crtl->profile) /* Push lr for mcount (form_pc, x). */ emit_insn (gen_movsi_push (stack_pointer_rtx, gen_rtx_REG (Pmode, RETURN_ADDR_REGNUM))); @@ -1443,10 +1443,10 @@ m32r_expand_prologue (void) { m32r_load_pic_register (); m32r_reload_lr (stack_pointer_rtx, - (current_function_profile ? 0 : frame_size)); + (crtl->profile ? 0 : frame_size)); } - if (current_function_profile && !pic_reg_used) + if (crtl->profile && !pic_reg_used) emit_insn (gen_blockage ()); } @@ -1519,7 +1519,7 @@ m32r_expand_epilogue (void) unsigned int var_size = current_frame_info.var_size; unsigned int args_size = current_frame_info.args_size; unsigned int gmask = current_frame_info.gmask; - int can_trust_sp_p = !current_function_calls_alloca; + int can_trust_sp_p = !cfun->calls_alloca; if (flag_exceptions) emit_insn (gen_blockage ()); @@ -1664,7 +1664,7 @@ m32r_legitimize_pic_address (rtx orig, rtx reg) else address = reg; - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; if (GET_CODE (orig) == LABEL_REF || (GET_CODE (orig) == SYMBOL_REF && SYMBOL_REF_LOCAL_P (orig))) diff --git a/gcc/config/m32r/m32r.h b/gcc/config/m32r/m32r.h index d1ac1c81d21..0c9e31853ed 100644 --- a/gcc/config/m32r/m32r.h +++ b/gcc/config/m32r/m32r.h @@ -768,7 +768,7 @@ extern enum reg_class m32r_regno_reg_class[FIRST_PSEUDO_REGISTER]; /* A C expression which is nonzero if a function must have and use a frame pointer. This expression is evaluated in the reload pass. If its value is nonzero the function will have a frame pointer. */ -#define FRAME_POINTER_REQUIRED current_function_calls_alloca +#define FRAME_POINTER_REQUIRED cfun->calls_alloca #if 0 /* C statement to store the difference between the frame pointer diff --git a/gcc/config/m32r/m32r.md b/gcc/config/m32r/m32r.md index 84cf4f954e0..b33f624edde 100644 --- a/gcc/config/m32r/m32r.md +++ b/gcc/config/m32r/m32r.md @@ -2354,7 +2354,7 @@ " { if (flag_pic) - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; }") (define_insn "*call_via_reg" @@ -2409,7 +2409,7 @@ " { if (flag_pic) - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; }") (define_insn "*call_value_via_reg" @@ -2433,7 +2433,7 @@ int call26_p = call26_operand (operands[1], FUNCTION_MODE); if (flag_pic) - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; if (! call26_p) { diff --git a/gcc/config/m68k/m68k.c b/gcc/config/m68k/m68k.c index 0c38fbdfd19..3fdd756ada9 100644 --- a/gcc/config/m68k/m68k.c +++ b/gcc/config/m68k/m68k.c @@ -863,20 +863,20 @@ m68k_save_reg (unsigned int regno, bool interrupt_handler) { if (flag_pic && regno == PIC_REG) { - if (current_function_saves_all_registers) + if (crtl->saves_all_registers) return true; - if (current_function_uses_pic_offset_table) + if (crtl->uses_pic_offset_table) return true; /* Reload may introduce constant pool references into a function that thitherto didn't need a PIC register. Note that the test above will not catch that case because we will only set - current_function_uses_pic_offset_table when emitting + crtl->uses_pic_offset_table when emitting the address reloads. */ - if (current_function_uses_const_pool) + if (crtl->uses_const_pool) return true; } - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i; for (i = 0; ; i++) @@ -986,7 +986,7 @@ m68k_expand_prologue (void) /* If the stack limit is a symbol, we can check it here, before actually allocating the space. */ - if (current_function_limit_stack + if (crtl->limit_stack && GET_CODE (stack_limit_rtx) == SYMBOL_REF) { limit = plus_constant (stack_limit_rtx, current_frame.size + 4); @@ -1073,7 +1073,7 @@ m68k_expand_prologue (void) /* If the stack limit is not a symbol, check it here. This has the disadvantage that it may be too late... */ - if (current_function_limit_stack) + if (crtl->limit_stack) { if (REG_P (stack_limit_rtx)) { @@ -1119,7 +1119,7 @@ m68k_expand_prologue (void) if (flag_pic && !TARGET_SEP_DATA - && current_function_uses_pic_offset_table) + && crtl->uses_pic_offset_table) insn = emit_insn (gen_load_got (pic_offset_table_rtx)); } @@ -1160,7 +1160,7 @@ m68k_expand_epilogue (bool sibcall_p) What we really need to know there is if there could be pending stack adjustment needed at that point. */ restore_from_sp = (!frame_pointer_needed - || (!current_function_calls_alloca + || (!cfun->calls_alloca && current_function_is_leaf)); /* fsize_with_regs is the size we need to adjust the sp when @@ -1298,7 +1298,7 @@ m68k_expand_epilogue (bool sibcall_p) stack_pointer_rtx, GEN_INT (fsize_with_regs))); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_addsi3 (stack_pointer_rtx, stack_pointer_rtx, EH_RETURN_STACKADJ_RTX)); @@ -2046,7 +2046,7 @@ legitimize_pic_address (rtx orig, enum machine_mode mode ATTRIBUTE_UNUSED, pic_ref = gen_rtx_MEM (Pmode, gen_rtx_PLUS (Pmode, pic_offset_table_rtx, orig)); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; MEM_READONLY_P (pic_ref) = 1; emit_move_insn (reg, pic_ref); return reg; diff --git a/gcc/config/mcore/mcore.c b/gcc/config/mcore/mcore.c index d9d3398b498..940c833dc3e 100644 --- a/gcc/config/mcore/mcore.c +++ b/gcc/config/mcore/mcore.c @@ -1938,7 +1938,7 @@ mcore_expand_prolog (void) ASM_OUTPUT_CG_NODE (asm_out_file, mcore_current_function_name, space_allocated); - if (current_function_calls_alloca) + if (cfun->calls_alloca) ASM_OUTPUT_CG_EDGE (asm_out_file, mcore_current_function_name, "alloca", 1); /* 970425: RBE: diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index d69169f13a7..94a14274533 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -7656,12 +7656,12 @@ mips_global_pointer (void) /* FUNCTION_PROFILER includes a jal macro, so we need to give it a valid gp. */ - if (current_function_profile) + if (crtl->profile) return GLOBAL_POINTER_REGNUM; /* If the function has a nonlocal goto, $gp must hold the correct global pointer for the target function. */ - if (current_function_has_nonlocal_goto) + if (crtl->has_nonlocal_goto) return GLOBAL_POINTER_REGNUM; /* If the gp is never referenced, there's no need to initialize it. @@ -7678,7 +7678,7 @@ mips_global_pointer (void) In cases like these, reload will have added the constant to the pool but no instruction will yet refer to it. */ if (!df_regs_ever_live_p (GLOBAL_POINTER_REGNUM) - && !current_function_uses_const_pool + && !crtl->uses_const_pool && !mips_function_has_gp_insn ()) return 0; @@ -7719,7 +7719,7 @@ mips_save_reg_p (unsigned int regno) return TARGET_CALL_SAVED_GP && cfun->machine->global_pointer == regno; /* Check call-saved registers. */ - if ((current_function_saves_all_registers || df_regs_ever_live_p (regno)) + if ((crtl->saves_all_registers || df_regs_ever_live_p (regno)) && !call_really_used_regs[regno]) return true; @@ -7737,7 +7737,7 @@ mips_save_reg_p (unsigned int regno) return true; /* Check for registers that must be saved for FUNCTION_PROFILER. */ - if (current_function_profile && MIPS_SAVE_REG_FOR_PROFILING_P (regno)) + if (crtl->profile && MIPS_SAVE_REG_FOR_PROFILING_P (regno)) return true; /* We need to save the incoming return address if it is ever clobbered @@ -7746,7 +7746,7 @@ mips_save_reg_p (unsigned int regno) value in FPRs. */ if (regno == GP_REG_FIRST + 31 && (df_regs_ever_live_p (regno) - || current_function_calls_eh_return + || crtl->calls_eh_return || mips16_cfun_returns_in_fpr_p ())) return true; @@ -7837,7 +7837,7 @@ mips_compute_frame_info (void) allocate the stack and have 0 for STACK_DYNAMIC_OFFSET, since it looks like we are trying to create a second frame pointer to the function, so allocate some stack space to make it happy. */ - if (current_function_calls_alloca) + if (cfun->calls_alloca) frame->args_size = REG_PARM_STACK_SPACE (cfun->decl); else frame->args_size = 0; @@ -7864,7 +7864,7 @@ mips_compute_frame_info (void) /* If this function calls eh_return, we must also save and restore the EH data registers. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; i++) { frame->num_gp++; @@ -7952,7 +7952,7 @@ mips_frame_pointer_required (void) { /* If the function contains dynamic stack allocations, we need to use the frame pointer to access the static parts of the frame. */ - if (current_function_calls_alloca) + if (cfun->calls_alloca) return true; /* In MIPS16 mode, we need a frame pointer for a large frame; otherwise, @@ -8489,7 +8489,7 @@ mips_expand_prologue (void) /* If we are profiling, make sure no instructions are scheduled before the call to mcount. */ - if (current_function_profile) + if (crtl->profile) emit_insn (gen_blockage ()); } @@ -8627,7 +8627,7 @@ mips_expand_epilogue (bool sibcall_p) /* Add in the __builtin_eh_return stack adjustment. We need to use a temporary in MIPS16 code. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { if (TARGET_MIPS16) { @@ -8669,7 +8669,7 @@ mips_can_use_return_insn (void) if (!reload_completed) return false; - if (current_function_profile) + if (crtl->profile) return false; /* In MIPS16 mode, a function that returns a floating-point value @@ -11475,7 +11475,7 @@ mips_reorg_process_insns (void) /* Profiled functions can't be all noreorder because the profiler support uses assembler macros. */ - if (current_function_profile) + if (crtl->profile) cfun->machine->all_noreorder_p = false; /* Code compiled with -mfix-vr4120 can't be all noreorder because diff --git a/gcc/config/mmix/mmix.c b/gcc/config/mmix/mmix.c index 3a408438c62..2807d08d956 100644 --- a/gcc/config/mmix/mmix.c +++ b/gcc/config/mmix/mmix.c @@ -69,7 +69,7 @@ along with GCC; see the file COPYING3. If not see || !leaf_function_p ())) #define IS_MMIX_EH_RETURN_DATA_REG(REGNO) \ - (current_function_calls_eh_return \ + (crtl->calls_eh_return \ && (EH_RETURN_DATA_REGNO (0) == REGNO \ || EH_RETURN_DATA_REGNO (1) == REGNO \ || EH_RETURN_DATA_REGNO (2) == REGNO \ @@ -96,7 +96,7 @@ along with GCC; see the file COPYING3. If not see #define MMIX_POP_ARGUMENT() \ ((! TARGET_ABI_GNU \ && crtl->return_rtx != NULL \ - && ! current_function_returns_struct) \ + && ! cfun->returns_struct) \ ? (GET_CODE (crtl->return_rtx) == PARALLEL \ ? GET_NUM_ELEM (XVEC (crtl->return_rtx, 0)) : 1) \ : 0) @@ -2207,7 +2207,7 @@ mmix_expand_epilogue (void) if (stack_space_to_deallocate != 0) mmix_emit_sp_add (stack_space_to_deallocate); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) /* Adjust the (normal) stack-pointer to that of the receiver. FIXME: It would be nice if we could also adjust the register stack here, but we need to express it through DWARF 2 too. */ diff --git a/gcc/config/mmix/mmix.h b/gcc/config/mmix/mmix.h index 19aab6f4b27..7e38eab1941 100644 --- a/gcc/config/mmix/mmix.h +++ b/gcc/config/mmix/mmix.h @@ -591,7 +591,7 @@ enum reg_class /* Node: Elimination */ /* FIXME: Is this requirement built-in? Anyway, we should try to get rid of it; we can deduce the value. */ -#define FRAME_POINTER_REQUIRED current_function_has_nonlocal_label +#define FRAME_POINTER_REQUIRED cfun->has_nonlocal_label /* The frame-pointer is stored in a location that either counts to the offset of incoming parameters, or that counts to the offset of the diff --git a/gcc/config/mn10300/mn10300.c b/gcc/config/mn10300/mn10300.c index 1effca34473..ea7392bb0f9 100644 --- a/gcc/config/mn10300/mn10300.c +++ b/gcc/config/mn10300/mn10300.c @@ -1599,7 +1599,7 @@ mn10300_function_value (const_tree valtype, const_tree func, int outgoing) if (! POINTER_TYPE_P (valtype)) return gen_rtx_REG (mode, FIRST_DATA_REGNUM); else if (! TARGET_PTR_A0D0 || ! outgoing - || current_function_returns_struct) + || cfun->returns_struct) return gen_rtx_REG (mode, FIRST_ADDRESS_REGNUM); rv = gen_rtx_PARALLEL (mode, rtvec_alloc (2)); diff --git a/gcc/config/mt/mt.h b/gcc/config/mt/mt.h index 67a8185573d..de20d40eb5a 100644 --- a/gcc/config/mt/mt.h +++ b/gcc/config/mt/mt.h @@ -422,7 +422,7 @@ enum save_direction handlers. */ \ || (interrupt_handler && call_used_regs[regno] \ && !current_function_is_leaf) \ - ||(current_function_calls_eh_return \ + ||(crtl->calls_eh_return \ && (regno == GPR_R7 || regno == GPR_R8)) \ ) \ ) diff --git a/gcc/config/pa/pa.c b/gcc/config/pa/pa.c index 3fff521df55..525572eb7c0 100644 --- a/gcc/config/pa/pa.c +++ b/gcc/config/pa/pa.c @@ -698,7 +698,7 @@ legitimize_pic_address (rtx orig, enum machine_mode mode, rtx reg) REG_NOTES (insn)); LABEL_NUSES (orig)++; } - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; return reg; } if (GET_CODE (orig) == SYMBOL_REF) @@ -745,7 +745,7 @@ legitimize_pic_address (rtx orig, enum machine_mode mode, rtx reg) UNSPEC_DLTIND14R))); } - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; mark_reg_pointer (reg, BITS_PER_UNIT); insn = emit_move_insn (reg, pic_ref); @@ -3531,7 +3531,7 @@ compute_frame_size (HOST_WIDE_INT size, int *fregs_live) /* If the current function calls __builtin_eh_return, then we need to allocate stack space for registers that will hold data for the exception handler. */ - if (DO_FRAME_NOTES && current_function_calls_eh_return) + if (DO_FRAME_NOTES && crtl->calls_eh_return) { unsigned int i; @@ -3679,7 +3679,7 @@ hppa_expand_prologue (void) /* Save RP first. The calling conventions manual states RP will always be stored into the caller's frame at sp - 20 or sp - 16 depending on which ABI is in use. */ - if (df_regs_ever_live_p (2) || current_function_calls_eh_return) + if (df_regs_ever_live_p (2) || crtl->calls_eh_return) { store_reg (2, TARGET_64BIT ? -16 : -20, STACK_POINTER_REGNUM); rp_saved = true; @@ -3779,7 +3779,7 @@ hppa_expand_prologue (void) /* Saving the EH return data registers in the frame is the simplest way to get the frame unwind information emitted. We put them just before the general registers. */ - if (DO_FRAME_NOTES && current_function_calls_eh_return) + if (DO_FRAME_NOTES && crtl->calls_eh_return) { unsigned int i, regno; @@ -3811,7 +3811,7 @@ hppa_expand_prologue (void) /* Saving the EH return data registers in the frame is the simplest way to get the frame unwind information emitted. */ - if (DO_FRAME_NOTES && current_function_calls_eh_return) + if (DO_FRAME_NOTES && crtl->calls_eh_return) { unsigned int i, regno; @@ -4113,7 +4113,7 @@ hppa_expand_epilogue (void) /* If the current function calls __builtin_eh_return, then we need to restore the saved EH data registers. */ - if (DO_FRAME_NOTES && current_function_calls_eh_return) + if (DO_FRAME_NOTES && crtl->calls_eh_return) { unsigned int i, regno; @@ -4141,7 +4141,7 @@ hppa_expand_epilogue (void) /* If the current function calls __builtin_eh_return, then we need to restore the saved EH data registers. */ - if (DO_FRAME_NOTES && current_function_calls_eh_return) + if (DO_FRAME_NOTES && crtl->calls_eh_return) { unsigned int i, regno; @@ -4238,7 +4238,7 @@ hppa_expand_epilogue (void) if (ret_off != 0) load_reg (2, ret_off, STACK_POINTER_REGNUM); - if (DO_FRAME_NOTES && current_function_calls_eh_return) + if (DO_FRAME_NOTES && crtl->calls_eh_return) { rtx sa = EH_RETURN_STACKADJ_RTX; @@ -8496,7 +8496,7 @@ borx_reg_operand (rtx op, enum machine_mode mode) profitable to do so when the frame pointer is being eliminated. */ if (!reload_completed && flag_omit_frame_pointer - && !current_function_calls_alloca + && !cfun->calls_alloca && op == frame_pointer_rtx) return 0; diff --git a/gcc/config/pa/pa.h b/gcc/config/pa/pa.h index bcbacb4c69c..541f2e3069f 100644 --- a/gcc/config/pa/pa.h +++ b/gcc/config/pa/pa.h @@ -366,13 +366,13 @@ typedef struct machine_function GTY(()) /* Value should be nonzero if functions must have frame pointers. */ #define FRAME_POINTER_REQUIRED \ - (current_function_calls_alloca) + (cfun->calls_alloca) /* Don't allow hard registers to be renamed into r2 unless r2 is already live or already being saved (due to eh). */ #define HARD_REGNO_RENAME_OK(OLD_REG, NEW_REG) \ - ((NEW_REG) != 2 || df_regs_ever_live_p (2) || current_function_calls_eh_return) + ((NEW_REG) != 2 || df_regs_ever_live_p (2) || crtl->calls_eh_return) /* C statement to store the difference between the frame pointer and the stack pointer values immediately after the function prologue. @@ -791,7 +791,7 @@ extern int may_call_alloca; #define EXIT_IGNORE_STACK \ (get_frame_size () != 0 \ - || current_function_calls_alloca || crtl->outgoing_args_size) + || cfun->calls_alloca || crtl->outgoing_args_size) /* Output assembler code for a block containing the constant parts of a trampoline, leaving space for the variable parts.\ diff --git a/gcc/config/pa/pa.md b/gcc/config/pa/pa.md index ee6037a75b6..5f1d73893fd 100644 --- a/gcc/config/pa/pa.md +++ b/gcc/config/pa/pa.md @@ -7275,7 +7275,7 @@ (use (reg:SI 2))] "!TARGET_NO_SPACE_REGS && !TARGET_PA_20 - && flag_pic && current_function_calls_eh_return" + && flag_pic && crtl->calls_eh_return" "ldsid (%%sr0,%%r2),%%r1\;mtsp %%r1,%%sr0\;be%* 0(%%sr0,%%r2)" [(set_attr "type" "branch") (set_attr "length" "12")]) @@ -7317,7 +7317,7 @@ using space registers. */ if (!TARGET_NO_SPACE_REGS && !TARGET_PA_20 - && flag_pic && current_function_calls_eh_return) + && flag_pic && crtl->calls_eh_return) x = gen_return_external_pic (); else x = gen_return_internal (); diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index bf209630a48..ec9f83173d4 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -11465,7 +11465,7 @@ rs6000_got_register (rtx value ATTRIBUTE_UNUSED) && !df_regs_ever_live_p (RS6000_PIC_OFFSET_TABLE_REGNUM)) df_set_regs_ever_live (RS6000_PIC_OFFSET_TABLE_REGNUM, true); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; return pic_offset_table_rtx; } @@ -14144,7 +14144,7 @@ first_reg_to_save (void) #if TARGET_MACHO if (flag_pic - && current_function_uses_pic_offset_table + && crtl->uses_pic_offset_table && first_reg > RS6000_PIC_OFFSET_TABLE_REGNUM) return RS6000_PIC_OFFSET_TABLE_REGNUM; #endif @@ -14181,7 +14181,7 @@ first_altivec_reg_to_save (void) /* On Darwin, the unwind routines are compiled without TARGET_ALTIVEC, and use save_world to save/restore the altivec registers when necessary. */ - if (DEFAULT_ABI == ABI_DARWIN && current_function_calls_eh_return + if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return && ! TARGET_ALTIVEC) return FIRST_ALTIVEC_REGNO + 20; @@ -14205,7 +14205,7 @@ compute_vrsave_mask (void) /* On Darwin, the unwind routines are compiled without TARGET_ALTIVEC, and use save_world to save/restore the call-saved altivec registers when necessary. */ - if (DEFAULT_ABI == ABI_DARWIN && current_function_calls_eh_return + if (DEFAULT_ABI == ABI_DARWIN && crtl->calls_eh_return && ! TARGET_ALTIVEC) mask |= 0xFFF; @@ -14247,7 +14247,7 @@ compute_save_world_info (rs6000_stack_t *info_ptr) info_ptr->world_save_p = (WORLD_SAVE_P (info_ptr) && DEFAULT_ABI == ABI_DARWIN - && ! (current_function_calls_setjmp && flag_exceptions) + && ! (cfun->calls_setjmp && flag_exceptions) && info_ptr->first_fp_reg_save == FIRST_SAVED_FP_REGNO && info_ptr->first_gp_reg_save == FIRST_SAVED_GP_REGNO && info_ptr->first_altivec_reg_save == FIRST_SAVED_ALTIVEC_REGNO @@ -14432,7 +14432,7 @@ rs6000_stack_info (void) if (((TARGET_TOC && TARGET_MINIMAL_TOC) || (flag_pic == 1 && DEFAULT_ABI == ABI_V4) || (flag_pic && DEFAULT_ABI == ABI_DARWIN)) - && current_function_uses_const_pool + && crtl->uses_const_pool && info_ptr->first_gp_reg_save > RS6000_PIC_OFFSET_TABLE_REGNUM) first_gp = RS6000_PIC_OFFSET_TABLE_REGNUM; else @@ -14468,14 +14468,14 @@ rs6000_stack_info (void) /* Determine if we need to save the link register. */ if ((DEFAULT_ABI == ABI_AIX - && current_function_profile + && crtl->profile && !TARGET_PROFILE_KERNEL) #ifdef TARGET_RELOCATABLE || (TARGET_RELOCATABLE && (get_pool_size () != 0)) #endif || (info_ptr->first_fp_reg_save != 64 && !FP_SAVE_INLINE (info_ptr->first_fp_reg_save)) - || (DEFAULT_ABI == ABI_V4 && current_function_calls_alloca) + || (DEFAULT_ABI == ABI_V4 && cfun->calls_alloca) || info_ptr->calls_p || rs6000_ra_ever_killed ()) { @@ -14496,7 +14496,7 @@ rs6000_stack_info (void) /* If the current function calls __builtin_eh_return, then we need to allocate stack space for registers that will hold data for the exception handler. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i; for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM; ++i) @@ -14715,9 +14715,9 @@ spe_func_has_64bit_regs_p (void) /* Functions that save and restore all the call-saved registers will need to save/restore the registers in 64-bits. */ - if (current_function_calls_eh_return - || current_function_calls_setjmp - || current_function_has_nonlocal_goto) + if (crtl->calls_eh_return + || cfun->calls_setjmp + || crtl->has_nonlocal_goto) return true; insns = get_insns (); @@ -14969,7 +14969,7 @@ rs6000_ra_ever_killed (void) rtx reg; rtx insn; - if (current_function_is_thunk) + if (crtl->is_thunk) return 0; /* regs_ever_live has LR marked as used if any sibcalls are present, @@ -15125,7 +15125,7 @@ rs6000_emit_eh_reg_restore (rtx source, rtx scratch) rtx tmp; if (frame_pointer_needed - || current_function_calls_alloca + || cfun->calls_alloca || info->total_size > 32767) { tmp = gen_frame_mem (Pmode, frame_rtx); @@ -15264,7 +15264,7 @@ rs6000_emit_allocate_stack (HOST_WIDE_INT size, int copy_r12) return; } - if (current_function_limit_stack) + if (crtl->limit_stack) { if (REG_P (stack_limit_rtx) && REGNO (stack_limit_rtx) > 1 @@ -15620,14 +15620,14 @@ rs6000_emit_prologue (void) && no_global_regs_above (info->first_gp_reg_save)); saving_FPRs_inline = (info->first_fp_reg_save == 64 || FP_SAVE_INLINE (info->first_fp_reg_save) - || current_function_calls_eh_return + || crtl->calls_eh_return || cfun->machine->ra_need_lr); /* For V.4, update stack before we do any saving and set back pointer. */ if (! WORLD_SAVE_P (info) && info->push_p && (DEFAULT_ABI == ABI_V4 - || current_function_calls_eh_return)) + || crtl->calls_eh_return)) { if (info->total_size < 32767) sp_offset = info->total_size; @@ -15670,7 +15670,7 @@ rs6000_emit_prologue (void) && info->cr_save_offset == 4 && info->push_p && info->lr_save_p - && (!current_function_calls_eh_return + && (!crtl->calls_eh_return || info->ehrd_offset == -432) && info->vrsave_save_offset == -224 && info->altivec_save_offset == -416); @@ -15967,7 +15967,7 @@ rs6000_emit_prologue (void) /* ??? There's no need to emit actual instructions here, but it's the easiest way to get the frame unwind information emitted. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i, regno; @@ -16033,7 +16033,7 @@ rs6000_emit_prologue (void) /* Update stack and set back pointer unless this is V.4, for which it was done previously. */ if (!WORLD_SAVE_P (info) && info->push_p - && !(DEFAULT_ABI == ABI_V4 || current_function_calls_eh_return)) + && !(DEFAULT_ABI == ABI_V4 || crtl->calls_eh_return)) { if (info->total_size < 32767) sp_offset = info->total_size; @@ -16161,7 +16161,7 @@ rs6000_emit_prologue (void) #if TARGET_MACHO if (DEFAULT_ABI == ABI_DARWIN - && flag_pic && current_function_uses_pic_offset_table) + && flag_pic && crtl->uses_pic_offset_table) { rtx lr = gen_rtx_REG (Pmode, LR_REGNO); rtx src = machopic_function_base_sym (); @@ -16280,11 +16280,11 @@ rs6000_emit_epilogue (int sibcall) && info->first_gp_reg_save < 31 && no_global_regs_above (info->first_gp_reg_save)); restoring_FPRs_inline = (sibcall - || current_function_calls_eh_return + || crtl->calls_eh_return || info->first_fp_reg_save == 64 || FP_SAVE_INLINE (info->first_fp_reg_save)); use_backchain_to_restore_sp = (frame_pointer_needed - || current_function_calls_alloca + || cfun->calls_alloca || info->total_size > 32767); using_mtcr_multiple = (rs6000_cpu == PROCESSOR_PPC601 || rs6000_cpu == PROCESSOR_PPC603 @@ -16311,7 +16311,7 @@ rs6000_emit_epilogue (int sibcall) + LAST_ALTIVEC_REGNO + 1 - info->first_altivec_reg_save + 63 + 1 - info->first_fp_reg_save); - strcpy (rname, ((current_function_calls_eh_return) ? + strcpy (rname, ((crtl->calls_eh_return) ? "*eh_rest_world_r10" : "*rest_world")); alloc_rname = ggc_strdup (rname); @@ -16473,7 +16473,7 @@ rs6000_emit_epilogue (int sibcall) } else if (info->push_p && DEFAULT_ABI != ABI_V4 - && !current_function_calls_eh_return) + && !crtl->calls_eh_return) { emit_insn (TARGET_32BIT ? gen_addsi3 (sp_reg_rtx, sp_reg_rtx, @@ -16553,7 +16553,7 @@ rs6000_emit_epilogue (int sibcall) gen_rtx_REG (Pmode, 0)); /* Load exception handler data registers, if needed. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i, regno; @@ -16750,7 +16750,7 @@ rs6000_emit_epilogue (int sibcall) : gen_adddi3 (sp_reg_rtx, sp_reg_rtx, GEN_INT (sp_offset))); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { rtx sa = EH_RETURN_STACKADJ_RTX; emit_insn (TARGET_32BIT @@ -16880,7 +16880,7 @@ rs6000_output_function_epilogue (FILE *file, System V.4 Powerpc's (and the embedded ABI derived from it) use a different traceback table. */ if (DEFAULT_ABI == ABI_AIX && ! flag_inhibit_size_directive - && rs6000_traceback != traceback_none && !current_function_is_thunk) + && rs6000_traceback != traceback_none && !crtl->is_thunk) { const char *fname = NULL; const char *language_string = lang_hooks.name; @@ -17864,13 +17864,13 @@ output_profile_hook (int labelno ATTRIBUTE_UNUSED) int caller_addr_regno = LR_REGNO; /* Be conservative and always set this, at least for now. */ - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; #if TARGET_MACHO /* For PIC code, set up a stub and collect the caller's address from r0, which is where the prologue puts it. */ if (MACHOPIC_INDIRECT - && current_function_uses_pic_offset_table) + && crtl->uses_pic_offset_table) caller_addr_regno = 0; #endif emit_library_call (gen_rtx_SYMBOL_REF (Pmode, mcount_name), @@ -20646,7 +20646,7 @@ rs6000_elf_declare_function_name (FILE *file, const char *name, tree decl) if (TARGET_RELOCATABLE && !TARGET_SECURE_PLT - && (get_pool_size () != 0 || current_function_profile) + && (get_pool_size () != 0 || crtl->profile) && uses_TOC ()) { char buf[256]; diff --git a/gcc/config/rs6000/rs6000.h b/gcc/config/rs6000/rs6000.h index ed20d8bd024..1bde282172b 100644 --- a/gcc/config/rs6000/rs6000.h +++ b/gcc/config/rs6000/rs6000.h @@ -1552,7 +1552,7 @@ typedef struct rs6000_args #define EPILOGUE_USES(REGNO) \ ((reload_completed && (REGNO) == LR_REGNO) \ || (TARGET_ALTIVEC && (REGNO) == VRSAVE_REGNO) \ - || (current_function_calls_eh_return \ + || (crtl->calls_eh_return \ && TARGET_AIX \ && (REGNO) == 2)) diff --git a/gcc/config/rs6000/rs6000.md b/gcc/config/rs6000/rs6000.md index cac5fd1f36b..8cd405e9275 100644 --- a/gcc/config/rs6000/rs6000.md +++ b/gcc/config/rs6000/rs6000.md @@ -10396,7 +10396,7 @@ emit_move_insn (chain, stack_bot); /* Check stack bounds if necessary. */ - if (current_function_limit_stack) + if (crtl->limit_stack) { rtx available; available = expand_binop (Pmode, sub_optab, diff --git a/gcc/config/s390/s390.c b/gcc/config/s390/s390.c index f2a1947f5ae..6dab692c2a6 100644 --- a/gcc/config/s390/s390.c +++ b/gcc/config/s390/s390.c @@ -6438,9 +6438,9 @@ s390_regs_ever_clobbered (int *regs_ever_clobbered) may use the eh registers, but the code which sets these registers is not contained in that function. Hence s390_regs_ever_clobbered is not able to deal with this automatically. */ - if (current_function_calls_eh_return || cfun->machine->has_landing_pad_p) + if (crtl->calls_eh_return || cfun->machine->has_landing_pad_p) for (i = 0; EH_RETURN_DATA_REGNO (i) != INVALID_REGNUM ; i++) - if (current_function_calls_eh_return + if (crtl->calls_eh_return || (cfun->machine->has_landing_pad_p && df_regs_ever_live_p (EH_RETURN_DATA_REGNO (i)))) regs_ever_clobbered[EH_RETURN_DATA_REGNO (i)] = 1; @@ -6449,7 +6449,7 @@ s390_regs_ever_clobbered (int *regs_ever_clobbered) This flag is also set for the unwinding code in libgcc. See expand_builtin_unwind_init. For regs_ever_live this is done by reload. */ - if (current_function_has_nonlocal_label) + if (cfun->has_nonlocal_label) for (i = 0; i < 16; i++) if (!call_really_used_regs[i]) regs_ever_clobbered[i] = 1; @@ -6554,16 +6554,16 @@ s390_register_info (int clobbered_regs[]) || TARGET_TPF_PROFILING || cfun->machine->split_branches_pending_p || cfun_frame_layout.save_return_addr_p - || current_function_calls_eh_return - || current_function_stdarg); + || crtl->calls_eh_return + || cfun->stdarg); clobbered_regs[STACK_POINTER_REGNUM] |= (!current_function_is_leaf || TARGET_TPF_PROFILING || cfun_save_high_fprs_p || get_frame_size () > 0 - || current_function_calls_alloca - || current_function_stdarg); + || cfun->calls_alloca + || cfun->stdarg); for (i = 6; i < 16; i++) if (df_regs_ever_live_p (i) || clobbered_regs[i]) @@ -6616,7 +6616,7 @@ s390_register_info (int clobbered_regs[]) } } - if (current_function_stdarg) + if (cfun->stdarg) { /* Varargs functions need to save gprs 2 to 6. */ if (cfun->va_list_gpr_size @@ -6738,8 +6738,8 @@ s390_frame_info (void) && !TARGET_TPF_PROFILING && cfun_frame_layout.frame_size == 0 && !cfun_save_high_fprs_p - && !current_function_calls_alloca - && !current_function_stdarg) + && !cfun->calls_alloca + && !cfun->stdarg) return; if (!TARGET_PACKED_STACK) @@ -6800,7 +6800,7 @@ s390_init_frame_layout (void) /* Try to predict whether we'll need the base register. */ base_used = cfun->machine->split_branches_pending_p - || current_function_uses_const_pool + || crtl->uses_const_pool || (!DISP_IN_RANGE (frame_size) && !CONST_OK_FOR_K (frame_size)); @@ -6961,8 +6961,8 @@ s390_can_eliminate (int from, int to) /* Make sure we actually saved the return address. */ if (from == RETURN_ADDRESS_POINTER_REGNUM) - if (!current_function_calls_eh_return - && !current_function_stdarg + if (!crtl->calls_eh_return + && !cfun->stdarg && !cfun_frame_layout.save_return_addr_p) return false; @@ -7075,7 +7075,7 @@ save_gprs (rtx base, int offset, int first, int last) gen_rtx_REG (Pmode, first), GEN_INT (last - first + 1)); - if (first <= 6 && current_function_stdarg) + if (first <= 6 && cfun->stdarg) for (i = 0; i < XVECLEN (PATTERN (insn), 0); i++) { rtx mem = XEXP (XVECEXP (PATTERN (insn), 0, i), 0); diff --git a/gcc/config/score/score.h b/gcc/config/score/score.h index ffb5af891ee..fe6e6f9b770 100644 --- a/gcc/config/score/score.h +++ b/gcc/config/score/score.h @@ -549,7 +549,7 @@ extern enum reg_class score_char_to_class[256]; Zero means the frame pointer need not be set up (and parms may be accessed via the stack pointer) in functions that seem suitable. This is computed in `reload', in reload1.c. */ -#define FRAME_POINTER_REQUIRED current_function_calls_alloca +#define FRAME_POINTER_REQUIRED cfun->calls_alloca #define ELIMINABLE_REGS \ {{ ARG_POINTER_REGNUM, STACK_POINTER_REGNUM}, \ diff --git a/gcc/config/score/score3.c b/gcc/config/score/score3.c index 1399bee15cb..3114bcd1c55 100644 --- a/gcc/config/score/score3.c +++ b/gcc/config/score/score3.c @@ -189,7 +189,7 @@ score3_compute_frame_size (HOST_WIDE_INT size) if (f->var_size == 0 && current_function_is_leaf) f->args_size = f->cprestore_size = 0; - if (f->args_size == 0 && current_function_calls_alloca) + if (f->args_size == 0 && cfun->calls_alloca) f->args_size = UNITS_PER_WORD; f->total_size = f->var_size + f->args_size + f->cprestore_size; @@ -202,7 +202,7 @@ score3_compute_frame_size (HOST_WIDE_INT size) } } - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i; for (i = 0;; ++i) @@ -1467,7 +1467,7 @@ rpush (int rd, int cnt) rtx mem = gen_rtx_MEM (SImode, gen_rtx_PRE_DEC (SImode, stack_pointer_rtx)); rtx reg = gen_rtx_REG (SImode, rd); - if (!current_function_calls_eh_return) + if (!crtl->calls_eh_return) MEM_READONLY_P (mem) = 1; if (cnt == 1) @@ -1581,7 +1581,7 @@ rpop (int rd, int cnt) rtx mem = gen_rtx_MEM (SImode, gen_rtx_POST_INC (SImode, stack_pointer_rtx)); rtx reg = gen_rtx_REG (SImode, rd); - if (!current_function_calls_eh_return) + if (!crtl->calls_eh_return) MEM_READONLY_P (mem) = 1; if (cnt == 1) @@ -1625,7 +1625,7 @@ score3_epilogue (int sibcall_p) if (base != stack_pointer_rtx) emit_move_insn (stack_pointer_rtx, base); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_add3_insn (stack_pointer_rtx, stack_pointer_rtx, EH_RETURN_STACKADJ_RTX)); diff --git a/gcc/config/score/score7.c b/gcc/config/score/score7.c index 2796e2e0d24..74031c2c6ae 100644 --- a/gcc/config/score/score7.c +++ b/gcc/config/score/score7.c @@ -188,7 +188,7 @@ score7_compute_frame_size (HOST_WIDE_INT size) if (f->var_size == 0 && current_function_is_leaf) f->args_size = f->cprestore_size = 0; - if (f->args_size == 0 && current_function_calls_alloca) + if (f->args_size == 0 && cfun->calls_alloca) f->args_size = UNITS_PER_WORD; f->total_size = f->var_size + f->args_size + f->cprestore_size; @@ -201,7 +201,7 @@ score7_compute_frame_size (HOST_WIDE_INT size) } } - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { unsigned int i; for (i = 0;; ++i) @@ -1428,7 +1428,7 @@ score7_prologue (void) rtx mem = gen_rtx_MEM (SImode, gen_rtx_PRE_DEC (SImode, stack_pointer_rtx)); rtx reg = gen_rtx_REG (SImode, regno); - if (!current_function_calls_eh_return) + if (!crtl->calls_eh_return) MEM_READONLY_P (mem) = 1; EMIT_PL (emit_insn (gen_pushsi_score7 (mem, reg))); } @@ -1508,7 +1508,7 @@ score7_epilogue (int sibcall_p) if (base != stack_pointer_rtx) emit_move_insn (stack_pointer_rtx, base); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (gen_add3_insn (stack_pointer_rtx, stack_pointer_rtx, EH_RETURN_STACKADJ_RTX)); @@ -1521,7 +1521,7 @@ score7_epilogue (int sibcall_p) gen_rtx_POST_INC (SImode, stack_pointer_rtx)); rtx reg = gen_rtx_REG (SImode, regno); - if (!current_function_calls_eh_return) + if (!crtl->calls_eh_return) MEM_READONLY_P (mem) = 1; emit_insn (gen_popsi_score7 (reg, mem)); diff --git a/gcc/config/sh/sh.c b/gcc/config/sh/sh.c index 6b20ee3071d..cd1013dfdc6 100644 --- a/gcc/config/sh/sh.c +++ b/gcc/config/sh/sh.c @@ -5646,7 +5646,7 @@ output_stack_adjust (int size, rtx reg, int epilogue_p, } for (i = 0; i < nreg; i++) CLEAR_HARD_REG_BIT (temps, FIRST_RET_REG + i); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { CLEAR_HARD_REG_BIT (temps, EH_RETURN_STACKADJ_REGNO); for (i = 0; i <= 3; i++) @@ -5980,7 +5980,7 @@ calc_live_regs (HARD_REG_SET *live_regs_mask) if (TARGET_SHCOMPACT && ((crtl->args.info.call_cookie & ~ CALL_COOKIE_RET_TRAMP (1)) - || current_function_saves_all_registers)) + || crtl->saves_all_registers)) pr_live = 1; has_call = TARGET_SHMEDIA ? ! leaf_function_p () : pr_live; for (count = 0, reg = FIRST_PSEUDO_REGISTER; reg-- != 0; ) @@ -6010,7 +6010,7 @@ calc_live_regs (HARD_REG_SET *live_regs_mask) || (df_regs_ever_live_p (reg) && (!call_really_used_regs[reg] || (trapa_handler && reg == FPSCR_REG && TARGET_FPU_ANY))) - || (current_function_calls_eh_return + || (crtl->calls_eh_return && (reg == EH_RETURN_DATA_REGNO (0) || reg == EH_RETURN_DATA_REGNO (1) || reg == EH_RETURN_DATA_REGNO (2) @@ -6160,7 +6160,7 @@ sh5_schedule_saves (HARD_REG_SET *live_regs_mask, save_schedule *schedule, && ! FUNCTION_ARG_REGNO_P (i) && i != FIRST_RET_REG && ! (cfun->static_chain_decl != NULL && i == STATIC_CHAIN_REGNUM) - && ! (current_function_calls_eh_return + && ! (crtl->calls_eh_return && (i == EH_RETURN_STACKADJ_REGNO || ((unsigned) i >= EH_RETURN_DATA_REGNO (0) && (unsigned) i <= EH_RETURN_DATA_REGNO (3))))) @@ -6305,7 +6305,7 @@ sh_expand_prologue (void) } /* Emit the code for SETUP_VARARGS. */ - if (current_function_stdarg) + if (cfun->stdarg) { if (TARGET_VARARGS_PRETEND_ARGS (current_function_decl)) { @@ -6850,7 +6850,7 @@ sh_expand_epilogue (bool sibcall_p) + crtl->args.info.stack_regs * 8, stack_pointer_rtx, e, NULL); - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) emit_insn (GEN_ADD3 (stack_pointer_rtx, stack_pointer_rtx, EH_RETURN_STACKADJ_RTX)); @@ -7864,7 +7864,7 @@ sh_setup_incoming_varargs (CUMULATIVE_ARGS *ca, int *pretend_arg_size, int second_time ATTRIBUTE_UNUSED) { - gcc_assert (current_function_stdarg); + gcc_assert (cfun->stdarg); if (TARGET_VARARGS_PRETEND_ARGS (current_function_decl)) { int named_parm_regs, anon_parm_regs; @@ -9216,7 +9216,7 @@ sh_allocate_initial_value (rtx hard_reg) && ! (TARGET_SHCOMPACT && ((crtl->args.info.call_cookie & ~ CALL_COOKIE_RET_TRAMP (1)) - || current_function_saves_all_registers))) + || crtl->saves_all_registers))) x = hard_reg; else x = gen_frame_mem (Pmode, return_address_pointer_rtx); @@ -10612,7 +10612,7 @@ sh_get_pr_initial_val (void) if (TARGET_SHCOMPACT && ((crtl->args.info.call_cookie & ~ CALL_COOKIE_RET_TRAMP (1)) - || current_function_saves_all_registers)) + || crtl->saves_all_registers)) return gen_frame_mem (SImode, return_address_pointer_rtx); /* If we haven't finished rtl generation, there might be a nonlocal label diff --git a/gcc/config/sh/sh.h b/gcc/config/sh/sh.h index eb37106348f..67a6e3923fb 100644 --- a/gcc/config/sh/sh.h +++ b/gcc/config/sh/sh.h @@ -1359,7 +1359,7 @@ extern char sh_additional_register_names[ADDREGNAMES_SIZE] \ #define DEFAULT_PCC_STRUCT_RETURN 0 #define SHMEDIA_REGS_STACK_ADJUST() \ - (TARGET_SHCOMPACT && current_function_saves_all_registers \ + (TARGET_SHCOMPACT && crtl->saves_all_registers \ ? (8 * (/* r28-r35 */ 8 + /* r44-r59 */ 16 + /* tr5-tr7 */ 3) \ + (TARGET_FPU_ANY ? 4 * (/* fr36 - fr63 */ 28) : 0)) \ : 0) diff --git a/gcc/config/sh/sh.md b/gcc/config/sh/sh.md index cfcf1b23d19..837fd2e0484 100644 --- a/gcc/config/sh/sh.md +++ b/gcc/config/sh/sh.md @@ -5067,7 +5067,7 @@ label: [(set (match_dup 0) (match_dup 1))] " { - if (TARGET_SHCOMPACT && current_function_saves_all_registers) + if (TARGET_SHCOMPACT && crtl->saves_all_registers) operands[1] = gen_frame_mem (SImode, return_address_pointer_rtx); }") diff --git a/gcc/config/sparc/sparc.c b/gcc/config/sparc/sparc.c index 962ed9fe3bc..2758e4d8485 100644 --- a/gcc/config/sparc/sparc.c +++ b/gcc/config/sparc/sparc.c @@ -2639,7 +2639,7 @@ eligible_for_return_delay (rtx trial) /* If the function uses __builtin_eh_return, the eh_return machinery occupies the delay slot. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) return 0; /* In the case of a true leaf function, anything can go into the slot. */ @@ -3084,7 +3084,7 @@ sparc_tls_got (void) rtx temp; if (flag_pic) { - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; return pic_offset_table_rtx; } @@ -3300,7 +3300,7 @@ legitimize_pic_address (rtx orig, enum machine_mode mode ATTRIBUTE_UNUSED, pic_ref = gen_const_mem (Pmode, gen_rtx_PLUS (Pmode, pic_offset_table_rtx, address)); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; insn = emit_move_insn (reg, pic_ref); /* Put a REG_EQUAL note on this insn, so that it can be optimized by loop. */ @@ -3342,7 +3342,7 @@ legitimize_pic_address (rtx orig, enum machine_mode mode ATTRIBUTE_UNUSED, /* ??? Why do we do this? */ /* Now movsi_pic_label_ref uses it, but we ought to be checking that the register is live instead, in case it is eliminated. */ - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; return orig; } @@ -3479,7 +3479,7 @@ sparc_emit_call_insn (rtx pat, rtx addr) : !SYMBOL_REF_LOCAL_P (addr))) { use_reg (&CALL_INSN_FUNCTION_USAGE (insn), pic_offset_table_rtx); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; } } @@ -4099,7 +4099,7 @@ sparc_expand_prologue (void) emit_save_or_restore_regs (SORR_SAVE); /* Load the PIC register if needed. */ - if (flag_pic && current_function_uses_pic_offset_table) + if (flag_pic && crtl->uses_pic_offset_table) load_pic_register (false); } @@ -4235,7 +4235,7 @@ output_return (rtx insn) semantics of restore/return. We simply output the jump to the return address and the insn in the delay slot (if any). */ - gcc_assert (! current_function_calls_eh_return); + gcc_assert (! crtl->calls_eh_return); return "jmp\t%%o7+%)%#"; } @@ -4246,7 +4246,7 @@ output_return (rtx insn) combined with the 'restore' instruction or put in the delay slot of the 'return' instruction. */ - if (current_function_calls_eh_return) + if (crtl->calls_eh_return) { /* If the function uses __builtin_eh_return, the eh_return machinery occupies the delay slot. */ @@ -6780,7 +6780,7 @@ print_operand (FILE *file, rtx x, int code) The call emitted is the same when sparc_std_struct_return is present. */ if (! TARGET_ARCH64 - && current_function_returns_struct + && cfun->returns_struct && ! sparc_std_struct_return && (TREE_CODE (DECL_SIZE (DECL_RESULT (current_function_decl))) == INTEGER_CST) @@ -7863,7 +7863,7 @@ sparc_function_ok_for_sibcall (tree decl, tree exp ATTRIBUTE_UNUSED) { return (decl && flag_delayed_branch - && (TARGET_ARCH64 || ! current_function_returns_struct) + && (TARGET_ARCH64 || ! cfun->returns_struct) && !(TARGET_VXWORKS_RTP && flag_pic && !targetm.binds_local_p (decl))); diff --git a/gcc/config/sparc/sparc.h b/gcc/config/sparc/sparc.h index eed016470b1..e9f0f2ab5c2 100644 --- a/gcc/config/sparc/sparc.h +++ b/gcc/config/sparc/sparc.h @@ -1678,11 +1678,11 @@ do { \ #define EXIT_IGNORE_STACK \ (get_frame_size () != 0 \ - || current_function_calls_alloca || crtl->outgoing_args_size) + || cfun->calls_alloca || crtl->outgoing_args_size) /* Define registers used by the epilogue and return instruction. */ #define EPILOGUE_USES(REGNO) ((REGNO) == 31 \ - || (current_function_calls_eh_return && (REGNO) == 1)) + || (crtl->calls_eh_return && (REGNO) == 1)) /* Length in units of the trampoline for entering a nested function. */ @@ -1724,7 +1724,7 @@ do { \ /* This is the offset of the return address to the true next instruction to be executed for the current function. */ #define RETURN_ADDR_OFFSET \ - (8 + 4 * (! TARGET_ARCH64 && current_function_returns_struct)) + (8 + 4 * (! TARGET_ARCH64 && cfun->returns_struct)) /* The current return address is in %i7. The return address of anything farther back is in the register window save area at [%fp+60]. */ diff --git a/gcc/config/sparc/sparc.md b/gcc/config/sparc/sparc.md index daf172ccbb1..c02c7094df2 100644 --- a/gcc/config/sparc/sparc.md +++ b/gcc/config/sparc/sparc.md @@ -137,10 +137,10 @@ (symbol_ref "flag_pic != 0")) (define_attr "calls_alloca" "false,true" - (symbol_ref "current_function_calls_alloca != 0")) + (symbol_ref "cfun->calls_alloca != 0")) (define_attr "calls_eh_return" "false,true" - (symbol_ref "current_function_calls_eh_return !=0 ")) + (symbol_ref "crtl->calls_eh_return !=0 ")) (define_attr "leaf_function" "false,true" (symbol_ref "current_function_uses_only_leaf_regs != 0")) @@ -1844,7 +1844,7 @@ (minus:SI (match_dup 5) (match_dup 4)))] "flag_pic" { - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; operands[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_"); if (!can_create_pseudo_p ()) { @@ -1993,7 +1993,7 @@ (minus:DI (match_dup 5) (match_dup 4)))] "TARGET_ARCH64 && flag_pic" { - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; operands[2] = gen_rtx_SYMBOL_REF (Pmode, "_GLOBAL_OFFSET_TABLE_"); if (!can_create_pseudo_p ()) { @@ -7237,7 +7237,7 @@ [(unspec_volatile [(const_int 0)] UNSPECV_SETJMP)] "" { - if (! current_function_calls_alloca) + if (! cfun->calls_alloca) return ""; if (! TARGET_V9) return "\tta\t3\n"; diff --git a/gcc/config/spu/spu.c b/gcc/config/spu/spu.c index d37f27bc179..ad41994d5a5 100644 --- a/gcc/config/spu/spu.c +++ b/gcc/config/spu/spu.c @@ -1592,7 +1592,7 @@ spu_split_immediate (rtx * ops) { rtx pic_reg = get_pic_reg (); emit_insn (gen_addsi3 (ops[0], ops[0], pic_reg)); - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; } return flag_pic || c == IC_IL2s; } @@ -1618,7 +1618,7 @@ need_to_save_reg (int regno, int saving) return 1; if (flag_pic && regno == PIC_OFFSET_TABLE_REGNUM - && (!saving || current_function_uses_pic_offset_table) + && (!saving || crtl->uses_pic_offset_table) && (!saving || !current_function_is_leaf || df_regs_ever_live_p (LAST_ARG_REGNUM))) return 1; @@ -1739,7 +1739,7 @@ spu_expand_prologue (void) emit_note (NOTE_INSN_DELETED); if (flag_pic && optimize == 0) - current_function_uses_pic_offset_table = 1; + crtl->uses_pic_offset_table = 1; if (spu_naked_function_p (current_function_decl)) return; @@ -1753,7 +1753,7 @@ spu_expand_prologue (void) + crtl->args.pretend_args_size; if (!current_function_is_leaf - || current_function_calls_alloca || total_size > 0) + || cfun->calls_alloca || total_size > 0) total_size += STACK_POINTER_OFFSET; /* Save this first because code after this might use the link @@ -1776,7 +1776,7 @@ spu_expand_prologue (void) } } - if (flag_pic && current_function_uses_pic_offset_table) + if (flag_pic && crtl->uses_pic_offset_table) { rtx pic_reg = get_pic_reg (); insn = emit_insn (gen_load_pic_offset (pic_reg, scratch_reg_0)); @@ -1878,12 +1878,12 @@ spu_expand_epilogue (bool sibcall_p) + crtl->args.pretend_args_size; if (!current_function_is_leaf - || current_function_calls_alloca || total_size > 0) + || cfun->calls_alloca || total_size > 0) total_size += STACK_POINTER_OFFSET; if (total_size > 0) { - if (current_function_calls_alloca) + if (cfun->calls_alloca) frame_emit_load (STACK_POINTER_REGNUM, sp_reg, 0); else frame_emit_add_imm (sp_reg, sp_reg, total_size, scratch_reg_0); diff --git a/gcc/config/stormy16/stormy16.c b/gcc/config/stormy16/stormy16.c index 99aea1ce660..6cbe52d5048 100644 --- a/gcc/config/stormy16/stormy16.c +++ b/gcc/config/stormy16/stormy16.c @@ -996,7 +996,7 @@ xstormy16_compute_stack_layout (void) if (REG_NEEDS_SAVE (regno, ifun)) layout.register_save_size += UNITS_PER_WORD; - if (current_function_stdarg) + if (cfun->stdarg) layout.stdarg_save_size = NUM_ARGUMENT_REGISTERS * UNITS_PER_WORD; else layout.stdarg_save_size = 0; diff --git a/gcc/config/v850/v850.c b/gcc/config/v850/v850.c index c99841a31a4..2a0f3093641 100644 --- a/gcc/config/v850/v850.c +++ b/gcc/config/v850/v850.c @@ -1386,7 +1386,7 @@ compute_register_save_size (long * p_reg_saved) long reg_saved = 0; /* Count the return pointer if we need to save it. */ - if (current_function_profile && !call_p) + if (crtl->profile && !call_p) { df_set_regs_ever_live (LINK_POINTER_REGNUM, true); call_p = 1; diff --git a/gcc/config/xtensa/xtensa.h b/gcc/config/xtensa/xtensa.h index b78b25f5aa8..17fd4971fa6 100644 --- a/gcc/config/xtensa/xtensa.h +++ b/gcc/config/xtensa/xtensa.h @@ -23,7 +23,7 @@ along with GCC; see the file COPYING3. If not see #include "xtensa-config.h" /* Standard GCC variables that we reference. */ -extern int current_function_calls_alloca; +extern int cfun->calls_alloca; extern int optimize; /* External variables defined in xtensa.c. */ |