| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index b429120487238c5aa30cbad761c255bb8e0b4646..e1499e7fe8195e89b66210024147ce3573d32ed2 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -451,6 +451,7 @@ class LDummyUse V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
|
|
| class LDeoptimize V8_FINAL : public LTemplateInstruction<0, 0, 0> {
|
| public:
|
| + virtual bool IsControl() const V8_OVERRIDE { return true; }
|
| DECLARE_CONCRETE_INSTRUCTION(Deoptimize, "deoptimize")
|
| DECLARE_HYDROGEN_ACCESSOR(Deoptimize)
|
| };
|
| @@ -1625,7 +1626,7 @@ class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| DECLARE_HYDROGEN_ACCESSOR(LoadKeyed)
|
|
|
| virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| - uint32_t additional_index() const { return hydrogen()->index_offset(); }
|
| + uint32_t base_offset() const { return hydrogen()->base_offset(); }
|
| bool key_is_smi() {
|
| return hydrogen()->key()->representation().IsTagged();
|
| }
|
| @@ -2310,7 +2311,7 @@ class LStoreKeyed V8_FINAL : public LTemplateInstruction<0, 3, 0> {
|
| DECLARE_HYDROGEN_ACCESSOR(StoreKeyed)
|
|
|
| virtual void PrintDataTo(StringStream* stream) V8_OVERRIDE;
|
| - uint32_t additional_index() const { return hydrogen()->index_offset(); }
|
| + uint32_t base_offset() const { return hydrogen()->base_offset(); }
|
| bool NeedsCanonicalization() { return hydrogen()->NeedsCanonicalization(); }
|
| };
|
|
|
|
|