mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +02:00
8131330: G1CollectedHeap::verify_dirty_young_list fails with assert
Use assembly loop to avoid compiler optimization into memset Reviewed-by: ecaspole, tschatzl
This commit is contained in:
parent
673798137b
commit
15196341a5
9 changed files with 341 additions and 71 deletions
|
@ -3869,6 +3869,7 @@ void TestG1BiasedArray_test();
|
|||
void TestBufferingOopClosure_test();
|
||||
void TestCodeCacheRemSet_test();
|
||||
void FreeRegionList_test();
|
||||
void test_memset_with_concurrent_readers();
|
||||
#endif
|
||||
|
||||
void execute_internal_vm_tests() {
|
||||
|
@ -3910,6 +3911,7 @@ void execute_internal_vm_tests() {
|
|||
if (UseG1GC) {
|
||||
run_unit_test(FreeRegionList_test());
|
||||
}
|
||||
run_unit_test(test_memset_with_concurrent_readers());
|
||||
#endif
|
||||
tty->print_cr("All internal VM tests passed");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue