Penguin

Differences between version 2 and revision by previous author of InLining.

Other diffs: Previous Major Revision, Previous Revision, or view the Annotated Edit History

Newer page: version 2 Last edited on Tuesday, March 9, 2004 2:29:07 pm by JohnMcPherson Revert
Older page: version 1 Last edited on Tuesday, March 9, 2004 2:19:34 pm by PerryLorier Revert
@@ -1 +1,3 @@
 Copying all of a function body into another function rather than just calling it. This may have several benefits (such as avoiding the function call/return overhead, and constant evaluation of the inlined function). 
+  
+Disadvantages of having some code inlined in many places (instead of as a single function) can include a larger binary, and cache misses during execution.