2010-06-15 14:05:26 +02:00
|
|
|
|
|
|
|
(** This modules manages unique identifiers,
|
|
|
|
[fresh] generates an identifier from a name
|
|
|
|
[name] returns a unique name from an identifier. *)
|
|
|
|
|
|
|
|
|
2010-06-15 10:49:03 +02:00
|
|
|
(** The (abstract) type of identifiers*)
|
2010-06-15 14:05:26 +02:00
|
|
|
type ident
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
(** Get the source name from an identifier*)
|
|
|
|
val sourcename : ident -> string
|
2010-06-15 14:05:26 +02:00
|
|
|
(** Get the full name of an identifier (it is guaranteed to be unique) *)
|
2010-06-15 10:49:03 +02:00
|
|
|
val name : ident -> string
|
2010-06-15 14:05:26 +02:00
|
|
|
(** [set_sourcename id v] returns id with its source name changed to v. *)
|
2010-06-15 10:49:03 +02:00
|
|
|
val set_sourcename : ident -> string -> ident
|
|
|
|
|
|
|
|
(** [fresh n] returns a fresh identifier with source name n *)
|
|
|
|
val fresh : string -> ident
|
|
|
|
(** [ident_of_var n] returns an identifier corresponding
|
2010-06-15 14:05:26 +02:00
|
|
|
to a _source_ variable (do not use it for generated variables). *)
|
2010-06-15 10:49:03 +02:00
|
|
|
val ident_of_var : string -> ident
|
|
|
|
|
|
|
|
(** Maps taking an identifier as a key. *)
|
|
|
|
module Env :
|
2010-06-15 14:05:26 +02:00
|
|
|
sig
|
|
|
|
include (Map.S with type key = ident)
|
|
|
|
|
|
|
|
val append : 'a t -> 'a t -> 'a t
|
|
|
|
val union : 'a t -> 'a t -> 'a t
|
|
|
|
val diff : 'a t -> 'b t -> 'a t
|
|
|
|
val partition : (key -> bool) -> 'a t -> 'a t * 'a t
|
|
|
|
end
|
2010-06-15 10:49:03 +02:00
|
|
|
|
|
|
|
(** A set of identifiers. *)
|
|
|
|
module IdentSet :
|
2010-06-15 14:05:26 +02:00
|
|
|
sig
|
|
|
|
include (Set.S with type elt = ident)
|
|
|
|
val fprint_t : Format.formatter -> t -> unit
|
|
|
|
end
|
2010-06-16 19:31:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
val print_ident : Format.formatter -> ident -> unit
|