mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 06:14:49 +02:00
8264805: Remove the experimental Ahead-of-Time Compiler
Reviewed-by: coleenp, erikj, stefank, iignatyev, dholmes, aph, shade, iklam, mchung, iveresov
This commit is contained in:
parent
15d4787724
commit
694acedf18
378 changed files with 200 additions and 26970 deletions
|
@ -75,12 +75,3 @@ const ClassFileStream* ClassFileStream::clone() const {
|
|||
need_verify(),
|
||||
from_boot_loader_modules_image());
|
||||
}
|
||||
|
||||
uint64_t ClassFileStream::compute_fingerprint() const {
|
||||
int classfile_size = length();
|
||||
int classfile_crc = ClassLoader::crc32(0, (const char*)buffer(), length());
|
||||
uint64_t fingerprint = (uint64_t(classfile_size) << 32) | uint64_t(uint32_t(classfile_crc));
|
||||
assert(fingerprint != 0, "must not be zero");
|
||||
|
||||
return fingerprint;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue