Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Unified Diff: src/ia32/virtual-frame-ia32.h

Issue 113400: Bypass an expensive computation of a basic block's entry frame for a... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/ia32/virtual-frame-ia32.h
===================================================================
--- src/ia32/virtual-frame-ia32.h (revision 1953)
+++ src/ia32/virtual-frame-ia32.h (working copy)
@@ -116,6 +116,13 @@
// (ie, they all have frame-external references).
Register SpillAnyRegister();
William Hesse 2009/05/15 07:45:51 How about: // Remove copies and constants from the
Kevin Millikin (Chromium) 2009/05/15 08:03:35 Seems misleading. The arbitrary frame could diffe
+ // Make this frame so that an arbitrary frame of the same height can
+ // be merged to it. Copies and constants are removed from the
+ // topmost mergable_elements elements of the frame. A
+ // mergable_elements of JumpTarget::kAllElements indicates constants
+ // and copies are not allowed anywhere in the frame.
+ void MakeMergable(int mergable_elements);
+
// Prepare this virtual frame for merging to an expected frame by
// performing some state changes that do not require generating
// code. It is guaranteed that no code will be generated.

Powered by Google App Engine
This is Rietveld 408576698