Terry> I have not seen any Windows test yet. The direct threading is
Terry> gcc-specific, so there might be degradation with MSVC.
Not if a compiler #ifdef selects between two independent choices:
#ifdef __GCC__ /* or whatever the right incantation is */
#include "ceval-threaded.c"
#else
#include "ceval-switched.c"
#endif
and so on...
BTW, as to the implementation of individual VM instructions I don't believe
the Vmgen stuff affects that. It's just the way the instructions are
assembled.
Skip
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe:
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com