diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-26 01:25:20 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-11-26 01:25:20 +0000 |
commit | 6d77ed9258cbd3bc0de2971c6c501140493686db (patch) | |
tree | 3361bfee7bbd0f755ff02c5d8d2bb9e0a58ca2d3 /gcc/testsuite/gcc.c-torture/execute/builtins | |
parent | 4e741c1ddb038b1409c7c0c974c8f7f3ebfeb3ac (diff) | |
download | ppe42-gcc-6d77ed9258cbd3bc0de2971c6c501140493686db.tar.gz ppe42-gcc-6d77ed9258cbd3bc0de2971c6c501140493686db.zip |
PR middle-end/25022
* builtins.c (expand_builtin_printf, expand_builtin_fprintf,
fold_builtin_fputs, fold_builtin_printf, fold_builtin_fprintf):
Lookup the explicit replacement functions for any unlocked
stdio builtin transformations.
testsuite:
* gcc.c-torture/execute/builtins/fprintf.c,
gcc.c-torture/execute/builtins/fputs-lib.c,
gcc.c-torture/execute/builtins/fputs.c,
gcc.c-torture/execute/builtins/lib/fprintf.c,
gcc.c-torture/execute/builtins/lib/printf.c,
gcc.c-torture/execute/builtins/printf.c: Test the unlocked style.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@107535 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/gcc.c-torture/execute/builtins')
6 files changed, 62 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c b/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c index 6b6e71b78f8..f7db2e0618e 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/fprintf.c @@ -6,6 +6,7 @@ Written by Kaveh R. Ghazi, 1/7/2001. */ #include <stdio.h> +extern int fprintf_unlocked (FILE *, const char *, ...); extern void abort(void); void @@ -15,6 +16,8 @@ main_test (void) const char *const s1 = "hello world"; const char *const s2[] = { s1, 0 }, *const*s3; + fprintf (*s_ptr, ""); + fprintf (*s_ptr, "%s", ""); fprintf (*s_ptr, "%s", "hello"); fprintf (*s_ptr, "%s", "\n"); fprintf (*s_ptr, "%s", *s2); @@ -49,4 +52,10 @@ main_test (void) /* Test at least one instance of the __builtin_ style. We do this to ensure that it works and that the prototype is correct. */ __builtin_fprintf (*s_ptr, "%s", "hello world\n"); + /* Check the unlocked style, these evaluate to nothing to avoid + problems on systems without the unlocked functions. */ + fprintf_unlocked (*s_ptr, ""); + __builtin_fprintf_unlocked (*s_ptr, ""); + fprintf_unlocked (*s_ptr, "%s", ""); + __builtin_fprintf_unlocked (*s_ptr, "%s", ""); } diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/fputs-lib.c b/gcc/testsuite/gcc.c-torture/execute/builtins/fputs-lib.c index beb8325fca5..c2292a7818c 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/fputs-lib.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/fputs-lib.c @@ -16,3 +16,9 @@ fputs(const char *string, FILE *stream) return n > r ? EOF : 0; } +/* Locking stdio doesn't matter for the purposes of this test. */ +int +fputs_unlocked(const char *string, FILE *stream) +{ + return fputs (string, stream); +} diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/fputs.c b/gcc/testsuite/gcc.c-torture/execute/builtins/fputs.c index 9274d5b643f..93fa9736449 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/fputs.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/fputs.c @@ -49,6 +49,10 @@ main_test(void) prototypes are set correctly too. */ __builtin_fputc ('\n', *s_ptr); __builtin_fwrite ("hello\n", 1, 6, *s_ptr); + /* Check the unlocked style, these evaluate to nothing to avoid + problems on systems without the unlocked functions. */ + fputs_unlocked ("", *s_ptr); + __builtin_fputs_unlocked ("", *s_ptr); /* Check side-effects in conditional expression. */ s_ptr = s_array; diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/lib/fprintf.c b/gcc/testsuite/gcc.c-torture/execute/builtins/lib/fprintf.c index f32cf3a050b..a22db41d800 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/lib/fprintf.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/lib/fprintf.c @@ -17,3 +17,19 @@ fprintf (FILE *fp, const char *string, ...) va_end (ap); return r; } + +/* Locking stdio doesn't matter for the purposes of this test. */ +int +fprintf_unlocked (FILE *fp, const char *string, ...) +{ + va_list ap; + int r; +#ifdef __OPTIMIZE__ + if (inside_main) + abort(); +#endif + va_start (ap, string); + r = vfprintf (fp, string, ap); + va_end (ap); + return r; +} diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/lib/printf.c b/gcc/testsuite/gcc.c-torture/execute/builtins/lib/printf.c index e67003e1dd4..2f8c133177c 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/lib/printf.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/lib/printf.c @@ -18,3 +18,19 @@ printf (const char *string, ...) return r; } + +/* Locking stdio doesn't matter for the purposes of this test. */ +int +printf_unlocked (const char *string, ...) +{ + va_list ap; + int r; +#ifdef __OPTIMIZE__ + if (inside_main) + abort(); +#endif + va_start (ap, string); + r = vprintf (string, ap); + va_end (ap); + return r; +} diff --git a/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c b/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c index 0d01e544aa1..e493f90b7cd 100644 --- a/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c +++ b/gcc/testsuite/gcc.c-torture/execute/builtins/printf.c @@ -6,6 +6,7 @@ Written by Kaveh R. Ghazi, 12/4/2000. */ extern int printf (const char *, ...); +extern int printf_unlocked (const char *, ...); extern void abort(void); void @@ -28,8 +29,12 @@ main_test (void) if (s3 != s2+1 || *s3 != 0) abort(); + printf (""); + printf ("%s", ""); printf ("\n"); + printf ("%s", "\n"); printf ("hello world\n"); + printf ("%s", "hello world\n"); /* Test at least one instance of the __builtin_ style. We do this to ensure that it works and that the prototype is correct. */ @@ -38,4 +43,10 @@ main_test (void) prototypes are set correctly too. */ __builtin_putchar ('\n'); __builtin_puts ("hello"); + /* Check the unlocked style, these evaluate to nothing to avoid + problems on systems without the unlocked functions. */ + printf_unlocked (""); + __builtin_printf_unlocked (""); + printf_unlocked ("%s", ""); + __builtin_printf_unlocked ("%s", ""); } |