Skip to content

Commit 42f4d70

Browse files
Hui ShiDamonFool
Hui Shi
authored andcommittedApr 10, 2021
8264649: runtime/InternalApi/ThreadCpuTimesDeadlock.java crash in fastdebug C2 with -XX:-UseTLAB
Reviewed-by: thartmann, kvn
1 parent 76bd313 commit 42f4d70

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed
 

‎src/hotspot/share/opto/phaseX.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1481,6 +1481,9 @@ void PhaseIterGVN::subsume_node( Node *old, Node *nn ) {
14811481
temp->init_req(0,nn); // Add a use to nn to prevent him from dying
14821482
remove_dead_node( old );
14831483
temp->del_req(0); // Yank bogus edge
1484+
if (nn != NULL && nn->outcnt() == 0) {
1485+
_worklist.push(nn);
1486+
}
14841487
#ifndef PRODUCT
14851488
if( VerifyIterativeGVN ) {
14861489
for ( int i = 0; i < _verify_window_size; i++ ) {

‎test/hotspot/jtreg/runtime/InternalApi/ThreadCpuTimesDeadlock.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2012, 2021, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -30,6 +30,15 @@
3030
* @run main/othervm -XX:+UsePerfData -Xmx128m ThreadCpuTimesDeadlock
3131
*/
3232

33+
/*
34+
* @test
35+
* @bug 8264649
36+
* @summary OSR compiled method crash when UseTLAB is off
37+
* @requires vm.debug
38+
* @modules java.management/sun.management
39+
* @run main/othervm -XX:-UseTLAB -XX:+UsePerfData -Xmx128m ThreadCpuTimesDeadlock
40+
*/
41+
3342
import java.lang.management.ManagementFactory;
3443
import javax.management.JMException;
3544
import javax.management.MBeanServer;

0 commit comments

Comments
 (0)
Please sign in to comment.