OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 2021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2032 ASSERT(instr->value()->representation().IsTagged()); | 2032 ASSERT(instr->value()->representation().IsTagged()); |
2033 | 2033 |
2034 LStoreKeyedGeneric* result = | 2034 LStoreKeyedGeneric* result = |
2035 new(zone()) LStoreKeyedGeneric(object, key, value); | 2035 new(zone()) LStoreKeyedGeneric(object, key, value); |
2036 return MarkAsCall(result, instr); | 2036 return MarkAsCall(result, instr); |
2037 } | 2037 } |
2038 | 2038 |
2039 | 2039 |
2040 LInstruction* LChunkBuilder::DoTransitionElementsKind( | 2040 LInstruction* LChunkBuilder::DoTransitionElementsKind( |
2041 HTransitionElementsKind* instr) { | 2041 HTransitionElementsKind* instr) { |
| 2042 LOperand* object = UseRegister(instr->object()); |
2042 if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) { | 2043 if (IsSimpleMapChangeTransition(instr->from_kind(), instr->to_kind())) { |
2043 LOperand* object = UseRegister(instr->object()); | 2044 LOperand* object = UseRegister(instr->object()); |
2044 LOperand* new_map_reg = TempRegister(); | 2045 LOperand* new_map_reg = TempRegister(); |
2045 LOperand* temp_reg = TempRegister(); | 2046 LOperand* temp_reg = TempRegister(); |
2046 LTransitionElementsKind* result = | 2047 LTransitionElementsKind* result = |
2047 new(zone()) LTransitionElementsKind(object, new_map_reg, temp_reg); | 2048 new(zone()) LTransitionElementsKind(object, new_map_reg, temp_reg); |
2048 return DefineSameAsFirst(result); | 2049 return result; |
2049 } else { | 2050 } else { |
2050 LOperand* object = UseFixed(instr->object(), rax); | |
2051 LOperand* fixed_object_reg = FixedTemp(rdx); | |
2052 LOperand* new_map_reg = FixedTemp(rbx); | |
2053 LTransitionElementsKind* result = | 2051 LTransitionElementsKind* result = |
2054 new(zone()) LTransitionElementsKind(object, | 2052 new(zone()) LTransitionElementsKind(object, NULL, NULL); |
2055 new_map_reg, | 2053 return AssignPointerMap(result); |
2056 fixed_object_reg); | |
2057 return MarkAsCall(DefineFixed(result, rax), instr); | |
2058 } | 2054 } |
2059 } | 2055 } |
2060 | 2056 |
2061 | 2057 |
| 2058 LInstruction* LChunkBuilder::DoTrapAllocationMemento( |
| 2059 HTrapAllocationMemento* instr) { |
| 2060 LOperand* object = UseRegister(instr->object()); |
| 2061 LOperand* temp = TempRegister(); |
| 2062 LTrapAllocationMemento* result = |
| 2063 new(zone()) LTrapAllocationMemento(object, temp); |
| 2064 return AssignEnvironment(result); |
| 2065 } |
| 2066 |
| 2067 |
2062 LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { | 2068 LInstruction* LChunkBuilder::DoStoreNamedField(HStoreNamedField* instr) { |
2063 bool needs_write_barrier = instr->NeedsWriteBarrier(); | 2069 bool needs_write_barrier = instr->NeedsWriteBarrier(); |
2064 bool needs_write_barrier_for_map = !instr->transition().is_null() && | 2070 bool needs_write_barrier_for_map = !instr->transition().is_null() && |
2065 instr->NeedsWriteBarrierForMap(); | 2071 instr->NeedsWriteBarrierForMap(); |
2066 | 2072 |
2067 LOperand* obj; | 2073 LOperand* obj; |
2068 if (needs_write_barrier) { | 2074 if (needs_write_barrier) { |
2069 obj = instr->is_in_object() | 2075 obj = instr->is_in_object() |
2070 ? UseRegister(instr->object()) | 2076 ? UseRegister(instr->object()) |
2071 : UseTempRegister(instr->object()); | 2077 : UseTempRegister(instr->object()); |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2125 return DefineAsRegister(new(zone()) LStringLength(string)); | 2131 return DefineAsRegister(new(zone()) LStringLength(string)); |
2126 } | 2132 } |
2127 | 2133 |
2128 | 2134 |
2129 LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) { | 2135 LInstruction* LChunkBuilder::DoAllocateObject(HAllocateObject* instr) { |
2130 LAllocateObject* result = new(zone()) LAllocateObject(TempRegister()); | 2136 LAllocateObject* result = new(zone()) LAllocateObject(TempRegister()); |
2131 return AssignPointerMap(DefineAsRegister(result)); | 2137 return AssignPointerMap(DefineAsRegister(result)); |
2132 } | 2138 } |
2133 | 2139 |
2134 | 2140 |
| 2141 LInstruction* LChunkBuilder::DoAllocate(HAllocate* instr) { |
| 2142 info()->MarkAsDeferredCalling(); |
| 2143 LOperand* size = UseTempRegister(instr->size()); |
| 2144 LOperand* temp = TempRegister(); |
| 2145 LAllocate* result = new(zone()) LAllocate(size, temp); |
| 2146 return AssignPointerMap(DefineAsRegister(result)); |
| 2147 } |
| 2148 |
| 2149 |
2135 LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) { | 2150 LInstruction* LChunkBuilder::DoFastLiteral(HFastLiteral* instr) { |
2136 return MarkAsCall(DefineFixed(new(zone()) LFastLiteral, rax), instr); | 2151 return MarkAsCall(DefineFixed(new(zone()) LFastLiteral, rax), instr); |
2137 } | 2152 } |
2138 | 2153 |
2139 | 2154 |
2140 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { | 2155 LInstruction* LChunkBuilder::DoArrayLiteral(HArrayLiteral* instr) { |
2141 return MarkAsCall(DefineFixed(new(zone()) LArrayLiteral, rax), instr); | 2156 return MarkAsCall(DefineFixed(new(zone()) LArrayLiteral, rax), instr); |
2142 } | 2157 } |
2143 | 2158 |
2144 | 2159 |
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2360 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { | 2375 LInstruction* LChunkBuilder::DoLoadFieldByIndex(HLoadFieldByIndex* instr) { |
2361 LOperand* object = UseRegister(instr->object()); | 2376 LOperand* object = UseRegister(instr->object()); |
2362 LOperand* index = UseTempRegister(instr->index()); | 2377 LOperand* index = UseTempRegister(instr->index()); |
2363 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); | 2378 return DefineSameAsFirst(new(zone()) LLoadFieldByIndex(object, index)); |
2364 } | 2379 } |
2365 | 2380 |
2366 | 2381 |
2367 } } // namespace v8::internal | 2382 } } // namespace v8::internal |
2368 | 2383 |
2369 #endif // V8_TARGET_ARCH_X64 | 2384 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |