diff options
author | Jakub Jelinek <jakub@redhat.com> | 2008-12-10 00:01:15 +0100 |
---|---|---|
committer | Jakub Jelinek <jakub@gcc.gnu.org> | 2008-12-10 00:01:15 +0100 |
commit | 0889e9bc6841c76484e029eeed31f85a35ae4e55 (patch) | |
tree | f58c3d091da63db8a731136167c34e30bcf310d2 /gcc | |
parent | 218d1c24bb8bd00b49a4c9097b5777a2c25ba231 (diff) | |
download | gcc-0889e9bc6841c76484e029eeed31f85a35ae4e55.zip gcc-0889e9bc6841c76484e029eeed31f85a35ae4e55.tar.gz gcc-0889e9bc6841c76484e029eeed31f85a35ae4e55.tar.bz2 |
re PR middle-end/38454 (memcpy folding breaks -D_FORTIFY_SOURCE=2 protection)
PR middle-end/38454
* function.h (struct function): Add always_inline_functions_inlined.
* ipa-inline.c (cgraph_early_inlining): Set it to true.
* tree-optimize.c (execute_fixup_cfg): Likewise.
* builtins.c (avoid_folding_inline_builtin): New function.
(fold_call_expr): Don't optimize always_inline builtins before
inlining.
(fold_call_stmt): Likewise.
(fold_builtin_call_array): Likewise. Don't call
fold_builtin_varargs for BUILT_IN_MD builtins.
* gcc.dg/memset-1.c: New test.
* gcc.dg/memcpy-2.c: New test.
From-SVN: r142617
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 11 | ||||
-rw-r--r-- | gcc/builtins.c | 24 | ||||
-rw-r--r-- | gcc/function.h | 1 | ||||
-rw-r--r-- | gcc/ipa-inline.c | 1 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/memcpy-2.c | 25 | ||||
-rw-r--r-- | gcc/testsuite/gcc.dg/memset-1.c | 28 | ||||
-rw-r--r-- | gcc/tree-optimize.c | 1 |
8 files changed, 97 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 431a97a..95b8e98 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,16 @@ 2008-12-09 Jakub Jelinek <jakub@redhat.com> + PR middle-end/38454 + * function.h (struct function): Add always_inline_functions_inlined. + * ipa-inline.c (cgraph_early_inlining): Set it to true. + * tree-optimize.c (execute_fixup_cfg): Likewise. + * builtins.c (avoid_folding_inline_builtin): New function. + (fold_call_expr): Don't optimize always_inline builtins before + inlining. + (fold_call_stmt): Likewise. + (fold_builtin_call_array): Likewise. Don't call + fold_builtin_varargs for BUILT_IN_MD builtins. + PR tree-optimization/37416 * tree-scalar-evolution.c (follow_ssa_edge_in_rhs): Handle NOP_EXPR. diff --git a/gcc/builtins.c b/gcc/builtins.c index 745a125..afb3b3f 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -10797,6 +10797,22 @@ fold_builtin_varargs (tree fndecl, tree exp, bool ignore ATTRIBUTE_UNUSED) return NULL_TREE; } +/* Return true if FNDECL shouldn't be folded right now. + If a built-in function has an inline attribute always_inline + wrapper, defer folding it after always_inline functions have + been inlined, otherwise e.g. -D_FORTIFY_SOURCE checking + might not be performed. */ + +static bool +avoid_folding_inline_builtin (tree fndecl) +{ + return (DECL_DECLARED_INLINE_P (fndecl) + && DECL_DISREGARD_INLINE_LIMITS (fndecl) + && cfun + && !cfun->always_inline_functions_inlined + && lookup_attribute ("always_inline", DECL_ATTRIBUTES (fndecl))); +} + /* A wrapper function for builtin folding that prevents warnings for "statement without effect" and the like, caused by removing the call node earlier than the warning is generated. */ @@ -10829,6 +10845,9 @@ fold_call_expr (tree exp, bool ignore) return NULL_TREE; } + if (avoid_folding_inline_builtin (fndecl)) + return NULL_TREE; + /* FIXME: Don't use a list in this interface. */ if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD) return targetm.fold_builtin (fndecl, CALL_EXPR_ARGS (exp), ignore); @@ -10931,6 +10950,8 @@ fold_builtin_call_array (tree type, && DECL_FUNCTION_CODE (fndecl2) == BUILT_IN_VA_ARG_PACK) return build_call_array (type, fn, n, argarray); } + if (avoid_folding_inline_builtin (fndecl)) + return build_call_array (type, fn, n, argarray); if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD) { tree arglist = NULL_TREE; @@ -10939,6 +10960,7 @@ fold_builtin_call_array (tree type, ret = targetm.fold_builtin (fndecl, arglist, false); if (ret) return ret; + return build_call_array (type, fn, n, argarray); } else if (n <= MAX_ARGS_TO_FOLD_BUILTIN) { @@ -13647,6 +13669,8 @@ fold_call_stmt (gimple stmt, bool ignore) { int nargs = gimple_call_num_args (stmt); + if (avoid_folding_inline_builtin (fndecl)) + return NULL_TREE; /* FIXME: Don't use a list in this interface. */ if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_MD) { diff --git a/gcc/function.h b/gcc/function.h index 16f2324..68df55e 100644 --- a/gcc/function.h +++ b/gcc/function.h @@ -578,6 +578,7 @@ struct function GTY(()) unsigned int dont_save_pending_sizes_p : 1; unsigned int after_inlining : 1; + unsigned int always_inline_functions_inlined : 1; /* Fields below this point are not set for abstract functions; see allocate_struct_function. */ diff --git a/gcc/ipa-inline.c b/gcc/ipa-inline.c index 662cff6..35ec9a6 100644 --- a/gcc/ipa-inline.c +++ b/gcc/ipa-inline.c @@ -1528,6 +1528,7 @@ cgraph_early_inlining (void) todo = optimize_inline_calls (current_function_decl); timevar_pop (TV_INTEGRATION); } + cfun->always_inline_functions_inlined = true; return todo; } diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index bcee032..6f8449a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2008-12-09 Jakub Jelinek <jakub@redhat.com> + + PR middle-end/38454 + * gcc.dg/memset-1.c: New test. + * gcc.dg/memcpy-2.c: New test. + 2008-12-09 Mikael Morin <mikael.morin@tele2.fr> PR fortran/35983 diff --git a/gcc/testsuite/gcc.dg/memcpy-2.c b/gcc/testsuite/gcc.dg/memcpy-2.c new file mode 100644 index 0000000..24464abd --- /dev/null +++ b/gcc/testsuite/gcc.dg/memcpy-2.c @@ -0,0 +1,25 @@ +/* PR middle-end/38454 */ +/* { dg-do compile } */ +/* { dg-options "-O2" } */ + +typedef __SIZE_TYPE__ size_t; + +extern inline __attribute__((gnu_inline, always_inline, artificial)) void * +memcpy (void *__restrict dest, const void *__restrict src, size_t len) +{ + return __builtin___memcpy_chk (dest, /* { dg-warning "will always overflow destination buffer" } */ + src, len, __builtin_object_size (dest, 0)); +} + +struct S { char buf[10]; } s; + +void +foo (void) +{ + char buf[12]; + char *p = buf + 4; + struct S *q = (struct S *) p; + memcpy (q, &s, sizeof (s)); +} + +/* { dg-final { scan-assembler "__memcpy_chk" } } */ diff --git a/gcc/testsuite/gcc.dg/memset-1.c b/gcc/testsuite/gcc.dg/memset-1.c new file mode 100644 index 0000000..677ae91 --- /dev/null +++ b/gcc/testsuite/gcc.dg/memset-1.c @@ -0,0 +1,28 @@ +/* { dg-do compile } */ +/* { dg-options "-O2" } */ + +typedef __SIZE_TYPE__ size_t; + +extern void warn_memset_zero_len (void) +__attribute__((__warning__ ("memset used with constant zero length parameter;" + " this could be due to transposed parameters"))); + +extern inline __attribute__((gnu_inline, always_inline, artificial)) void * +memset (void *dest, int ch, size_t len) +{ + if (__builtin_constant_p (len) && len == 0) + { + warn_memset_zero_len (); /* { dg-warning "memset used with constant zero" } */ + return dest; + } + return __builtin_memset (dest, ch, len); +} + +char buf[10]; + +int +main (void) +{ + memset (buf, sizeof (buf), 0); + return 0; +} diff --git a/gcc/tree-optimize.c b/gcc/tree-optimize.c index ba3d0fc..0802e5a 100644 --- a/gcc/tree-optimize.c +++ b/gcc/tree-optimize.c @@ -293,6 +293,7 @@ execute_fixup_cfg (void) int todo = gimple_in_ssa_p (cfun) ? TODO_verify_ssa : 0; cfun->after_inlining = true; + cfun->always_inline_functions_inlined = true; if (cfun->eh) FOR_EACH_BB (bb) |