gpt4 book ai didi

ocaml - Frama-C:如何只获得行号

转载 作者:行者123 更新时间:2023-12-03 23:57:08 29 4
gpt4 key购买 nike

我正在用 frama-c 开发一个插件,我想在源代码中获取行号。例如在这个小脚本中:

open Cil_types
open Cil_types
open Cil_datatype
let print_loc kf =
let locals = Kernel_function.get_locals kf in
List.iter (fun vi ->
let line = Cil_datatype.Location.pretty_line Format.sprintf "%a" Printer.pp_location vi.vdecl in
Format.printf "Line %a: %a %s@."
Printer.pp_location vi.vdecl Printer.pp_typ vi.vtype vi.vname
) locals

let () =
Db.Main.extend (fun () ->
Format.printf "Printing all local vars...@.";
let fun_name = "main" in
let kf = Globals.Functions.find_by_name fun_name in
print_loc kf;
Format.printf "done!@.")

Printer.pp_location 打印完整路径。我只想要行号。

我在 Cil_datatype.Location 模块中找到了 pretty_line 并尝试使用它但我不能。我遇到了编译错误,而且我还没有找到在 Frama-C 源代码中使用此函数的示例。

我试过了,

let print_loc kf =             
let locals = Kernel_function.get_locals kf in
List.iter (fun vi ->
let line = Cil_datatype.Location.pretty_line Format.sprintf "%a" Printer.pp_location vi.vdecl in
Format.printf "Line %d: %a %s@." line Printer.pp_typ vi.vtype vi.vname) locals

我收到了这个错误信息

Error: This function has type Format.formatter -> Cil_datatype.Location.t -> unit It is applied to too many arguments; maybe you forgot a `;'.

我尝试了几种组合,但无论如何,要么我收到之前的错误消息,要么我收到这条消息:

Error: This expression has type Format.formatter -> Cil_types.location -> unit but an expression was expected of type unit -> 'a -> string Type Format.formatter is not compatible with type unit

否则我可以得到关于行号的信息吗?或者如何正确使用 Cil_datatype.Location.pretty_line

谢谢

最佳答案

octachtron 的回答很好地总结了如何将 pretty_line 与格式字符串一起使用。但是,如果您想将行号用作整数(不一定要用 %d 打印它),Cil_datatype.Location.t 是具体类型,更准确地说Cil_types.location 的别名,它本身就是一对 Lexing.location。因此,要检索位置开始的行,您可以简单地做

...
let line = (fst vi.vdecl).Lexing.pos_lnum in
...

关于ocaml - Frama-C:如何只获得行号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49233537/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com