aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/strlenopt-83.c
blob: baa80cf96439cb04f2f42df26479ef12bb5f8cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* PR tree-optimization/83821 - local aggregate initialization defeats
   strlen optimization
   { dg-do compile }
   { dg-options "-O2 -Wall -fdump-tree-optimized" }
   { dg-require-effective-target alloca } */

#include "strlenopt.h"
char *p_p2, *p_p5, *p_p9, *p_p14;

unsigned n0, n1, n2, n3, n4;


static inline __attribute__ ((always_inline)) void
elim_strlen_of_consecutive_strcpy (char *p)
{
  p_p2 = p + 2;
  __builtin_strcpy (p_p2, "12");

  p_p5 = p_p2 + 3;
  __builtin_strcpy (p_p5, "124");

  p_p9 = p_p5 + 4;
  __builtin_strcpy (p_p9, "1245");

  p_p14 = p_p9 + 5;

  n0 = __builtin_strlen (p);
  n1 = __builtin_strlen (p_p2);
  n2 = __builtin_strlen (p_p5);
  n3 = __builtin_strlen (p_p9);

  /* The following isn't handled yet:
     n4 = __builtin_strlen (p_p14); */

  if (n0 || n1 != 2 || n2 != 3 || n3 != 4)
    __builtin_abort ();
}


void elim_strlen_of_consecutive_strcpy_in_alloca (unsigned n)
{
  /* Only known sizes are handled so far.  */
  n = 14;

  char *p = __builtin_alloca (n);

  *p = '\0';

  elim_strlen_of_consecutive_strcpy (p);
}


void elim_strlen_of_consecutive_strcpy_in_vla (unsigned n)
{
  /* Only known sizes are handled so far.  */
  n = 14;

  char vla[n];

  *vla = '\0';

  elim_strlen_of_consecutive_strcpy (vla);
}

void elim_strlen_of_consecutive_strcpy_in_malloc (unsigned n)
{
  char *p = __builtin_malloc (n);

  *p = '\0';

  elim_strlen_of_consecutive_strcpy (p);
}


void elim_strlen_of_consecutive_strcpy_in_calloc (unsigned n)
{
  char *p = __builtin_calloc (n, 1);

  /* Do not store into *P to verify that strlen knows it's zero.  */

  elim_strlen_of_consecutive_strcpy (p);
}

/* { dg-final { scan-tree-dump-not "abort" "optimized" } } */