1. 11 6月, 2011 1 次提交
    • T
      7045330: G1: Simplify/fix the HeapRegionSeq class · f122f55f
      tonyp 提交于
      7042285: G1: native memory leak during humongous object allocation
      6804436: G1: heap region indices should be size_t
      Summary: A series of fixes and improvements to the HeapRegionSeq class: a) replace the _regions growable array with a standard C array, b) avoid de-allocating / re-allocating HeapRegion instances when the heap shrinks / grows (fix for 7042285), c) introduce fast method to map address to HeapRegion via a "biased" array pointer, d) embed the _hrs object in G1CollectedHeap, instead of pointing to it via an indirection, e) assume that all the regions added to the HeapRegionSeq instance are contiguous, f) replace int's with size_t's for indexes (and expand that to HeapRegion as part of 6804436), g) remove unnecessary / unused methods, h) rename a couple of fields (_alloc_search_start and _seq_bottom), i) fix iterate_from() not to always start from index 0 irrespective of the region passed to it, j) add a verification method to check the HeapRegionSeq assumptions, k) always call the wrappers for _hrs.iterate(), _hrs_length(), and _hrs.at() from G1CollectedHeap, not those methods directly, and l) unify the code that expands the sequence (by either re-using or creating a new HeapRegion) and make it robust wrt to a HeapRegion allocation failing.
      Reviewed-by: stefank, johnc, brutisso
      f122f55f
  2. 09 6月, 2011 2 次提交
  3. 08 6月, 2011 2 次提交
    • Y
      Merge · 62955820
      ysr 提交于
      62955820
    • J
      Merge · c4091c5a
      jcoomes 提交于
      c4091c5a
  4. 03 6月, 2011 1 次提交
    • Y
      7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed:... · 30cee037
      ysr 提交于
      7048782: CMS: assert(last_chunk_index_to_check<= last_chunk_index) failed: parCardTableModRefBS.cpp:359
      Summary: The LNC array is sized before the start of a scavenge, while the heap may expand during a scavenge. With CMS, the last block of an arbitrary suffice of the LNC array may expand due to coalition with the expansion delta. We now take care not to attempt access past the end of the LNC array. LNC array code will be cleaned up and suitably encapsulated as part of the forthcoming performance RFE 7043675.
      Reviewed-by: brutisso
      30cee037
  5. 02 6月, 2011 2 次提交
  6. 01 6月, 2011 1 次提交
  7. 28 5月, 2011 2 次提交
  8. 27 5月, 2011 3 次提交
  9. 26 5月, 2011 2 次提交
  10. 25 5月, 2011 3 次提交
  11. 24 5月, 2011 1 次提交
  12. 22 5月, 2011 2 次提交
  13. 21 5月, 2011 2 次提交
    • J
      Merge · 632dd1b2
      jcoomes 提交于
      632dd1b2
    • K
      7046096: SEGV IN C2 WITH 6U25 · 0527eebd
      kvn 提交于
      Summary: Missing fail flag set in strings concatenation code.
      Reviewed-by: never
      0527eebd
  14. 20 5月, 2011 1 次提交
  15. 19 5月, 2011 1 次提交
    • N
      Merge · c40bd33c
      never 提交于
      c40bd33c
  16. 18 5月, 2011 6 次提交
  17. 17 5月, 2011 5 次提交
  18. 16 5月, 2011 1 次提交
    • D
      7035744: jprt no longer does open-only builds · fe9e5da3
      dholmes 提交于
      Summary: Added Open (OpenJDK) and Emb (Embedded) build flavours to JPRT. Added a few open builds and basic sanity tests to the normal JDK7 JPRT submission job.
      Reviewed-by: ohair, jcoomes, bobv, kvn
      fe9e5da3
  19. 13 5月, 2011 2 次提交