-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmemory.js
34 lines (26 loc) · 894 Bytes
/
memory.js
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
var memory = require('./typedarray-memory/index.js')
var numbers = memory.numbers(Uint32Array, Math.pow(2,12) , false)
var constants = memory.constants(Uint32Array, 8, false)
var temp = memory.temp(Uint32Array, Math.pow(2,12), false)
var n = 0
var pointers = [] // this can be a typedarray
var values = [] // this no, because has to store the object references
module.exports = { naives: numbers
, consts: constants
, stacks: temp
, numbers: factory(numbers)
, constants: factory(constants)
, temp: factory(temp)
, values: values
, pointers: pointers
}
function factory(t){
return function(size){
var pointer = t.alloc(size)
var didx = t.ads[pointer]
t.data[didx] = size
pointers[n] = pointer
values[n] = t
return n++
}
}