# HG changeset patch # User KUBOTA Yuji # Date 1432032930 -32400 # Node ID 48632080be2acf12bae347f921a7ad4f8aaa8569 # Parent 0f15d6873c2decb80078eb3161a543cbf3c3e3bb Bug 2370: Change bugs.sun.com to bugs.openjdk.java.net reviewed-by: yasuenag diff -r 0f15d6873c2d -r 48632080be2a agent/ChangeLog --- a/agent/ChangeLog Mon May 18 00:39:19 2015 +0900 +++ b/agent/ChangeLog Tue May 19 19:55:30 2015 +0900 @@ -1,3 +1,7 @@ +2015-05-19 KUBOTA Yuji + + * Bug 2370: Change bugs.sun.com to bugs.openjdk.java.net + 2015-05-18 KUBOTA Yuji * Bug 2366: Change the calculation of g1StartAddr to create the bitmap for G1GC diff -r 0f15d6873c2d -r 48632080be2a agent/src/oopUtil.cpp --- a/agent/src/oopUtil.cpp Mon May 18 00:39:19 2015 +0900 +++ b/agent/src/oopUtil.cpp Tue May 19 19:55:30 2015 +0900 @@ -634,7 +634,7 @@ #define CR8049421_parOld_hook CR8000213_parOld_hook /*! - * \brief Pointer of hook information on parallelGC. + * \brief Pointer of hook information on parallelOldGC. */ THookFunctionInfo *parOld_hook = NULL; @@ -730,7 +730,7 @@ #define CR8049421_cms_new_hook CR8000213_cms_new_hook /*! - * \brief Pointer of hook information on parallelGC. + * \brief Pointer of hook information on CMSGC. */ THookFunctionInfo *cms_new_hook = NULL; @@ -769,7 +769,7 @@ }; /*! - * \brief Pointer of hook information on G1GC for after CR6964458. + * \brief Pointer of hook information on G1GC for after JDK-6964458. */ THookFunctionInfo CR6964458_g1_hook[] = { HOOK_FUNC("_ZTV16G1ParCopyClosureILb0EL9G1Barrier0ELb1EE", @@ -803,7 +803,7 @@ }; /*! - * \brief Pointer of hook information on G1GC for after CR8000213. + * \brief Pointer of hook information on G1GC for after JDK-8000213. */ THookFunctionInfo CR8000213_g1_hook[] = { HOOK_FUNC("_ZTV16G1ParCopyClosureILb0EL9G1Barrier0ELb1EE", @@ -837,7 +837,7 @@ }; /*! - * \brief Pointer of hook information on G1GC for after CR8027746. + * \brief Pointer of hook information on G1GC for after JDK-8027746. */ THookFunctionInfo CR8027746_g1_hook[] = { HOOK_FUNC("_ZTV16G1ParCopyClosureIL9G1Barrier0ELb1EE", @@ -905,7 +905,7 @@ }; /*! - * \brief Pointer of hook information on parallelGC. + * \brief Pointer of hook information on G1GC. */ THookFunctionInfo *g1_hook = NULL; @@ -1098,29 +1098,26 @@ unsigned int hotSpotVersion = 0U; /*! - * \brief Flag of JVM is applyed CR#7017732.
- * Decision for 7017732: + * \brief Flag of JVM is applyed JDK-7017732.
* move static fields into Class to prepare for perm gen removal. - * \sa http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7017732 + * \sa https://bugs.openjdk.java.net/browse/JDK-7017732 * \sa http://hg.openjdk.java.net/hsx/hotspot-rt-gate/hotspot/rev/c7f3d0b4570f */ bool enableCR7017732 = false; /*! - * \brief Flag of JVM is applyed CR#6964458.
- * Decision for 6964458: + * \brief Flag of JVM is applyed JDK-6964458.
* Reimplement class meta-data storage to use native memory. * (PermGen Removal) - * \sa http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6964458 + * \sa https://bugs.openjdk.java.net/browse/JDK-6964458 * \sa http://hg.openjdk.java.net/hsx/hotspot-rt-gate/hotspot/rev/da91efe96a93 */ bool enableCR6964458 = false; /*! - * \brief Flag of JVM is applyed CR#8000213.
- * Decision for CR8000213: + * \brief Flag of JVM is applyed JDK-8000213.
* NPG: Should have renamed arrayKlass and typeArrayKlass. - * \sa http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=8000213 + * \sa https://bugs.openjdk.java.net/browse/JDK-8000213 * \sa http://hg.openjdk.java.net/hsx/hotspot-rt/hotspot/rev/d8ce2825b193 */ bool enableCR8000213 = false; @@ -1134,28 +1131,26 @@ bool enableCR8027746 = false; /*! - * \brief Flag of JVM is applyed CR#8004883.
- * Decision for CR8004883: + * \brief Flag of JVM is applyed JDK-8004883.
* 8004883: NPG: clean up anonymous class fix - * \sa http://bugs.sun.com/view_bug.do?bug_id=8004883 + * \sa https://bugs.openjdk.java.net/browse/JDK-8004883 * \sa http://hg.openjdk.java.net/hsx/hotspot-gc/hotspot/rev/30866cd626b0 */ bool enableCR8004883 = false; /*! - * \brief Flag of JVM is applyed CR#8003424.
- * Decision for CR8003424: + * \brief Flag of JVM is applyed JDK-8003424.
* 8003424: Enable Class Data Sharing for CompressedOops - * \sa http://bugs.sun.com/view_bug.do?bug_id=8003424 + * \sa https://bugs.openjdk.java.net/browse/JDK-8003424 * \sa http://hg.openjdk.java.net/hsx/hotspot-rt/hotspot/rev/740e263c80c6 */ bool enableCR8003424 = false; /*! - * \brief Flag of JVM is applyed CR#8015107.
- * Decision for CR8015107: + * \brief Flag of JVM is applyed JDK-8015107.
* 8015107: NPG: Use consistent naming for metaspace concepts * \sa https://bugs.openjdk.java.net/browse/JDK-8015107 + * \sa http://hg.openjdk.java.net/hsx/hsx25/hotspot/rev/7944aba7ba41 */ bool enableCR8015107 = false; @@ -2980,8 +2975,8 @@ if(useG1){ /* - * See 7046558: G1: concurrent marking optimizations. - * http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7046558 + * See JDK-7046558: G1: concurrent marking optimizations. + * https://bugs.openjdk.java.net/browse/JDK-7046558 * http://hg.openjdk.java.net/hsx/hotspot-gc/hotspot/rev/842b840e67db */ const unsigned int afterCR7046558 = 22 << 24 | 3; diff -r 0f15d6873c2d -r 48632080be2a agent/src/oopUtil.hpp --- a/agent/src/oopUtil.hpp Mon May 18 00:39:19 2015 +0900 +++ b/agent/src/oopUtil.hpp Tue May 19 19:55:30 2015 +0900 @@ -325,11 +325,10 @@ extern "C" THookFunctionInfo *innerStart_hook; /*! - * \brief Flag of JVM is applyed CR#6964458.
- * Decision for 6964458: + * \brief Flag of JVM is applyed JDK-6964458.
* Reimplement class meta-data storage to use native memory. * (PermGen Removal) - * \sa http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6964458 + * \sa https://bugs.openjdk.java.net/browse/JDK-6964458 * \sa http://hg.openjdk.java.net/hsx/hotspot-rt-gate/hotspot/rev/da91efe96a93 */ extern bool enableCR6964458;