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 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
|
/* run.config*
GCC:
STDOPT: #"-main main1"
STDOPT: #"-main main6"
STDOPT: #"-main main7"
STDOPT: #"-main main8 -slevel-function strcmp:50"
*/
char s1[]="hello\000 world";
char s2[]="hello";
char *s5, *s6;
int u(void);
char cc = 'a';
char Q, R, S, T, U, V, W, X, Y, Z;
char *strcpy(char*dst, char*src)
{
char* ldst=dst;
/*@ loop pragma UNROLL 20; */
while (*ldst++ = *src++)
;
return dst;
}
unsigned int strlen(char *s)
{
unsigned int l=0;
/*@ loop pragma UNROLL 20; */
while(*s++ != 0)
l++;
return l;
}
int main1(void)
{
char *p;
p = &s1[3];
if (u()) R=*(p-4);
p = &s1[3];
if (u()) S=*(p+12);
if (u())
p = &s1[5];
else
p = &s2[3];
if (u()) T=*(p-4);
{
char a[10] = "Not ok";
char b [5];
if (u()) strcpy(b,a);
}
s1[3]=cc;
s1[6]=cc;
return strlen(s1);
}
char *s3="tutu";
char *s4="tutu";
char *s7="hello\x00 world";
char *s8="hello";
int main6(void)
{
char *s;
s = "toto";
cc = *s;
if (u())
R = (s3 == s4);
if (u())
S = (s1 == s2);
if (u())
T = (s1 == s3);
if (u())
U = (s7 == s8);
if (u())
V = (s7 == s4);
if (u())
W = (s7 + 1 == s8 + 1);
if (u())
X = (s3 == s3);
s5 = (u()?s3:s8);
if (u())
Y = ((u()?s3:s8) == s5);
s6 = (u()?(u()?s3:s8):s4);
if (u())
Z = (s5 == s6);
if (u())
Q = ("oh, hello"+4 == s7);
return cc;
}
int main7(int d, int e, int f)
{
char c=-1;
if (d) s5 = s3; else s5 = &c;
*(f ? s5 + 2 : &c) = 'T';
R=c;
*s5=' ';
if (e) s6 = s3+1; else s6 = &c;
*s6=cc;
c=*s4;
return c;
}
int strcmp(const char *s1, const char *s2)
{
if (s1 == s2)
return (0);
while (*s1 == *s2++)
if (*s1++ == '\0')
return (0);
return (*(unsigned char *)s1 - *(unsigned char *)--s2);
}
//@ assigns p[0..s-1]; ensures \initialized(&p[0..s-1]);
void assigns(char *p, unsigned int s);
int main8() {
char tc[30];
char long_chain[] = "really really really long chain";
assigns(&tc[0],30);
int x = strcmp(long_chain, tc);
return x;
}
|