- 18 6月, 2014 1 次提交
-
-
由 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>
-
- 13 6月, 2014 1 次提交
-
-
由 pliden 提交于
Reviewed-by: brutisso, sjohanss
-
- 04 6月, 2014 1 次提交
-
-
由 pliden 提交于
Reviewed-by: brutisso, ehelin
-
- 03 6月, 2014 2 次提交
- 20 5月, 2014 1 次提交
-
-
由 pliden 提交于
Reviewed-by: tschatzl, mgerdin
-
- 16 5月, 2014 1 次提交
-
-
由 coleenp 提交于
Summary: Only prune metaspace virtual spaces at safepoint so walking them is safe outside a safepoint. Reviewed-by: mgerdin, mgronlun, hseigel, stefank
-
- 14 5月, 2014 2 次提交
- 10 5月, 2014 1 次提交
-
-
由 drchase 提交于
Summary: Repaired or selectively disabled offending formats; future-proofed with additional checking Reviewed-by: kvn, jrose, stefank
-
- 08 5月, 2014 3 次提交
-
-
由 goetz 提交于
Reviewed-by: twisti, stefank
-
由 brutisso 提交于
Summary: Removed duplicate code in RSHashTable to fetch SparsePRTEntries Reviewed-by: tschatzl, brutisso Contributed-by: NAndreas Sjoberg <andreas.sjoberg@oracle.com>
-
由 gziemski 提交于
Summary: Refactor stringTable class out of symbolTable, making sure all includes are minimal set and are sorted. Reviewed-by: coleenp, stefank
-
- 02 5月, 2014 1 次提交
-
-
由 jwilhelm 提交于
Summary: Renamed gen0 and gen1 to young and old throughout the GC code. Reviewed-by: sjohanss, jcoomes
-
- 01 5月, 2014 1 次提交
-
-
由 zgu 提交于
Summary: Eliminating duplicated code by introducing print_on(outputStream* st) methods in NamedThread Reviewed-by: twisti, coleenp, dholmes
-
- 29 4月, 2014 2 次提交
- 23 4月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: mgerdin, brutisso Contributed-by: michal@frajt.eu
-
- 22 4月, 2014 1 次提交
-
-
由 tschatzl 提交于
Summary: A few locations in the code use sizeof(this) which returns the size of the pointer instead of sizeof(classname) which returns the size of the sum of its members. This change fixes these errors and adds a few tests. Reviewed-by: mgerdin, brutisso
-
- 18 4月, 2014 1 次提交
-
-
由 pliden 提交于
Summary: temporarily disable the shutdown of the concurrent GC threads introduced in JDK-8037112 Reviewed-by: brutisso, tschatzl, jmasa
-
- 17 4月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: tschatzl, jmasa
-
- 16 4月, 2014 8 次提交
-
-
由 tschatzl 提交于
Summary: Card re-dirtying code for verification and actual redirtying uses two different, almost completely identical card closures. Also the verification code still assumes a perm gen. Reviewed-by: brutisso, jmasa
-
由 tschatzl 提交于
Summary: Parallelize card redirtying to decrease the time it takes. Reviewed-by: brutisso
-
由 tschatzl 提交于
Summary: G1 does not retire allocation buffers after reference processing work when -XX:+ParallelRefProcEnabled is enabled. This causes wrong calculation of PLAB sizes, as the amount of space wasted is not updated correctly. Reviewed-by: brutisso
-
由 tschatzl 提交于
Summary: The mentioned method is never used and out of date. So it is removed. Reviewed-by: mgerdin, brutisso
-
由 tschatzl 提交于
Summary: After changes to the PerRegionTable where all these PRTs are linked together in an additional field, simplify iterating over all PRTs by using these links instead of walki Reviewed-by: mgerdin, jwilhelm, brutisso
-
由 tschatzl 提交于
Summary: Instead of using a manually managed array for the in_cset_fast_test array, use a G1BiasedArray instance. Reviewed-by: brutisso, mgerdin
-
由 tschatzl 提交于
8038930: G1CodeRootSet::test fails with assert(_num_chunks_handed_out == 0) failed: No elements must have been handed out yet Summary: The test incorrectly assumed that it had been started with no other previous compilation activity. Fix this by allowing multiple code root free chunk lists, and use one separate from the global one to perform the test. Reviewed-by: brutisso
-
由 stefank 提交于
Reviewed-by: jwilhelm, sjohanss, jmasa
-
- 11 4月, 2014 2 次提交
- 09 4月, 2014 1 次提交
-
-
由 stefank 提交于
Reviewed-by: jmasa, sjohanss Contributed-by: stefan.karlsson@oracle.com, mikael.vidstedt@oracle.com
-
- 04 4月, 2014 1 次提交
-
-
由 stefank 提交于
Reviewed-by: brutisso, tschatzl
-
- 03 4月, 2014 2 次提交
- 01 4月, 2014 1 次提交
-
-
由 mgronlun 提交于
Reviewed-by: dholmes, fparain Contributed-by: david.simms@oracle.com
-
- 31 3月, 2014 1 次提交
-
-
由 ehelin 提交于
Reviewed-by: jmasa, coleenp
-
- 02 4月, 2014 1 次提交
-
-
由 goetz 提交于
Summary: Change 8035330: Remove G1ParScanPartialArrayClosure and G1ParScanHeapEvacClosure broke the debug build on AIX. The method do_oop_partial_array() is added in a header, but requires the inline function par_write_ref() through several inlined calls. In some cpp files, like arguments.cpp, par_write_ref() is not defined as the corresponding inline header and is not included. The AIX debug VM does not start because of the missing symbol. This change solves this by cleaning up include dependencies. Reviewed-by: tschatzl, stefank
-
- 01 4月, 2014 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: sjohanss, jmasa
-
- 26 3月, 2014 1 次提交
-
-
由 ehelin 提交于
Reviewed-by: jmasa, stefank
-