Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Compile vs. Bytecode

Vogls transforms Verilog into its intermediate representation called the Vogls Intermediate Representation (VIR). This representation can then be converted into a format that is suited for bytecode evaluation (default) or native code (using the -C) flag. The following is a pros and cons table.

PropertyDescriptionBytecodeCompile
Preparation timeTime to turn Verilog into format used for executionFastSlow
Simulation timeTime to execute simulation instructionsSlowFast
PortabilityAbility to run in every environment (e.g. WebAssembly)YesNo