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/ic/ic.h" | 5 #include "src/ic/ic.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/api.h" | 8 #include "src/api.h" |
9 #include "src/api-arguments.h" | 9 #include "src/api-arguments.h" |
10 #include "src/arguments.h" | 10 #include "src/arguments.h" |
(...skipping 1049 matching lines...) Loading... |
1060 // When debugging we need to go the slow path to flood the accessor. | 1060 // When debugging we need to go the slow path to flood the accessor. |
1061 if (GetSharedFunctionInfo()->HasDebugInfo()) break; | 1061 if (GetSharedFunctionInfo()->HasDebugInfo()) break; |
1062 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), | 1062 Handle<Object> getter(Handle<AccessorPair>::cast(accessors)->getter(), |
1063 isolate()); | 1063 isolate()); |
1064 CallOptimization call_optimization(getter); | 1064 CallOptimization call_optimization(getter); |
1065 NamedLoadHandlerCompiler compiler(isolate(), map, holder, | 1065 NamedLoadHandlerCompiler compiler(isolate(), map, holder, |
1066 cache_holder); | 1066 cache_holder); |
1067 if (call_optimization.is_simple_api_call()) { | 1067 if (call_optimization.is_simple_api_call()) { |
1068 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadCallback); | 1068 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadCallback); |
1069 int index = lookup->GetAccessorIndex(); | 1069 int index = lookup->GetAccessorIndex(); |
1070 return compiler.CompileLoadCallback(lookup->name(), | 1070 Handle<Code> code = compiler.CompileLoadCallback( |
1071 call_optimization, index); | 1071 lookup->name(), call_optimization, index); |
| 1072 if (FLAG_runtime_call_stats) return slow_stub(); |
| 1073 return code; |
1072 } | 1074 } |
1073 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadViaGetter); | 1075 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadViaGetter); |
1074 int expected_arguments = Handle<JSFunction>::cast(getter) | 1076 int expected_arguments = Handle<JSFunction>::cast(getter) |
1075 ->shared() | 1077 ->shared() |
1076 ->internal_formal_parameter_count(); | 1078 ->internal_formal_parameter_count(); |
1077 return compiler.CompileLoadViaGetter( | 1079 return compiler.CompileLoadViaGetter( |
1078 lookup->name(), lookup->GetAccessorIndex(), expected_arguments); | 1080 lookup->name(), lookup->GetAccessorIndex(), expected_arguments); |
1079 } else if (accessors->IsAccessorInfo()) { | 1081 } else if (accessors->IsAccessorInfo()) { |
1080 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); | 1082 Handle<AccessorInfo> info = Handle<AccessorInfo>::cast(accessors); |
1081 if (v8::ToCData<Address>(info->getter()) == nullptr) break; | 1083 if (v8::ToCData<Address>(info->getter()) == nullptr) break; |
1082 if (!AccessorInfo::IsCompatibleReceiverMap(isolate(), info, map)) { | 1084 if (!AccessorInfo::IsCompatibleReceiverMap(isolate(), info, map)) { |
1083 // This case should be already handled in LoadIC::UpdateCaches. | 1085 // This case should be already handled in LoadIC::UpdateCaches. |
1084 UNREACHABLE(); | 1086 UNREACHABLE(); |
1085 break; | 1087 break; |
1086 } | 1088 } |
1087 if (!holder->HasFastProperties()) break; | 1089 if (!holder->HasFastProperties()) break; |
1088 if (receiver_is_holder) { | 1090 if (receiver_is_holder) { |
1089 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadApiGetterStub); | 1091 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadApiGetterStub); |
1090 int index = lookup->GetAccessorIndex(); | 1092 int index = lookup->GetAccessorIndex(); |
1091 LoadApiGetterStub stub(isolate(), true, index); | 1093 LoadApiGetterStub stub(isolate(), true, index); |
1092 return stub.GetCode(); | 1094 return stub.GetCode(); |
1093 } | 1095 } |
1094 if (info->is_sloppy() && !receiver->IsJSReceiver()) break; | 1096 if (info->is_sloppy() && !receiver->IsJSReceiver()) break; |
1095 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadCallback); | 1097 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadCallback); |
1096 NamedLoadHandlerCompiler compiler(isolate(), map, holder, | 1098 NamedLoadHandlerCompiler compiler(isolate(), map, holder, |
1097 cache_holder); | 1099 cache_holder); |
1098 return compiler.CompileLoadCallback(lookup->name(), info); | 1100 Handle<Code> code = |
| 1101 compiler.CompileLoadCallback(lookup->name(), info); |
| 1102 if (FLAG_runtime_call_stats) return slow_stub(); |
| 1103 return code; |
1099 } | 1104 } |
1100 } | 1105 } |
1101 break; | 1106 break; |
1102 } | 1107 } |
1103 | 1108 |
1104 case LookupIterator::DATA: { | 1109 case LookupIterator::DATA: { |
1105 if (lookup->is_dictionary_holder()) { | 1110 if (lookup->is_dictionary_holder()) { |
1106 if (kind() != Code::LOAD_IC) break; | 1111 if (kind() != Code::LOAD_IC) break; |
1107 if (holder->IsJSGlobalObject()) { | 1112 if (holder->IsJSGlobalObject()) { |
1108 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadGlobal); | 1113 TRACE_HANDLER_STATS(isolate(), LoadIC_LoadGlobal); |
(...skipping 467 matching lines...) Loading... |
1576 break; | 1581 break; |
1577 } | 1582 } |
1578 if (!AccessorInfo::IsCompatibleReceiverMap(isolate(), info, | 1583 if (!AccessorInfo::IsCompatibleReceiverMap(isolate(), info, |
1579 receiver_map())) { | 1584 receiver_map())) { |
1580 TRACE_GENERIC_IC(isolate(), "StoreIC", "incompatible receiver type"); | 1585 TRACE_GENERIC_IC(isolate(), "StoreIC", "incompatible receiver type"); |
1581 break; | 1586 break; |
1582 } | 1587 } |
1583 if (info->is_sloppy() && !receiver->IsJSReceiver()) break; | 1588 if (info->is_sloppy() && !receiver->IsJSReceiver()) break; |
1584 TRACE_HANDLER_STATS(isolate(), StoreIC_StoreCallback); | 1589 TRACE_HANDLER_STATS(isolate(), StoreIC_StoreCallback); |
1585 NamedStoreHandlerCompiler compiler(isolate(), receiver_map(), holder); | 1590 NamedStoreHandlerCompiler compiler(isolate(), receiver_map(), holder); |
1586 return compiler.CompileStoreCallback(receiver, lookup->name(), info, | 1591 Handle<Code> code = compiler.CompileStoreCallback( |
1587 language_mode()); | 1592 receiver, lookup->name(), info, language_mode()); |
| 1593 if (FLAG_runtime_call_stats) return slow_stub(); |
| 1594 return code; |
1588 } else if (accessors->IsAccessorPair()) { | 1595 } else if (accessors->IsAccessorPair()) { |
1589 Handle<Object> setter(Handle<AccessorPair>::cast(accessors)->setter(), | 1596 Handle<Object> setter(Handle<AccessorPair>::cast(accessors)->setter(), |
1590 isolate()); | 1597 isolate()); |
1591 if (!setter->IsJSFunction() && !setter->IsFunctionTemplateInfo()) { | 1598 if (!setter->IsJSFunction() && !setter->IsFunctionTemplateInfo()) { |
1592 TRACE_GENERIC_IC(isolate(), "StoreIC", "setter not a function"); | 1599 TRACE_GENERIC_IC(isolate(), "StoreIC", "setter not a function"); |
1593 break; | 1600 break; |
1594 } | 1601 } |
1595 CallOptimization call_optimization(setter); | 1602 CallOptimization call_optimization(setter); |
1596 NamedStoreHandlerCompiler compiler(isolate(), receiver_map(), holder); | 1603 NamedStoreHandlerCompiler compiler(isolate(), receiver_map(), holder); |
1597 if (call_optimization.is_simple_api_call()) { | 1604 if (call_optimization.is_simple_api_call()) { |
1598 if (call_optimization.IsCompatibleReceiver(receiver, holder)) { | 1605 if (call_optimization.IsCompatibleReceiver(receiver, holder)) { |
1599 TRACE_HANDLER_STATS(isolate(), StoreIC_StoreCallback); | 1606 TRACE_HANDLER_STATS(isolate(), StoreIC_StoreCallback); |
1600 return compiler.CompileStoreCallback(receiver, lookup->name(), | 1607 Handle<Code> code = compiler.CompileStoreCallback( |
1601 call_optimization, | 1608 receiver, lookup->name(), call_optimization, |
1602 lookup->GetAccessorIndex()); | 1609 lookup->GetAccessorIndex()); |
| 1610 if (FLAG_runtime_call_stats) return slow_stub(); |
| 1611 return code; |
1603 } | 1612 } |
1604 TRACE_GENERIC_IC(isolate(), "StoreIC", "incompatible receiver"); | 1613 TRACE_GENERIC_IC(isolate(), "StoreIC", "incompatible receiver"); |
1605 break; | 1614 break; |
1606 } | 1615 } |
1607 TRACE_HANDLER_STATS(isolate(), StoreIC_StoreViaSetter); | 1616 TRACE_HANDLER_STATS(isolate(), StoreIC_StoreViaSetter); |
1608 int expected_arguments = JSFunction::cast(*setter) | 1617 int expected_arguments = JSFunction::cast(*setter) |
1609 ->shared() | 1618 ->shared() |
1610 ->internal_formal_parameter_count(); | 1619 ->internal_formal_parameter_count(); |
1611 return compiler.CompileStoreViaSetter(receiver, lookup->name(), | 1620 return compiler.CompileStoreViaSetter(receiver, lookup->name(), |
1612 lookup->GetAccessorIndex(), | 1621 lookup->GetAccessorIndex(), |
(...skipping 1170 matching lines...) Loading... |
2783 KeyedLoadICNexus nexus(vector, vector_slot); | 2792 KeyedLoadICNexus nexus(vector, vector_slot); |
2784 KeyedLoadIC ic(IC::EXTRA_CALL_FRAME, isolate, &nexus); | 2793 KeyedLoadIC ic(IC::EXTRA_CALL_FRAME, isolate, &nexus); |
2785 ic.UpdateState(receiver, key); | 2794 ic.UpdateState(receiver, key); |
2786 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, ic.Load(receiver, key)); | 2795 ASSIGN_RETURN_FAILURE_ON_EXCEPTION(isolate, result, ic.Load(receiver, key)); |
2787 } | 2796 } |
2788 | 2797 |
2789 return *result; | 2798 return *result; |
2790 } | 2799 } |
2791 } // namespace internal | 2800 } // namespace internal |
2792 } // namespace v8 | 2801 } // namespace v8 |
OLD | NEW |