mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
7176479: G1: JVM crashes on T5-8 system with 1.5 TB heap
Refactor G1's hot card cache and card counts table into their own files. Simplify the card counts table, including removing the encoding of the card index in each entry. The card counts table now has a 1:1 correspondence with the cards spanned by heap. Space for the card counts table is reserved from virtual memory (rather than C heap) during JVM startup and is committed/expanded when the heap is expanded. Changes were also reviewed-by Vitaly Davidovich. Reviewed-by: tschatzl, jmasa
This commit is contained in:
parent
3d6c526864
commit
c38f8fc543
14 changed files with 816 additions and 841 deletions
|
@ -2051,6 +2051,10 @@ bool Arguments::check_vm_args_consistency() {
|
|||
"G1RefProcDrainInterval");
|
||||
status = status && verify_min_value((intx)G1ConcMarkStepDurationMillis, 1,
|
||||
"G1ConcMarkStepDurationMillis");
|
||||
status = status && verify_interval(G1ConcRSHotCardLimit, 0, max_jubyte,
|
||||
"G1ConcRSHotCardLimit");
|
||||
status = status && verify_interval(G1ConcRSLogCacheSize, 0, 31,
|
||||
"G1ConcRSLogCacheSize");
|
||||
}
|
||||
#endif // INCLUDE_ALL_GCS
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue