RFR: 8264805: Remove the experimental Ahead-of-Time Compiler [v4]
Vladimir Kozlov
kvn at openjdk.java.net
Fri Apr 9 18:23:26 UTC 2021
On Fri, 9 Apr 2021 03:03:33 GMT, David Holmes <dholmes at openjdk.org> wrote:
>> Vladimir Kozlov has updated the pull request incrementally with one additional commit since the last revision:
>>
>> Remove exports from Graal module to jdk.aot
>
> src/hotspot/share/memory/heap.hpp line 174:
>
>> 172: bool contains(const void* p) const { return low() <= p && p < high(); }
>> 173: bool contains_blob(const CodeBlob* blob) const {
>> 174: const void* start = (void*)blob;
>
> start seems redundant now
Done:
bool contains_blob(const CodeBlob* blob) const {
- const void* start = (void*)blob;
- return contains(start);
+ return contains((void*)blob);
}
-------------
PR: https://git.openjdk.java.net/jdk/pull/3398
More information about the serviceability-dev
mailing list