[quirks-uvm-devel] New features was added
Status: Pre-Alpha
Brought to you by:
teodor
From: Sergei L. <se...@mo...> - 2002-04-07 00:09:50
|
It is notification about new feature in VM. Now it is possible to use au selector cells in conditions, for example: while auInc[1] loop ... if auCmp[2] then ... This means that: 1. VM performs implicit ACT command on the selector before branching. 2. Then it gets result from the cell and do branching as usual. Thus, it is more compact variant of the following (let auInc[1] is mapped on lv[0] and auCmp[2] is mapped on lv[1]). loop * auInc; exit when not lv[0]; ... and * auCmp; if lv[1] then ... This new form make loops much more compact and a bit faster. ========= For Maxim: you can now use this new form in a compiler. It is already under CVS. -- Sergei |