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 690 matching lines...) Loading... |
701 | 701 |
702 Handle<Code> CompileStoreField(Handle<JSObject> object, | 702 Handle<Code> CompileStoreField(Handle<JSObject> object, |
703 int index, | 703 int index, |
704 Handle<Map> transition, | 704 Handle<Map> transition, |
705 Handle<String> name); | 705 Handle<String> name); |
706 | 706 |
707 Handle<Code> CompileStoreCallback(Handle<JSObject> object, | 707 Handle<Code> CompileStoreCallback(Handle<JSObject> object, |
708 Handle<AccessorInfo> callback, | 708 Handle<AccessorInfo> callback, |
709 Handle<String> name); | 709 Handle<String> name); |
710 | 710 |
| 711 static void GenerateStoreViaSetter(MacroAssembler* masm, |
| 712 Handle<JSFunction> setter); |
| 713 |
711 Handle<Code> CompileStoreViaSetter(Handle<String> name, | 714 Handle<Code> CompileStoreViaSetter(Handle<String> name, |
712 Handle<JSObject> receiver, | 715 Handle<JSObject> receiver, |
713 Handle<JSObject> holder, | 716 Handle<JSObject> holder, |
714 Handle<JSFunction> setter); | 717 Handle<JSFunction> setter); |
715 | 718 |
716 Handle<Code> CompileStoreInterceptor(Handle<JSObject> object, | 719 Handle<Code> CompileStoreInterceptor(Handle<JSObject> object, |
717 Handle<String> name); | 720 Handle<String> name); |
718 | 721 |
719 Handle<Code> CompileStoreGlobal(Handle<GlobalObject> object, | 722 Handle<Code> CompileStoreGlobal(Handle<GlobalObject> object, |
720 Handle<JSGlobalPropertyCell> holder, | 723 Handle<JSGlobalPropertyCell> holder, |
(...skipping 205 matching lines...) Loading... |
926 Handle<JSFunction> constant_function_; | 929 Handle<JSFunction> constant_function_; |
927 bool is_simple_api_call_; | 930 bool is_simple_api_call_; |
928 Handle<FunctionTemplateInfo> expected_receiver_type_; | 931 Handle<FunctionTemplateInfo> expected_receiver_type_; |
929 Handle<CallHandlerInfo> api_call_info_; | 932 Handle<CallHandlerInfo> api_call_info_; |
930 }; | 933 }; |
931 | 934 |
932 | 935 |
933 } } // namespace v8::internal | 936 } } // namespace v8::internal |
934 | 937 |
935 #endif // V8_STUB_CACHE_H_ | 938 #endif // V8_STUB_CACHE_H_ |
OLD | NEW |