Toby Hutton
Toby Hutton
### Use case When creating a local function call frame (as opposed to a more global contract call frame) the compiler must preserve the value of usually several general purpose...
Found by @nfurfaro: > In this case, > ``` > library std; > > dep ops; > dep hash; > dep storage; > dep constants; > dep chain; > dep...
`LDC` has not really been tested thoroughly and currently the VM+compiler have many shortcomings around supporting its use. Related issues: * https://github.com/FuelLabs/fuel-specs/issues/346 * https://github.com/FuelLabs/fuel-specs/issues/430 ## Goals Loading code via `LDC`...
Currently the configurable constants are treated as regular consts in IR, and are post processed to find their address in the data section during ASMgen. While implementing the `constdemotion` pass...
Currently any integer and boolean and `()` have a `size_of` 8, which is the size of a register in the FuelVM. I think this was originally chosen to keep memory...
Re: #2383. This is a start at adding `u128` maths support with `add`, `sub` and `mul` in both overflowing and wrapping versions. The cycle counts are estimates - is there...