Skip to content

8344251: C2: remove blackholes with dead control input #24663

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/hotspot/share/opto/cfgnode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3109,6 +3109,10 @@ void NeverBranchNode::format( PhaseRegAlloc *ra_, outputStream *st) const {
}
#endif

Node* BlackholeNode::Ideal(PhaseGVN* phase, bool can_reshape) {
return remove_dead_region(phase, can_reshape) ? this : nullptr;
}

#ifndef PRODUCT
void BlackholeNode::format(PhaseRegAlloc* ra, outputStream* st) const {
st->print("blackhole ");
Expand Down
1 change: 1 addition & 0 deletions src/hotspot/share/opto/cfgnode.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -735,6 +735,7 @@ class BlackholeNode : public MultiNode {
virtual int Opcode() const;
virtual uint ideal_reg() const { return 0; } // not matched in the AD file
virtual const Type* bottom_type() const { return TypeTuple::MEMBAR; }
virtual Node* Ideal(PhaseGVN* phase, bool can_reshape);

const RegMask &in_RegMask(uint idx) const {
// Fake the incoming arguments mask for blackholes: accept all registers
Expand Down
70 changes: 70 additions & 0 deletions test/hotspot/jtreg/compiler/blackhole/DeadBhElimination.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Copyright (c) 2025, Red Hat and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

/*
* @test
* @bug 8344251
* @summary Test that blackhole without control input are removed
* @library /test/lib /
* @run driver compiler.blackhole.DeadBhElimination
*/

package compiler.blackhole;

import compiler.lib.ir_framework.*;

public class DeadBhElimination {
public static void main(String[] args) {
TestFramework.runWithFlags(
"-XX:-TieredCompilation",
"-XX:+UnlockExperimentalVMOptions",
// Prevent the dead branches to be compiled into an uncommon trap
// instead of generating a BlackholeNode.
"-XX:PerMethodTrapLimit=0",
"-XX:PerMethodSpecTrapLimit=0",
"-XX:CompileCommand=blackhole,compiler.blackhole.DeadBhElimination::iAmABlackhole"
);
}

static public void iAmABlackhole(int x) {}

@Test
@IR(counts = {IRNode.BLACKHOLE, "1"}, phase = CompilePhase.AFTER_PARSING)
@IR(failOn = {IRNode.BLACKHOLE}, phase = CompilePhase.FINAL_CODE)
static void removalAfterLoopOpt() {
int a = 77;
int b = 0;
do {
a--;
b++;
} while (a > 0);
// b == 77, known after first loop opts round
// loop is detected as empty loop

if (b == 78) { // dead
iAmABlackhole(a);
}
}


}
12 changes: 12 additions & 0 deletions test/hotspot/jtreg/compiler/lib/ir_framework/IRNode.java
Original file line number Diff line number Diff line change
Expand Up @@ -2707,6 +2707,11 @@ public class IRNode {
macroNodes(MOD_D, regex);
}

public static final String BLACKHOLE = PREFIX + "BLACKHOLE" + POSTFIX;
static {
fromBeforeRemoveUselessToFinalCode(BLACKHOLE, "Blackhole");
}

/*
* Utility methods to set up IR_NODE_MAPPINGS.
*/
Expand Down Expand Up @@ -2833,6 +2838,13 @@ private static void storeOfNodes(String irNodePlaceholder, String irNodeRegex) {
beforeMatching(irNodePlaceholder, regex);
}

private static void fromBeforeRemoveUselessToFinalCode(String irNodePlaceholder, String irNodeRegex) {
String regex = START + irNodeRegex + MID + END;
IR_NODE_MAPPINGS.put(irNodePlaceholder, new SinglePhaseRangeEntry(CompilePhase.PRINT_IDEAL, regex,
CompilePhase.BEFORE_REMOVEUSELESS,
CompilePhase.FINAL_CODE));
}

/**
* Apply {@code regex} on all ideal graph phases starting from {@link CompilePhase#PHASEIDEALLOOP1} which is the
* first phase that could contain vector nodes from super word.
Expand Down