Module BO.BufferOverrunSemantics

val is_stack_exp : IR.Exp.t -> BufferOverrunDomain.Mem.t -> bool

Check if an expression is a stack variable such as n$0 or local variable for C array

Evalute an expression

eval_locs exp mem is like eval exp mem |> Val.get_all_locs but takes some shortcuts to avoid computing useless and/or problematic intermediate values

Return the array value of the input expression. For example, when x is a program variable, eval_arr x returns array blocks the x is pointing to, on the other hand, eval x returns the abstract location of x.

Evaluate array location with index, i.e., eval_lindex integer_type_widths array_exp index_exp mem

Evaluate length of array locations

Evaluate length of C string

Evaluate the array length conservatively, which is useful when there are multiple array locations and their lengths are joined to top. For example, if the arr_locs points to two arrays a and b and if their lengths are a.length and b.length, this function evaluates its length as [0, a.length.ub + b.length.ub].

type eval_mode =
  1. | EvalNormal
    (*

    Given a symbolic value of an unknown function Symb.SymbolPath.Callsite, it returns a symbolic interval value.

    *)
  2. | EvalPOCond
    (*

    Given a symbolic value of an unknown function, it returns the top interval value. This is used when substituting condition expressions of proof obligations.

    *)
  3. | EvalPOReachability
    (*

    This is similar to EvalPOCond, but it returns the bottom location, instead of the unknown location, when a location to substitute is not found. This is used when substituting reachabilities of proof obligations.

    *)
  4. | EvalCost
    (*

    This is similar to EvalNormal, but it is designed to be used in substitutions of the cost results, avoiding precision loss by joining of symbolic values. Normal join of two different symbolic values, s1 and s2, becomes top due to the limitation of our domain. On the other hand, in this mode, it returns an upperbound s1+s2 for the case, because the cost values only care about the upperbounds.

    *)

Several modes of ondemand evaluations

Make eval_sym function for on-demand symbol evaluation

Make eval_sym function of EvalCost mode for on-demand symbol evaluation

module Prune : sig ... end