summaryrefslogtreecommitdiff
path: root/compiler/InterpreterStatements.mli
blob: 1bfd1c78b141259e1bb58f46d2516f8eff905633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
module T = Types
module PV = PrimitiveValues
module V = Values
module E = Expressions
module C = Contexts
module Subst = Substitute
module A = LlbcAst
module L = Logging
module Inv = Invariants
module S = SynthesizeSymbolic
open Cps
open InterpreterExpressions

(** Pop the current frame.

    Drop all the local variables (which has the effect of moving their values to
    dummy variables, after ending the proper borrows of course) but the return
    variable, move the return value out of the return variable, remove all the
    local variables (but preserve the abstractions!), remove the {!C.Frame} indicator
    delimiting the current frame and handle the return value to the continuation.
 *)
val pop_frame : C.config -> (V.typed_value -> m_fun) -> m_fun

(** Instantiate a function signature, introducing **fresh** abstraction ids and
    region ids. This is mostly used in preparation of function calls, when
    evaluating in symbolic mode of course.

    Note: there are no region parameters, because they should be erased.
 *)
val instantiate_fun_sig : T.ety list -> LA.fun_sig -> LA.inst_fun_sig

(** Helper.

    Create a list of abstractions from a list of regions groups, and insert
    them in the context.

    Parameters:
    - [call_id]
    - [kind]
    - [rgl]: "region group list"
    - [region_can_end]: gives the region groups from which we generate functions
      which can end or not.
    - [compute_abs_avalues]: this function must compute, given an initialized,
      empty (i.e., with no avalues) abstraction, compute the avalues which
      should be inserted in this abstraction before we insert it in the context.
      Note that this function may update the context: it is necessary when
      computing borrow projections, for instance.
    - [ctx]
*)
val create_push_abstractions_from_abs_region_groups :
  V.FunCallId.id ->
  V.abs_kind ->
  LA.abs_region_group list ->
  (T.RegionGroupId.id -> bool) ->
  (V.abs -> C.eval_ctx -> C.eval_ctx * V.typed_avalue list) ->
  C.eval_ctx ->
  C.eval_ctx

(** Evaluate a statement *)
val eval_statement : C.config -> LA.statement -> st_cm_fun

(** Evaluate a statement seen as a function body *)
val eval_function_body : C.config -> LA.statement -> st_cm_fun