• Anton Bikineev's avatar
    cppgc: Provide operator==(Raw, Member) to avoid Member decompression · 4dee3fbd
    Anton Bikineev authored
    The operator with raw pointer allows us to avoid Member decompression,
    which is more expensive than compression. It's also quite frequently
    called (e.g. in HeapHashSet::find()).
    
    The existing operator
      template <...>
      bool operator==(const Member<T1>&, const Member<T2>&);
    was not called for
      GCed* raw = ...;
      member == raw;
    because the compiler wouldn't deduce `T2` in `const Member<T2>` as
    `GCed` when the initializer expression `raw` is of different type
    (`GCed*`).
    
    Bug: chromium:1325007
    Change-Id: Ie1ee12bad28081c66f4e08a146467fd7c040bb70
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3757344Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
    Commit-Queue: Anton Bikineev <bikineev@chromium.org>
    Cr-Commit-Position: refs/heads/main@{#81702}
    4dee3fbd
Name
Last commit
Last update
..
internal Loading commit data...
DEPS Loading commit data...
OWNERS Loading commit data...
README.md Loading commit data...
allocation.h Loading commit data...
common.h Loading commit data...
cross-thread-persistent.h Loading commit data...
custom-space.h Loading commit data...
default-platform.h Loading commit data...
ephemeron-pair.h Loading commit data...
explicit-management.h Loading commit data...
garbage-collected.h Loading commit data...
heap-consistency.h Loading commit data...
heap-handle.h Loading commit data...
heap-state.h Loading commit data...
heap-statistics.h Loading commit data...
heap.h Loading commit data...
liveness-broker.h Loading commit data...
macros.h Loading commit data...
member.h Loading commit data...
name-provider.h Loading commit data...
object-size-trait.h Loading commit data...
persistent.h Loading commit data...
platform.h Loading commit data...
prefinalizer.h Loading commit data...
process-heap-statistics.h Loading commit data...
sentinel-pointer.h Loading commit data...
source-location.h Loading commit data...
testing.h Loading commit data...
trace-trait.h Loading commit data...
type-traits.h Loading commit data...
visitor.h Loading commit data...