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

Unified Diff: src/jump-target.h

Issue 16450: Use unspilled virtual frames when compiling compare operations.... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 12 years 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/jump-target.h
===================================================================
--- src/jump-target.h (revision 1019)
+++ src/jump-target.h (working copy)
@@ -98,11 +98,13 @@
// there must be one expected at the target.
void Branch(Condition cc, Hint hint = no_hint);
void Branch(Condition cc, Result* arg, Hint hint = no_hint);
+ void Branch(Condition cc, Result* arg_1, Result* arg_2, Hint hint = no_hint);
Kevin Millikin (Chromium) 2008/12/29 09:05:38 Please call these arguments arg0 and arg1 (zero ba
William Hesse 2008/12/29 11:47:42 Done.
// Bind a jump target. There must be a current frame and no expected
// frame at the target (targets are only bound once).
void Bind();
void Bind(Result* arg);
+ void Bind(Result* arg_1, Result* arg_2);
Kevin Millikin (Chromium) 2008/12/29 09:05:38 Ditto.
William Hesse 2008/12/29 11:47:42 Done.
// Emit a call to a jump target. There must be a current frame. The
// frame at the target is the same as the current frame except for an

Powered by Google App Engine
This is Rietveld 408576698