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

Unified Diff: src/arm/codegen-arm-inl.h

Issue 1604002: Simple register allocation for ARM. Only top of expression... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 8 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/arm/codegen-arm-inl.h
===================================================================
--- src/arm/codegen-arm-inl.h (revision 4341)
+++ src/arm/codegen-arm-inl.h (working copy)
@@ -29,6 +29,8 @@
#ifndef V8_ARM_CODEGEN_ARM_INL_H_
#define V8_ARM_CODEGEN_ARM_INL_H_
+#include "virtual-frame-arm.h"
+
namespace v8 {
namespace internal {
@@ -43,6 +45,7 @@
void CodeGenerator::LoadAndSpill(Expression* expression) {
+ ASSERT(VirtualFrame::SpilledScope::is_spilled());
Load(expression);
}
@@ -57,11 +60,6 @@
}
-void Reference::GetValueAndSpill() {
- GetValue();
-}
-
-
// Platform-specific inline functions.
void DeferredCode::Jump() { __ jmp(&entry_label_); }

Powered by Google App Engine
This is Rietveld 408576698