hotspot/src/share/vm/gc/cms/compactibleFreeListSpace.cpp
changeset 37072 3b85f38ebae8
parent 36090 cffc1dd98258
child 37194 96cc74bd293b
equal deleted inserted replaced
37071:d7750d171889 37072:3b85f38ebae8
  1928   assert((blk->_ptr == NULL && blk->_word_size == 0) ||
  1928   assert((blk->_ptr == NULL && blk->_word_size == 0) ||
  1929          (blk->_ptr != NULL && blk->_word_size >= MinChunkSize),
  1929          (blk->_ptr != NULL && blk->_word_size >= MinChunkSize),
  1930          "blk invariant");
  1930          "blk invariant");
  1931   if (blk->_ptr == NULL) {
  1931   if (blk->_ptr == NULL) {
  1932     refillLinearAllocBlock(blk);
  1932     refillLinearAllocBlock(blk);
  1933   }
       
  1934   if (PrintMiscellaneous && Verbose) {
       
  1935     if (blk->_word_size == 0) {
       
  1936       warning("CompactibleFreeListSpace(prologue):: Linear allocation failure");
       
  1937     }
       
  1938   }
  1933   }
  1939 }
  1934 }
  1940 
  1935 
  1941 void
  1936 void
  1942 CompactibleFreeListSpace::refillLinearAllocBlock(LinearAllocBlock* blk) {
  1937 CompactibleFreeListSpace::refillLinearAllocBlock(LinearAllocBlock* blk) {