|
43 | 43 | import com.oracle.graal.python.builtins.objects.PythonAbstractObject;
|
44 | 44 | import com.oracle.graal.python.builtins.objects.cext.capi.CExtNodes.IsPointerNode;
|
45 | 45 | import com.oracle.graal.python.builtins.objects.cext.capi.CExtNodes.ToJavaNode;
|
46 |
| -import com.oracle.graal.python.builtins.objects.cext.capi.CExtNodes.ToSulongNode; |
47 | 46 | import com.oracle.graal.python.builtins.objects.cext.capi.DynamicObjectNativeWrapper.PAsPointerNode;
|
48 | 47 | import com.oracle.graal.python.builtins.objects.cext.capi.DynamicObjectNativeWrapper.ToPyObjectNode;
|
49 | 48 | import com.oracle.graal.python.builtins.objects.function.PKeyword;
|
@@ -127,7 +126,7 @@ protected boolean isExecutable() {
|
127 | 126 | public Object execute(Object[] arguments,
|
128 | 127 | @CachedLibrary("this") PythonNativeWrapperLibrary lib,
|
129 | 128 | @Exclusive @Cached ToJavaNode toJavaNode,
|
130 |
| - @Exclusive @Cached ToSulongNode toSulongNode, |
| 129 | + @Exclusive @Cached CExtNodes.ToNewRefNode toSulongNode, |
131 | 130 | @Exclusive @Cached CallNode callNode,
|
132 | 131 | @Exclusive @Cached ExecutePositionalStarargsInteropNode posStarargsNode,
|
133 | 132 | @Exclusive @Cached ExpandKeywordStarargsNode expandKwargsNode,
|
@@ -172,7 +171,7 @@ protected boolean isExecutable() {
|
172 | 171 | public Object execute(Object[] arguments,
|
173 | 172 | @CachedLibrary("this") PythonNativeWrapperLibrary lib,
|
174 | 173 | @Exclusive @Cached ToJavaNode toJavaNode,
|
175 |
| - @Exclusive @Cached ToSulongNode toSulongNode, |
| 174 | + @Exclusive @Cached CExtNodes.ToNewRefNode toSulongNode, |
176 | 175 | @Exclusive @Cached PythonAbstractObject.PExecuteNode executeNode,
|
177 | 176 | @Exclusive @Cached GilNode gil) throws ArityException, UnsupportedMessageException {
|
178 | 177 | boolean mustRelease = gil.acquire();
|
|
0 commit comments