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

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

Issue 17017: Experimental: the code to make a frame mergable is sometimes emitted... (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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/virtual-frame-ia32.cc
===================================================================
--- src/virtual-frame-ia32.cc (revision 1021)
+++ src/virtual-frame-ia32.cc (working copy)
@@ -196,7 +196,7 @@
// Write elements below the stack pointer to their (already allocated)
// actual frame location.
if (element.is_constant()) {
- __ Set(Operand(ebp, fp_relative(index)), Immediate(element.handle()));
+ __ mov(Operand(ebp, fp_relative(index)), Immediate(element.handle()));
} else {
ASSERT(element.is_register());
__ mov(Operand(ebp, fp_relative(index)), element.reg());
@@ -365,7 +365,7 @@
ASSERT(!target.is_valid() || target.is_register() || target.is_memory());
if (target.is_register()) {
if (source.is_constant()) {
- __ Set(target.reg(), Immediate(source.handle()));
+ __ mov(target.reg(), Immediate(source.handle()));
} else if (source.is_register() && !source.reg().is(target.reg())) {
__ mov(target.reg(), source.reg());
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698