[PR67828] don't unswitch on default defs of non-parms
[official-gcc.git] / gcc / stack-ptr-mod.c
blob4c849122d2891e26a54517a8f2eb84d24ccaefda
1 /* Discover if the stack pointer is modified in a function.
2 Copyright (C) 2007-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "tree.h"
25 #include "rtl.h"
26 #include "df.h"
27 #include "alias.h"
28 #include "regs.h"
29 #include "flags.h"
30 #include "insn-config.h"
31 #include "expmed.h"
32 #include "dojump.h"
33 #include "explow.h"
34 #include "calls.h"
35 #include "emit-rtl.h"
36 #include "varasm.h"
37 #include "stmt.h"
38 #include "expr.h"
39 #include "tree-pass.h"
40 #include "output.h"
42 /* Determine if the stack pointer is constant over the life of the function.
43 Only useful before prologues have been emitted. */
45 static void
46 notice_stack_pointer_modification_1 (rtx x, const_rtx pat ATTRIBUTE_UNUSED,
47 void *data ATTRIBUTE_UNUSED)
49 if (x == stack_pointer_rtx
50 /* The stack pointer is only modified indirectly as the result
51 of a push until later. See the comments in rtl.texi
52 regarding Embedded Side-Effects on Addresses. */
53 || (MEM_P (x)
54 && GET_RTX_CLASS (GET_CODE (XEXP (x, 0))) == RTX_AUTOINC
55 && XEXP (XEXP (x, 0), 0) == stack_pointer_rtx))
56 crtl->sp_is_unchanging = 0;
59 /* Some targets can emit simpler epilogues if they know that sp was
60 not ever modified during the function. After reload, of course,
61 we've already emitted the epilogue so there's no sense searching. */
63 namespace {
65 const pass_data pass_data_stack_ptr_mod =
67 RTL_PASS, /* type */
68 "*stack_ptr_mod", /* name */
69 OPTGROUP_NONE, /* optinfo_flags */
70 TV_NONE, /* tv_id */
71 0, /* properties_required */
72 0, /* properties_provided */
73 0, /* properties_destroyed */
74 0, /* todo_flags_start */
75 0, /* todo_flags_finish */
78 class pass_stack_ptr_mod : public rtl_opt_pass
80 public:
81 pass_stack_ptr_mod (gcc::context *ctxt)
82 : rtl_opt_pass (pass_data_stack_ptr_mod, ctxt)
85 /* opt_pass methods: */
86 virtual unsigned int execute (function *);
88 }; // class pass_stack_ptr_mod
90 unsigned int
91 pass_stack_ptr_mod::execute (function *fun)
93 basic_block bb;
94 rtx_insn *insn;
96 /* Assume that the stack pointer is unchanging if alloca hasn't
97 been used. */
98 crtl->sp_is_unchanging = !fun->calls_alloca;
99 if (crtl->sp_is_unchanging)
100 FOR_EACH_BB_FN (bb, fun)
101 FOR_BB_INSNS (bb, insn)
103 if (INSN_P (insn))
105 /* Check if insn modifies the stack pointer. */
106 note_stores (PATTERN (insn),
107 notice_stack_pointer_modification_1,
108 NULL);
109 if (! crtl->sp_is_unchanging)
110 return 0;
114 /* The value coming into this pass was 0, and the exit block uses
115 are based on this. If the value is now 1, we need to redo the
116 exit block uses. */
117 if (df && crtl->sp_is_unchanging)
118 df_update_exit_block_uses ();
120 return 0;
123 } // anon namespace
125 rtl_opt_pass *
126 make_pass_stack_ptr_mod (gcc::context *ctxt)
128 return new pass_stack_ptr_mod (ctxt);