<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE bugzilla SYSTEM "https://bugs.webkit.org/page.cgi?id=bugzilla.dtd">

<bugzilla version="5.0.4.1"
          urlbase="https://bugs.webkit.org/"
          
          maintainer="admin@webkit.org"
>

    <bug>
          <bug_id>228892</bug_id>
          
          <creation_ts>2021-08-06 22:15:57 -0700</creation_ts>
          <short_desc>[JSC] Custom getter / setter functions can be collected</short_desc>
          <delta_ts>2021-08-13 22:16:17 -0700</delta_ts>
          <reporter_accessible>1</reporter_accessible>
          <cclist_accessible>1</cclist_accessible>
          <classification_id>1</classification_id>
          <classification>Unclassified</classification>
          <product>WebKit</product>
          <component>JavaScriptCore</component>
          <version>WebKit Nightly Build</version>
          <rep_platform>Unspecified</rep_platform>
          <op_sys>Unspecified</op_sys>
          <bug_status>NEW</bug_status>
          <resolution></resolution>
          
          
          <bug_file_loc></bug_file_loc>
          <status_whiteboard></status_whiteboard>
          <keywords>InRadar</keywords>
          <priority>P2</priority>
          <bug_severity>Normal</bug_severity>
          <target_milestone>---</target_milestone>
          
          
          <everconfirmed>1</everconfirmed>
          <reporter name="Yusuke Suzuki">ysuzuki</reporter>
          <assigned_to name="Nobody">webkit-unassigned</assigned_to>
          <cc>ashvayka</cc>
    
    <cc>webkit-bug-importer</cc>
    
    <cc>ysuzuki</cc>
          

      

      

      

          <comment_sort_order>oldest_to_newest</comment_sort_order>  
          <long_desc isprivate="0" >
    <commentid>1782663</commentid>
    <comment_count>0</comment_count>
    <who name="Yusuke Suzuki">ysuzuki</who>
    <bug_when>2021-08-06 22:15:57 -0700</bug_when>
    <thetext>It is weakly held. This means that they can be collected if nobody references it.
So,

{
    var getter = Object.getOwnPropertyDescriptor(RegExp, &quot;rightContext&quot;).get;
    getter.mark = true;
}

// Make GC happens.

{
    var getter = Object.getOwnPropertyDescriptor(RegExp, &quot;rightContext&quot;).get;
    print(getter.mark); // =&gt; undefined
}

We need to keep these accessors strongly in the holder.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1782664</commentid>
    <comment_count>1</comment_count>
    <who name="Alexey Shvayka">ashvayka</who>
    <bug_when>2021-08-06 22:36:08 -0700</bug_when>
    <thetext>Wow, this is a great catch!

Since there could be a lot of `Object.getOwnPropertyDescriptors(%WebIDLInterface%.prototype)` out there in the web, my first approach would be creating separate HashSet on JSGlobalObject that is strong, and leverage Structure::didTransitionFromThisStructure() (m_transitionWatchpointSet) to copy JSCustom{Getter,Setter}Function objects there, so we can avoid overriding MethodTable::destroy() for performance reasons.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1782665</commentid>
    <comment_count>2</comment_count>
    <who name="Alexey Shvayka">ashvayka</who>
    <bug_when>2021-08-06 22:37:21 -0700</bug_when>
    <thetext>So the idea is to keep them weak unless they transition from initial structure.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1782666</commentid>
    <comment_count>3</comment_count>
    <who name="Alexey Shvayka">ashvayka</who>
    <bug_when>2021-08-06 23:01:44 -0700</bug_when>
    <thetext>Hmm, a watchpoint won&apos;t help preserve the first marked getter / setter correctly as we have no place to check it except JSObject::getOwnPropertyDescriptor().

Instead, we should subclass WeakHandleOwner, check for modified structure in its finalize(), and tweak WeakGCSet to accept it.</thetext>
  </long_desc><long_desc isprivate="0" >
    <commentid>1784309</commentid>
    <comment_count>4</comment_count>
    <who name="Radar WebKit Bug Importer">webkit-bug-importer</who>
    <bug_when>2021-08-13 22:16:17 -0700</bug_when>
    <thetext>&lt;rdar://problem/81928455&gt;</thetext>
  </long_desc>
      
      

    </bug>

</bugzilla>