OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/crankshaft/x87/lithium-x87.h" | 5 #include "src/crankshaft/x87/lithium-x87.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #if V8_TARGET_ARCH_X87 | 9 #if V8_TARGET_ARCH_X87 |
10 | 10 |
(...skipping 1963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1974 return DefineAsRegister(new(zone()) LConstantT); | 1974 return DefineAsRegister(new(zone()) LConstantT); |
1975 } else { | 1975 } else { |
1976 UNREACHABLE(); | 1976 UNREACHABLE(); |
1977 return NULL; | 1977 return NULL; |
1978 } | 1978 } |
1979 } | 1979 } |
1980 | 1980 |
1981 | 1981 |
1982 LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { | 1982 LInstruction* LChunkBuilder::DoLoadContextSlot(HLoadContextSlot* instr) { |
1983 LOperand* context = UseRegisterAtStart(instr->value()); | 1983 LOperand* context = UseRegisterAtStart(instr->value()); |
1984 LInstruction* result = | 1984 return DefineAsRegister(new (zone()) LLoadContextSlot(context)); |
1985 DefineAsRegister(new(zone()) LLoadContextSlot(context)); | |
1986 if (instr->RequiresHoleCheck() && instr->DeoptimizesOnHole()) { | |
1987 result = AssignEnvironment(result); | |
1988 } | |
1989 return result; | |
1990 } | 1985 } |
1991 | 1986 |
1992 | 1987 |
1993 LInstruction* LChunkBuilder::DoStoreContextSlot(HStoreContextSlot* instr) { | 1988 LInstruction* LChunkBuilder::DoStoreContextSlot(HStoreContextSlot* instr) { |
1994 LOperand* value; | 1989 LOperand* value; |
1995 LOperand* temp; | 1990 LOperand* temp; |
1996 LOperand* context = UseRegister(instr->context()); | 1991 LOperand* context = UseRegister(instr->context()); |
1997 if (instr->NeedsWriteBarrier()) { | 1992 if (instr->NeedsWriteBarrier()) { |
1998 value = UseTempRegister(instr->value()); | 1993 value = UseTempRegister(instr->value()); |
1999 temp = TempRegister(); | 1994 temp = TempRegister(); |
2000 } else { | 1995 } else { |
2001 value = UseRegister(instr->value()); | 1996 value = UseRegister(instr->value()); |
2002 temp = NULL; | 1997 temp = NULL; |
2003 } | 1998 } |
2004 LInstruction* result = new(zone()) LStoreContextSlot(context, value, temp); | 1999 return new (zone()) LStoreContextSlot(context, value, temp); |
2005 if (instr->RequiresHoleCheck() && instr->DeoptimizesOnHole()) { | |
2006 result = AssignEnvironment(result); | |
2007 } | |
2008 return result; | |
2009 } | 2000 } |
2010 | 2001 |
2011 | 2002 |
2012 LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) { | 2003 LInstruction* LChunkBuilder::DoLoadNamedField(HLoadNamedField* instr) { |
2013 LOperand* obj = (instr->access().IsExternalMemory() && | 2004 LOperand* obj = (instr->access().IsExternalMemory() && |
2014 instr->access().offset() == 0) | 2005 instr->access().offset() == 0) |
2015 ? UseRegisterOrConstantAtStart(instr->object()) | 2006 ? UseRegisterOrConstantAtStart(instr->object()) |
2016 : UseRegisterAtStart(instr->object()); | 2007 : UseRegisterAtStart(instr->object()); |
2017 return DefineAsRegister(new(zone()) LLoadNamedField(obj)); | 2008 return DefineAsRegister(new(zone()) LLoadNamedField(obj)); |
2018 } | 2009 } |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2465 LOperand* index = UseTempRegister(instr->index()); | 2456 LOperand* index = UseTempRegister(instr->index()); |
2466 LLoadFieldByIndex* load = new(zone()) LLoadFieldByIndex(object, index); | 2457 LLoadFieldByIndex* load = new(zone()) LLoadFieldByIndex(object, index); |
2467 LInstruction* result = DefineSameAsFirst(load); | 2458 LInstruction* result = DefineSameAsFirst(load); |
2468 return AssignPointerMap(result); | 2459 return AssignPointerMap(result); |
2469 } | 2460 } |
2470 | 2461 |
2471 } // namespace internal | 2462 } // namespace internal |
2472 } // namespace v8 | 2463 } // namespace v8 |
2473 | 2464 |
2474 #endif // V8_TARGET_ARCH_X87 | 2465 #endif // V8_TARGET_ARCH_X87 |
OLD | NEW |