<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Please review the code changes to fix:<br>
<a id="key-val" rel="4786055"
href="https://bugs.openjdk.java.net/browse/JDK-8085965">JDK-8085965:</a>
VM hangs in C2Compiler <br>
<br>
Problem and fix: <br>
In JDK8, CMSClassUnloadingEnabled option
which is used to control the class-unloading in CMS, was enabled by
default. But if the user specifies -Xnoclassgc or
-XX:-ClassUnloading on the
command line then classes get unloaded but updating of
subklasses/siblings links gets skipped by the ClassUnloading check
in the following function:<br>
<br>
<span id="mainframespan"><tt><i>void
Klass::clean_weak_klass_links(BoolObjectClosure* is_alive,
bool </i>
<br>
<i>clean_alive_klasses) {</i>
<br>
<i> if (!ClassUnloading) {</i>
<br>
<i> return;</i>
<br>
<i> }<br>
<br>
</i></tt></span>which corrupts the class
hierarchy links causing hangs and crashes.
<br>
<br>
This fix honors -XX:-ClassUnloading and -Xnoclassgc options and
disables class unloading with CMS.<br>
<br>
Webrev: <a class="moz-txt-link-freetext" href="http://cr.openjdk.java.net/~poonam/8085965/webrev/">http://cr.openjdk.java.net/~poonam/8085965/webrev/</a><br>
<br>
Thanks,<br>
Poonam<br>
<br>
</body>
</html>