| Index: src/arm/lithium-arm.cc
|
| diff --git a/src/arm/lithium-arm.cc b/src/arm/lithium-arm.cc
|
| index 2e097f9302cba7fa882d46e46f4dbd99c09a444d..b45e1c5226c7c4b80b75d1e85b6a150027a409ac 100644
|
| --- a/src/arm/lithium-arm.cc
|
| +++ b/src/arm/lithium-arm.cc
|
| @@ -2140,14 +2140,6 @@ LInstruction* LChunkBuilder::DoConstant(HConstant* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoLoadGlobalCell(HLoadGlobalCell* instr) {
|
| - LLoadGlobalCell* result = new(zone()) LLoadGlobalCell;
|
| - return instr->RequiresHoleCheck()
|
| - ? AssignEnvironment(DefineAsRegister(result))
|
| - : DefineAsRegister(result);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
|
| LOperand* context = UseFixed(instr->context(), cp);
|
| LOperand* global_object =
|
| @@ -2162,16 +2154,6 @@ LInstruction* LChunkBuilder::DoLoadGlobalGeneric(HLoadGlobalGeneric* instr) {
|
| }
|
|
|
|
|
| -LInstruction* LChunkBuilder::DoStoreGlobalCell(HStoreGlobalCell* instr) {
|
| - LOperand* value = UseRegister(instr->value());
|
| - // Use a temp to check the value in the cell in the case where we perform
|
| - // a hole check.
|
| - return instr->RequiresHoleCheck()
|
| - ? AssignEnvironment(new(zone()) LStoreGlobalCell(value, TempRegister()))
|
| - : new(zone()) LStoreGlobalCell(value, NULL);
|
| -}
|
| -
|
| -
|
| LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) {
|
| LOperand* context = UseRegisterAtStart(instr->value());
|
| LInstruction* result =
|
|
|