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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
(*
Copyright (c) 2014, Grégoire Duchêne <gduchene@awhk.org>
Permission to use, copy, modify, and/or distribute this software for
any purpose with or without fee is hereby granted, provided that the
above copyright notice and this permission notice appear in all
copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
*)
open Common
type t = {
global : (id, value) Hashtbl.t;
lexical : (id * value ref) list;
}
let assign_lexical env id v =
List.assoc id env.lexical := v
let bind_global env id v =
Hashtbl.add env.global id v
let bind_lexical env id v =
{ env with lexical = (id, ref v) :: env.lexical }
let bind_lexical_all env l =
List.fold_left (fun env (id, v) -> bind_lexical env id v) env l
let dump env channel =
let open Printf in
let rec print_value indent_level id v =
let id =
match id with
| Some id -> Ident.unique_name id
| None -> "(no name)"
in
let indent = String.make indent_level ' ' in
if Obj.is_int v then
fprintf channel "%s%s\t=\t%i\n" indent id @$ Obj.obj v
else
let tag = Obj.tag v in
if tag = Obj.string_tag then
fprintf channel "%s%s\t=\t%s\n" indent id @$ Obj.obj v
else if tag = Obj.double_tag then
fprintf channel "%s%s\t=\t%f\n" indent id @$ Obj.obj v
else if tag = 0 then
let sz = Obj.size v in
fprintf channel "%s%s\t=\t[%i] {\n" indent id sz;
for i = 0 to sz - 1 do
print_value (indent_level + 4) None @$ Obj.field v i
done;
fprintf channel "%s}\n" indent
else
fprintf channel "%s%s\t=\t<abstr:%i>\n" indent id tag
in
Hashtbl.iter (fun id v -> print_value 0 (Some id) v) env.global;
if List.length env.lexical > 0 then
begin
fprintf channel "%%\n";
List.iter (fun (id, v) -> print_value 0 (Some id) !v) env.lexical
end
let fresh () =
{ global = Hashtbl.create 10; lexical = []; }
let lookup_global env id =
try Hashtbl.find env.global id
with Not_found ->
try Symtable.get_global_value id
with Symtable.Error e -> id_not_found id
let lookup_lexical env id =
try !(List.assoc id env.lexical)
with Not_found -> id_not_found id
let lookup_lexical_str env id =
!(snd @$ List.find (fun (id', _) -> id = id'.Ident.name) env.lexical)
|