Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: src/code-stubs.cc

Issue 496283004: Move "slow handler" compiler code to handler-compiler (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/builtins.cc ('k') | src/ic/arm/handler-compiler-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/ic/arm/handler-compiler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698