Skip to content

Guided-none did not hit all branches #107

@S1eGa

Description

@S1eGa

From sv-benchmarks; run on ChenFlurMukhopadhyay-2012SAS-Fig1-alloca.i with guided-error=none and symbolic sizes hit only 50% of branches. But KLEE original and KLEE-utbot with guided mode hit all.

int main() {
    int* x = __builtin_alloca (sizeof(int));
    int* y = __builtin_alloca (sizeof(int));
    int* z = __builtin_alloca (sizeof(int));
    *x = __VERIFIER_nondet_int();
    *y = __VERIFIER_nondet_int();
    *z = __VERIFIER_nondet_int();
    while (*x > 0) {
        *x = *x + *y;
        *y = *z;
        *z = -(*z) - 1;
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions