Re: [CVS ci] interpreter->iglobals: a list of some interpreter internal PMCs

2003-07-15 Thread Leopold Toetsch
Dan Sugalski <[EMAIL PROTECTED]> wrote: > At 12:31 PM +0200 7/14/03, Leopold Toetsch wrote: >>I have moved some interpreter variables (classname_hash, >>compreg_hash, Argv, Env) into one (SArray) list: >>interpreter->iglobals. >>There access isn't time critical, so the extra indirection wont harm.

Re: [CVS ci] interpreter->iglobals: a list of some interpreter internal PMCs

2003-07-14 Thread Dan Sugalski
At 12:31 PM +0200 7/14/03, Leopold Toetsch wrote: I have moved some interpreter variables (classname_hash, compreg_hash, Argv, Env) into one (SArray) list: interpreter->iglobals. There access isn't time critical, so the extra indirection wont harm. This is fine, though many of those things should

[CVS ci] interpreter->iglobals: a list of some interpreter internal PMCs

2003-07-14 Thread Leopold Toetsch
I have moved some interpreter variables (classname_hash, compreg_hash, Argv, Env) into one (SArray) list: interpreter->iglobals. There access isn't time critical, so the extra indirection wont harm. We probably also want a new opocde: C or similar to get items out of this list. The C opcode could