Message340270
The gain is small, but it's there.
I made some further changes:
- replacing code of the form
sp = stack_pointer;
call_function(..., &sp, ...)
stack_pointer = sp;
by
call_function(..., &stack_pointer, ...)
- fold the inline function do_call_core() in the main eval loop (the function became so small that there was no longer a reason to pull it out of the main loop)
- removed pointless check PyMethod_GET_SELF(func) != NULL (methods always have self != NULL) |
|
| Date |
User |
Action |
Args |
| 2019-04-15 13:29:22 | jdemeyer | set | recipients:
+ jdemeyer, vstinner, petr.viktorin, Mark.Shannon |
| 2019-04-15 13:29:22 | jdemeyer | set | messageid: <[email protected]> |
| 2019-04-15 13:29:22 | jdemeyer | link | issue36616 messages |
| 2019-04-15 13:29:22 | jdemeyer | create | |
|