| Index: src/arm/lithium-codegen-arm.cc
|
| diff --git a/src/arm/lithium-codegen-arm.cc b/src/arm/lithium-codegen-arm.cc
|
| index b02d51b5b7c4099c2b290144ea6e47d1907efc5d..9d0872a7e1531fbe5b70d75a36b8c306747c3a98 100644
|
| --- a/src/arm/lithium-codegen-arm.cc
|
| +++ b/src/arm/lithium-codegen-arm.cc
|
| @@ -2982,18 +2982,6 @@ void LCodeGen::DoReturn(LReturn* instr) {
|
| }
|
|
|
|
|
| -void LCodeGen::DoLoadGlobalCell(LLoadGlobalCell* instr) {
|
| - Register result = ToRegister(instr->result());
|
| - __ mov(ip, Operand(Handle<Object>(instr->hydrogen()->cell().handle())));
|
| - __ ldr(result, FieldMemOperand(ip, Cell::kValueOffset));
|
| - if (instr->hydrogen()->RequiresHoleCheck()) {
|
| - __ LoadRoot(ip, Heap::kTheHoleValueRootIndex);
|
| - __ cmp(result, ip);
|
| - DeoptimizeIf(eq, instr, Deoptimizer::kHole);
|
| - }
|
| -}
|
| -
|
| -
|
| template <class T>
|
| void LCodeGen::EmitVectorLoadICRegisters(T* instr) {
|
| DCHECK(FLAG_vector_ics);
|
| @@ -3029,31 +3017,6 @@ void LCodeGen::DoLoadGlobalGeneric(LLoadGlobalGeneric* instr) {
|
| }
|
|
|
|
|
| -void LCodeGen::DoStoreGlobalCell(LStoreGlobalCell* instr) {
|
| - Register value = ToRegister(instr->value());
|
| - Register cell = scratch0();
|
| -
|
| - // Load the cell.
|
| - __ mov(cell, Operand(instr->hydrogen()->cell().handle()));
|
| -
|
| - // If the cell we are storing to contains the hole it could have
|
| - // been deleted from the property dictionary. In that case, we need
|
| - // to update the property details in the property dictionary to mark
|
| - // it as no longer deleted.
|
| - if (instr->hydrogen()->RequiresHoleCheck()) {
|
| - // We use a temp to check the payload (CompareRoot might clobber ip).
|
| - Register payload = ToRegister(instr->temp());
|
| - __ ldr(payload, FieldMemOperand(cell, Cell::kValueOffset));
|
| - __ CompareRoot(payload, Heap::kTheHoleValueRootIndex);
|
| - DeoptimizeIf(eq, instr, Deoptimizer::kHole);
|
| - }
|
| -
|
| - // Store the value.
|
| - __ str(value, FieldMemOperand(cell, Cell::kValueOffset));
|
| - // Cells are always rescanned, so no write barrier here.
|
| -}
|
| -
|
| -
|
| void LCodeGen::DoLoadContextSlot(LLoadContextSlot* instr) {
|
| Register context = ToRegister(instr->context());
|
| Register result = ToRegister(instr->result());
|
|
|