| Index: src/hydrogen-instructions.cc
|
| diff --git a/src/hydrogen-instructions.cc b/src/hydrogen-instructions.cc
|
| index a69905ecc0cf31358ca2f94f7bc6e036f0ba5702..76a6b524f1d64d2a1ea940696d511c7ce2b434b7 100644
|
| --- a/src/hydrogen-instructions.cc
|
| +++ b/src/hydrogen-instructions.cc
|
| @@ -871,7 +871,6 @@ bool HInstruction::CanDeoptimize() {
|
| case HValue::kInvokeFunction:
|
| case HValue::kLoadContextSlot:
|
| case HValue::kLoadFunctionPrototype:
|
| - case HValue::kLoadGlobalCell:
|
| case HValue::kLoadKeyed:
|
| case HValue::kLoadKeyedGeneric:
|
| case HValue::kMathFloorOfDiv:
|
| @@ -887,7 +886,6 @@ bool HInstruction::CanDeoptimize() {
|
| case HValue::kSimulate:
|
| case HValue::kStackCheck:
|
| case HValue::kStoreContextSlot:
|
| - case HValue::kStoreGlobalCell:
|
| case HValue::kStoreKeyedGeneric:
|
| case HValue::kStringAdd:
|
| case HValue::kStringCompareAndBranch:
|
| @@ -3624,14 +3622,6 @@ std::ostream& HTransitionElementsKind::PrintDataTo(
|
| }
|
|
|
|
|
| -std::ostream& HLoadGlobalCell::PrintDataTo(std::ostream& os) const { // NOLINT
|
| - os << "[" << *cell().handle() << "]";
|
| - if (details_.IsConfigurable()) os << " (configurable)";
|
| - if (details_.IsReadOnly()) os << " (read-only)";
|
| - return os;
|
| -}
|
| -
|
| -
|
| std::ostream& HLoadGlobalGeneric::PrintDataTo(
|
| std::ostream& os) const { // NOLINT
|
| return os << name()->ToCString().get() << " ";
|
| @@ -3645,14 +3635,6 @@ std::ostream& HInnerAllocatedObject::PrintDataTo(
|
| }
|
|
|
|
|
| -std::ostream& HStoreGlobalCell::PrintDataTo(std::ostream& os) const { // NOLINT
|
| - os << "[" << *cell().handle() << "] = " << NameOf(value());
|
| - if (details_.IsConfigurable()) os << " (configurable)";
|
| - if (details_.IsReadOnly()) os << " (read-only)";
|
| - return os;
|
| -}
|
| -
|
| -
|
| std::ostream& HLoadContextSlot::PrintDataTo(std::ostream& os) const { // NOLINT
|
| return os << NameOf(value()) << "[" << slot_index() << "]";
|
| }
|
|
|