diff options
author | Jakub Jelinek <jakub@redhat.com> | 2019-01-14 13:01:01 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2019-01-14 13:01:01 +0100 |
commit | a49a975f0eaf49d9882ba4bf4b583f99d56d0d3a (patch) | |
tree | 5d19df5d6e01eac1ed1c0504b50a318c3e91f688 /gcc/function.c | |
parent | 7227b597ac26b10aa51d334d72bd74365047182c (diff) | |
download | gcc-a49a975f0eaf49d9882ba4bf4b583f99d56d0d3a.zip gcc-a49a975f0eaf49d9882ba4bf4b583f99d56d0d3a.tar.gz gcc-a49a975f0eaf49d9882ba4bf4b583f99d56d0d3a.tar.bz2 |
re PR rtl-optimization/88796 (-fstack-protector* kills RTL DSE opportunities)
PR rtl-optimization/88796
* emit-rtl.h (struct rtl_data): Add stack_protect_guard_decl field.
* cfgexpand.c (stack_protect_prologue): Initialize
crtl->stack_protect_guard_decl.
* function.c (stack_protect_epilogue): Use it instead of calling
targetm.stack_protect_guard again.
* dse.c (check_mem_read_rtx): Ignore MEM_VOLATILE_P reads from
MEMs with MEM_EXPR equal to crtl->stack_protect_guard or
crtl->stack_protect_guard_decl.
* config/i386/i386.c (ix86_stack_protect_guard): Set TREE_THIS_VOLATILE
on the returned MEM_EXPR.
* gcc.target/i386/pr88796.c: New test.
From-SVN: r267916
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/function.c b/gcc/function.c index 5260d73..1525d8b 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -4902,7 +4902,7 @@ init_function_start (tree subr) void stack_protect_epilogue (void) { - tree guard_decl = targetm.stack_protect_guard (); + tree guard_decl = crtl->stack_protect_guard_decl; rtx_code_label *label = gen_label_rtx (); rtx x, y; rtx_insn *seq = NULL; |