| LEFT | RIGHT |
| 1 | 1 |
| 2 TARGET_WITH_IMPL(CALL_FUNCTION_VAR, _call_function_var_kw) | 2 TARGET_WITH_IMPL(CALL_FUNCTION_VAR, _call_function_var_kw) |
| 3 TARGET_WITH_IMPL(CALL_FUNCTION_KW, _call_function_var_kw) | 3 TARGET_WITH_IMPL(CALL_FUNCTION_KW, _call_function_var_kw) |
| 4 TARGET(CALL_FUNCTION_VAR_KW) | 4 TARGET(CALL_FUNCTION_VAR_KW) |
| 5 _call_function_var_kw: | 5 _call_function_var_kw: |
| 6 { | 6 { |
| 7 int na = oparg & 0xff; | 7 int na = oparg & 0xff; |
| 8 int nk = (oparg>>8) & 0xff; | 8 int nk = (oparg>>8) & 0xff; |
| 9 int flags = (opcode - CALL_FUNCTION) & 3; | 9 int flags = (opcode - CALL_FUNCTION) & 3; |
| 10 int n = na + 2 * nk; | 10 int n = na + 2 * nk; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 | 38 |
| 39 while (stack_pointer > pfunc) { | 39 while (stack_pointer > pfunc) { |
| 40 w = POP(); | 40 w = POP(); |
| 41 Py_DECREF(w); | 41 Py_DECREF(w); |
| 42 } | 42 } |
| 43 PUSH(x); | 43 PUSH(x); |
| 44 if (x != NULL) | 44 if (x != NULL) |
| 45 DISPATCH(); | 45 DISPATCH(); |
| 46 goto on_error;; | 46 goto on_error;; |
| 47 } | 47 } |
| LEFT | RIGHT |