You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
864 B
28 lines
864 B
(*
|
|
* Copyright (c) 2009-2013, Monoidics ltd.
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*)
|
|
|
|
open! IStd
|
|
|
|
(** Execution environments: basically a cache of where procedures are and what is their type
|
|
environment *)
|
|
|
|
type file_data
|
|
|
|
type t = private
|
|
{ proc_map: file_data Typ.Procname.Hash.t (** map from procedure name to file data *)
|
|
; file_map: file_data SourceFile.Hash.t (** map from source files to file data *) }
|
|
|
|
val mk : unit -> t
|
|
(** Create a new cache *)
|
|
|
|
val get_tenv : t -> Typ.Procname.t -> Tenv.t
|
|
(** return the type environment associated with the procedure *)
|
|
|
|
val get_integer_type_widths : t -> Typ.Procname.t -> Typ.IntegerWidths.t
|
|
(** return the integer type widths associated with the procedure *)
|