You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 28, 2022. It is now read-only.
With #39 , we'll have gas_charge AST nodes, explicitly charging gas. Each such charge leads to a computation (comparison, conditional branch and a subtraction) at the LLVM-IR level (#54). However, these charges can potentially be combined into a single computation. For example, expressions leading to a straight line sequence (until a branch) with all static charges can be combined into one static charge.
Such opportunities to combine gas charges must be explored and optimized.