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

Unified Diff: src/jump-target.cc

Issue 115347: Reduce the memory used by frame elements from two words to one by... (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/jump-target.cc
===================================================================
--- src/jump-target.cc (revision 1947)
+++ src/jump-target.cc (working copy)
@@ -29,6 +29,7 @@
#include "codegen-inl.h"
#include "register-allocator-inl.h"
+#include "jump-target-inl.h"
Kevin Millikin (Chromium) 2009/05/14 11:29:02 Same question.
Mads Ager (chromium) 2009/05/14 11:42:40 Done.
namespace v8 { namespace internal {
@@ -165,7 +166,7 @@
// elements are initially recorded as if in memory.
if (target != NULL) {
entry_frame_->elements_[index] = *target;
- entry_frame_->InitializeEntryElement(index, target);
+ InitializeEntryElement(index, target);
}
}
// Then fill in the rest of the frame with new elements.
@@ -175,7 +176,7 @@
entry_frame_->elements_.Add(FrameElement::MemoryElement());
} else {
entry_frame_->elements_.Add(*target);
- entry_frame_->InitializeEntryElement(index, target);
+ InitializeEntryElement(index, target);
}
}

Powered by Google App Engine
This is Rietveld 408576698