Blame SOURCES/jdk8203030-zero_s390_31_bit_size_t_type_conflicts_in_shared_code.patch

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