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

Unified Diff: src/jump-target-light.cc

Issue 2249002: Fix jump targets on ARM to merge virtual frames (really this time).... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 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
« no previous file with comments | « src/codegen.h ('k') | src/virtual-frame-light-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/jump-target-light.cc
===================================================================
--- src/jump-target-light.cc (revision 4738)
+++ src/jump-target-light.cc (working copy)
@@ -34,17 +34,11 @@
namespace internal {
-FrameRegisterState::FrameRegisterState(VirtualFrame* frame) {
- // Nothing to do when register allocation is not supported.
- ASSERT(RegisterAllocator::kNumRegisters == 0);
-}
-
-
DeferredCode::DeferredCode()
: masm_(CodeGeneratorScope::Current()->masm()),
statement_position_(masm_->current_statement_position()),
position_(masm_->current_position()),
- frame_state_(CodeGeneratorScope::Current()->frame()) {
+ frame_state_(*CodeGeneratorScope::Current()->frame()) {
ASSERT(statement_position_ != RelocInfo::kNoPosition);
ASSERT(position_ != RelocInfo::kNoPosition);
@@ -52,7 +46,6 @@
#ifdef DEBUG
comment_ = "";
- CodeGeneratorScope::Current()->frame()->AssertIsSpilled();
#endif
}
« no previous file with comments | « src/codegen.h ('k') | src/virtual-frame-light-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698