Partial Evaluation in OOP
Partial evaluation can achieve significant savings in object-oriented
programming:
- When the type of an object is known at compile time, look up the
function that implements a message. Replace the message send by a
function call.
- Expand small message functions in-line:
- Avoid function call overhead.
- Allow optimization across messages.
Contents   
Page-10   
Prev   
Next   
Page+10   
Index