catala/compiler/scopelang/dependency.mli

53 lines
2.0 KiB
OCaml
Raw Normal View History

2021-02-12 19:20:14 +03:00
(* This file is part of the Catala compiler, a specification language for tax and social benefits
computation rules. Copyright (C) 2020 Inria, contributor: Denis Merigoux
<denis.merigoux@inria.fr>
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the specific language governing permissions and limitations under
the License. *)
(** Graph representation of the dependencies between scopes in the Catala program. Vertices are
functions, x -> y if x is used in the definition of y. *)
open Utils
2021-02-14 14:01:32 +03:00
(** {1 Scope dependencies} *)
2021-02-12 19:20:14 +03:00
(** On the edges, the label is the expression responsible for the use of the function *)
2021-02-12 20:16:06 +03:00
module SDependencies : Graph.Sig.P with type V.t = Ast.ScopeName.t and type E.label = Pos.t
2021-02-12 19:20:14 +03:00
val build_program_dep_graph : Ast.program -> SDependencies.t
2021-02-12 19:20:14 +03:00
val check_for_cycle_in_scope : SDependencies.t -> unit
2021-02-12 19:20:14 +03:00
val get_scope_ordering : SDependencies.t -> Ast.ScopeName.t list
2021-02-12 19:20:14 +03:00
2021-02-14 14:01:32 +03:00
(** {1 Type dependencies} *)
2021-02-12 19:20:14 +03:00
module TVertex : sig
2021-02-12 20:16:06 +03:00
type t = Struct of Ast.StructName.t | Enum of Ast.EnumName.t
2021-02-12 19:20:14 +03:00
val format_t : Format.formatter -> t -> unit
2021-02-12 20:16:06 +03:00
2021-02-12 19:20:14 +03:00
val get_info : t -> Ast.StructName.info
include Graph.Sig.COMPARABLE with type t := t
end
module TVertexSet : Set.S with type elt = TVertex.t
(** On the edges, the label is the expression responsible for the use of the function *)
2021-02-12 20:16:06 +03:00
module TDependencies : Graph.Sig.P with type V.t = TVertex.t and type E.label = Pos.t
2021-02-12 19:20:14 +03:00
val get_structs_or_enums_in_type : Ast.typ Pos.marked -> TVertexSet.t
val build_type_graph : Ast.struct_ctx -> Ast.enum_ctx -> TDependencies.t
val check_type_cycles : Ast.struct_ctx -> Ast.enum_ctx -> TVertex.t list