8213411: JDK-8209189 incorrect for Big Endian (JVM crashes)

Reviewed-by: kvn, mdoerr
This commit is contained in:
Erik Österlund 2018-11-08 15:02:50 +01:00
parent 1ce3770481
commit c9e3ee1fbb
2 changed files with 51 additions and 26 deletions

View file

@ -192,7 +192,7 @@ class CodeCache : AllStatic {
}
};
static void do_unloading(BoolObjectClosure* is_alive, bool unloading_occurred);
static uint16_t unloading_cycle() { return _unloading_cycle; }
static uint8_t unloading_cycle() { return _unloading_cycle; }
static void increment_unloading_cycle();
static void asserted_non_scavengable_nmethods_do(CodeBlobClosure* f = NULL) PRODUCT_RETURN;
static void release_exception_cache(ExceptionCache* entry);