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

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

Issue 141733002: Remove the special MathFloor / MathAbs call handlers. (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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after
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) \ 906 V(StringFromCharCode)
907 V(MathFloor) \
908 V(MathAbs)
909 907
910 908
911 class CallStubCompiler: public StubCompiler { 909 class CallStubCompiler: public StubCompiler {
912 public: 910 public:
913 CallStubCompiler(Isolate* isolate, 911 CallStubCompiler(Isolate* isolate,
914 int argc, 912 int argc,
915 Code::Kind kind, 913 Code::Kind kind,
916 ExtraICState extra_state, 914 ExtraICState extra_state,
917 InlineCacheHolderFlag cache_holder = OWN_MAP); 915 InlineCacheHolderFlag cache_holder = OWN_MAP);
918 916
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1066 Handle<JSFunction> constant_function_; 1064 Handle<JSFunction> constant_function_;
1067 bool is_simple_api_call_; 1065 bool is_simple_api_call_;
1068 Handle<FunctionTemplateInfo> expected_receiver_type_; 1066 Handle<FunctionTemplateInfo> expected_receiver_type_;
1069 Handle<CallHandlerInfo> api_call_info_; 1067 Handle<CallHandlerInfo> api_call_info_;
1070 }; 1068 };
1071 1069
1072 1070
1073 } } // namespace v8::internal 1071 } } // namespace v8::internal
1074 1072
1075 #endif // V8_STUB_CACHE_H_ 1073 #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