Changeset 242657 in webkit
- Timestamp:
- Mar 8, 2019, 3:19:27 PM (7 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
bytecode/PutByIdVariant.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r242655 r242657 1 2019-03-08 Robin Morisset <rmorisset@apple.com> 2 3 PutByIdVariant can be shrunk by 8 bytes 4 https://bugs.webkit.org/show_bug.cgi?id=195482 5 6 Reviewed by Mark Lam. 7 8 * bytecode/PutByIdVariant.h: 9 (JSC::PutByIdVariant::PutByIdVariant): 10 1 11 2019-03-08 Yusuke Suzuki <ysuzuki@apple.com> 2 12 -
trunk/Source/JavaScriptCore/bytecode/PutByIdVariant.h
r240023 r242657 45 45 PutByIdVariant() 46 46 : m_kind(NotSet) 47 , m_offset(invalidOffset) 47 48 , m_newStructure(nullptr) 48 , m_offset(invalidOffset)49 49 { 50 50 } … … 142 142 143 143 Kind m_kind; 144 PropertyOffset m_offset; 144 145 StructureSet m_oldStructure; 145 146 Structure* m_newStructure { nullptr }; 146 147 ObjectPropertyConditionSet m_conditionSet; 147 PropertyOffset m_offset;148 148 std::unique_ptr<CallLinkStatus> m_callLinkStatus; 149 149 };
Note:
See TracChangeset
for help on using the changeset viewer.