RFR: 8276789: Support C++ lambda in ResourceHashtable::iterate [v4]

Ioi Lam iklam at openjdk.java.net
Fri Jun 3 06:02:41 UTC 2022


On Thu, 2 Jun 2022 05:10:05 GMT, Kim Barrett <kbarrett at openjdk.org> wrote:

>> [Not a review, just a drive-by comment]
>> SFINAE operates on arguments and signatures; it doesn't reach into the bodies
>> of (potential) callees like that. The disambiguation is happening because one
>> argument (the Closure object) is passed as a pointer, while the other is a
>> lambda object (not a pointer). In the pointer to closure object case the ITER*
>> overload is a better match, so is selected. In the lambda case, it's not a
>> pointer so only the non-pointer overload is applicable.
>
> (And SFINAE _can't_ reach into the body like that, since the body might not be available.)

@kimbarrett Thanks for the explanation. So we're lucky because we use `ITER*` in the old API. If it were `ITER&` then the C++ compiler would complain about ambiguous overloading.

-------------

PR: https://git.openjdk.java.net/jdk/pull/8761


More information about the hotspot-dev mailing list