Index: src/lithium.h |
diff --git a/src/lithium.h b/src/lithium.h |
index 200773ab3aa03db0f347416d6e4d68f6a4b6d9eb..1f31b9091589bbb717842e00a608b7dc78fe742a 100644 |
--- a/src/lithium.h |
+++ b/src/lithium.h |
@@ -533,8 +533,6 @@ class LEnvironment: public ZoneObject { |
values_(value_count, zone), |
is_tagged_(value_count, zone), |
is_uint32_(value_count, zone), |
- spilled_registers_(NULL), |
- spilled_double_registers_(NULL), |
outer_(outer), |
entry_(entry), |
zone_(zone) { } |
@@ -548,10 +546,6 @@ class LEnvironment: public ZoneObject { |
int translation_size() const { return translation_size_; } |
int parameter_count() const { return parameter_count_; } |
int pc_offset() const { return pc_offset_; } |
- LOperand** spilled_registers() const { return spilled_registers_; } |
- LOperand** spilled_double_registers() const { |
- return spilled_double_registers_; |
- } |
const ZoneList<LOperand*>* values() const { return &values_; } |
LEnvironment* outer() const { return outer_; } |
HEnterInlined* entry() { return entry_; } |
@@ -591,12 +585,6 @@ class LEnvironment: public ZoneObject { |
return deoptimization_index_ != Safepoint::kNoDeoptimizationIndex; |
} |
- void SetSpilledRegisters(LOperand** registers, |
- LOperand** double_registers) { |
- spilled_registers_ = registers; |
- spilled_double_registers_ = double_registers; |
- } |
- |
void PrintTo(StringStream* stream); |
private: |
@@ -615,13 +603,6 @@ class LEnvironment: public ZoneObject { |
ZoneList<LOperand*> values_; |
GrowableBitVector is_tagged_; |
GrowableBitVector is_uint32_; |
- |
- // Allocation index indexed arrays of spill slot operands for registers |
- // that are also in spill slots at an OSR entry. NULL for environments |
- // that do not correspond to an OSR entry. |
- LOperand** spilled_registers_; |
- LOperand** spilled_double_registers_; |
- |
LEnvironment* outer_; |
HEnterInlined* entry_; |
Zone* zone_; |