Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: php/php-src
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b843e03
Choose a base ref
...
head repository: php/php-src
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: e3f4882
Choose a head ref
  • 8 commits
  • 22 files changed
  • 1 contributor

Commits on Feb 4, 2026

  1. Implement acyclic object tracking

    Acyclic objects don't need to be added to the GC. We know an object is acyclic
    if all properties are typed as acyclic, and the object does not have any dynamic
    properties. This is possible to track at runtime with minimal overhead.
    
    Fixes GH-17127
    iluuu1994 committed Feb 4, 2026
    Configuration menu
    Copy the full SHA
    f855458 View commit details
    Browse the repository at this point in the history
  2. tmp

    iluuu1994 committed Feb 4, 2026
    Configuration menu
    Copy the full SHA
    fc13fb6 View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2026

  1. Fix weakmap

    iluuu1994 committed Feb 10, 2026
    Configuration menu
    Copy the full SHA
    1e06e3b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4e5fca5 View commit details
    Browse the repository at this point in the history
  3. Remove unnecessary gc_check_possible_root()

    Couldn't find a case where the object won't be released with GC checks, where
    the object wouldn't already be flagged as collectable.
    iluuu1994 committed Feb 10, 2026
    Configuration menu
    Copy the full SHA
    84b4d70 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    cb82014 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d445bf1 View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2026

  1. Configuration menu
    Copy the full SHA
    e3f4882 View commit details
    Browse the repository at this point in the history
Loading