| 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 #if V8_TARGET_ARCH_X87 | 5 #if V8_TARGET_ARCH_X87 |
| 6 | 6 |
| 7 #include "src/ic/ic.h" | 7 #include "src/ic/ic.h" |
| 8 #include "src/ic/ic-compiler.h" | 8 #include "src/ic/ic-compiler.h" |
| 9 | 9 |
| 10 namespace v8 { | 10 namespace v8 { |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 __ mov(map_reg, FieldOperand(receiver(), HeapObject::kMapOffset)); | 105 __ mov(map_reg, FieldOperand(receiver(), HeapObject::kMapOffset)); |
| 106 for (int i = 0; i < receiver_maps->length(); ++i) { | 106 for (int i = 0; i < receiver_maps->length(); ++i) { |
| 107 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_maps->at(i)); | 107 Handle<WeakCell> cell = Map::WeakCellForMap(receiver_maps->at(i)); |
| 108 __ CmpWeakValue(map_reg, cell, scratch2()); | 108 __ CmpWeakValue(map_reg, cell, scratch2()); |
| 109 if (transitioned_maps->at(i).is_null()) { | 109 if (transitioned_maps->at(i).is_null()) { |
| 110 __ j(equal, handler_stubs->at(i)); | 110 __ j(equal, handler_stubs->at(i)); |
| 111 } else { | 111 } else { |
| 112 Label next_map; | 112 Label next_map; |
| 113 __ j(not_equal, &next_map, Label::kNear); | 113 __ j(not_equal, &next_map, Label::kNear); |
| 114 Handle<WeakCell> cell = Map::WeakCellForMap(transitioned_maps->at(i)); | 114 Handle<WeakCell> cell = Map::WeakCellForMap(transitioned_maps->at(i)); |
| 115 __ LoadWeakValue(transition_map(), cell, &miss); | 115 Register transition_map = scratch1(); |
| 116 DCHECK(!FLAG_vector_stores && |
| 117 transition_map.is(StoreTransitionDescriptor::MapRegister())); |
| 118 __ LoadWeakValue(transition_map, cell, &miss); |
| 116 __ jmp(handler_stubs->at(i), RelocInfo::CODE_TARGET); | 119 __ jmp(handler_stubs->at(i), RelocInfo::CODE_TARGET); |
| 117 __ bind(&next_map); | 120 __ bind(&next_map); |
| 118 } | 121 } |
| 119 } | 122 } |
| 120 __ bind(&miss); | 123 __ bind(&miss); |
| 121 TailCallBuiltin(masm(), MissBuiltin(kind())); | 124 TailCallBuiltin(masm(), MissBuiltin(kind())); |
| 122 | 125 |
| 123 // Return the generated code. | 126 // Return the generated code. |
| 124 return GetCode(kind(), Code::NORMAL, factory()->empty_string(), POLYMORPHIC); | 127 return GetCode(kind(), Code::NORMAL, factory()->empty_string(), POLYMORPHIC); |
| 125 } | 128 } |
| 126 | 129 |
| 127 | 130 |
| 128 #undef __ | 131 #undef __ |
| 129 } // namespace internal | 132 } // namespace internal |
| 130 } // namespace v8 | 133 } // namespace v8 |
| 131 | 134 |
| 132 #endif // V8_TARGET_ARCH_X87 | 135 #endif // V8_TARGET_ARCH_X87 |
| OLD | NEW |