up vote 1 down vote favorite
share [g+] share [fb]

in Pharo, how can I find the currently evaluating stack?

link|improve this question

fyi, you're not really adding value to the site if you ask a very simple question and give a very simple answer a minute later. – geowa4 Nov 20 '09 at 14:10
1  
It was something a google query couldn't find … – nes1983 Nov 20 '09 at 14:28
feedback

2 Answers

up vote 1 down vote accepted

Well, in fact, the issue aint that simple: thisContext can be a quite expensive operation, compared to like a message send.

In Visualworks Smalltalk, stack access is extermly expensive because it uses the native C-stack and thus any access to thisContext must reify the entire C-Stack into causally connected Smalltalk objects. That is, for each C stack frame a Smalltalk object is to be created (including possible JIT deoptimization) and furthermore all changes to these objects must be reflected back to the C stack.

In Pharo (and Squeak, for that matter) it is less awkward, since it uses Smalltalk objects for the stack. But still the object pool which caches stack frames is flushed upon each call. (Yes, other than eg in Java, pooling objects does improve performance in Squeak ... welcome back to the 90ies :)

link|improve this answer
feedback

You evaluate

thisContext contextStack

Here, thisContext is really a special variable that points to the currently active stack frame. Then, contextStack returns an array with the entire stack.

link|improve this answer
what's next? How do I power my computer? You press the power button. – Tempus Nov 20 '09 at 13:28
So it's too simple … ok, fine … – nes1983 Nov 20 '09 at 14:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.