<== Previous | Contents | Next ==>

The Virtual Machine

Perhaps the most striking difference between the Strongtalk system and other Smalltalk systems is performance. The Strongtalk system is not only far faster than any other Smalltalk system (and it is hardly tuned at all), but it is faster in ways that can significantly improve the way that Smalltalk programmers write code. This is because it dramatically reduces (and often completely eliminates) the cost of most message sends and blocks. This allows programmers to write even the most performance critical code in as finely-factored a way as they please. For example, accessor messages for instance variables, and custom control structures (using blocks), can be used universally.

This may sound too good to be true, but it really works. The Strongtalk virtual machine accomplishes this feat using several different technologies:

The inlining compiler can inline and optimize away over 90% of dynamically occuring message sends and block closures. Since most programs spend almost all their time in a small fraction of their code, the compiler is able to keep the space and time cost of optimization reasonable by only optimizing performance-critical code.

On the next page we will show a micro-benchmark that demonstrates the dramatic effect of this technology. For those who are interested, you can read a two-page overview on how the adaptive compilation process works before proceeding to the next page.

The Virtual Machine, cont. ==>