File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
src/main/java/org/truffleruby/language/backtrace Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -55,8 +55,7 @@ public static boolean isCallBoundary(StackTraceElement element) {
55
55
// GR-47041: we need com.oracle.truffle.api.impl.Accessor.RuntimeSupport.isGuestCallStackFrame but it's not public
56
56
String className = element .getClassName ();
57
57
String methodName = element .getMethodName ();
58
- return ((className .equals ("com.oracle.truffle.runtime.OptimizedCallTarget" ) ||
59
- className .equals ("org.graalvm.compiler.truffle.runtime.OptimizedCallTarget" )) &&
58
+ return (className .equals ("com.oracle.truffle.runtime.OptimizedCallTarget" ) &&
60
59
methodName .equals ("executeRootNode" )) ||
61
60
(className .equals ("com.oracle.truffle.api.impl.DefaultCallTarget" ) &&
62
61
methodName .equals ("callDirectOrIndirect" ));
Original file line number Diff line number Diff line change @@ -2260,7 +2260,7 @@ def graph(*args)
2260
2260
raise "The process did not compile #{ method } " unless compiled
2261
2261
2262
2262
unless igv
2263
- # See org.graalvm.compiler.debug. StandardPathUtilitiesProvider#sanitizeFileName
2263
+ # See StandardPathUtilitiesProvider#sanitizeFileName in graal
2264
2264
method_glob_pattern = method . gsub ( /[ \/ \p {Cntrl}]/ , '_' )
2265
2265
if truffleruby_native?
2266
2266
method_glob_pattern = "{Isolated:_,}#{ method_glob_pattern } "
You can’t perform that action at this time.
0 commit comments