package mopsa

  1. Overview
  2. Docs
MOPSA: A Modular and Open Platform for Static Analysis using Abstract Interpretation

Install

dune-project
 Dependency

Authors

Maintainers

Sources

mopsa-analyzer-v1.2.tar.gz
md5=37966e98ffeebcedc09bd6e9b2b81f69
sha512=40d4d826c25f680766c07eccbabdf5e8a4fa023016e8a164e4e4f6b3781c8484dc4df437055721dfd19b9db8fb7fe3b61236c4833186d346fc7204a68d01eaaa

doc/mopsa.mopsa_analyzer/Mopsa_analyzer/Languages/Universal/Iterators/Loops/index.html

Module Iterators.Loops

Loops iterator with widening

val name : string

Loops flow token

type MopsaLib.token +=
  1. | T_break
    (*

    Control flows reaching a break statement

    *)
  2. | T_continue
    (*

    Control flows reaching a continue statement

    *)

Unrolling strategy

type unrolling = {
  1. mutable unroll_global_nb : int option;
  2. mutable unroll_locals : local_unrolling list;
}
and local_unrolling = {
  1. unroll_local_file : string option;
  2. unroll_local_line : int;
  3. unroll_local_nb : int option;
}
val opt_unrolling : unrolling
val parse_unroll_local : string -> local_unrolling

Parse local unrolling specification string

val parse_full_unroll_local : string -> local_unrolling

Parse local full unrolling specification string

val get_range_unrolling : MopsaLib.range -> int option

Get the unrolling limit for a given loop location

Command line options

val opt_loop_widening_delay : int ref

Number of iterations before applying a widening.

val opt_loop_use_cache : bool ref
val opt_loop_decreasing_it : bool ref

Domain

val nestedness : int ref
module Domain : sig ... end

Setup

OCaml

Innovation. Community. Security.