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
187
187
@ Override
188
188
protected EncodedGraph lookupEncodedGraph (ResolvedJavaMethod method , BytecodeProvider intrinsicBytecodeProvider ) {
189
189
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
+ */
191
195
throw GraalError .shouldNotReachHere ("dead path" ); // ExcludeFromJacocoGeneratedReport
192
196
}
193
197
Original file line number Diff line number Diff line change @@ -83,8 +83,7 @@ public boolean isHasNextTier(ResolvedJavaMethod method) {
83
83
}
84
84
85
85
/**
86
- * Determines if {@code method} is a transferToInterpreter method from
87
- * CompilerDirectives.
86
+ * Determines if {@code method} is a transferToInterpreter method from CompilerDirectives.
88
87
*/
89
88
public boolean isTransferToInterpreterMethod (ResolvedJavaMethod method ) {
90
89
return method .equals (CompilerDirectives_transferToInterpreter ) || method .equals (CompilerDirectives_transferToInterpreterAndInvalidate );
Original file line number Diff line number Diff line change 26
26
27
27
import java .util .List ;
28
28
29
- import jdk .graal .compiler .truffle .nodes .TruffleAssumption ;
30
29
import org .graalvm .collections .EconomicMap ;
31
30
import org .graalvm .collections .EconomicSet ;
32
31
import org .graalvm .collections .UnmodifiableEconomicMap ;
32
+
33
+ import com .oracle .truffle .compiler .TruffleCompilable ;
34
+
33
35
import jdk .graal .compiler .debug .DebugContext ;
34
36
import jdk .graal .compiler .debug .DebugContext .Scope ;
35
37
import jdk .graal .compiler .debug .Indent ;
49
51
import jdk .graal .compiler .truffle .TruffleCompilerOptions ;
50
52
import jdk .graal .compiler .truffle .TruffleDebugJavaMethod ;
51
53
import jdk .graal .compiler .truffle .TruffleTierContext ;
52
-
53
- import com .oracle .truffle .compiler .TruffleCompilable ;
54
-
54
+ import jdk .graal .compiler .truffle .nodes .TruffleAssumption ;
55
55
import jdk .vm .ci .meta .ResolvedJavaMethod ;
56
56
57
57
final class GraphManager {
Original file line number Diff line number Diff line change @@ -829,7 +829,7 @@ private boolean frameDescriptorEquals(FrameDescriptor parentFrameDescriptor) {
829
829
return false ;
830
830
}
831
831
832
- private final Object executeRootNode (VirtualFrame frame , CompilationState tier ) {
832
+ private Object executeRootNode (VirtualFrame frame , CompilationState tier ) {
833
833
try {
834
834
Object toRet = rootNode .execute (frame );
835
835
TruffleSafepoint .poll (rootNode );
You can’t perform that action at this time.
0 commit comments