- 19 8月, 2014 2 次提交
- 01 4月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: sjohanss, jmasa
-
- 19 8月, 2014 1 次提交
-
-
由 poonam 提交于
Summary: Fill the last card that has been allocated into with a dummy object Reviewed-by: tschatzl, mgerdin
-
- 05 8月, 2014 1 次提交
-
-
由 jmasa 提交于
Reviewed-by: brutisso, tschatzl
-
- 08 8月, 2014 4 次提交
-
-
由 tschatzl 提交于
Summary: Remove dead code. Reviewed-by: stefank, brutisso
-
由 tschatzl 提交于
Summary: Remove dead code. Reviewed-by: stefank, brutisso
-
由 tschatzl 提交于
Summary: Do not try to verify timing measures for the redirty logged cards phase when it is not executed. Reviewed-by: brutisso, jmasa
-
由 tschatzl 提交于
Summary: Do not try to verify timing measures for the redirty logged cards phase when it is not executed. Reviewed-by: brutisso, jmasa
-
- 31 7月, 2014 2 次提交
-
-
由 tschatzl 提交于
Summary: Eager reclaim also needs to clear marks of eagerly reclaimed regions if they have already been marked during concurrent mark. Reviewed-by: jmasa
-
由 tschatzl 提交于
Summary: Eager reclaim also needs to clear marks of eagerly reclaimed regions if they have already been marked during concurrent mark. Reviewed-by: jmasa
-
- 29 7月, 2014 2 次提交
-
-
由 mdoerr 提交于
Summary: Add Resource/HandleMark in the work() method of some AbstractGangTask to reclaim these resources earlier. Reviewed-by: tschatzl, goetz
-
由 mdoerr 提交于
Summary: Add Resource/HandleMark in the work() method of some AbstractGangTask to reclaim these resources earlier. Reviewed-by: tschatzl, goetz
-
- 23 7月, 2014 2 次提交
-
-
由 tschatzl 提交于
Summary: Try to reclaim humongous objects at every young collection after doing a conservative estimate of its liveness. Reviewed-by: brutisso, mgerdin
-
由 tschatzl 提交于
Summary: Try to reclaim humongous objects at every young collection after doing a conservative estimate of its liveness. Reviewed-by: brutisso, mgerdin
-
- 21 7月, 2014 6 次提交
-
-
由 tschatzl 提交于
Summary: Refactor preparation for compaction during Full GC so that it lazily initializes the first compaction point. This also avoids problems later when the first region may not be committed. Also reviewed by K. Barrett. Reviewed-by: brutisso
-
由 tschatzl 提交于
Summary: Refactor preparation for compaction during Full GC so that it lazily initializes the first compaction point. This also avoids problems later when the first region may not be committed. Also reviewed by K. Barrett. Reviewed-by: brutisso
-
由 tschatzl 提交于
8048085: Aborting marking just before remark results in useless additional clearing of the next mark bitmap Summary: Skip clearing the next bitmap if we just recently aborted since the full GC already clears this bitmap. Reviewed-by: brutisso
-
由 tschatzl 提交于
8048085: Aborting marking just before remark results in useless additional clearing of the next mark bitmap Summary: Skip clearing the next bitmap if we just recently aborted since the full GC already clears this bitmap. Reviewed-by: brutisso
-
由 tschatzl 提交于
8049051: Use of during_initial_mark_pause() in G1CollectorPolicy::record_collection_pause_end() prevents use of seperate object copy time prediction during marking Summary: Replaced use of during_initial_mark_pause() with the variable last_pause_included_initial_mark that holds the real old value of _during_initial_mark_pause. Reviewed-by: brutisso, ehelin
-
由 tschatzl 提交于
8049051: Use of during_initial_mark_pause() in G1CollectorPolicy::record_collection_pause_end() prevents use of seperate object copy time prediction during marking Summary: Replaced use of during_initial_mark_pause() with the variable last_pause_included_initial_mark that holds the real old value of _during_initial_mark_pause. Reviewed-by: brutisso, ehelin
-
- 06 8月, 2014 1 次提交
-
-
由 stefank 提交于
Summary: Added -XX:+/-ClassUnloadingWithConcurrentMark Reviewed-by: jmasa, brutisso, mgerdin
-
- 09 7月, 2014 1 次提交
-
-
由 ehelin 提交于
Reviewed-by: stefank, brutisso
-
- 07 7月, 2014 1 次提交
-
-
由 stefank 提交于
Reviewed-by: tschatzl, ehelin, brutisso, coleenp, roland, iveresov Contributed-by: stefan.karlsson@oracle.com, mikael.gerdin@oracle.com
-
- 26 6月, 2014 3 次提交
-
-
由 mgerdin 提交于
Summary: Change parent of G1OffsetTableContigSpace to CompactibleSpace, reimplement missing functionality Reviewed-by: stefank, jmasa, tschatzl
-
由 mgerdin 提交于
Reviewed-by: stefank, brutisso, tschatzl
-
由 mgerdin 提交于
Summary: Rename save_marks to record_top_and_timestamp and remove som unused but related methods Reviewed-by: stefank, ehelin
-
- 25 6月, 2014 3 次提交
- 29 4月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: jmasa, tschatzl, ehelin Contributed-by: tony.printezis@oracle.com, bengt.rutisson@oracle.com
-
- 26 3月, 2014 1 次提交
-
-
由 mgerdin 提交于
Summary: Allocate temporary BitMaps in the VMThread's resource area Reviewed-by: stefank, sjohanss
-
- 14 2月, 2014 2 次提交
- 10 2月, 2014 2 次提交
- 21 7月, 2014 4 次提交
-
-
由 tschatzl 提交于
Summary: When G1 is run with -XX:-G1DeferredRSUpdate, the VM crashes because of wrong initialization order of member variables. The change makes the initalization explicit, not relying on initialization order any more. Reviewed-by: brutisso, mgerdin
-
由 tschatzl 提交于
Summary: After JDK-8035400 there were several opportunities to fix the visibility of several members of the G1ParScanThreadState class. Reviewed-by: brutisso, mgerdin
-
由 tschatzl 提交于
Summary: Extract the G1ParScanThreadState class from G1CollectedHeap.?pp into its own files. Reviewed-by: brutisso, mgerdin
-
由 tschatzl 提交于
Summary: Clean up usage of idx_t and uintptr_t when using it in conjunction with BitMap::set_map(), casting to the appropriate type. Fixes compilation on S390. Reviewed-by: tschatzl Contributed-by: NDan Horak <dhorak@redhat.com>
-