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

Side by Side Diff: src/stub-cache.h

Issue 137783023: Add hydrogen support for ArrayPop, and remove the handwritten call stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 11 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 // 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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 virtual void GenerateNameCheck(Handle<Name> name, 894 virtual void GenerateNameCheck(Handle<Name> name,
895 Register name_reg, 895 Register name_reg,
896 Label* miss); 896 Label* miss);
897 friend class BaseLoadStoreStubCompiler; 897 friend class BaseLoadStoreStubCompiler;
898 }; 898 };
899 899
900 900
901 // Subset of FUNCTIONS_WITH_ID_LIST with custom constant/global call 901 // Subset of FUNCTIONS_WITH_ID_LIST with custom constant/global call
902 // IC stubs. 902 // IC stubs.
903 #define CUSTOM_CALL_IC_GENERATORS(V) \ 903 #define CUSTOM_CALL_IC_GENERATORS(V) \
904 V(ArrayPush) \ 904 V(ArrayPush)
905 V(ArrayPop)
906 905
907 906
908 class CallStubCompiler: public StubCompiler { 907 class CallStubCompiler: public StubCompiler {
909 public: 908 public:
910 CallStubCompiler(Isolate* isolate, 909 CallStubCompiler(Isolate* isolate,
911 int argc, 910 int argc,
912 Code::Kind kind, 911 Code::Kind kind,
913 ExtraICState extra_state, 912 ExtraICState extra_state,
914 InlineCacheHolderFlag cache_holder = OWN_MAP); 913 InlineCacheHolderFlag cache_holder = OWN_MAP);
915 914
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 Handle<JSFunction> constant_function_; 1062 Handle<JSFunction> constant_function_;
1064 bool is_simple_api_call_; 1063 bool is_simple_api_call_;
1065 Handle<FunctionTemplateInfo> expected_receiver_type_; 1064 Handle<FunctionTemplateInfo> expected_receiver_type_;
1066 Handle<CallHandlerInfo> api_call_info_; 1065 Handle<CallHandlerInfo> api_call_info_;
1067 }; 1066 };
1068 1067
1069 1068
1070 } } // namespace v8::internal 1069 } } // namespace v8::internal
1071 1070
1072 #endif // V8_STUB_CACHE_H_ 1071 #endif // V8_STUB_CACHE_H_
OLDNEW
« src/hydrogen.cc ('K') | « src/mips/stub-cache-mips.cc ('k') | src/x64/stub-cache-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698