What are the possible pitfalls in porting Psyco to 64-bit?

前端 未结 4 1755
时光取名叫无心
时光取名叫无心 2021-02-14 09:47

The Psyco docs say:

Just for reference, Psyco does not work on any 64-bit systems at all. This fact is worth being noted again, now that the latest

4条回答
  •  时光取名叫无心
    2021-02-14 10:14

    Psyco assumes that sizeof(int) == sizeof(void*) a bit all over the place. That's much harder than just writing down 64bit calling conventions and assembler. On the sidenote, pypy has 64bit jit support these days.

    Cheers, fijal

提交回复
热议问题