File tree Expand file tree Collapse file tree 4 files changed +11
-8
lines changed
compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/truffle
truffle/src/com.oracle.truffle.runtime/src/com/oracle/truffle/runtime Expand file tree Collapse file tree 4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,11 @@ private EncodedGraph lookupOrCreatePersistentEncodedGraph(ResolvedJavaMethod met
187187 @ Override
188188 protected EncodedGraph lookupEncodedGraph (ResolvedJavaMethod method , BytecodeProvider intrinsicBytecodeProvider ) {
189189 if (intrinsicBytecodeProvider != null ) {
190- // intrinsicBytecodeProvider is read from InlineInvokePlugin.InlineInfo#getIntrinsicBytecodeProvider which is always null because the only source is PartialEvaluator#asInlineInfo
190+ /*
191+ * intrinsicBytecodeProvider is read from
192+ * InlineInvokePlugin.InlineInfo#getIntrinsicBytecodeProvider which is always null
193+ * because the only source is PartialEvaluator#asInlineInfo
194+ */
191195 throw GraalError .shouldNotReachHere ("dead path" ); // ExcludeFromJacocoGeneratedReport
192196 }
193197
Original file line number Diff line number Diff line change @@ -83,8 +83,7 @@ public boolean isHasNextTier(ResolvedJavaMethod method) {
8383 }
8484
8585 /**
86- * Determines if {@code method} is a transferToInterpreter method from
87- * CompilerDirectives.
86+ * Determines if {@code method} is a transferToInterpreter method from CompilerDirectives.
8887 */
8988 public boolean isTransferToInterpreterMethod (ResolvedJavaMethod method ) {
9089 return method .equals (CompilerDirectives_transferToInterpreter ) || method .equals (CompilerDirectives_transferToInterpreterAndInvalidate );
Original file line number Diff line number Diff line change 2626
2727import java .util .List ;
2828
29- import jdk .graal .compiler .truffle .nodes .TruffleAssumption ;
3029import org .graalvm .collections .EconomicMap ;
3130import org .graalvm .collections .EconomicSet ;
3231import org .graalvm .collections .UnmodifiableEconomicMap ;
32+
33+ import com .oracle .truffle .compiler .TruffleCompilable ;
34+
3335import jdk .graal .compiler .debug .DebugContext ;
3436import jdk .graal .compiler .debug .DebugContext .Scope ;
3537import jdk .graal .compiler .debug .Indent ;
4951import jdk .graal .compiler .truffle .TruffleCompilerOptions ;
5052import jdk .graal .compiler .truffle .TruffleDebugJavaMethod ;
5153import jdk .graal .compiler .truffle .TruffleTierContext ;
52-
53- import com .oracle .truffle .compiler .TruffleCompilable ;
54-
54+ import jdk .graal .compiler .truffle .nodes .TruffleAssumption ;
5555import jdk .vm .ci .meta .ResolvedJavaMethod ;
5656
5757final class GraphManager {
Original file line number Diff line number Diff line change @@ -829,7 +829,7 @@ private boolean frameDescriptorEquals(FrameDescriptor parentFrameDescriptor) {
829829 return false ;
830830 }
831831
832- private final Object executeRootNode (VirtualFrame frame , CompilationState tier ) {
832+ private Object executeRootNode (VirtualFrame frame , CompilationState tier ) {
833833 try {
834834 Object toRet = rootNode .execute (frame );
835835 TruffleSafepoint .poll (rootNode );
You can’t perform that action at this time.
0 commit comments