Toby Hutton

Results 63 comments of Toby Hutton

The harness doesn't really call `forc` per se, but it does use the `BuildCommand`, `RunCommand` and `DeployCommand` structures to configure building, running and deploying. So it wouldn't really be passing...

> How would the VM know the memory location of the registers to `POP`? It shouldn't, it's up to the compiler or dev to do it. So `POP` should just...

I guess the implications of `PUSH $sp ...` or `PUSH $pc ...` need to be explicit, whether it's pre- or post-increment. `POP` into a constant reg should obviously be disallowed,...

Yeah, similar if we allow popping into reserved registers, although it sounds dangerous, as I kinda mentioned above your comment. I think maybe a special instruction which just creates a...

I was just wondering something similar. It might be worth implementing [Extend](https://doc.rust-lang.org/std/iter/trait.Extend.html) to be able to gather a collection of `FlagSets` into a single set. But I am also a...

Here are some personal notes I took down at some point which might as well go here. They apply to #2906 too. * Stages in pipeline: * **IR to virtual...

I have spent time today trying to make a test under `sway/test/src/ir_generation` and it's not... easy. To make a binary which is big enough for absolute addresses to overflow 18bit...

Yeah, that would be another option, although we don't have loop unrolling yet :slightly_smiling_face: and this issue is on the current milestone while unrolling doesn't even get a proper mention...

Recent IRL chats should be mentioned here: - Perhaps we should relax the requirement that `$sp` == `$ssp` and instead just clobber the stack with the loaded code and set...

No, this would be all compiler/library stuff.