1Clflags.Compiler_pass(3) OCaml library Clflags.Compiler_pass(3)
2
3
4
6 Clflags.Compiler_pass - no description
7
9 Module Clflags.Compiler_pass
10
12 Module Compiler_pass
13 : sig end
14
15
16
17
18
19
20
21 type t =
22 | Parsing
23 | Typing
24 | Scheduling
25 | Emit
26
27
28
29
30
31 val of_string : string -> t option
32
33
34
35
36 val to_string : t -> string
37
38
39
40
41 val is_compilation_pass : t -> bool
42
43
44
45
46 val available_pass_names : filter:(t -> bool) -> native:bool -> string
47 list
48
49
50
51
52 val can_save_ir_after : t -> bool
53
54
55
56
57 val compare : t -> t -> int
58
59
60
61
62 val to_output_filename : t -> prefix:string -> string
63
64
65
66
67 val of_input_filename : string -> t option
68
69
70
71
72
73
74OCamldoc 2022-07-22 Clflags.Compiler_pass(3)