summaryrefslogtreecommitdiff
path: root/compiler/InterpreterStatements.mli
blob: 519d2c8e370466ea0c39cc6878129bfcb6746561 (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
open Types
open Values
open Contexts
open LlbcAst
open Cps

(** 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
    {!constructor:Contexts.env_elem.EFrame} indicator delimiting the current frame and
    handle the return value to the continuation.

    If the boolean is false, we don't move the return value, and call the
    continuation with [None].
 *)
val pop_frame : config -> Meta.meta -> bool -> (typed_value option -> m_fun) -> m_fun

(** 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 :
  (RegionGroupId.id -> abs_kind) ->
  abs_region_group list ->
  (RegionGroupId.id -> bool) ->
  (abs -> eval_ctx -> eval_ctx * typed_avalue list) ->
  eval_ctx ->
  eval_ctx

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

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