5 The interpreter could use up to 8GiB of memory although the command line
6 switch limits that to 2GiB, that should be changed.
10 The stucture manager would also need to be given some kind of native allocation
11 scheme, which uses some kind of native information to allocate from the given
16 I have been playing in a video game tournament against humans and AI. The AI is
17 very difficult and so far my only win was by sheer luck. However, playing
18 against the AI makes me want to clone the game and write my own AI that can
19 work in both environments.
23 I do wonder if I should have an array of objects that match the cache line
24 size for synchronization. That would be faster but it would result in having
25 lots of objects being used. I suppose when it comes to atomic it will lock the
26 entire memory region in the interpreter.
30 So what I need now is an allocator for memory regions. It could either be
31 pool based or explicit pointers. I would suppose for memory purposes, being
32 a pool would be best. One thing to consider for native systems is that the
33 kernel and all of its starting classes will need to be initialized. Perhaps in
34 this case I would have a bootstrap initializer.
38 The bootstrap initializer could then set the structure manager used by the
39 kernel to the bootstrap structure manager so to speak.