marekjm / viuavm

Parallel virtual machine designed to reliably run massively concurrent programs
https://viuavm.org/
GNU General Public License v3.0
71 stars 11 forks source link

Add enter instruction #60

Closed marekjm closed 9 years ago

marekjm commented 9 years ago

Add enter instruction for entering blocks. Block execution would be terminated using leave instruction.

Should enter be called on lightweight Block objects (like fcall), or on atoms representing block names (like call)?

marekjm commented 9 years ago

Issue #92 implemented the enter instruction. It is used to enter blocks after a try instruction has been issued to create a block-frame, and uses block names to known which block to enter.