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
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
(* SPDX-License-Identifier: AGPL-3.0-or-later *)
(* Copyright © 2021-2026 OCamlPro *)
(* Written by the Owi programmers *)

module Stack = Abstract_stack
module JumpMap = Abstract_jump_map
module Value = Abstract_value

exception RecursiveFunctionCall

let gen_new_value ~widens a b state_a state_b
  (Abstract_domain.Context.Result (inc, intup, cont))
  (f : Value.t -> 'container -> 'container) =
  let size = Value.size_of a in
  (* inc : whether the new value is included in the old one
   * intup : symbolic repr of all variabls that will be created simultaneously
   * cont : continuation function
   *)
  let (Abstract_domain.Context.Result (inc, in_tup, local_cont)) =
    Abstract_domain.serialize_binary ~size ~widens
      state_a.Abstract_interpreter_state.abs_state.Abstract_state.ctx
      (Value.to_binary a)
      state_b.Abstract_interpreter_state.abs_state.Abstract_state.ctx
      (Value.to_binary b) (inc, intup)
  in
  let cont ctx out_tuple =
    let value, out_tuple = local_cont ctx out_tuple in
    let container, out_tuple = cont ctx out_tuple in
    let b = Value.of_binary size value in
    (f b container, out_tuple)
  in
  Abstract_domain.Context.Result (inc, in_tup, cont)

let serialize ~widens :
     Abstract_interpreter_state.t
  -> Abstract_interpreter_state.t
  -> (Abstract_interpreter_state.t, 'a) Abstract_domain.Context.result =
 fun state_a state_b ->
  let rec serialize_stack lhs rhs acc_res =
    match (lhs, rhs) with
    | [], [] -> acc_res
    | [], _ :: _ | _ :: _, [] ->
      Fmt.failwith "join on stacks of different sizes"
    | v1 :: rest_a, v2 :: rest_b -> begin
      let r = gen_new_value ~widens v1 v2 state_a state_b acc_res List.cons in
      serialize_stack rest_a rest_b r
      end
  in
  let (Abstract_domain.Context.Result (included, in_tuple, locals_continue)) =
    Abstract_locals.fold_on_nonequal_union
      begin fun k v1 v2 res ->
        let size =
          (* v1 and v2 should have the same size *)
          match v1 with
          | Some v -> Value.size_of v
          | None -> assert false
        in
        let v1 =
          Option.value v1 ~default:(Value.top size state_a.abs_state.ctx)
        in
        let v2 =
          Option.value v2 ~default:(Value.top size state_b.abs_state.ctx)
        in
        let f = Abstract_locals.add k in
        gen_new_value ~widens v1 v2 state_a state_b res f
      end
      state_a.abs_state.locals state_b.abs_state.locals
      (Abstract_domain.Context.Result
         ( true
         , Abstract_domain.Context.empty_tuple ()
         , fun _ctx out -> (state_a.abs_state.locals, out) ) )
  in
  (* TODO: fixme
  let (Abstract_domain.Context.Result (included, in_tuple, globals_continue)) =
    Abstract_globals.fold_on_nonequal_union
      begin fun k v1 v2 res ->
        let size =
          match v1 with Some v -> Value.size_of v | None -> assert false
        in
        let v1 = Option.value v1 ~default:(Value.top size state_a.ctx) in
        let v2 = Option.value v2 ~default:(Value.top size state_b.ctx) in
        let f = Abstract_globals.add k in
        gen_new_value ~widens v1 v2 state_a state_b res f
      end
      state_a.env.globals state_b.env.globals
      (Abstract_domain.Context.Result
         (included, in_tuple, fun _ctx out -> (state_a.globals, out)) )
  in
  *)
  Log.debug (fun m ->
    let pp_locals ctx = Abstract_locals.pp (Value.pp_with_ctx ctx) in
    m "serializing locals (%s) : @\n first : %a @\n second : %a"
      (if widens then "widen" else "join")
      (pp_locals state_a.abs_state.ctx)
      state_a.abs_state.locals
      (pp_locals state_b.abs_state.ctx)
      state_b.abs_state.locals );

  Log.debug (fun m ->
    m "serializing stacks (%s) : @\n first : %a @\n second : %a"
      (if widens then "widen" else "join")
      (Abstract_stack.pp state_a.abs_state.ctx)
      state_a.abs_state.stack
      (Abstract_stack.pp state_b.abs_state.ctx)
      state_b.abs_state.stack );

  let (Abstract_domain.Context.Result (inc, in_tup, stack_continue)) =
    serialize_stack state_a.abs_state.stack state_b.abs_state.stack
      (Abstract_domain.Context.Result
         (included, in_tuple, fun _ctx out -> ([], out)) )
  in
  let cont ctx out =
    let stack, out = stack_continue ctx out in
    (*
    let globals, out = globals_continue ctx out in
  *)
    let locals, out = locals_continue ctx out in
    let abs_state_a =
      { state_a.abs_state with ctx; stack = List.rev stack; locals }
    in
    ({ state_a with abs_state = abs_state_a }, out)
  in
  Abstract_domain.Context.Result (inc, in_tup, cont)

let join state_a state_b =
  let (Abstract_domain.Context.Result (_inc, in_tuple, continue)) =
    serialize ~widens:false state_a state_b
  in
  let ctx, out =
    Abstract_domain.typed_nondet2 state_a.abs_state.ctx state_b.abs_state.ctx
      in_tuple
  in
  fst @@ continue ctx out

let join_opt state_a state_b =
  match (state_a, state_b) with
  | Some state_a, Some state_b -> Some (join state_a state_b)
  | None, Some state | Some state, None -> Some state
  | None, None -> None

let join_X (state_a, jt_a) (state_b, jt_b) =
  let jt = JumpMap.append jt_a jt_b in
  match (state_a, state_b) with
  | Some state_a, Some state_b ->
    let state = join state_a state_b in
    (Some state, jt)
  | Some state, None | None, Some state -> (Some state, jt)
  | _, _ -> assert false

let join_jts stack_size = function
  | None -> None
  | Some jts -> (
    match jts with
    | [] -> None
    | (h : Abstract_interpreter_state.t) :: t ->
      let abs_state =
        let h_stack = Stack.keep h.abs_state.stack stack_size in
        let h_abs_state = { h.abs_state with stack = h_stack } in
        List.fold_left
          (fun acc (state : Abstract_interpreter_state.t) ->
            let stack = Stack.keep state.abs_state.stack stack_size in
            let abs_state = { state.abs_state with stack } in
            let state = { state with abs_state } in
            join acc state )
          { h with abs_state = h_abs_state }
          t
      in
      Some abs_state )

let widen widening_id state_a state_b =
  let (Abstract_domain.Context.Result (included, in_tuple, continue)) =
    serialize ~widens:true state_a state_b
  in
  let ctx, included, out =
    Abstract_domain.widened_fixpoint_step ~widening_id
      ~previous:state_a.abs_state.ctx ~next:state_b.abs_state.ctx
      (included, in_tuple)
  in
  (* TODO find out why is the out tuple ignored *)
  let state, _out_tuple = continue ctx out in
  let abs_state = { state.abs_state with ctx } in
  ({ state with abs_state }, included)

let exec_extern_func ({ stack; _ } : Abstract_state.t)
  (f : Abstract_extern.Func.t) =
  Log.debug (fun m -> m "executing extern func");
  let open Abstract_extern.Func in
  let pop_arg (type ty) stack (arg : ty Abstract_extern.Func.telt) :
    ty * Stack.t =
    match arg with
    | I32 -> Stack.pop_i32 stack
    | I64 -> Stack.pop_i64 stack
    | F32 -> Stack.pop_f32 stack
    | F64 -> Stack.pop_f64 stack
    | V128 -> Stack.pop_v128 stack
    | Externref _ety ->
      (* TODO: handle when we start thinking about refs *)
      assert false
  in
  let rec split_args : type f r.
    Stack.t -> (f, r) Abstract_extern.Func.atype -> Stack.t * Stack.t =
   fun stack ty ->
    let[@local] split_one_arg args =
      let elt, stack = Stack.pop stack in
      let elts, stack = split_args stack args in
      (elt :: elts, stack)
    in
    match ty with
    | Mem (_, args) -> split_args stack args
    | Arg (_, args) -> split_one_arg args
    | UArg args -> split_args stack args
    | Res -> ([], stack)
  in
  let rec apply : type f r.
    Stack.t -> (f, r) Abstract_extern.Func.atype -> f -> r =
   fun stack ty f ->
    match ty with
    | Mem (_memid, _args) ->
      (* TODO: Handle correctly *)
      assert false
    | Arg (arg, args) ->
      let v, stack = pop_arg stack arg in
      apply stack args (f v)
    | UArg args -> apply stack args (f ())
    | Res -> f
  in
  let (Abstract_extern.Func.Extern_func (Func (atype, rtype), func)) = f in
  let args, stack = split_args stack atype in
  let open Abstract_monad in
  let+ r = apply (List.rev args) atype func in
  let push_val (type ty) (arg : ty Abstract_extern.Func.telt) (v : ty) stack =
    match arg with
    | I32 -> Stack.push_i32 stack v
    | I64 -> Stack.push_i64 stack v
    | F32 -> Stack.push_f32 stack v
    | F64 -> Stack.push_f64 stack v
    | V128 -> Stack.push_v128 stack v
    | Externref _ty ->
      (* TODO: handle when we start thinking about refs *)
      assert false
  in
  match (rtype, r) with
  | R0, () -> stack
  | R1 t1, v1 -> push_val t1 v1 stack
  | R2 (t1, t2), (v1, v2) -> push_val t1 v1 stack |> push_val t2 v2
  | R3 (t1, t2, t3), (v1, v2, v3) ->
    push_val t1 v1 stack |> push_val t2 v2 |> push_val t3 v3
  | R4 (t1, t2, t3, t4), (v1, v2, v3, v4) ->
    push_val t1 v1 stack |> push_val t2 v2 |> push_val t3 v3 |> push_val t4 v4

module DenotFixpoint (S : module type of Abstract_interpreter_simple) = struct
  let rec eval_expr :
       Abstract_interpreter_state.t
    -> Binary.expr Annotated.t
    -> Abstract_interpreter_state.t option
       * Abstract_interpreter_state.t list JumpMap.t =
   fun state expr ->
    let rec loop (state : Abstract_interpreter_state.t) jt (expr : Binary.expr)
        =
      match expr with
      | [] -> (Some state, jt)
      | instr :: instrs -> (
        let new_state, new_jt = eval_instr state instr in
        let new_jt = JumpMap.append jt new_jt in
        Log.debug (fun m ->
          m "jt after (%a) :  %a"
            (Binary.pp_instr ~short:true)
            instr.raw JumpMap.pp new_jt );
        match new_state with
        | None -> (None, new_jt)
        | Some state -> loop state new_jt instrs )
    in
    loop state JumpMap.empty expr.raw

  and eval_func ({ abs_state; _ } as state : Abstract_interpreter_state.t) idx
    (func : Binary.Func.t) =
    if List.mem idx abs_state.call_stack then raise RecursiveFunctionCall;
    Log.info (fun m ->
      m "calling func  : func %s" (Option.value func.id ~default:"anonymous") );
    let (None | Some _), (param_type, result_type) = func.type_f in
    let args, caller_popped_stack =
      Stack.pop_n abs_state.stack (List.length param_type)
    in
    let init_value : Binary.val_type -> Value.t = function
      | Num_type I32 -> I32 (Abstract_i32.zero abs_state.ctx)
      | Num_type I64 -> I64 (Abstract_i64.zero abs_state.ctx)
      | Num_type F32 -> F32 (Abstract_f32.unknown abs_state.ctx)
      | Num_type F64 -> F64 (Abstract_f64.unknown abs_state.ctx)
      | _ -> assert false
    in

    let locals =
      args @ List.map (fun (_str_opt, vt) -> init_value vt) func.locals
      |> List.rev
      |> List.mapi (fun i x -> (i, x))
      |> Abstract_locals.of_list
    in
    Log.debug (fun m ->
      m "before call (%a): caller state : %a"
        (Fmt.option ~none:(Fmt.any "$") Fmt.string)
        func.id Abstract_interpreter_state.pp state );
    let call_stack = idx :: abs_state.call_stack in
    let fn_abs_state =
      { abs_state with stack = []; func_rt = result_type; locals; call_stack }
    in
    let fn_end_state, jt =
      eval_expr { state with abs_state = fn_abs_state } func.body
    in
    (* The stack given to the function is empty so the returned stack should only contain the results *)
    let fn_end_stack_size = List.length result_type in
    let jumps_ret = join_jts fn_end_stack_size (JumpMap.find_opt Ret jt) in
    let jumps_br0 = join_jts fn_end_stack_size (JumpMap.find_opt (I 0) jt) in
    let fn_end_state = join_opt fn_end_state jumps_ret |> join_opt jumps_br0 in
    (* We should probably copy state and join back the return values in the context here *)
    match fn_end_state with
    | Some fn_end_state ->
      Log.debug (fun m ->
        m "after call(%a): callee state : %a@."
          (Fmt.option ~none:(Fmt.any "$") Fmt.string)
          func.id Abstract_interpreter_state.pp fn_end_state );
      let stack =
        caller_popped_stack
        @ Stack.keep fn_end_state.abs_state.stack fn_end_stack_size
      in
      let abs_state =
        { abs_state with stack; ctx = fn_end_state.abs_state.ctx }
      in
      Some { fn_end_state with abs_state }
    | None ->
      Log.debug (fun m -> m "abstract state : None @.");
      None

  and eval_instr ({ abs_state; env } as state : Abstract_interpreter_state.t) :
       Binary.instr Annotated.t
    -> Abstract_interpreter_state.t option
       * Abstract_interpreter_state.t list JumpMap.t =
   fun instr ->
    let { ctx; stack; locals; _ } : Abstract_state.t = abs_state in
    Log.debug (fun m ->
      m "abstract state : %a" Abstract_interpreter_state.pp state );
    Log.info (fun m ->
      m "stack         : [ %a ]" (Abstract_stack.pp ctx) stack );
    (* Log.info (fun m -> *)
    (*   m "ctx           : [ %a ]" Abstract_domain.context_pretty ctx ); *)
    Log.info (fun m ->
      m "locals        : [ %a ]"
        (Abstract_locals.pp (Value.pp_with_ctx ctx))
        locals );
    Log.info (fun m ->
      m "running instr : %a" (Binary.pp_instr ~short:true) instr.raw );
    match instr.raw with
    | Call call_idx ->
      let func = Env.Abstract.get_func ~env call_idx in
      begin match func with
      | Wasm func ->
        let r = eval_func state call_idx func in
        (r, JumpMap.empty)
      | Extern func -> (
        let stack = exec_extern_func abs_state func in
        match Abstract_monad.run stack abs_state with
        | None -> (None, JumpMap.empty)
        | Some (stack, abs_state) ->
          let abs_state = { abs_state with stack } in
          (Some { state with abs_state }, JumpMap.empty) )
      end
    | Block (_str_opt, bt, expr) ->
      let next_state, jt = eval_expr state expr in
      let stack_size =
        match bt with
        | Some (_i, (params, _res)) -> List.length params
        | None -> 0
      in
      let jumps_br0 = join_jts stack_size (JumpMap.find_opt (I 0) jt) in
      let state = join_opt next_state jumps_br0 in
      let jt =
        (* TODO on peut avoir une paire de (int * map) pour ne pas avoir à decr la liste immédiatement *)
        JumpMap.decr jt
      in
      (state, jt)
    | If_else (_, bt, expr_then, expr_else) ->
      let b, stack = Stack.pop_bool stack ctx in
      begin match
        ( Abstract_domain.assume ctx b
        , Abstract_domain.assume ctx (Abstract_boolean.not ctx b) )
      with
      | Some ctx, None ->
        eval_instr
          { state with abs_state = { abs_state with stack; ctx } }
          (Annotated.dummy (Binary.Block (None, bt, expr_then)))
      | None, Some ctx ->
        eval_instr
          { state with abs_state = { abs_state with stack; ctx } }
          (Annotated.dummy (Binary.Block (None, bt, expr_else)))
      | None, None -> assert false
      | Some ctx_true, Some ctx_false ->
        let strue = { abs_state with stack; ctx = ctx_true } in
        let sfalse = { abs_state with stack; ctx = ctx_false } in
        join_X
          (eval_instr
             { state with abs_state = strue }
             (Annotated.dummy (Binary.Block (None, bt, expr_then))) )
          (eval_instr
             { state with abs_state = sfalse }
             (Annotated.dummy (Binary.Block (None, bt, expr_else))) )
      end
    | Loop (_str_opt, bt, body) ->
      let widening_id = Domains.Sig.Widening_Id.fresh () in
      (* TODO tester si on a besoin de copie *)
      let initial_state =
        { abs_state with ctx = Abstract_domain.Context.copy ctx }
      in
      let stack_size =
        match bt with
        | Some (_i, (params, _res)) -> List.length params
        | None -> 0
      in
      let rec fixpoint state =
        let next_state, jt = eval_expr state body in
        let next_head =
          match join_jts stack_size (JumpMap.find_opt (I 0) jt) with
          | Some state -> Some state
          | None ->
            (* TODO: handle return too! *)
            begin match next_state with
            | Some state ->
              let stack = Stack.keep stack stack_size in
              let abs_state = { state.abs_state with stack } in
              Some { state with abs_state }
            | None -> None
            end
        in
        match next_head with
        | None ->
          let jt = JumpMap.decr jt in
          (None, jt)
        | Some next_head ->
          let widened, included = widen widening_id state next_head in
          if not included then fixpoint widened
          else
            (* fixpoint reached: exit loop, assume condition is false *)
            let jt = JumpMap.decr jt in
            begin match next_state with
            | None -> (next_state, jt)
            | Some next_state ->
              let stack = next_state.abs_state.stack @ initial_state.stack in
              let next_state =
                Some
                  { next_state with
                    abs_state = { next_state.abs_state with stack }
                  }
              in
              (next_state, jt)
            end
      in
      fixpoint state
    | Br i -> (None, JumpMap.of_list [ (I i, [ state ]) ])
    | Br_if i ->
      let b, stack = Stack.pop_bool stack ctx in
      let jt_if =
        match Abstract_domain.assume ctx b with
        | Some ctx ->
          let abs_state = { abs_state with stack; ctx } in
          let state = { state with abs_state } in
          JumpMap.of_list [ (I i, [ state ]) ]
        | None -> JumpMap.empty
      in
      let state =
        match Abstract_domain.assume ctx (Abstract_boolean.not ctx b) with
        | Some ctx ->
          let abs_state = { abs_state with stack; ctx } in
          Some { state with abs_state }
        | None -> None
      in
      (state, jt_if)
    | Br_table (cases, default) ->
      let v, stack = Stack.pop_i32 stack in
      let nb_cases = Array.length cases in
      let default =
        match
          Abstract_domain.assume ctx
            (Abstract_i32.ge_u ctx v (Abstract_i32.of_int ctx nb_cases))
        with
        | Some ctx ->
          let abs_state = { abs_state with ctx; stack } in
          let state = { state with abs_state } in
          [ (JumpMap.Key.I default, [ state ]) ]
        | None -> []
      in
      let cases =
        Array.map
          (fun i ->
            ( i
            , Abstract_domain.assume ctx
                (Abstract_i32.eq ctx v (Abstract_i32.of_int ctx i)) ) )
          cases
      in
      let all_cases =
        Array.fold_left
          (fun acc (i, c) ->
            match c with
            | Some ctx ->
              let abs_state = { abs_state with ctx; stack } in
              let state = { state with abs_state } in
              (JumpMap.Key.I i, [ state ]) :: acc
            | None -> acc )
          default cases
      in
      (None, JumpMap.of_list all_cases)
    | Return -> (None, JumpMap.of_list [ (Ret, [ state ]) ])
    | Simple i -> (
      let uuid = instr.uuid in
      let res = S.eval_instr gen_new_value state ~uuid i in
      match res with
      | State state -> (Some state, JumpMap.empty)
      | Unreachable -> (None, JumpMap.empty) )
    | Br_on_non_null _
    | Br_on_cast (_, _, _)
    | Br_on_cast_fail (_, _, _)
    | Return_call _
    | Return_call_indirect (_, _)
    | Return_call_ref _ | Br_on_null _ | Call_ref _
    | Call_indirect (_, _) ->
      (* TODO! *) assert false
end

module ConcreteFixpoint = DenotFixpoint (Abstract_interpreter_simple)

let eval_exprs ~env ~(modul : Env.Abstract.modul) abs_state =
  (* TODO: init_code is no more an exprs, it's a regular expr now, this function can probably be removed and eval_expr could be used instead! *)
  let init_code = Env.Abstract.get_initialization_code ~env ~modul in
  let state = { Abstract_interpreter_state.abs_state; env } in
  let state =
    match ConcreteFixpoint.eval_expr state (Annotated.dummy init_code) with
    | None, _mapping -> state
    | Some state, _mapping -> state
  in
  state.abs_state

let modul_with_ctx ~env ~(modul : Env.Abstract.modul) ctx =
  let abs_state = Abstract_state.empty () in
  let abs_state = { abs_state with ctx } in
  eval_exprs ~env ~modul abs_state

let modul ~(env : Env.Abstract.t) ~(modul : Env.Abstract.modul) =
  let abs_state = Abstract_state.empty () in
  eval_exprs ~env ~modul abs_state

let exec_vfunc_from_outside ~env ~ctx ~locals
  (func : Abstract_extern.Func.t Kind.func) =
  let abs_state = Abstract_state.empty_exec_state ~ctx ~locals in
  try
    match func with
    | Kind.Wasm func -> (
      let stack =
        Abstract_locals.to_list locals
        |> List.sort (fun (i1, _) (i2, _) -> compare i1 i2)
        |> List.map snd
      in
      let abs_state = { abs_state with stack } in
      match
        ConcreteFixpoint.eval_func { abs_state; env }
          (* TODO: attach correct ID to this function to distinguish the call stack, 0 is incorrect here *)
          0
          func
      with
      | Some state -> Ok state.abs_state
      | None -> Fmt.error_msg "failed" )
    | Extern f -> (
      let stack = exec_extern_func abs_state f in
      match Abstract_monad.run stack abs_state with
      | None -> Fmt.error_msg "failed"
      | Some (stack, abs_state) ->
        let abs_state = { abs_state with stack } in
        Ok abs_state )
  with Stack_overflow -> Error `Call_stack_exhausted