Changeset 239013 in webkit
- Timestamp:
- Dec 8, 2018, 3:53:29 PM (6 years ago)
- Location:
- trunk/Source/JavaScriptCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r239009 r239013 1 2018-12-08 Mark Lam <mark.lam@apple.com> 2 3 Reduce size of PropertySlot and PutPropertySlot. 4 https://bugs.webkit.org/show_bug.cgi?id=192526 5 6 Reviewed by Keith Miller. 7 8 With some minor adjustments, we can reduce the size of PropertySlot from 80 bytes 9 (19 padding bytes) to 64 bytes (3 padding bytes), and PutPropertySlot from 40 10 bytes (4 padding bytes) to 32 bytes (0 padding bytes but with 6 unused bits). 11 These measurements are for a 64-bit build. 12 13 * runtime/PropertySlot.h: 14 * runtime/PutPropertySlot.h: 15 (JSC::PutPropertySlot::PutPropertySlot): 16 1 17 2018-12-08 Dominik Infuehr <dinfuehr@igalia.com> 2 18 -
trunk/Source/JavaScriptCore/runtime/PropertySlot.h
r230129 r239013 371 371 JS_EXPORT_PRIVATE JSValue customAccessorGetter(ExecState*, PropertyName) const; 372 372 373 unsigned m_attributes;374 373 union { 375 374 EncodedJSValue value; … … 385 384 } m_data; 386 385 386 unsigned m_attributes; 387 387 PropertyOffset m_offset; 388 388 JSValue m_thisValue; … … 393 393 InternalMethodType m_internalMethodType; 394 394 AdditionalDataType m_additionalDataType; 395 bool m_isTaintedByOpaqueObject; 395 396 union { 396 397 DOMAttributeAnnotation domAttribute; 397 398 ModuleNamespaceSlot moduleNamespaceSlot; 398 399 } m_additionalData; 399 bool m_isTaintedByOpaqueObject;400 400 }; 401 401 -
trunk/Source/JavaScriptCore/runtime/PutPropertySlot.h
r230748 r239013 37 37 class PutPropertySlot { 38 38 public: 39 enum Type { Uncachable, ExistingProperty, NewProperty, SetterProperty, CustomValue, CustomAccessor };39 enum Type : uint8_t { Uncachable, ExistingProperty, NewProperty, SetterProperty, CustomValue, CustomAccessor }; 40 40 enum Context { UnknownContext, PutById, PutByIdEval }; 41 41 typedef bool (*PutValueFunc)(ExecState*, EncodedJSValue thisObject, EncodedJSValue value); 42 42 43 43 PutPropertySlot(JSValue thisValue, bool isStrictMode = false, Context context = UnknownContext, bool isInitialization = false) 44 : m_type(Uncachable) 45 , m_base(0) 44 : m_base(0) 46 45 , m_thisValue(thisValue) 47 46 , m_offset(invalidOffset) 48 47 , m_isStrictMode(isStrictMode) 49 48 , m_isInitialization(isInitialization) 49 , m_type(Uncachable) 50 50 , m_context(context) 51 51 , m_cacheability(CachingAllowed) … … 130 130 bool isCacheable() const { return m_cacheability == CachingAllowed; } 131 131 132 Type m_type;133 132 JSObject* m_base; 134 133 JSValue m_thisValue; 135 134 PropertyOffset m_offset; 136 bool m_isStrictMode; 137 bool m_isInitialization; 135 bool m_isStrictMode : 1; 136 bool m_isInitialization : 1; 137 Type m_type; 138 138 uint8_t m_context; 139 139 CacheabilityType m_cacheability;
Note:
See TracChangeset
for help on using the changeset viewer.