- 03 10月, 2013 1 次提交
-
-
由 jwilhelm 提交于
Summary: Removed stray includes and some minor cleanup of GenerationSizer Reviewed-by: tschatzl, jcoomes
-
- 01 10月, 2013 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: tschatzl, jwilhelm, jmasa
-
- 30 9月, 2013 1 次提交
-
-
由 tschatzl 提交于
8025441: G1: assert "assert(thread < _num_vtimes) failed: just checking" fails when G1ConcRefinementThreads > ParallelGCThreads Summary: The initialization for the remembered set summary data structures used the wrong thread count, i.e. number of worker threads instead of number of refinement threads. Reviewed-by: brutisso
-
- 24 9月, 2013 1 次提交
-
-
由 mgerdin 提交于
Summary: Move some G1 specific code from CardTableModRefBS to G1SATBCardTableModRefBS. Reviewed-by: brutisso, tschatzl, ehelin
-
- 26 9月, 2013 1 次提交
-
-
由 tschatzl 提交于
Summary: Add memory consumption breakdown on a per region type in the G1 remembered set summary statistics. This simplifies remembered set memory consumption analysis. Reviewed-by: brutisso
-
- 25 9月, 2013 1 次提交
-
-
由 tschatzl 提交于
Summary: Add G1BiasedArray<T> that is an array where each element represents a fixed-sized subdivision of the heap. Use this abstraction to refactor the HeapRegionSeq class. Reviewed-by: brutisso
-
- 14 9月, 2013 1 次提交
-
-
由 twisti 提交于
Reviewed-by: kvn, coleenp
-
- 13 9月, 2013 1 次提交
-
-
由 shade 提交于
Reviewed-by: brutisso, tschatzl
-
- 14 9月, 2013 1 次提交
-
-
由 stefank 提交于
Reviewed-by: jwilhelm, brutisso, tschatzl
-
- 11 9月, 2013 3 次提交
-
-
由 tschatzl 提交于
Summary: Use conservative assumptions of required alignment for the various garbage collector components into account when determining the maximum heap size that supports compressed oops. Using this conservative value avoids several circular dependencies in the calculation. Reviewed-by: stefank, dholmes
-
由 tschatzl 提交于
Summary: Correctly calculate the initialization value for the shift between object start and bitmap bit in the G1 mark bitmaps. Reviewed-by: tonyp
-
由 dholmes 提交于
Reviewed-by: coleenp, twisti
-
- 30 8月, 2013 2 次提交
-
-
由 brutisso 提交于
8019902: G1: Use the average heap size rather than the minimum heap size to calculate the region size Reviewed-by: tonyp, tschatzl, sjohanss
-
由 coleenp 提交于
Summary: declare all user-defined operator new()s within Hotspot code with the empty throw() exception specification Reviewed-by: coleenp, twisti, dholmes, hseigel, dcubed, kvn, ccheung Contributed-by: lois.foltan@oracle.com
-
- 22 8月, 2013 2 次提交
- 16 8月, 2013 2 次提交
-
-
由 jmasa 提交于
Reviewed-by: ysr, mgerdin
-
由 stefank 提交于
Summary: Replace the broken large pages implementation on Linux. New flag: -XX:+UseTransparentHugePages - Linux specific flag to turn on transparent huge page hinting with madvise(..., MAP_HUGETLB). Changed behavior: -XX:+UseLargePages - tries to use -XX:+UseTransparentHugePages before trying other large pages implementations (on Linux). Changed behavior: -XX:+UseHugeTLBFS - Use upfront allocation of Large Pages instead of using the broken implementation to dynamically committing large pages. Changed behavior: -XX:LargePageSizeInBytes - Turned off the ability to use this flag on Linux and provides warning to user if set to a value different than the OS chosen large page size. Changed behavior: Setting no large page size - Now defaults to use -XX:UseTransparentHugePages if the OS supports it. Previously, -XX:+UseHugeTLBFS was chosen if the OS was configured to use large pages. Reviewed-by: tschatzl, dcubed, brutisso
-
- 15 8月, 2013 1 次提交
-
-
由 jmasa 提交于
Reviewed-by: ysr, hiroshi
-
- 16 8月, 2013 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: stefank, mgerdin
-
- 15 8月, 2013 1 次提交
-
-
由 johnc 提交于
Summary: Add a list of nmethods to the RSet for a region that contain references into the region. Skip scanning the code cache during root scanning and scan the nmethod lists during RSet scanning instead. Reviewed-by: tschatzl, brutisso, mgerdin, twisti, kvn
-
- 14 8月, 2013 2 次提交
- 12 8月, 2013 1 次提交
-
-
由 ehelin 提交于
Reviewed-by: coleenp, mgerdin, hseigel
-
- 07 8月, 2013 1 次提交
-
-
由 ehelin 提交于
Reviewed-by: mgerdin, coleenp, hseigel, jmasa, ctornqvi
-
- 01 8月, 2013 2 次提交
- 26 7月, 2013 1 次提交
-
-
由 jmasa 提交于
Reviewed-by: rasbold, tschatzl, jmasa Contributed-by: yamauchi@google.com
-
- 24 7月, 2013 1 次提交
-
-
由 jmasa 提交于
6990419: CMS Remaining work for 6572569: consistently skewed work distribution in (long) re-mark pauses Reviewed-by: rasbold, tschatzl, jmasa Contributed-by: yamauchi@google.com
-
- 11 7月, 2013 1 次提交
-
-
由 brutisso 提交于
Summary: Take _last_young_gc into account when deciding on starting a concurrent mark. Also reviewed-by: per.liden@oracle.com. Reviewed-by: tschatzl, johnc
-
- 04 7月, 2013 1 次提交
-
-
由 jiangli 提交于
Summary: Remove -Xaprof and Klass::_alloc_count & ArrayKlass::_alloc_size. Reviewed-by: stefank, coleenp
-
- 02 7月, 2013 1 次提交
-
-
由 johnc 提交于
Summary: The assert is invalid when a card is being refined by two different threads and its count crosses the hot threshold - the refinement count will be updated once by each thread triggering the assert. Remove the assert and update the count using a bounded expression. Reviewed-by: jmasa, tamao, brutisso
-
- 01 7月, 2013 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: tschatzl, brutisso, jmasa, ysr Contributed-by: per.liden@oracle.com
-
- 26 6月, 2013 1 次提交
-
-
由 jmasa 提交于
Reviewed-by: tschatzl, brutisso
-
- 25 6月, 2013 1 次提交
-
-
由 coleenp 提交于
Summary: Minimize redundant verifications of Klasses. Reviewed-by: hseigel, jmasa
-
- 19 6月, 2013 1 次提交
-
-
由 poonam 提交于
Summary: Missing linebreak in hotspot log. Reviewed-by: brutisso, tschatzl Contributed-by: vladimir.kempik@oracle.com
-
- 12 6月, 2013 2 次提交
- 14 6月, 2013 1 次提交
-
-
由 dcubed 提交于
8013057: assert(_needs_gc || SafepointSynchronize::is_at_safepoint()) failed: only read at safepoint Summary: Detect mmap() commit failures in Linux and Solaris os::commit_memory() impls and call vm_exit_out_of_memory(). Add os::commit_memory_or_exit(). Also tidy up some NMT accounting and some mmap() return value checking. Reviewed-by: zgu, stefank, dholmes, dsamersoff
-
- 10 6月, 2013 1 次提交
-
-
由 sla 提交于
Reviewed-by: acorn, coleenp, sla Contributed-by: NKaren Kinnear <karen.kinnear@oracle.com>, Bengt Rutisson <bengt.rutisson@oracle.com>, Calvin Cheung <calvin.cheung@oracle.com>, Erik Gahlin <erik.gahlin@oracle.com>, Erik Helin <erik.helin@oracle.com>, Jesper Wilhelmsson <jesper.wilhelmsson@oracle.com>, Keith McGuigan <keith.mcguigan@oracle.com>, Mattias Tobiasson <mattias.tobiasson@oracle.com>, Markus Gronlund <markus.gronlund@oracle.com>, Mikael Auno <mikael.auno@oracle.com>, Nils Eliasson <nils.eliasson@oracle.com>, Nils Loodin <nils.loodin@oracle.com>, Rickard Backman <rickard.backman@oracle.com>, Staffan Larsen <staffan.larsen@oracle.com>, Stefan Karlsson <stefan.karlsson@oracle.com>, Yekaterina Kantserova <yekaterina.kantserova@oracle.com>
-