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

Side by Side Diff: src/ic.h

Issue 16925008: Generate StoreGlobal stubs with Hydrogen (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add non-SSE2 support Created 7 years, 6 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
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 542 matching lines...) Expand 10 before | Expand all | Expand 10 after
553 StrictModeFlag strict_mode, 553 StrictModeFlag strict_mode,
554 Handle<JSObject> receiver, 554 Handle<JSObject> receiver,
555 Handle<String> name, 555 Handle<String> name,
556 Handle<Object> value); 556 Handle<Object> value);
557 // Compute the code stub for this store; used for rewriting to 557 // Compute the code stub for this store; used for rewriting to
558 // monomorphic state and making sure that the code stub is in the 558 // monomorphic state and making sure that the code stub is in the
559 // stub cache. 559 // stub cache.
560 virtual Handle<Code> ComputeStoreMonomorphic(LookupResult* lookup, 560 virtual Handle<Code> ComputeStoreMonomorphic(LookupResult* lookup,
561 StrictModeFlag strict_mode, 561 StrictModeFlag strict_mode,
562 Handle<JSObject> receiver, 562 Handle<JSObject> receiver,
563 Handle<String> name); 563 Handle<String> name,
564 Handle<Object> value);
564 565
565 private: 566 private:
566 void set_target(Code* code) { 567 void set_target(Code* code) {
567 // Strict mode must be preserved across IC patching. 568 // Strict mode must be preserved across IC patching.
568 ASSERT(Code::GetStrictMode(code->extra_ic_state()) == 569 ASSERT(Code::GetStrictMode(code->extra_ic_state()) ==
569 Code::GetStrictMode(target()->extra_ic_state())); 570 Code::GetStrictMode(target()->extra_ic_state()));
570 IC::set_target(code); 571 IC::set_target(code);
571 } 572 }
572 573
573 static Handle<Code> initialize_stub() { 574 static Handle<Code> initialize_stub() {
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 static void GenerateNonStrictArguments(MacroAssembler* masm); 621 static void GenerateNonStrictArguments(MacroAssembler* masm);
621 static void GenerateTransitionElementsSmiToDouble(MacroAssembler* masm); 622 static void GenerateTransitionElementsSmiToDouble(MacroAssembler* masm);
622 static void GenerateTransitionElementsDoubleToObject(MacroAssembler* masm); 623 static void GenerateTransitionElementsDoubleToObject(MacroAssembler* masm);
623 624
624 protected: 625 protected:
625 virtual Code::Kind kind() const { return Code::KEYED_STORE_IC; } 626 virtual Code::Kind kind() const { return Code::KEYED_STORE_IC; }
626 627
627 virtual Handle<Code> ComputeStoreMonomorphic(LookupResult* lookup, 628 virtual Handle<Code> ComputeStoreMonomorphic(LookupResult* lookup,
628 StrictModeFlag strict_mode, 629 StrictModeFlag strict_mode,
629 Handle<JSObject> receiver, 630 Handle<JSObject> receiver,
630 Handle<String> name); 631 Handle<String> name,
632 Handle<Object> value);
631 virtual void UpdateMegamorphicCache(Map* map, Name* name, Code* code) { } 633 virtual void UpdateMegamorphicCache(Map* map, Name* name, Code* code) { }
632 634
633 virtual Handle<Code> megamorphic_stub() { 635 virtual Handle<Code> megamorphic_stub() {
634 return isolate()->builtins()->KeyedStoreIC_Generic(); 636 return isolate()->builtins()->KeyedStoreIC_Generic();
635 } 637 }
636 virtual Handle<Code> megamorphic_stub_strict() { 638 virtual Handle<Code> megamorphic_stub_strict() {
637 return isolate()->builtins()->KeyedStoreIC_Generic_Strict(); 639 return isolate()->builtins()->KeyedStoreIC_Generic_Strict();
638 } 640 }
639 641
640 Handle<Code> StoreElementStub(Handle<JSObject> receiver, 642 Handle<Code> StoreElementStub(Handle<JSObject> receiver,
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after
831 MaybeObject* ToBoolean(Handle<Object> object, Code::ExtraICState state); 833 MaybeObject* ToBoolean(Handle<Object> object, Code::ExtraICState state);
832 }; 834 };
833 835
834 836
835 // Helper for BinaryOpIC and CompareIC. 837 // Helper for BinaryOpIC and CompareIC.
836 enum InlinedSmiCheck { ENABLE_INLINED_SMI_CHECK, DISABLE_INLINED_SMI_CHECK }; 838 enum InlinedSmiCheck { ENABLE_INLINED_SMI_CHECK, DISABLE_INLINED_SMI_CHECK };
837 void PatchInlinedSmiCode(Address address, InlinedSmiCheck check); 839 void PatchInlinedSmiCode(Address address, InlinedSmiCheck check);
838 840
839 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedLoadIC_MissFromStubFailure); 841 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedLoadIC_MissFromStubFailure);
840 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedStoreIC_MissFromStubFailure); 842 DECLARE_RUNTIME_FUNCTION(MaybeObject*, KeyedStoreIC_MissFromStubFailure);
843 DECLARE_RUNTIME_FUNCTION(MaybeObject*, StoreIC_MissFromStubFailure);
841 DECLARE_RUNTIME_FUNCTION(MaybeObject*, CompareNilIC_Miss); 844 DECLARE_RUNTIME_FUNCTION(MaybeObject*, CompareNilIC_Miss);
842 DECLARE_RUNTIME_FUNCTION(MaybeObject*, ToBooleanIC_Miss); 845 DECLARE_RUNTIME_FUNCTION(MaybeObject*, ToBooleanIC_Miss);
843 846
844 847
845 } } // namespace v8::internal 848 } } // namespace v8::internal
846 849
847 #endif // V8_IC_H_ 850 #endif // V8_IC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698