Blame SOURCES/jdk8203030-zero_s390_31_bit_size_t_type_conflicts_in_shared_code.patch

259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp openjdk/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/compactibleFreeListSpace.cpp
c4ba7e
@@ -2659,7 +2659,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);
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp openjdk/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/concurrentMarkSweepGeneration.cpp
c4ba7e
@@ -957,7 +957,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: ");
c4ba7e
@@ -6577,7 +6577,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() &&
c4ba7e
@@ -6875,7 +6875,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(
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/concurrentMark.cpp
259888
@@ -3902,7 +3902,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);
9bf359
+    target_size = MIN2((size_t)(_task_queue->max_elems()/3), (size_t) GCDrainStackTargetSize);
9bf359
   } else {
9bf359
     target_size = 0;
9bf359
   }
259888
@@ -4706,7 +4706,7 @@
9bf359
   // The > 0 check is to deal with the prev and next live bytes which
9bf359
   // could be 0.
9bf359
   if (*hum_bytes > 0) {
9bf359
-    bytes = MIN2(HeapRegion::GrainBytes, *hum_bytes);
9bf359
+    bytes = MIN2(HeapRegion::GrainBytes, (size_t)*hum_bytes);
9bf359
     *hum_bytes -= bytes;
9bf359
   }
9bf359
   return bytes;
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1CollectedHeap.cpp
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")
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1PageBasedVirtualSpace.cpp
c4ba7e
@@ -117,7 +117,7 @@
c4ba7e
   return reserved_size() - committed_size();
c4ba7e
 }
c4ba7e
 
c4ba7e
-size_t G1PageBasedVirtualSpace::addr_to_page_index(char* addr) const {
c4ba7e
+uintptr_t G1PageBasedVirtualSpace::addr_to_page_index(char* addr) const {
c4ba7e
   return (addr - _low_boundary) / _page_size;
c4ba7e
 }
c4ba7e
 
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupQueue.cpp
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);
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1StringDedupTable.cpp
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)) {
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/heapRegion.cpp
c4ba7e
@@ -109,7 +109,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);
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp openjdk/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp
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.
259888
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp openjdk/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/gc_implementation/parallelScavenge/psParallelCompact.cpp
c4ba7e
@@ -910,8 +910,8 @@
9bf359
 void PSParallelCompact::initialize_dead_wood_limiter()
9bf359
 {
9bf359
   const size_t max = 100;
9bf359
-  _dwl_mean = double(MIN2(ParallelOldDeadWoodLimiterMean, max)) / 100.0;
9bf359
-  _dwl_std_dev = double(MIN2(ParallelOldDeadWoodLimiterStdDev, max)) / 100.0;
9bf359
+  _dwl_mean = double(MIN2((size_t)ParallelOldDeadWoodLimiterMean, max)) / 100.0;
9bf359
+  _dwl_std_dev = double(MIN2((size_t)ParallelOldDeadWoodLimiterStdDev, max)) / 100.0;
9bf359
   _dwl_first_term = 1.0 / (sqrt(2.0 * M_PI) * _dwl_std_dev);
9bf359
   DEBUG_ONLY(_dwl_initialized = true;)
9bf359
   _dwl_adjustment = normal_distribution(1.0);
259888
diff --git openjdk.orig/hotspot/src/share/vm/memory/collectorPolicy.cpp openjdk/hotspot/src/share/vm/memory/collectorPolicy.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/memory/collectorPolicy.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/memory/collectorPolicy.cpp
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));
9bf359
+      FLAG_SET_ERGO(uintx, NewSize, MAX2(young_gen_size_lower_bound(), (size_t)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
 
c4ba7e
@@ -455,24 +455,23 @@
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);
9bf359
+      _min_gen0_size = MAX2(scale_by_NewRatio_aligned(_min_heap_byte_size), (size_t)NewSize);
9bf359
       desired_new_size =
9bf359
-        MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size), NewSize);
9e49de
-    }
9e49de
+        MAX2(scale_by_NewRatio_aligned(_initial_heap_byte_size), (size_t)NewSize);    }
9bf359
 
9bf359
     assert(_min_gen0_size > 0, "Sanity check");
9e49de
     _initial_gen0_size = desired_new_size;
c4ba7e
@@ -573,7 +572,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
259888
diff --git openjdk.orig/hotspot/src/share/vm/memory/metaspace.cpp openjdk/hotspot/src/share/vm/memory/metaspace.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/memory/metaspace.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/memory/metaspace.cpp
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"
259888
@@ -3361,7 +3361,7 @@
9bf359
     // on the medium chunk list.   The next chunk will be small and progress
9bf359
     // from there.  This size calculated by -version.
9bf359
     _first_class_chunk_word_size = MIN2((size_t)MediumChunk*6,
9bf359
-                                       (CompressedClassSpaceSize/BytesPerWord)*2);
9bf359
+                                       (size_t)(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
9bf359
     // of the boot class loader size.
259888
diff --git openjdk.orig/hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp openjdk/hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/memory/threadLocalAllocBuffer.cpp
259888
@@ -250,13 +250,13 @@
9e49de
   size_t init_sz = 0;
9e49de
 
9e49de
   if (TLABSize > 0) {
9e49de
-    init_sz = TLABSize / HeapWordSize;
9e49de
+    init_sz = (size_t)(TLABSize / HeapWordSize);
9e49de
   } else if (global_stats() != NULL) {
9e49de
     // Initial size is a function of the average number of allocating threads.
9e49de
     unsigned nof_threads = global_stats()->allocating_threads_avg();
9e49de
 
9e49de
-    init_sz  = (Universe::heap()->tlab_capacity(myThread()) / HeapWordSize) /
9e49de
-                      (nof_threads * target_refills());
9e49de
+    init_sz  = (size_t)((Universe::heap()->tlab_capacity(myThread()) / HeapWordSize) /
9e49de
+                      (nof_threads * target_refills()));
9e49de
     init_sz = align_object_size(init_sz);
9e49de
   }
9e49de
   init_sz = MIN2(MAX2(init_sz, min_size()), max_size());
259888
diff --git openjdk.orig/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp openjdk/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp
259888
--- openjdk.orig/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/oops/objArrayKlass.inline.hpp
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;
259888
diff --git openjdk.orig/hotspot/src/share/vm/runtime/arguments.cpp openjdk/hotspot/src/share/vm/runtime/arguments.cpp
259888
--- openjdk.orig/hotspot/src/share/vm/runtime/arguments.cpp
c4ba7e
+++ openjdk/hotspot/src/share/vm/runtime/arguments.cpp
259888
@@ -1289,7 +1289,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
     }
259888
@@ -1314,8 +1314,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);
259888
@@ -1325,7 +1325,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);
aef6f0
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp openjdk/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp
aef6f0
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp
aef6f0
+++ openjdk/hotspot/src/share/vm/gc_implementation/g1/g1ConcurrentMarkObjArrayProcessor.cpp
aef6f0
@@ -41,7 +41,7 @@
aef6f0
 }
aef6f0
 
aef6f0
 size_t G1CMObjArrayProcessor::process_array_slice(objArrayOop obj, HeapWord* start_from, size_t remaining) {
aef6f0
-  size_t words_to_scan = MIN2(remaining, ObjArrayMarkingStride);
aef6f0
+  size_t words_to_scan = MIN2(remaining, (size_t) ObjArrayMarkingStride);
aef6f0
 
aef6f0
   if (remaining > ObjArrayMarkingStride) {
aef6f0
     push_array_slice(start_from + ObjArrayMarkingStride);
aef6f0
diff --git openjdk.orig/hotspot/src/share/vm/gc_implementation/shenandoah/shenandoahUtils.cpp openjdk/hotspot/src/share/vm/gc_implementation/shenandoah/shenandoahUtils.cpp
aef6f0
--- openjdk.orig/hotspot/src/share/vm/gc_implementation/shenandoah/shenandoahUtils.cpp
aef6f0
+++ openjdk/hotspot/src/share/vm/gc_implementation/shenandoah/shenandoahUtils.cpp
aef6f0
@@ -150,5 +150,5 @@
aef6f0
     return value;
aef6f0
   }
aef6f0
 
aef6f0
-  return (size_t)1 << (log2_intptr(value) + 1);
aef6f0
+  return (size_t)1 << (log2_intptr((uintptr_t) value) + 1);
aef6f0
 }