Chromium Code Reviews

Unified Diff: src/arm/lithium-codegen-arm.cc

Issue 7084032: Add asserts and state tracking to ensure that we do not call (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/arm/lithium-codegen-arm.cc
===================================================================
--- src/arm/lithium-codegen-arm.cc (revision 8110)
+++ src/arm/lithium-codegen-arm.cc (working copy)
@@ -82,6 +82,12 @@
status_ = GENERATING;
CpuFeatures::Scope scope1(VFP3);
CpuFeatures::Scope scope2(ARMv7);
+
+ // Open a frame scope to indicate that there is a frame on the stack. The
+ // NONE indicates that the scope shouldn't actually generate code to set up
+ // the frame (that is done in GeneatePrologue).
+ FrameScope frame_scope(masm_, StackFrame::NONE);
Søren Thygesen Gjesse 2011/05/31 07:51:45 StackFrame::JAVA_SCRIPT?
Erik Corry 2011/05/31 11:52:52 Done.
+
return GeneratePrologue() &&
GenerateBody() &&
GenerateDeferredCode() &&

Powered by Google App Engine