Skip to content
Snippets Groups Projects
Commit 79ad9ebe authored by Basile Desloges's avatar Basile Desloges
Browse files

[eacsl] Fix e_acsl_observation_model.h contracts

If the Frama-C libc is used, then include `__fc_alloc_axiomatic.h`,
otherwise redeclare the axiomatics from this file.

In the redeclared axiomatics, use `SIZE_MAX` instead of `__FC_SIZE_MAX`
in E-ACSL specification since the Frama-C libc will not be available to
define this constant.
parent 88555f1b
No related branches found
No related tags found
No related merge requests found
...@@ -36,6 +36,9 @@ ...@@ -36,6 +36,9 @@
#include "../internals/e_acsl_alias.h" #include "../internals/e_acsl_alias.h"
#include "e_acsl_heap.h" #include "e_acsl_heap.h"
#ifdef __FC_STDLIB
#include <__fc_alloc_axiomatic.h>
#else
/*@ ghost extern int __fc_heap_status; */ /*@ ghost extern int __fc_heap_status; */
/*@ axiomatic dynamic_allocation { /*@ axiomatic dynamic_allocation {
...@@ -45,9 +48,10 @@ ...@@ -45,9 +48,10 @@
@ // predicate depends on the memory state @ // predicate depends on the memory state
@ axiom never_allocable{L}: @ axiom never_allocable{L}:
@ \forall integer i; @ \forall integer i;
@ i < 0 || i > __FC_SIZE_MAX ==> !is_allocable(i); @ i < 0 || i > SIZE_MAX ==> !is_allocable(i);
@ } @ }
*/ */
#endif
/************************************************************************/ /************************************************************************/
/*** API Prefixes {{{ ***/ /*** API Prefixes {{{ ***/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment