Skip to content

CONTRACTS: store contracts in dedicated symbols #6799

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
int foo(int *arr, int size);

int foo(int *arr, int size)
// clang-format off
__CPROVER_requires(size > 0 && __CPROVER_is_fresh(arr, size))
__CPROVER_assigns(
arr[0], arr[size-1];
size >= 10: arr[5];
)
__CPROVER_ensures(arr[0] == 0 && arr[size-1] == 0)
__CPROVER_ensures(size >= 10 ==> arr[5] == __CPROVER_return_value)
// clang-format on
;

int foo(int *arr, int size)
{
arr[0] = 0;
arr[size - 1] = 0;
return size < 10 ? 0 : arr[5];
}

int main()
{
int arr[10];
int retval = foo(arr, 10);
__CPROVER_assert(retval == arr[5], "should succeed");
return 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
int foo(int *arr, int size)
{
arr[0] = 0;
arr[size - 1] = 0;
return size < 10 ? 0 : arr[5];
}

int foo(int *arr, int size)
// clang-format off
__CPROVER_requires(size > 0 && __CPROVER_is_fresh(arr, size))
__CPROVER_assigns(
arr[0], arr[size-1];
size >= 10: arr[5];
)
__CPROVER_ensures(arr[0] == 0 && arr[size-1] == 0)
__CPROVER_ensures(size >= 10 ==> arr[5] == __CPROVER_return_value)
// clang-format on
;

int main()
{
int arr[10];
int retval = foo(arr, 10);
__CPROVER_assert(retval == arr[5], "should succeed");
return 0;
}
22 changes: 22 additions & 0 deletions regression/contracts/named-contracts/main-contract-incomplete.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
int foo(int *arr, int size);

int foo()
// clang-format off
__CPROVER_ensures(__CPROVER_return_value != 0)
// clang-format on
;

int foo(int *arr, int size)
{
arr[0] = 0;
arr[size - 1] = 0;
return size < 10 ? 0 : arr[5];
}

int main()
{
int arr[10];
int retval = foo(arr, 10);
__CPROVER_assert(retval == arr[5], "should succeed");
return 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
int foo(int *arr, int size);

#if 0
int foo()
// clang-format off
__CPROVER_ensures(__CPROVER_return_value != 0)
// clang-format on
;
#endif

void foo(int *arr, int size)
// clang-format off
__CPROVER_requires(size > 0)
// clang-format on
;

int foo(int *arr, int size)
{
arr[0] = 0;
arr[size - 1] = 0;
return size < 10 ? 0 : arr[5];
}

int main()
{
int arr[10];
int retval = foo(arr, 10);
__CPROVER_assert(retval == arr[5], "should succeed");
return 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
int foo(int *arr, int size)
// clang-format off
__CPROVER_requires(size > 0 && __CPROVER_is_fresh(arr, size))
__CPROVER_assigns(
arr[0], arr[size-1];
size >= 10: arr[5];
)
__CPROVER_ensures(arr[0] == 0 && arr[size-1] == 0)
__CPROVER_ensures(size >= 10 ==> arr[5] == __CPROVER_return_value)
// clang-format on
;

int foo(int *arr, int size)
{
arr[0] = 0;
arr[size - 1] = 0;
return size < 10 ? 0 : arr[5];
}

int main()
{
int arr[10];
int retval = foo(arr, 10);
__CPROVER_assert(retval == arr[5], "should succeed");
return 0;
}
28 changes: 28 additions & 0 deletions regression/contracts/named-contracts/main-no-definition.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
int foo(int *arr, int size)
// clang-format off
__CPROVER_requires(size > 0 && __CPROVER_is_fresh(arr, size))
__CPROVER_assigns(
arr[0], arr[size-1];
size >= 10: arr[5];
)
__CPROVER_ensures(arr[0] == 0 && arr[size-1] == 0)
__CPROVER_ensures(size >= 10 ==> arr[5] == __CPROVER_return_value)
// clang-format on
;

int main()
{
int arr[10] = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1};
int retval = foo(arr, 10);
assert(arr[0] == 0);
assert(arr[1] == 9);
assert(arr[2] == 8);
assert(arr[3] == 7);
assert(arr[4] == 6);
assert(arr[5] == retval);
assert(arr[6] == 4);
assert(arr[7] == 3);
assert(arr[8] == 2);
assert(arr[9] == 0);
return 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CORE
main-contract-after-declaration.c
--replace-call-with-contract foo
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
--
--
This test checks that we can have a function declaration with a contract after
having seen an earlier declaration of that same function.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CORE
main-contract-after-definition.c
--replace-call-with-contract foo
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
--
--
This test checks that we can have a function declaration with a contract after
having seen that function's definition.
10 changes: 10 additions & 0 deletions regression/contracts/named-contracts/test-contract-incomplete.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CORE
main-contract-incomplete.c

error: code contract on incomplete function re-declaration
CONVERSION ERROR
^EXIT=(1|64)$
^SIGNAL=0$
--
--
This test checks that contracts on incomplete re-declarations are rejected.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CORE
main-contract-signature-conflict.c
--enforce-contract foo
^Contract of 'foo' has different signature\.$
^EXIT=6$
^SIGNAL=0$
--
--
This test checks that contracts on function declarations with a matching name
but different type are rejected.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CORE
main-definition-after-contract.c
--replace-call-with-contract foo
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
--
--
This test checks that we can have a function declaration with a contract and
without body, then the function definition, and successfully replace a call to
the function by the contract.
10 changes: 10 additions & 0 deletions regression/contracts/named-contracts/test-no-definition.desc
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
CORE
main-no-definition.c
--replace-call-with-contract foo
^EXIT=0$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
--
--
This test checks that we can have a function declaration with a contract and
without body and replace a call to the function by the contract.
Loading