| Index: src/x87/lithium-x87.h
|
| diff --git a/src/x87/lithium-x87.h b/src/x87/lithium-x87.h
|
| index 245af490d3bab14254b7a38d82df42fd4d80fa16..ea76738ba7451db688daf12d0f62e13355a12d2e 100644
|
| --- a/src/x87/lithium-x87.h
|
| +++ b/src/x87/lithium-x87.h
|
| @@ -1593,15 +1593,17 @@ class LLoadNamedField V8_FINAL : public LTemplateInstruction<1, 1, 0> {
|
| };
|
|
|
|
|
| -class LLoadNamedGeneric V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LLoadNamedGeneric V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| - LLoadNamedGeneric(LOperand* context, LOperand* object) {
|
| + LLoadNamedGeneric(LOperand* context, LOperand* object, LOperand* vector) {
|
| inputs_[0] = context;
|
| inputs_[1] = object;
|
| + temps_[0] = vector;
|
| }
|
|
|
| LOperand* context() { return inputs_[0]; }
|
| LOperand* object() { return inputs_[1]; }
|
| + LOperand* temp_vector() { return temps_[0]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(LoadNamedGeneric, "load-named-generic")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadNamedGeneric)
|
| @@ -1682,19 +1684,23 @@ inline static bool ExternalArrayOpRequiresTemp(
|
| }
|
|
|
|
|
| -class LLoadKeyedGeneric V8_FINAL : public LTemplateInstruction<1, 3, 0> {
|
| +class LLoadKeyedGeneric V8_FINAL : public LTemplateInstruction<1, 3, 1> {
|
| public:
|
| - LLoadKeyedGeneric(LOperand* context, LOperand* obj, LOperand* key) {
|
| + LLoadKeyedGeneric(LOperand* context, LOperand* obj, LOperand* key,
|
| + LOperand* vector) {
|
| inputs_[0] = context;
|
| inputs_[1] = obj;
|
| inputs_[2] = key;
|
| + temps_[0] = vector;
|
| }
|
|
|
| LOperand* context() { return inputs_[0]; }
|
| LOperand* object() { return inputs_[1]; }
|
| LOperand* key() { return inputs_[2]; }
|
| + LOperand* temp_vector() { return temps_[0]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(LoadKeyedGeneric, "load-keyed-generic")
|
| + DECLARE_HYDROGEN_ACCESSOR(LoadKeyedGeneric)
|
| };
|
|
|
|
|
| @@ -1705,15 +1711,18 @@ class LLoadGlobalCell V8_FINAL : public LTemplateInstruction<1, 0, 0> {
|
| };
|
|
|
|
|
| -class LLoadGlobalGeneric V8_FINAL : public LTemplateInstruction<1, 2, 0> {
|
| +class LLoadGlobalGeneric V8_FINAL : public LTemplateInstruction<1, 2, 1> {
|
| public:
|
| - LLoadGlobalGeneric(LOperand* context, LOperand* global_object) {
|
| + LLoadGlobalGeneric(LOperand* context, LOperand* global_object,
|
| + LOperand* vector) {
|
| inputs_[0] = context;
|
| inputs_[1] = global_object;
|
| + temps_[0] = vector;
|
| }
|
|
|
| LOperand* context() { return inputs_[0]; }
|
| LOperand* global_object() { return inputs_[1]; }
|
| + LOperand* temp_vector() { return temps_[0]; }
|
|
|
| DECLARE_CONCRETE_INSTRUCTION(LoadGlobalGeneric, "load-global-generic")
|
| DECLARE_HYDROGEN_ACCESSOR(LoadGlobalGeneric)
|
|
|