Blame SOURCES/jdk8203030-zero_s390_31_bit_size_t_type_conflicts_in_shared_code.patch

b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -2689,7 +2689,7 @@
9bf359
   if (ResizeOldPLAB && CMSOldPLABResizeQuicker) {
9bf359
     size_t multiple = _num_blocks[word_sz]/(CMSOldPLABToleranceFactor*CMSOldPLABNumRefills*n_blks);
9bf359
     n_blks +=  CMSOldPLABReactivityFactor*multiple*n_blks;
9bf359
-    n_blks = MIN2(n_blks, CMSOldPLABMax);
9bf359
+    n_blks = MIN2(n_blks, (size_t)CMSOldPLABMax);
9bf359
   }
9bf359
   assert(n_blks > 0, "Error");
9bf359
   _cfls->par_get_chunk_of_blocks(word_sz, n_blks, fl);
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -961,7 +961,7 @@
9bf359
   if (free_percentage < desired_free_percentage) {
9bf359
     size_t desired_capacity = (size_t)(used() / ((double) 1 - desired_free_percentage));
9bf359
     assert(desired_capacity >= capacity(), "invalid expansion size");
9bf359
-    size_t expand_bytes = MAX2(desired_capacity - capacity(), MinHeapDeltaBytes);
9bf359
+    size_t expand_bytes = MAX2(desired_capacity - capacity(), (size_t)MinHeapDeltaBytes);
9bf359
     if (PrintGCDetails && Verbose) {
9bf359
       size_t desired_capacity = (size_t)(used() / ((double) 1 - desired_free_percentage));
9bf359
       gclog_or_tty->print_cr("\nFrom compute_new_size: ");
b562af
@@ -6591,7 +6591,7 @@
9bf359
     HeapWord* curAddr = _markBitMap.startWord();
9bf359
     while (curAddr < _markBitMap.endWord()) {
9bf359
       size_t remaining  = pointer_delta(_markBitMap.endWord(), curAddr);
9bf359
-      MemRegion chunk(curAddr, MIN2(CMSBitMapYieldQuantum, remaining));
9bf359
+      MemRegion chunk(curAddr, MIN2((size_t)CMSBitMapYieldQuantum, remaining));
9bf359
       _markBitMap.clear_large_range(chunk);
9bf359
       if (ConcurrentMarkSweepThread::should_yield() &&
9bf359
           !foregroundGCIsActive() &&
b562af
@@ -6889,7 +6889,7 @@
9bf359
     return;
9bf359
   }
9bf359
   // Double capacity if possible
9bf359
-  size_t new_capacity = MIN2(_capacity*2, MarkStackSizeMax);
9bf359
+  size_t new_capacity = MIN2(_capacity*2, (size_t)MarkStackSizeMax);
9bf359
   // Do not give up existing stack until we have managed to
9bf359
   // get the double capacity that we desired.
9bf359
   ReservedSpace rs(ReservedSpace::allocation_align_size_up(
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/concurrentMark.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -3916,7 +3916,7 @@
9bf359
   // of things to do) or totally (at the very end).
9bf359
   size_t target_size;
9bf359
   if (partially) {
9bf359
-    target_size = MIN2((size_t)_task_queue->max_elems()/3, GCDrainStackTargetSize);
b562af
+    target_size = MIN2((size_t)_task_queue->max_elems()/3, (size_t)GCDrainStackTargetSize);
9bf359
   } else {
9bf359
     target_size = 0;
9bf359
   }
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/g1BiasedArray.hpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1BiasedArray.hpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1BiasedArray.hpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -78,7 +78,8 @@
b562af
     size_t num_target_elems = pointer_delta(end, bottom, mapping_granularity_in_bytes);
b562af
     idx_t bias = (uintptr_t)bottom / mapping_granularity_in_bytes;
b562af
     address base = create_new_base_array(num_target_elems, target_elem_size_in_bytes);
b562af
-    initialize_base(base, num_target_elems, bias, target_elem_size_in_bytes, log2_intptr(mapping_granularity_in_bytes));
b562af
+    initialize_base(base, num_target_elems, bias, target_elem_size_in_bytes,
b562af
+		    log2_intptr((uintptr_t)mapping_granularity_in_bytes));
9bf359
   }
b562af
 
b562af
   size_t bias() const { return _bias; }
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp	Tue Sep 08 22:20:44 2020 -0400
259888
@@ -1729,7 +1729,7 @@
9bf359
 
9bf359
   verify_region_sets_optional();
9bf359
 
9bf359
-  size_t expand_bytes = MAX2(word_size * HeapWordSize, MinHeapDeltaBytes);
9bf359
+  size_t expand_bytes = MAX2(word_size * HeapWordSize, (size_t)MinHeapDeltaBytes);
9bf359
   ergo_verbose1(ErgoHeapSizing,
9bf359
                 "attempt heap expansion",
9bf359
                 ergo_format_reason("allocation request failed")
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -41,7 +41,7 @@
c4ba7e
 }
c4ba7e
 
b562af
 size_t G1CMObjArrayProcessor::process_array_slice(objArrayOop obj, HeapWord* start_from, size_t remaining) {
b562af
-  size_t words_to_scan = MIN2(remaining, ObjArrayMarkingStride);
b562af
+  size_t words_to_scan = MIN2(remaining, (size_t)ObjArrayMarkingStride);
b562af
 
b562af
   if (remaining > ObjArrayMarkingStride) {
b562af
     push_array_slice(start_from + ObjArrayMarkingStride);
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.hpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.hpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.hpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -89,7 +89,7 @@
b562af
   void pretouch_internal(size_t start_page, size_t end_page);
b562af
 
b562af
   // Returns the index of the page which contains the given address.
b562af
-  uintptr_t  addr_to_page_index(char* addr) const;
b562af
+  size_t  addr_to_page_index(char* addr) const;
b562af
   // Returns the address of the given page index.
b562af
   char*  page_start(size_t index) const;
c4ba7e
 
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp	Tue Sep 08 22:20:44 2020 -0400
c4ba7e
@@ -38,7 +38,7 @@
9e49de
   _cancel(false),
9e49de
   _empty(true),
9e49de
   _dropped(0) {
9e49de
-  _nqueues = MAX2(ParallelGCThreads, (size_t)1);
9e49de
+  _nqueues = MAX2(ParallelGCThreads, (uintx)1);
9e49de
   _queues = NEW_C_HEAP_ARRAY(G1StringDedupWorkerQueue, _nqueues, mtGC);
9e49de
   for (size_t i = 0; i < _nqueues; i++) {
9e49de
     new (_queues + i) G1StringDedupWorkerQueue(G1StringDedupWorkerQueue::default_segment_size(), _max_cache_size, _max_size);
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp	Tue Sep 08 22:20:44 2020 -0400
c4ba7e
@@ -120,7 +120,7 @@
9e49de
 };
9e49de
 
c4ba7e
 G1StringDedupEntryCache::G1StringDedupEntryCache(size_t max_size) :
c4ba7e
-  _nlists(MAX2(ParallelGCThreads, (size_t)1)),
c4ba7e
+  _nlists(MAX2(ParallelGCThreads, (uintx)1)),
c4ba7e
   _max_list_length(0),
c4ba7e
   _cached(PaddedArray<G1StringDedupEntryList, mtGC>::create_unfreeable((uint)_nlists)),
c4ba7e
   _overflowed(PaddedArray<G1StringDedupEntryList, mtGC>::create_unfreeable((uint)_nlists)) {
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/g1/heapRegion.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -110,7 +110,7 @@
9bf359
   if (FLAG_IS_DEFAULT(G1HeapRegionSize)) {
9bf359
     size_t average_heap_size = (initial_heap_size + max_heap_size) / 2;
9e49de
     region_size = MAX2(average_heap_size / HeapRegionBounds::target_number(),
9e49de
-                       (uintx) HeapRegionBounds::min_size());
9e49de
+                       HeapRegionBounds::min_size());
9bf359
   }
9bf359
 
9bf359
   int region_size_log = log2_long((jlong) region_size);
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp	Tue Sep 08 22:20:44 2020 -0400
c4ba7e
@@ -194,7 +194,7 @@
5338de
   const size_t num_overflow_elems = of_stack->size();
5338de
   const size_t space_available = queue->max_elems() - queue->size();
5338de
   const size_t num_take_elems = MIN3(space_available / 4,
5338de
-                                     ParGCDesiredObjsFromOverflowList,
5338de
+                                     (size_t)ParGCDesiredObjsFromOverflowList,
5338de
                                      num_overflow_elems);
5338de
   // Transfer the most recent num_take_elems from the overflow
5338de
   // stack to our work queue.
b562af
diff -r 4689eaf1a5c9 src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -912,7 +912,7 @@
b562af
 
9bf359
 void PSParallelCompact::initialize_dead_wood_limiter()
9bf359
 {
b562af
-  const size_t max = 100;
b562af
+  const uintx max = 100;
b562af
   _dwl_mean = double(MIN2(ParallelOldDeadWoodLimiterMean, max)) / 100.0;
b562af
   _dwl_std_dev = double(MIN2(ParallelOldDeadWoodLimiterStdDev, max)) / 100.0;
9bf359
   _dwl_first_term = 1.0 / (sqrt(2.0 * M_PI) * _dwl_std_dev);
b562af
diff -r 4689eaf1a5c9 src/share/vm/memory/collectorPolicy.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/memory/collectorPolicy.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/memory/collectorPolicy.cpp	Tue Sep 08 22:20:44 2020 -0400
c4ba7e
@@ -385,7 +385,7 @@
9bf359
       uintx calculated_size = NewSize + OldSize;
9bf359
       double shrink_factor = (double) MaxHeapSize / calculated_size;
9bf359
       uintx smaller_new_size = align_size_down((uintx)(NewSize * shrink_factor), _gen_alignment);
9bf359
-      FLAG_SET_ERGO(uintx, NewSize, MAX2(young_gen_size_lower_bound(), smaller_new_size));
b562af
+      FLAG_SET_ERGO(uintx, NewSize, MAX2((uintx)young_gen_size_lower_bound(), smaller_new_size));
9bf359
       _initial_gen0_size = NewSize;
9bf359
 
9bf359
       // OldSize is already aligned because above we aligned MaxHeapSize to
c4ba7e
@@ -433,7 +433,7 @@
9bf359
     // yield a size that is too small) and bound it by MaxNewSize above.
9bf359
     // Ergonomics plays here by previously calculating the desired
9bf359
     // NewSize and MaxNewSize.
9bf359
-    max_new_size = MIN2(MAX2(max_new_size, NewSize), MaxNewSize);
9bf359
+    max_new_size = MIN2(MAX2(max_new_size, (size_t)NewSize), (size_t)MaxNewSize);
9bf359
   }
9bf359
   assert(max_new_size > 0, "All paths should set max_new_size");
9bf359
 
b562af
@@ -455,23 +455,25 @@
9bf359
       // lower limit.
9bf359
       _min_gen0_size = NewSize;
9bf359
       desired_new_size = NewSize;
9bf359
-      max_new_size = MAX2(max_new_size, NewSize);
9bf359
+      max_new_size = MAX2(max_new_size, (size_t)NewSize);
9bf359
     } else if (FLAG_IS_ERGO(NewSize)) {
9bf359
       // If NewSize is set ergonomically, we should use it as a lower
9bf359
       // limit, but use NewRatio to calculate the initial size.
9bf359
       _min_gen0_size = NewSize;
9bf359
       desired_new_size =
9bf359
-        MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size), NewSize);
9bf359
-      max_new_size = MAX2(max_new_size, NewSize);
9bf359
+        MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size), (size_t)NewSize);
9bf359
+      max_new_size = MAX2(max_new_size, (size_t)NewSize);
9bf359
     } else {
9bf359
       // For the case where NewSize is the default, use NewRatio
9bf359
       // to size the minimum and initial generation sizes.
9bf359
       // Use the default NewSize as the floor for these values.  If
9bf359
       // NewRatio is overly large, the resulting sizes can be too
9bf359
       // small.
9bf359
-      _min_gen0_size = MAX2(scale_by_NewRatio_aligned(_min_heap_byte_size), NewSize);
b562af
+      _min_gen0_size = MAX2(scale_by_NewRatio_aligned(_min_heap_byte_size),
b562af
+			    (size_t)NewSize);
9bf359
       desired_new_size =
9bf359
-        MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size), NewSize);
b562af
+        MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size),
b562af
+	     (size_t)NewSize);
b562af
     }
9bf359
 
9bf359
     assert(_min_gen0_size > 0, "Sanity check");
b562af
@@ -573,7 +575,7 @@
9bf359
   } else {
9bf359
     // It's been explicitly set on the command line.  Use the
9bf359
     // OldSize and then determine the consequences.
9bf359
-    _min_gen1_size = MIN2(OldSize, _min_heap_byte_size - _min_gen0_size);
9bf359
+    _min_gen1_size = MIN2((size_t)OldSize, _min_heap_byte_size - _min_gen0_size);
9bf359
     _initial_gen1_size = OldSize;
9bf359
 
9bf359
     // If the user has explicitly set an OldSize that is inconsistent
b562af
diff -r 4689eaf1a5c9 src/share/vm/memory/metaspace.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/memory/metaspace.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/memory/metaspace.cpp	Tue Sep 08 22:20:44 2020 -0400
259888
@@ -1482,7 +1482,7 @@
9bf359
 
9bf359
 void MetaspaceGC::post_initialize() {
9bf359
   // Reset the high-water mark once the VM initialization is done.
9bf359
-  _capacity_until_GC = MAX2(MetaspaceAux::committed_bytes(), MetaspaceSize);
9bf359
+  _capacity_until_GC = MAX2(MetaspaceAux::committed_bytes(), (size_t)MetaspaceSize);
9bf359
 }
9bf359
 
9bf359
 bool MetaspaceGC::can_expand(size_t word_size, bool is_class) {
259888
@@ -1542,7 +1542,7 @@
259888
     (size_t)MIN2(min_tmp, double(MaxMetaspaceSize));
9bf359
   // Don't shrink less than the initial generation size
9bf359
   minimum_desired_capacity = MAX2(minimum_desired_capacity,
9bf359
-                                  MetaspaceSize);
9bf359
+                                  (size_t)MetaspaceSize);
9bf359
 
9bf359
   if (PrintGCDetails && Verbose) {
9bf359
     gclog_or_tty->print_cr("\nMetaspaceGC::compute_new_size: ");
259888
@@ -1600,7 +1600,7 @@
9bf359
     const double max_tmp = used_after_gc / minimum_used_percentage;
259888
     size_t maximum_desired_capacity = (size_t)MIN2(max_tmp, double(MaxMetaspaceSize));
9bf359
     maximum_desired_capacity = MAX2(maximum_desired_capacity,
9bf359
-                                    MetaspaceSize);
9bf359
+                                    (size_t)MetaspaceSize);
9bf359
     if (PrintGCDetails && Verbose) {
9bf359
       gclog_or_tty->print_cr("  "
9bf359
                              "  maximum_free_percentage: %6.2f"
b562af
@@ -3320,7 +3320,7 @@
b562af
     // Make the first class chunk bigger than a medium chunk so it's not put
9bf359
     // on the medium chunk list.   The next chunk will be small and progress
9bf359
     // from there.  This size calculated by -version.
b562af
-    _first_class_chunk_word_size = MIN2((size_t)MediumChunk*6,
b562af
+    _first_class_chunk_word_size = MIN2((uintx)MediumChunk*6,
b562af
                                        (CompressedClassSpaceSize/BytesPerWord)*2);
9bf359
     _first_class_chunk_word_size = align_word_size_up(_first_class_chunk_word_size);
9bf359
     // Arbitrarily set the initial virtual space to a multiple
b562af
diff -r 4689eaf1a5c9 src/share/vm/oops/objArrayKlass.inline.hpp
b562af
--- openjdk.orig/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp	Tue Sep 08 22:20:44 2020 -0400
c4ba7e
@@ -48,7 +48,7 @@
9bf359
   const size_t beg_index = size_t(index);
9bf359
   assert(beg_index < len || len == 0, "index too large");
9bf359
 
9bf359
-  const size_t stride = MIN2(len - beg_index, ObjArrayMarkingStride);
9bf359
+  const size_t stride = MIN2(len - beg_index, (size_t)ObjArrayMarkingStride);
9bf359
   const size_t end_index = beg_index + stride;
9bf359
   T* const base = (T*)a->base();
9bf359
   T* const beg = base + beg_index;
c4ba7e
@@ -82,7 +82,7 @@
9bf359
   const size_t beg_index = size_t(index);
9bf359
   assert(beg_index < len || len == 0, "index too large");
9bf359
 
9bf359
-  const size_t stride = MIN2(len - beg_index, ObjArrayMarkingStride);
9bf359
+  const size_t stride = MIN2(len - beg_index, (size_t)ObjArrayMarkingStride);
9bf359
   const size_t end_index = beg_index + stride;
9bf359
   T* const base = (T*)a->base();
9bf359
   T* const beg = base + beg_index;
b562af
diff -r 4689eaf1a5c9 src/share/vm/runtime/arguments.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/runtime/arguments.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/runtime/arguments.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -1301,7 +1301,7 @@
9bf359
     // NewSize was set on the command line and it is larger than
9bf359
     // preferred_max_new_size.
9bf359
     if (!FLAG_IS_DEFAULT(NewSize)) {   // NewSize explicitly set at command-line
9bf359
-      FLAG_SET_ERGO(uintx, MaxNewSize, MAX2(NewSize, preferred_max_new_size));
9bf359
+      FLAG_SET_ERGO(uintx, MaxNewSize, MAX2((size_t)NewSize, preferred_max_new_size));
9bf359
     } else {
9bf359
       FLAG_SET_ERGO(uintx, MaxNewSize, preferred_max_new_size);
9bf359
     }
b562af
@@ -1326,8 +1326,8 @@
9bf359
       // Unless explicitly requested otherwise, make young gen
9bf359
       // at least min_new, and at most preferred_max_new_size.
9bf359
       if (FLAG_IS_DEFAULT(NewSize)) {
9bf359
-        FLAG_SET_ERGO(uintx, NewSize, MAX2(NewSize, min_new));
9bf359
-        FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, NewSize));
9bf359
+        FLAG_SET_ERGO(uintx, NewSize, MAX2((size_t)NewSize, min_new));
9bf359
+        FLAG_SET_ERGO(uintx, NewSize, MIN2(preferred_max_new_size, (size_t)NewSize));
9bf359
         if (PrintGCDetails && Verbose) {
9bf359
           // Too early to use gclog_or_tty
9bf359
           tty->print_cr("CMS ergo set NewSize: " SIZE_FORMAT, NewSize);
b562af
@@ -1337,7 +1337,7 @@
9bf359
       // so it's NewRatio x of NewSize.
9bf359
       if (FLAG_IS_DEFAULT(OldSize)) {
9bf359
         if (max_heap > NewSize) {
9bf359
-          FLAG_SET_ERGO(uintx, OldSize, MIN2(NewRatio*NewSize, max_heap - NewSize));
9bf359
+          FLAG_SET_ERGO(uintx, OldSize, MIN2((size_t)(NewRatio*NewSize), max_heap - NewSize));
9bf359
           if (PrintGCDetails && Verbose) {
9bf359
             // Too early to use gclog_or_tty
9bf359
             tty->print_cr("CMS ergo set OldSize: " SIZE_FORMAT, OldSize);
b562af
diff -r 4689eaf1a5c9 src/share/vm/runtime/os.cpp
b562af
--- openjdk.orig/hotspot/src/share/vm/runtime/os.cpp	Mon Aug 31 07:09:56 2020 +0100
b562af
+++ openjdk/hotspot/src/share/vm/runtime/os.cpp	Tue Sep 08 22:20:44 2020 -0400
b562af
@@ -1272,7 +1272,7 @@
aef6f0
 }
aef6f0
 
b562af
 void os::set_memory_serialize_page(address page) {
b562af
-  int count = log2_intptr(sizeof(class JavaThread)) - log2_int(64);
b562af
+  int count = log2_intptr((uintptr_t)sizeof(class JavaThread)) - log2_int(64);
b562af
   _mem_serialize_page = (volatile int32_t *)page;
b562af
   // We initialize the serialization page shift count here
b562af
   // We assume a cache line size of 64 bytes