package p4spectec

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file flow.ml

1
2
3
4
5
6
7
8
9
10
11
12
open Lang
open Sl
open Backtrace

(* Signatures for control flow *)

type t =
  | Cont of trace list
  | Res of value list
  | Ret of value
  | Tailcall_func of id * targ list * value list
  | Tailcall_rel of id * value list