| Index: src/ia32/lithium-ia32.h
|
| diff --git a/src/ia32/lithium-ia32.h b/src/ia32/lithium-ia32.h
|
| index 0e615f257dfbde7039da1ff8b7e8f004ab342fe8..20e64c48f2f7a5e5e6a671ee8d6ba3a96d6d844b 100644
|
| --- a/src/ia32/lithium-ia32.h
|
| +++ b/src/ia32/lithium-ia32.h
|
| @@ -116,7 +116,6 @@ class LCodeGen;
|
| V(IsObjectAndBranch) \
|
| V(IsStringAndBranch) \
|
| V(IsSmiAndBranch) \
|
| - V(IsNumberAndBranch) \
|
| V(IsUndetectableAndBranch) \
|
| V(Label) \
|
| V(LazyBailout) \
|
| @@ -130,6 +129,7 @@ class LCodeGen;
|
| V(LoadKeyedGeneric) \
|
| V(LoadNamedField) \
|
| V(LoadNamedGeneric) \
|
| + V(LoadRoot) \
|
| V(MapEnumLength) \
|
| V(MathAbs) \
|
| V(MathCos) \
|
| @@ -922,19 +922,6 @@ class LIsObjectAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| };
|
|
|
|
|
| -class LIsNumberAndBranch V8_FINAL : public LControlInstruction<1, 0> {
|
| - public:
|
| - explicit LIsNumberAndBranch(LOperand* value) {
|
| - inputs_[0] = value;
|
| - }
|
| -
|
| - LOperand* value() { return inputs_[0]; }
|
| -
|
| - DECLARE_CONCRETE_INSTRUCTION(IsNumberAndBranch, "is-number-and-branch")
|
| - DECLARE_HYDROGEN_ACCESSOR(IsNumberAndBranch)
|
| -};
|
| -
|
| -
|
| class LIsStringAndBranch V8_FINAL : public LControlInstruction<1, 1> {
|
| public:
|
| LIsStringAndBranch(LOperand* value, LOperand* temp) {
|
| @@ -1309,7 +1296,7 @@ class LCmpMapAndBranch V8_FINAL : public LControlInstruction<1, 0> {
|
| DECLARE_CONCRETE_INSTRUCTION(CmpMapAndBranch, "cmp-map-and-branch")
|
| DECLARE_HYDROGEN_ACCESSOR(CompareMap)
|
|
|
| - Handle<Map> map() const { return hydrogen()->map(); }
|
| + Handle<Map> map() const { return hydrogen()->map().handle(); }
|
| };
|
|
|
|
|
| @@ -1605,6 +1592,15 @@ class LLoadFunctionPrototype V8_FINAL : public LTemplateInstruction<1, 1, 1> {
|
| };
|
|
|
|
|
| +class LLoadRoot V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| + public:
|
| + DECLARE_CONCRETE_INSTRUCTION(LoadRoot, "load-root")
|
| + DECLARE_HYDROGEN_ACCESSOR(LoadRoot)
|
| +
|
| + Heap::RootListIndex index() const { return hydrogen()->index(); }
|
| +};
|
| +
|
| +
|
| class LLoadExternalArrayPointer V8_FINAL
|
| : public LTemplateInstruction<1, 1, 0> {
|
| public:
|
| @@ -1634,11 +1630,6 @@ class LLoadKeyed V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| return hydrogen()->is_external();
|
| }
|
|
|
| - virtual bool ClobbersDoubleRegisters() const V8_OVERRIDE {
|
| - return !CpuFeatures::IsSupported(SSE2) &&
|
| - !IsDoubleOrFloatElementsKind(hydrogen()->elements_kind());
|
| - }
|
| -
|
| DECLARE_CONCRETE_INSTRUCTION(LoadKeyed, "load-keyed")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadKeyed)
|
|
|
|
|