[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Order of evaluation in PUSH (& PUSHNEW)



Leaving the order of evaluation of actual parameters unspecified (a la
Scheme) would help some serial, as well as parallel, implementations.
Consider a machine that uses registers for passing parameters and
evaluating expressions.  If a compiler is free to reorder the
evaluation of expressions, it can evaluate the more complex ones using
the (empty) registers, then evaluate the other ones directly into
their target registers.  From personal experience on SPUR, this
freedom would produce noticeably better code and reduce the number of
temporaries that have to be allocated by the register allocator.

Of course, some existing programs would break.  But a good argument
can be made that these programs were dependent an implementation
artifact.

/Jim

PS  Did the CL committee ever decide which sentence actually *requires*
left-to-right evaluation of formals?