Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

What's the logic behind going for stack based?


Python’s execution model is already very stack-oriented — CPython bytecode operates by pushing and popping values almost constantly. Building PyXL as a stack machine made it much more natural to map Python semantics directly onto hardware, without forcing an unnatural register-based structure on it. It also avoids a lot of register allocation overhead (renaming and such).


What other models are there? Would love to learn about them.


Your typical PC is register based.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: