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

Side by Side Diff: src/ic/ic.h

Issue 499343002: Added vector-based loadic hydrogen stubs. Not yet callable. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: More comments. Created 6 years, 3 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
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 #ifndef V8_IC_H_ 5 #ifndef V8_IC_H_
6 #define V8_IC_H_ 6 #define V8_IC_H_
7 7
8 #include "src/macro-assembler.h" 8 #include "src/macro-assembler.h"
9 9
10 namespace v8 { 10 namespace v8 {
(...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after
916 916
917 DECLARE_RUNTIME_FUNCTION(KeyedLoadIC_MissFromStubFailure); 917 DECLARE_RUNTIME_FUNCTION(KeyedLoadIC_MissFromStubFailure);
918 DECLARE_RUNTIME_FUNCTION(KeyedStoreIC_MissFromStubFailure); 918 DECLARE_RUNTIME_FUNCTION(KeyedStoreIC_MissFromStubFailure);
919 DECLARE_RUNTIME_FUNCTION(UnaryOpIC_Miss); 919 DECLARE_RUNTIME_FUNCTION(UnaryOpIC_Miss);
920 DECLARE_RUNTIME_FUNCTION(StoreIC_MissFromStubFailure); 920 DECLARE_RUNTIME_FUNCTION(StoreIC_MissFromStubFailure);
921 DECLARE_RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss); 921 DECLARE_RUNTIME_FUNCTION(ElementsTransitionAndStoreIC_Miss);
922 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_Miss); 922 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_Miss);
923 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_MissWithAllocationSite); 923 DECLARE_RUNTIME_FUNCTION(BinaryOpIC_MissWithAllocationSite);
924 DECLARE_RUNTIME_FUNCTION(CompareNilIC_Miss); 924 DECLARE_RUNTIME_FUNCTION(CompareNilIC_Miss);
925 DECLARE_RUNTIME_FUNCTION(ToBooleanIC_Miss); 925 DECLARE_RUNTIME_FUNCTION(ToBooleanIC_Miss);
926 DECLARE_RUNTIME_FUNCTION(VectorLoadIC_MissFromStubFailure);
927 DECLARE_RUNTIME_FUNCTION(VectorKeyedLoadIC_MissFromStubFailure);
926 928
927 // Support functions for callbacks handlers. 929 // Support functions for callbacks handlers.
928 DECLARE_RUNTIME_FUNCTION(StoreCallbackProperty); 930 DECLARE_RUNTIME_FUNCTION(StoreCallbackProperty);
929 931
930 // Support functions for interceptor handlers. 932 // Support functions for interceptor handlers.
931 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly); 933 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptorOnly);
932 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor); 934 DECLARE_RUNTIME_FUNCTION(LoadPropertyWithInterceptor);
933 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor); 935 DECLARE_RUNTIME_FUNCTION(LoadElementWithInterceptor);
934 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor); 936 DECLARE_RUNTIME_FUNCTION(StorePropertyWithInterceptor);
935 } 937 }
936 } // namespace v8::internal 938 } // namespace v8::internal
937 939
938 #endif // V8_IC_H_ 940 #endif // V8_IC_H_
OLDNEW
« src/arm64/code-stubs-arm64.cc ('K') | « src/ia32/code-stubs-ia32.cc ('k') | src/ic/ic.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698