|
52 | 52 | import com.oracle.graal.python.builtins.objects.function.PBuiltinFunction;
|
53 | 53 | import com.oracle.graal.python.builtins.objects.function.PKeyword;
|
54 | 54 | import com.oracle.graal.python.builtins.objects.function.Signature;
|
55 |
| -import com.oracle.graal.python.nodes.argument.CreateArgumentsNode.CreateAndCheckArgumentsNode; |
| 55 | +import com.oracle.graal.python.nodes.argument.CreateArgumentsNode; |
56 | 56 | import com.oracle.graal.python.nodes.argument.keywords.ExpandKeywordStarargsNode;
|
57 | 57 | import com.oracle.graal.python.nodes.argument.positional.ExecutePositionalStarargsNode;
|
58 | 58 | import com.oracle.graal.python.nodes.call.CallDispatchers;
|
@@ -201,7 +201,7 @@ static final class PyCFunctionUnaryWrapper extends PyCFunctionWrapper {
|
201 | 201 | Object execute(Object[] arguments,
|
202 | 202 | @Bind("$node") Node inliningTarget,
|
203 | 203 | @Cached PythonToNativeNewRefNode toNativeNode,
|
204 |
| - @Cached CreateAndCheckArgumentsNode createArgsNode, |
| 204 | + @Cached CreateArgumentsNode createArgsNode, |
205 | 205 | @Cached CallDispatchers.CallTargetCachedInvokeNode invokeNode,
|
206 | 206 | @Cached NativeToPythonNode toJavaNode,
|
207 | 207 | @Cached TransformExceptionToNativeNode transformExceptionToNativeNode,
|
@@ -259,7 +259,7 @@ Object execute(Object[] arguments,
|
259 | 259 | @Bind("$node") Node inliningTarget,
|
260 | 260 | @Cached PythonToNativeNewRefNode toNativeNode,
|
261 | 261 | @Cached CallDispatchers.CallTargetCachedInvokeNode invokeNode,
|
262 |
| - @Cached CreateAndCheckArgumentsNode createArgsNode, |
| 262 | + @Cached CreateArgumentsNode createArgsNode, |
263 | 263 | @Cached NativeToPythonNode toJavaNode,
|
264 | 264 | @Cached TransformExceptionToNativeNode transformExceptionToNativeNode,
|
265 | 265 | @Exclusive @Cached GilNode gil) throws ArityException {
|
@@ -327,7 +327,7 @@ Object execute(Object[] arguments,
|
327 | 327 | @Bind("$node") Node inliningTarget,
|
328 | 328 | @Cached PythonToNativeNewRefNode toNativeNode,
|
329 | 329 | @Cached ExecutePositionalStarargsNode posStarargsNode,
|
330 |
| - @Cached CreateAndCheckArgumentsNode createArgsNode, |
| 330 | + @Cached CreateArgumentsNode createArgsNode, |
331 | 331 | @Cached CallDispatchers.CallTargetCachedInvokeNode invokeNode,
|
332 | 332 | @Cached NativeToPythonNode toJavaNode,
|
333 | 333 | @Cached TransformExceptionToNativeNode transformExceptionToNativeNode,
|
@@ -390,7 +390,7 @@ Object execute(Object[] arguments,
|
390 | 390 | @Bind("$node") Node inliningTarget,
|
391 | 391 | @Cached PythonToNativeNewRefNode toNativeNode,
|
392 | 392 | @Cached ExecutePositionalStarargsNode posStarargsNode,
|
393 |
| - @Cached CreateAndCheckArgumentsNode createArgsNode, |
| 393 | + @Cached CreateArgumentsNode createArgsNode, |
394 | 394 | @Cached CallDispatchers.CallTargetCachedInvokeNode invokeNode,
|
395 | 395 | @Cached ExpandKeywordStarargsNode expandKwargsNode,
|
396 | 396 | @Cached NativeToPythonNode toJavaNode,
|
|
0 commit comments