我试图使用frama-c的WP插件来证明一个简单的断言。 C代码是从Targetlink查找表生成的。我的目标是为函数提供足够的注释,我可以使用生成的契约来证明调用程序的属性。作为第一步,我在函数开头附近写了一个断言,将常量与从解除引用的指针获得的值进行比较,请参见下面的示例。
typedef struct MAP_Tab1DS0I2T3_b_tag {
int Nx;
const int * x_table;
const int * z_table;
} MAP_Tab1DS0I2T3_b;
int LARA_GearEnaCndn_X[9] =
{
-1, 0, 1, 2, 3, 4, 5, 6, 8
};
int LARA_GearEnaCndn_Z[9] =
{
1, 0, 1, 1, 0, 0, 0, 0, 0
};
MAP_Tab1DS0I2T3_b Sb218_LARA_GearEnaCndn_CUR_map = {
9,
(const int *) &(LARA_GearEnaCndn_X[0]),
(const int *) &(LARA_GearEnaCndn_Z[0])
};
/*@ requires x == 2; */
int Tab1DS0I2T3_b(const MAP_Tab1DS0I2T3_b * map, int x)
{
/* SLLocal: Default storage class for local variables | Width: 8 */
int Aux_U8;
int Aux_U8_a;
int Aux_U8_b;
int Aux_U8_c;
/* SLLutLocalConst: Default storage class for local variables | Width: 32 */
const int * x_table /* Scaling may differ through function reuse. */;
const int * z_table /* Scaling may differ through function reuse. */;
x_table = map->x_table;
z_table = map->z_table;
//@ assert (x < x_table[(int) (map->Nx - 1)]);
if (x <= *(x_table)) {
/* Saturation. */
return z_table[0];
}
if (x >= x_table[(int) (map->Nx - 1)]) {
return z_table[(int) (map->Nx - 1)];
}
/* Linear search, start low. */
x_table++;
while (x > *(x_table++)) {
z_table++;
}
x_table -= 2 /* 2. */;
Aux_U8 = *(z_table++);
Aux_U8_a = *(z_table);
/* Interpolation. */
Aux_U8_b = (int) (((int) x) - ((int) x_table[0]));
Aux_U8_c = (int) (((int) x_table[1]) - ((int) x_table[0]));
if (Aux_U8 <= Aux_U8_a) {
/* Positive slope. */
Aux_U8 += ((int) ((((int) (int) (Aux_U8_a - Aux_U8)) * ((int) Aux_U8_b)) /
Aux_U8_c));
}
else {
/* Negative slope. */
Aux_U8 -= ((int) ((((int) (int) (Aux_U8 - Aux_U8_a)) * ((int) Aux_U8_b)) /
Aux_U8_c));
}
return Aux_U8;
}
有人可以给我一些提示我需要哪些注释才能成功获得证明? 从Coq证明义务的角度来看,我发现对于重写术语我需要的“addr_of_data”或“access”等操作没有公理。此外,缺少断言中引用的全局变量的信息。
1 subgoals
______________________________________(1/1)
forall x_0 map_0 : Z,
is_sint32 x_0 ->
forall m_0 : array data,
x_0 = 2 ->
forall x_table_0 : Z,
x_table_0 = addr_of_data (access m_0 (addr_shift map_0 1)) ->
2 <
sint32_of_data
(access m_0
(addr_shift x_table_0
(as_sint32 (sint32_of_data (access m_0 (addr_shift map_0 0)) - 1))))
BR, 哈拉尔德
答案 0 :(得分:4)
addr_of_data , addr_shift 等exioms会在您的coq-ide的 store_model.v 标签中自动显示。
您的示例无处声明地图获取 Sb218_LARA_GearEnaCndn_CUR_map 作为实际参数。没有它,断言可能是错误的。
现在,我不知道如何使 wp 利用全局初始值设定项的显式值作为证明的一部分。 ACSL中有一些全局不变量,但 wp 似乎无论如何都不会对它们进行处理。因此,我将使用明确的 require 语句来表示所需的值。
在函数头中给出以下语句集:
/*@ requires x == 2;
requires map->x_table == Sb218_LARA_GearEnaCndn_CUR_map.x_table;
requires map->Nx == Sb218_LARA_GearEnaCndn_CUR_map.Nx;
requires LARA_GearEnaCndn_X[8] == 8;
requires Sb218_LARA_GearEnaCndn_CUR_map.Nx == 9;
requires Sb218_LARA_GearEnaCndn_CUR_map.x_table == LARA_GearEnaCndn_X;
requires Sb218_LARA_GearEnaCndn_CUR_map.z_table == LARA_GearEnaCndn_Z;
*/
我能够证明所需的断言。
第一个是你的。
第二个和第三个是*map=Sb218_LARA_GearEnaCndn_CUR_map
的明确扩展
为了不扰乱地址范围。
其余部分反映了初始化值。