equal
deleted
inserted
replaced
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) { |