home *** CD-ROM | disk | FTP | other *** search
/ Developer Source 3 / Developers_Source_Vol_03_1996.iso / delph / oct95 / wagnf108.gif < prev    next >
Graphics Interchange Format  |  1996-02-07  |  50.2 KB  |  390x332  |  8-bit (147 colors)
   ocr: Type Detinition Kegister optimizations Frequently used variables are placed into CPU registers to shorten the time it takes to access them. Additionally, the scope of variables is analyzed to determine when registers can be reused. Call-stack overhead Parameters are passed into CPU registers elimination when possible rather than being pushed onto the stack. Common subexpression Repeated expressions in complex mathe- elimination matical calculations are eliminated, so that no common subexpression runs more than once. This allows you to construct complex math algorithms that are easy to read, an ...