Gen 1.0 VM and its Limitations

Most validity roll-ups today operate VMs built on the Gen 1.0 paradigm. Such VMs define algebraic sub-circuits for every instruction in their CPU, and the entire circuit for 1 cycle of the VM is composed of all such sub-circuits. The sub-circuits for non-algebraic operations such as Less Than, Range-Check, XOR, OR, AND etc. introduce significant overheads and are quite error-prone as they are mostly hand-designed. Additionally, they also impose restrictions on developers who have to tackle new coding paradigms arising from algebraizing non-algebraic constructs such as branches, and if-else functions.

Last updated