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

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

Issue 196653015: Fixed spec violation of storing to length of a frozen object. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Review notes applied Created 6 years, 9 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/ic.cc ('k') | src/stub-cache.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 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
672 672
673 Handle<Code> CompileStoreTransition(Handle<JSObject> object, 673 Handle<Code> CompileStoreTransition(Handle<JSObject> object,
674 LookupResult* lookup, 674 LookupResult* lookup,
675 Handle<Map> transition, 675 Handle<Map> transition,
676 Handle<Name> name); 676 Handle<Name> name);
677 677
678 Handle<Code> CompileStoreField(Handle<JSObject> object, 678 Handle<Code> CompileStoreField(Handle<JSObject> object,
679 LookupResult* lookup, 679 LookupResult* lookup,
680 Handle<Name> name); 680 Handle<Name> name);
681 681
682 Handle<Code> CompileStoreArrayLength(Handle<JSObject> object,
683 LookupResult* lookup,
684 Handle<Name> name);
685
686 void GenerateStoreArrayLength();
687
682 void GenerateNegativeHolderLookup(MacroAssembler* masm, 688 void GenerateNegativeHolderLookup(MacroAssembler* masm,
683 Handle<JSObject> holder, 689 Handle<JSObject> holder,
684 Register holder_reg, 690 Register holder_reg,
685 Handle<Name> name, 691 Handle<Name> name,
686 Label* miss); 692 Label* miss);
687 693
688 void GenerateStoreTransition(MacroAssembler* masm, 694 void GenerateStoreTransition(MacroAssembler* masm,
689 Handle<JSObject> object, 695 Handle<JSObject> object,
690 LookupResult* lookup, 696 LookupResult* lookup,
691 Handle<Map> transition, 697 Handle<Map> transition,
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
847 Handle<JSFunction> constant_function_; 853 Handle<JSFunction> constant_function_;
848 bool is_simple_api_call_; 854 bool is_simple_api_call_;
849 Handle<FunctionTemplateInfo> expected_receiver_type_; 855 Handle<FunctionTemplateInfo> expected_receiver_type_;
850 Handle<CallHandlerInfo> api_call_info_; 856 Handle<CallHandlerInfo> api_call_info_;
851 }; 857 };
852 858
853 859
854 } } // namespace v8::internal 860 } } // namespace v8::internal
855 861
856 #endif // V8_STUB_CACHE_H_ 862 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/stub-cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698