blob: abb2fbceec6f9db05f4b19e730b09bc7e44daf38 (
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
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * INRIA - CNRS - LIX - LRI - PPS - Copyright 1999-2012 *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
open Errors
(* Dynamics, programmed with DANGER !!! *)
type t = int * Obj.t
let dyntab = ref (Int.Map.empty : string Int.Map.t)
(** Instead of working with tags as strings, which are costly, we use their
hash. We ensure unicity of the hash in the [create] function. If ever a
collision occurs, which is unlikely, it is sufficient to tweak the offending
dynamic tag. *)
let create (s : string) =
let hash = Hashtbl.hash s in
let () =
if Int.Map.mem hash !dyntab then
let old = Int.Map.find hash !dyntab in
let msg = Pp.str ("Dynamic tag collision: " ^ s ^ " vs. " ^ old) in
anomaly ~label:"Dyn.create" msg
in
let () = dyntab := Int.Map.add hash s !dyntab in
let infun v = (hash, Obj.repr v) in
let outfun (nh, rv) =
if Int.equal hash nh then Obj.magic rv
else
let msg = (Pp.str ("dyn_out: expected " ^ s)) in
anomaly msg
in
(infun, outfun)
let has_tag (s, _) tag =
let hash = Hashtbl.hash (tag : string) in
Int.equal s hash
let tag (s,_) =
try Int.Map.find s !dyntab
with Not_found ->
let msg = Pp.str ("Unknown dynamic tag " ^ (string_of_int s)) in
anomaly msg
|