aboutsummaryrefslogtreecommitdiffstats
path: root/src/SoftwarePipelining/SPBasic.mli
blob: f16e5243284f92b68cd839bfdeab5c0aa888ff19 (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
(***********************************************************************)
(*                                                                     *)
(*                        Compcert Extensions                          *)
(*                                                                     *)
(*                       Jean-Baptiste Tristan                         *)
(*                                                                     *)
(*  All rights reserved.  This file is distributed under the terms     *)
(*  described in file ../../LICENSE.                                   *)
(*                                                                     *)
(***********************************************************************)


open Graph.Pack.Digraph

(* DATA DEPENDENCY GRAPHS *)
module G : Graph.Sig.P 

(* We abstract the register type to make sure that the user won't mess up *)
type reg

(* The scheduling should return a value of type pipeline *)
type pipeline = {
  steady_state : G.V.t list; 
  prolog : G.V.t list; 
  epilog : G.V.t list; 
  min : int; 
  unrolling : int;
  ramp_up : (reg * reg) list;
  ramp_down : (reg * reg) list
}

(* Operations on ddg *)

val display : G.t -> string -> unit
val apply_pipeliner : RTL.coq_function -> (G.t -> pipeline option) -> ?debug:bool -> RTL.coq_function
val get_succs_raw : G.t -> G.V.t -> G.V.t list

(* Operations on instructions, the nodes of the data dependency graph *)

val string_of_node : G.V.t -> string
val latency : G.V.t -> int
val reforge_reads : G.V.t -> reg -> reg -> G.V.t
val reforge_writes : G.V.t -> reg -> G.V.t
val written : G.V.t -> reg option
val is_cond : G.V.t -> bool

(* Operations on dependencies, the edges of the data dependency graph *)
 
type et = IntraRAW | IntraWAW | IntraWAR | InterRAW | InterWAW | InterWAR

val edge_type : G.E.t -> et
val distance : G.E.t -> int

(* Getting fresh registers, int is the number of required registers *)

val fresh_regs : int -> reg array 
val print_reg : reg -> unit