VM newbie questions

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

VM newbie questions

Jean Baptiste Arnaud
 
Why there are 3 Primitive table in the interp.c ?

obsoleteIndexedPrimitiveTable 
obsoleteNamedPrimitiveTable
primitiveTable

In obsoleteIndexedPrimitiveTable and obsoleteNamedPrimitiveTable, the primitives can be call ? or only the primitives in Primitives tables can be call ?

 
Reply | Threaded
Open this post in threaded view
|

Re: VM newbie questions

Igor Stasenko

2009/9/24 arnaud Jean Baptiste <[hidden email]>:
>
> Why there are 3 Primitive table in the interp.c ?
> obsoleteIndexedPrimitiveTable
> obsoleteNamedPrimitiveTable
> primitiveTable
> In obsoleteIndexedPrimitiveTable and obsoleteNamedPrimitiveTable, the primitives can be call ? or only the primitives in Primitives tables can be call ?
>
>
AFAIK, these tables get used only if you running older images, which using them.
The new images (past squeak 3.8 i think) do not using these prims.


--
Best regards,
Igor Stasenko AKA sig.
Reply | Threaded
Open this post in threaded view
|

Re: VM newbie questions

Jean Baptiste Arnaud
 
Thank

Can you see me where i can find a documentation of how the primitive  
call work ?

regard

On Sep 24, 2009, at 8:01 PM, Igor Stasenko wrote:

> AFAIK, these tables get used only if you running older images, which  
> using them.
> The new images (past squeak 3.8 i think) do not using these prims.