File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
visualvm/heapviewer.truffle/src/org/graalvm/visualvm/heapviewer/truffle Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ public class TruffleFrame {
48
48
private static final String COMPILER_FRAME_NOBOX_FQN = "org.graalvm.compiler.truffle.FrameWithoutBoxing" ; // NOI18N
49
49
private static final String ENT_COMPILER_FRAME_NOBOX_FQN = "com.oracle.graal.truffle.FrameWithoutBoxing" ; // NOI18N
50
50
private static final String COMPILER_FRAME_NOBOX1_FQN = "org.graalvm.compiler.truffle.runtime.FrameWithoutBoxing" ; // NOI18N
51
+ private static final String COMPILER_FRAME_NOBOX2_FQN = "com.oracle.truffle.api.impl.FrameWithoutBoxing" ; // NOI18N
51
52
private static final String COMPILER_FRAME_BOX_FQN = "org.graalvm.compiler.truffle.FrameWithBoxing" ; // NOI18N
52
53
private static final String ENT_COMPILER_FRAME_BOX_FQN = "com.oracle.graal.truffle.FrameWithBoxing" ; // NOI18N
53
54
private static final String COMPILER_FRAME_BOX1_FQN = "org.graalvm.compiler.truffle.runtime.FrameWithBoxing" ; // NOI18N
@@ -109,6 +110,7 @@ private static boolean isTruffleFrameSubClass(Instance truffleFrame) {
109
110
return isSubClassOf (truffleFrame , TRUFFLE_FRAME_FQN )
110
111
|| isSubClassOf (truffleFrame , COMPILER_FRAME_NOBOX_FQN )
111
112
|| isSubClassOf (truffleFrame , COMPILER_FRAME_NOBOX1_FQN )
113
+ || isSubClassOf (truffleFrame , COMPILER_FRAME_NOBOX2_FQN )
112
114
|| isSubClassOf (truffleFrame , ENT_COMPILER_FRAME_NOBOX_FQN )
113
115
|| isSubClassOf (truffleFrame , COMPILER_FRAME_BOX_FQN )
114
116
|| isSubClassOf (truffleFrame , COMPILER_FRAME_BOX1_FQN )
You can’t perform that action at this time.
0 commit comments