使用Frama-C脚本打印ACSL注释

时间:2014-05-07 18:12:23

标签: annotations ocaml frama-c

我正在学习如何开发Frama-C插件。在阅读Frama-C Developer手册并执行CFG插件示例后,我尝试执行一个基本脚本,在C文件中打印所有注释。我想出了这个:

open Cil_types

class print_annot out = object
    inherit Visitor.frama_c_inplace

method vstmt_aux s =
let annots = Annotations.code_annot s in
let anleng = List.length annots in
if anleng <= 0 then Format.fprintf out "Empty List\n"
  else
  Format.fprintf out "Number of Annotations: %d\n" anleng;
  List.iter (fun annot -> Format.fprintf out " -> s%d\n" annot.annot_id) annots;
  Cil.DoChildren
end

let run () =
let chan = open_out "annots.out" in
let fmt = Format.formatter_of_out_channel chan in
Visitor.visitFramacFileSameGlobals (new print_annot fmt) (Ast.get());
close_out chan

let () = Db.Main.extend run

即使输入文件具有ACSL注释并且从不打印注释ID,它总是表示列表为空。我做错了什么?

编辑:

使用以下代码的示例:

 /*@ requires y >= 0;
 @ ensures \result >= 0;
 */

 int g(int y){
int x=0;

if(y>0){
    x=100;
    x=x+50;
    x=x-100;
}else{
    x = x - 150;
    x=x-100;
    x=x+100;
}
return x;
    }

    void main(){
int a = g(0);

 }

用以下方法调用frama-c:

 $ frama-c -load-script annot_script.ml condi.c

提供以下输出:

 Empty List
 Empty List
 Empty List
 Empty List
 Empty List
 Empty List
 Empty List
 Empty List
 Empty List
 Empty List
 Empty List

1 个答案:

答案 0 :(得分:3)

在您的示例中,没有任何注释附加到语句。 requiresensures是函数合约的一部分,并附加到函数g,而不是g的任何语句。

附加到语句的注释例如在行/*@ assert x == 150; */之后为x=x+50;

如果我修改condi.c以插入此断言,那么使用相同的命令行,我得到:

Empty List
Empty List
Empty List
Empty List
Number of Annotations: 1
 -> s1
Empty List
Empty List
Empty List
Empty List
Empty List
Empty List
Empty List

您的脚本似乎正在按预期工作,其值为“expected”,与打印附加到语句的注释相对应。