2014-10-29 09:15:54 +01:00
|
|
|
(*===-- llvm_analysis.mli - LLVM OCaml Interface --------------*- OCaml -*-===*
|
2007-10-06 23:00:36 +02:00
|
|
|
*
|
2019-01-19 09:50:56 +01:00
|
|
|
* Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
* See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2007-10-06 23:00:36 +02:00
|
|
|
*
|
|
|
|
*===----------------------------------------------------------------------===*)
|
|
|
|
|
2008-03-09 08:17:38 +01:00
|
|
|
(** Intermediate representation analysis.
|
|
|
|
|
2013-11-01 01:26:01 +01:00
|
|
|
This interface provides an OCaml API for LLVM IR analyses, the classes in
|
2008-03-09 08:17:38 +01:00
|
|
|
the Analysis library. *)
|
2007-10-06 23:00:36 +02:00
|
|
|
|
2007-12-01 22:01:15 +01:00
|
|
|
(** [verify_module m] returns [None] if the module [m] is valid, and
|
|
|
|
[Some reason] if it is invalid. [reason] is a string containing a
|
2008-03-09 08:17:38 +01:00
|
|
|
human-readable validation report. See [llvm::verifyModule]. *)
|
2007-10-06 23:00:36 +02:00
|
|
|
external verify_module : Llvm.llmodule -> string option = "llvm_verify_module"
|
|
|
|
|
2007-12-01 22:01:15 +01:00
|
|
|
(** [verify_function f] returns [None] if the function [f] is valid, and
|
|
|
|
[Some reason] if it is invalid. [reason] is a string containing a
|
2008-03-09 08:17:38 +01:00
|
|
|
human-readable validation report. See [llvm::verifyFunction]. *)
|
2007-10-06 23:00:36 +02:00
|
|
|
external verify_function : Llvm.llvalue -> bool = "llvm_verify_function"
|
|
|
|
|
2007-12-01 22:01:15 +01:00
|
|
|
(** [verify_module m] returns if the module [m] is valid, but prints a
|
2008-03-09 08:17:38 +01:00
|
|
|
validation report to [stderr] and aborts the program if it is invalid. See
|
|
|
|
[llvm::verifyModule]. *)
|
2007-10-06 23:00:36 +02:00
|
|
|
external assert_valid_module : Llvm.llmodule -> unit
|
|
|
|
= "llvm_assert_valid_module"
|
|
|
|
|
2007-12-01 22:01:15 +01:00
|
|
|
(** [verify_function f] returns if the function [f] is valid, but prints a
|
2008-03-09 08:17:38 +01:00
|
|
|
validation report to [stderr] and aborts the program if it is invalid. See
|
|
|
|
[llvm::verifyFunction]. *)
|
2007-10-06 23:00:36 +02:00
|
|
|
external assert_valid_function : Llvm.llvalue -> unit
|
|
|
|
= "llvm_assert_valid_function"
|
2008-03-31 18:22:09 +02:00
|
|
|
|
|
|
|
(** [view_function_cfg f] opens up a ghostscript window displaying the CFG of
|
|
|
|
the current function with the code for each basic block inside.
|
|
|
|
See [llvm::Function::viewCFG]. *)
|
|
|
|
external view_function_cfg : Llvm.llvalue -> unit = "llvm_view_function_cfg"
|
|
|
|
|
|
|
|
(** [view_function_cfg_only f] works just like [view_function_cfg], but does not
|
|
|
|
include the contents of basic blocks into the nodes.
|
|
|
|
See [llvm::Function::viewCFGOnly]. *)
|
|
|
|
external view_function_cfg_only : Llvm.llvalue -> unit
|
|
|
|
= "llvm_view_function_cfg_only"
|