| Index: src/arm/lithium-arm.h
|
| diff --git a/src/arm/lithium-arm.h b/src/arm/lithium-arm.h
|
| index 9aadc7544bda7e736712208a2656ec5449024646..a77b2df5ce82cdc8e380271eb5366fd205538090 100644
|
| --- a/src/arm/lithium-arm.h
|
| +++ b/src/arm/lithium-arm.h
|
| @@ -239,7 +239,9 @@ class LInstruction : public ZoneObject {
|
| // Interface to the register allocator and iterators.
|
| bool ClobbersTemps() const { return IsCall(); }
|
| bool ClobbersRegisters() const { return IsCall(); }
|
| - virtual bool ClobbersDoubleRegisters() const { return IsCall(); }
|
| + virtual bool ClobbersDoubleRegisters(Isolate* isolate) const V8_OVERRIDE {
|
| + return IsCall();
|
| + }
|
|
|
| // Interface to the register allocator and iterators.
|
| bool IsMarkedAsCall() const { return IsCall(); }
|
| @@ -1963,7 +1965,7 @@ class LCallRuntime V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CallRuntime, "call-runtime")
|
| DECLARE_HYDROGEN_ACCESSOR(CallRuntime)
|
|
|
| - virtual bool ClobbersDoubleRegisters() const V8_OVERRIDE {
|
| + virtual bool ClobbersDoubleRegisters(Isolate* isolate) const V8_OVERRIDE {
|
| return save_doubles() == kDontSaveFPRegs;
|
| }
|
|
|
| @@ -2691,6 +2693,8 @@ class LChunkBuilder V8_FINAL : public LChunkBuilderBase {
|
| next_block_(NULL),
|
| allocator_(allocator) { }
|
|
|
| + Isolate* isolate() const { return graph_->isolate(); }
|
| +
|
| // Build the sequence for the graph.
|
| LPlatformChunk* Build();
|
|
|
|
|