|
发表于 2016-7-21 18:16:59
|
显示全部楼层
register-less architecture.
it's a push-pop based or stack based architecture.
In a short word, opcode and operators are pushed to stack, then pop the results.
no internal register needed. status register is also optional.
Stack architecture is not popular compare to normal register-based architecture,
I think the most point is the performance for multi-thread or parallel architecture.
and also, the register-based architecture is well supported/optimized by modern compiler
design, which is not well for stack-based machine. |
|