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

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

Issue 10855098: Deoptimization support for accessors. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Tiny test changes. Rebased. Created 8 years, 4 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/objects.cc ('k') | src/x64/deoptimizer-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 690 matching lines...) Expand 10 before | Expand all | Expand 10 after
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...) Expand 10 before | Expand all | Expand 10 after
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_
OLDNEW
« no previous file with comments | « src/objects.cc ('k') | src/x64/deoptimizer-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698