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

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

Issue 10829: Finish porting jump target changes to the ARM platform. The v8 test... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: '' Created 12 years, 1 month 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 | « src/virtual-frame-ia32.h ('k') | 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 737)
+++ src/virtual-frame-ia32.cc (working copy)
@@ -40,7 +40,7 @@
VirtualFrame::VirtualFrame(CodeGenerator* cgen)
: masm_(cgen->masm()),
- elements_(cgen->scope()->num_parameters() + 5),
+ elements_(0),
virtual_stack_pointer_(-1),
virtual_frame_pointer_(-1),
parameter_count_(cgen->scope()->num_parameters()),
@@ -186,9 +186,9 @@
}
-void VirtualFrame::CallCode(Handle<Code> code,
- RelocInfo::Mode rmode,
- int frame_arg_count) {
+void VirtualFrame::CallCodeObject(Handle<Code> code,
+ RelocInfo::Mode rmode,
+ int frame_arg_count) {
ASSERT(height() >= frame_arg_count);
Forget(frame_arg_count);
__ call(code, rmode);
« no previous file with comments | « src/virtual-frame-ia32.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698