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

Side by Side Diff: src/code-stubs.h

Issue 91803003: Move responsibility for definition of ExtraICState bits into the ICs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comment response Created 7 years 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/builtins.cc ('k') | src/ia32/ic-ia32.cc » ('j') | src/ic.h » ('J')
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 829 matching lines...) Expand 10 before | Expand all | Expand 10 after
840 }; 840 };
841 841
842 842
843 class StoreICStub: public ICStub { 843 class StoreICStub: public ICStub {
844 public: 844 public:
845 StoreICStub(Code::Kind kind, StrictModeFlag strict_mode) 845 StoreICStub(Code::Kind kind, StrictModeFlag strict_mode)
846 : ICStub(kind), strict_mode_(strict_mode) { } 846 : ICStub(kind), strict_mode_(strict_mode) { }
847 847
848 protected: 848 protected:
849 virtual Code::ExtraICState GetExtraICState() { 849 virtual Code::ExtraICState GetExtraICState() {
850 return strict_mode_; 850 return StoreIC::ComputeExtraICState(strict_mode_);
851 } 851 }
852 852
853 private: 853 private:
854 STATIC_ASSERT(KindBits::kSize == 4); 854 STATIC_ASSERT(KindBits::kSize == 4);
855 class StrictModeBits: public BitField<bool, 4, 1> {}; 855 class StrictModeBits: public BitField<bool, 4, 1> {};
856 virtual int MinorKey() { 856 virtual int MinorKey() {
857 return KindBits::encode(kind()) | StrictModeBits::encode(strict_mode_); 857 return KindBits::encode(kind()) | StrictModeBits::encode(strict_mode_);
858 } 858 }
859 859
860 StrictModeFlag strict_mode_; 860 StrictModeFlag strict_mode_;
(...skipping 1651 matching lines...) Expand 10 before | Expand all | Expand 10 after
2512 int MinorKey() { return 0; } 2512 int MinorKey() { return 0; }
2513 2513
2514 void Generate(MacroAssembler* masm); 2514 void Generate(MacroAssembler* masm);
2515 2515
2516 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub); 2516 DISALLOW_COPY_AND_ASSIGN(ProfileEntryHookStub);
2517 }; 2517 };
2518 2518
2519 } } // namespace v8::internal 2519 } } // namespace v8::internal
2520 2520
2521 #endif // V8_CODE_STUBS_H_ 2521 #endif // V8_CODE_STUBS_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/ia32/ic-ia32.cc » ('j') | src/ic.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698