C1 and C2 print different messages for force inlinees:
src/share/vm/opto/bytecodeInfo.cpp:117: set_msg("force inline by CompilerOracle");
src/share/vm/opto/bytecodeInfo.cpp:226: set_msg("force inline by CompilerOracle");
src/share/vm/c1/c1_GraphBuilder.cpp:3798: if (callee->should_inline()) msg = "force inline by CompileOracle";
Need to unify these strings to be able to search for it.
src/share/vm/opto/bytecodeInfo.cpp:117: set_msg("force inline by CompilerOracle");
src/share/vm/opto/bytecodeInfo.cpp:226: set_msg("force inline by CompilerOracle");
src/share/vm/c1/c1_GraphBuilder.cpp:3798: if (callee->should_inline()) msg = "force inline by CompileOracle";
Need to unify these strings to be able to search for it.
- relates to
-
JDK-8046155 JEP 165: Compiler Control
- Closed