Index: src/crankshaft/arm/lithium-codegen-arm.h |
diff --git a/src/crankshaft/arm/lithium-codegen-arm.h b/src/crankshaft/arm/lithium-codegen-arm.h |
index 24a083ff2f201f6a64d44520dfa4b06aa34d19f4..67925ccdf63c0c5ac6aef4d3c8d026733c19e6c3 100644 |
--- a/src/crankshaft/arm/lithium-codegen-arm.h |
+++ b/src/crankshaft/arm/lithium-codegen-arm.h |
@@ -44,10 +44,8 @@ class LCodeGen: public LCodeGenBase { |
} |
bool NeedsEagerFrame() const { |
- return GetStackSlotCount() > 0 || |
- info()->is_non_deferred_calling() || |
- !info()->IsStub() || |
- info()->requires_frame(); |
+ return HasAllocatedStackSlots() || info()->is_non_deferred_calling() || |
+ !info()->IsStub() || info()->requires_frame(); |
} |
bool NeedsDeferredFrame() const { |
return !NeedsEagerFrame() && info()->is_deferred_calling(); |
@@ -153,7 +151,13 @@ class LCodeGen: public LCodeGenBase { |
Register temporary, |
Register temporary2); |
- int GetStackSlotCount() const { return chunk()->spill_slot_count(); } |
+ bool HasAllocatedStackSlots() const { |
+ return chunk()->HasAllocatedStackSlots(); |
+ } |
+ int GetStackSlotCount() const { return chunk()->GetSpillSlotCount(); } |
+ int GetTotalFrameSlotCount() const { |
+ return chunk()->GetTotalFrameSlotCount(); |
+ } |
void AddDeferredCode(LDeferredCode* code) { deferred_.Add(code, zone()); } |