⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 244580 in webkit


Ignore:
Timestamp:
Apr 23, 2019, 9:06:08 PM (7 years ago)
Author:
ysuzuki@apple.com
Message:

[JSC] Shrink DFG::MinifiedNode
https://bugs.webkit.org/show_bug.cgi?id=197224

Reviewed by Filip Pizlo.

Since it is kept alive with compiled DFG code, we should shrink it to save memory.
If it is effective, we should consider minimizing these OSR exit data more aggressively.

  • dfg/DFGMinifiedNode.h:
Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r244579 r244580  
     12019-04-23  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        [JSC] Shrink DFG::MinifiedNode
     4        https://bugs.webkit.org/show_bug.cgi?id=197224
     5
     6        Reviewed by Filip Pizlo.
     7
     8        Since it is kept alive with compiled DFG code, we should shrink it to save memory.
     9        If it is effective, we should consider minimizing these OSR exit data more aggressively.
     10
     11        * dfg/DFGMinifiedNode.h:
     12
    1132019-04-23  Saam Barati  <sbarati@apple.com>
    214
  • trunk/Source/JavaScriptCore/dfg/DFGMinifiedNode.h

    r218794 r244580  
    9191    }
    9292   
     93    uint64_t m_info;
    9394    MinifiedID m_id;
    94     uint64_t m_info;
    9595    NodeType m_op;
    9696};
Note: See TracChangeset for help on using the changeset viewer.