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

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

Issue 141773002: Remove special String.fromCharCode call IC support. (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
« no previous file with comments | « src/mips/stub-cache-mips.cc ('k') | src/x64/stub-cache-x64.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 // 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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) \ 905 V(ArrayPop)
906 V(StringFromCharCode)
907 906
908 907
909 class CallStubCompiler: public StubCompiler { 908 class CallStubCompiler: public StubCompiler {
910 public: 909 public:
911 CallStubCompiler(Isolate* isolate, 910 CallStubCompiler(Isolate* isolate,
912 int argc, 911 int argc,
913 Code::Kind kind, 912 Code::Kind kind,
914 ExtraICState extra_state, 913 ExtraICState extra_state,
915 InlineCacheHolderFlag cache_holder = OWN_MAP); 914 InlineCacheHolderFlag cache_holder = OWN_MAP);
916 915
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1064 Handle<JSFunction> constant_function_; 1063 Handle<JSFunction> constant_function_;
1065 bool is_simple_api_call_; 1064 bool is_simple_api_call_;
1066 Handle<FunctionTemplateInfo> expected_receiver_type_; 1065 Handle<FunctionTemplateInfo> expected_receiver_type_;
1067 Handle<CallHandlerInfo> api_call_info_; 1066 Handle<CallHandlerInfo> api_call_info_;
1068 }; 1067 };
1069 1068
1070 1069
1071 } } // namespace v8::internal 1070 } } // namespace v8::internal
1072 1071
1073 #endif // V8_STUB_CACHE_H_ 1072 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « 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