-
Notifications
You must be signed in to change notification settings - Fork 5
/
global-store.mjs
84 lines (75 loc) · 1.71 KB
/
global-store.mjs
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
import {BOT} from './lattice.mjs';
import {Sets, Maps, assertDefinedNotNull} from "./common.mjs";
export default function Store(i, map, globali)
{
this.i = i; // local
this.map = map; // global
this.globali = globali; // global
}
Store.from =
function (store)
{
return new Store(0, new Map(store), {i:0});
}
Store.prototype.equals =
function (x)
{
return this.i === x.i;
}
Store.prototype.toString =
function ()
{
return "global@" + this.i;
}
Store.prototype.lookup =
function (addr)
{
const value = this.map.get(addr);
if (value)
{
return value;
}
throw new Error("address not found: " + addr);
}
Store.prototype.alloc =
function (addr, value)
{
if (this.map.has(addr))
{
const current = this.map.get(addr);
const updated = current.join(value);
if (!current.equals(updated))
{
this.map.set(addr, updated);
this.globali.i++;
return new Store(this.globali.i, this.map, this.globali);
}
return this;
}
this.map.set(addr, value);
this.globali.i++;
return new Store(this.globali.i, this.map, this.globali);
}
Store.prototype.update =
function (addr, value)
{
const current = this.map.get(addr);
const updated = current.join(value);
if (!current.equals(updated))
{
this.map.set(addr, updated);
this.globali.i++;
return new Store(this.globali.i, this.map, this.globali);
}
return this;
}
Store.prototype.has =
function (addr)
{
return this.map.has(addr);
}
Store.prototype[Symbol.iterator] =
function* ()
{
yield* this.map;
}