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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/bootstrapper.h" | 7 #include "src/bootstrapper.h" |
8 #include "src/code-stubs.h" | 8 #include "src/code-stubs.h" |
9 #include "src/cpu-profiler.h" | 9 #include "src/cpu-profiler.h" |
10 #include "src/factory.h" | 10 #include "src/factory.h" |
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 case FAST_HOLEY_DOUBLE_ELEMENTS: | 683 case FAST_HOLEY_DOUBLE_ELEMENTS: |
684 #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ | 684 #define TYPED_ARRAY_CASE(Type, type, TYPE, ctype, size) \ |
685 case EXTERNAL_##TYPE##_ELEMENTS: \ | 685 case EXTERNAL_##TYPE##_ELEMENTS: \ |
686 case TYPE##_ELEMENTS: | 686 case TYPE##_ELEMENTS: |
687 | 687 |
688 TYPED_ARRAYS(TYPED_ARRAY_CASE) | 688 TYPED_ARRAYS(TYPED_ARRAY_CASE) |
689 #undef TYPED_ARRAY_CASE | 689 #undef TYPED_ARRAY_CASE |
690 UNREACHABLE(); | 690 UNREACHABLE(); |
691 break; | 691 break; |
692 case DICTIONARY_ELEMENTS: | 692 case DICTIONARY_ELEMENTS: |
693 ElementHandlerCompiler::GenerateStoreDictionaryElement(masm); | 693 ElementHandlerCompiler::GenerateStoreSlow(masm); |
694 break; | 694 break; |
695 case SLOPPY_ARGUMENTS_ELEMENTS: | 695 case SLOPPY_ARGUMENTS_ELEMENTS: |
696 UNREACHABLE(); | 696 UNREACHABLE(); |
697 break; | 697 break; |
698 } | 698 } |
699 } | 699 } |
700 | 700 |
701 | 701 |
702 void ArgumentsAccessStub::PrintName(OStream& os) const { // NOLINT | 702 void ArgumentsAccessStub::PrintName(OStream& os) const { // NOLINT |
703 os << "ArgumentsAccessStub_"; | 703 os << "ArgumentsAccessStub_"; |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 InstallDescriptor(isolate, &stub3); | 976 InstallDescriptor(isolate, &stub3); |
977 } | 977 } |
978 | 978 |
979 InternalArrayConstructorStub::InternalArrayConstructorStub( | 979 InternalArrayConstructorStub::InternalArrayConstructorStub( |
980 Isolate* isolate) : PlatformCodeStub(isolate) { | 980 Isolate* isolate) : PlatformCodeStub(isolate) { |
981 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 981 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
982 } | 982 } |
983 | 983 |
984 | 984 |
985 } } // namespace v8::internal | 985 } } // namespace v8::internal |
OLD | NEW |