changeset 39:48632080be2a

Bug 2370: Change bugs.sun.com to bugs.openjdk.java.net reviewed-by: yasuenag
author KUBOTA Yuji <kubota.yuji@lab.ntt.co.jp>
date Tue, 19 May 2015 19:55:30 +0900
parents 0f15d6873c2d
children 63863f35f1ec
files agent/ChangeLog agent/src/oopUtil.cpp agent/src/oopUtil.hpp
diffstat 3 files changed, 26 insertions(+), 28 deletions(-) [+]
line wrap: on
line diff
--- 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  <kubota.yuji@lab.ntt.co.jp>
+
+	* Bug 2370: Change bugs.sun.com to bugs.openjdk.java.net
+
 2015-05-18 KUBOTA Yuji  <kubota.yuji@lab.ntt.co.jp>
 
 	* Bug 2366: Change the calculation of g1StartAddr to create the bitmap for G1GC
--- 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.<br>
- *        Decision for 7017732: 
+ * \brief Flag of JVM is applyed JDK-7017732.<br>
  *        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.<br>
- *        Decision for 6964458:
+ * \brief Flag of JVM is applyed JDK-6964458.<br>
  *        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.<br>
- *        Decision for CR8000213:
+ * \brief Flag of JVM is applyed JDK-8000213.<br>
  *        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.<br>
- *        Decision for CR8004883:
+ * \brief Flag of JVM is applyed JDK-8004883.<br>
  *        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.<br>
- *        Decision for CR8003424:
+ * \brief Flag of JVM is applyed JDK-8003424.<br>
  *        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.<br>
- *        Decision for CR8015107:
+ * \brief Flag of JVM is applyed JDK-8015107.<br>
  *        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;
--- 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.<br>
- *        Decision for 6964458:
+ * \brief Flag of JVM is applyed JDK-6964458.<br>
  *        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;