You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: graalpython/com.oracle.graal.python/src/com/oracle/graal/python/builtins/objects/cext/hpy/GraalHPyContext.java
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1287,6 +1287,7 @@ public enum Counter {
1287
1287
UpcallLength,
1288
1288
UpcallListCheck,
1289
1289
UpcallLongAsLong,
1290
+
UpcallLongFromLong,
1290
1291
UpcallFloatAsDouble,
1291
1292
UpcallFloatFromDouble;
1292
1293
@@ -1357,6 +1358,15 @@ public final long ctxLongAsLong(long handle) {
1357
1358
}
1358
1359
}
1359
1360
1361
+
publicfinallongctxLongFromLong(longl) {
1362
+
Counter.UpcallLongFromLong.increment();
1363
+
1364
+
if (com.oracle.graal.python.builtins.objects.ints.PInt.isIntRange(l)) {
0 commit comments