| OLD | NEW |
| 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 Loading... |
| 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(StringCharCodeAt) \ | |
| 907 V(StringCharAt) \ | |
| 908 V(StringFromCharCode) \ | 906 V(StringFromCharCode) \ |
| 909 V(MathFloor) \ | 907 V(MathFloor) \ |
| 910 V(MathAbs) | 908 V(MathAbs) |
| 911 | 909 |
| 912 | 910 |
| 913 class CallStubCompiler: public StubCompiler { | 911 class CallStubCompiler: public StubCompiler { |
| 914 public: | 912 public: |
| 915 CallStubCompiler(Isolate* isolate, | 913 CallStubCompiler(Isolate* isolate, |
| 916 int argc, | 914 int argc, |
| 917 Code::Kind kind, | 915 Code::Kind kind, |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 Handle<JSFunction> constant_function_; | 1066 Handle<JSFunction> constant_function_; |
| 1069 bool is_simple_api_call_; | 1067 bool is_simple_api_call_; |
| 1070 Handle<FunctionTemplateInfo> expected_receiver_type_; | 1068 Handle<FunctionTemplateInfo> expected_receiver_type_; |
| 1071 Handle<CallHandlerInfo> api_call_info_; | 1069 Handle<CallHandlerInfo> api_call_info_; |
| 1072 }; | 1070 }; |
| 1073 | 1071 |
| 1074 | 1072 |
| 1075 } } // namespace v8::internal | 1073 } } // namespace v8::internal |
| 1076 | 1074 |
| 1077 #endif // V8_STUB_CACHE_H_ | 1075 #endif // V8_STUB_CACHE_H_ |
| OLD | NEW |