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
|
[kernel] Parsing vla_goto_same_block_above.i (no preprocessing)
/* Generated by Frama-C */
int volatile nondet;
/*@ assigns \nothing;
frees p; */
__attribute__((__FC_BUILTIN__)) void __fc_vla_free(void *p);
/*@ assigns \result;
assigns \result \from \nothing;
allocates \result; */
__attribute__((__FC_BUILTIN__)) void *__fc_vla_alloc(unsigned int size);
int main(void)
{
int __retres;
unsigned int __lengthof_vla;
int i = 42;
toto: ;
/*@ assert alloca_bounds: 0 < sizeof(char) * i ≤ 4294967295; */ ;
__lengthof_vla = (unsigned int)i;
char *vla = __fc_vla_alloc(sizeof(char) * __lengthof_vla);
if (nondet) {
__fc_vla_free((void *)vla);
goto toto;
}
__retres = 0;
__fc_vla_free((void *)vla);
return __retres;
}
int f(void)
{
int __retres;
unsigned int __lengthof_vla;
int i = 42;
if (nondet) toto: ;
/*@ assert alloca_bounds: 0 < sizeof(char) * i ≤ 4294967295; */ ;
__lengthof_vla = (unsigned int)i;
char *vla = __fc_vla_alloc(sizeof(char) * __lengthof_vla);
if (nondet) {
__fc_vla_free((void *)vla);
goto toto;
}
__retres = 0;
__fc_vla_free((void *)vla);
return __retres;
}
int g(void)
{
int __retres;
unsigned int __lengthof_vla;
int i = 42;
/*@ assert alloca_bounds: 0 < sizeof(char) * i ≤ 4294967295; */ ;
__lengthof_vla = (unsigned int)i;
char *vla = __fc_vla_alloc(sizeof(char) * __lengthof_vla);
if (nondet) toto: ;
if (nondet) goto toto;
__retres = 0;
__fc_vla_free((void *)vla);
return __retres;
}
|