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 1033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1044 | 1044 |
1045 TRACE_IC("LoadIC", name, state, target()); | 1045 TRACE_IC("LoadIC", name, state, target()); |
1046 } | 1046 } |
1047 | 1047 |
1048 | 1048 |
1049 Handle<Code> KeyedLoadIC::GetElementStubWithoutMapCheck( | 1049 Handle<Code> KeyedLoadIC::GetElementStubWithoutMapCheck( |
1050 bool is_js_array, | 1050 bool is_js_array, |
1051 ElementsKind elements_kind, | 1051 ElementsKind elements_kind, |
1052 KeyedAccessGrowMode grow_mode) { | 1052 KeyedAccessGrowMode grow_mode) { |
1053 ASSERT(grow_mode == DO_NOT_ALLOW_JSARRAY_GROWTH); | 1053 ASSERT(grow_mode == DO_NOT_ALLOW_JSARRAY_GROWTH); |
1054 return KeyedLoadElementStub(elements_kind).GetCode(); | 1054 if (IsFastElementsKind(elements_kind) || |
| 1055 IsExternalArrayElementsKind(elements_kind)) { |
| 1056 return KeyedLoadFastElementStub(is_js_array, |
| 1057 elements_kind).GetCode(); |
| 1058 } else { |
| 1059 ASSERT(elements_kind == DICTIONARY_ELEMENTS); |
| 1060 return KeyedLoadDictionaryElementStub().GetCode(); |
| 1061 } |
1055 } | 1062 } |
1056 | 1063 |
1057 | 1064 |
1058 Handle<Code> KeyedLoadIC::ComputePolymorphicStub( | 1065 Handle<Code> KeyedLoadIC::ComputePolymorphicStub( |
1059 MapHandleList* receiver_maps, | 1066 MapHandleList* receiver_maps, |
1060 StrictModeFlag strict_mode, | 1067 StrictModeFlag strict_mode, |
1061 KeyedAccessGrowMode growth_mode) { | 1068 KeyedAccessGrowMode growth_mode) { |
1062 CodeHandleList handler_ics(receiver_maps->length()); | 1069 CodeHandleList handler_ics(receiver_maps->length()); |
1063 for (int i = 0; i < receiver_maps->length(); ++i) { | 1070 for (int i = 0; i < receiver_maps->length(); ++i) { |
1064 Handle<Map> receiver_map = receiver_maps->at(i); | 1071 Handle<Map> receiver_map = receiver_maps->at(i); |
(...skipping 1635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2700 #undef ADDR | 2707 #undef ADDR |
2701 }; | 2708 }; |
2702 | 2709 |
2703 | 2710 |
2704 Address IC::AddressFromUtilityId(IC::UtilityId id) { | 2711 Address IC::AddressFromUtilityId(IC::UtilityId id) { |
2705 return IC_utilities[id]; | 2712 return IC_utilities[id]; |
2706 } | 2713 } |
2707 | 2714 |
2708 | 2715 |
2709 } } // namespace v8::internal | 2716 } } // namespace v8::internal |
OLD | NEW |