comex
comex
For const generics, I think everyone is waiting for the stuff that's already accepted to be implemented before proposing any extensions. (It's been a long wait, but thanks to varkor's...
Well, it's probably too late now, but I'd like to question the idea that the relooper algorithm, or variants thereof, can produce "good enough" results in all cases. They clearly...
So: - As mentioned, WebAssembly is now stable, so the time is past for any total rewrite of how control flow is expressed. - In one sense, that's unfortunate, because...
@qwertie If a given loop is not a natural loop, the wasm-targeting compiler should express it using `labels` instead of `loop`. It should never be necessary to add a switch...
@lukewagner I'd like to hear more detail about which passes are depending on invariants. The design I proposed, using a separate construct for irreducible flow, should make it relatively easy...
Sigh… I meant to reply earlier but life got in the way. I’ve been grepping through some JS engines and I guess I have to weaken my claim about irreducible...
What would a software emulation of this instruction look like for CPUs that don't have native support?
For what it's worth, my Xfinity-provided home router: - Has a 'port restricted cone' NAT, i.e. sending a UDP packet to a given IP and port only allows responses from...
FWIW, Unix has a concept of names for particular ports, listed in `/etc/services`, like http 80/udp www www-http # World Wide Web HTTP For this reason, Unix functions like `getnameinfo`...
Still happening. I worked around it with: ```rust diff --git a/src/main.rs b/src/main.rs index a547d4b..fb14b57 100644 --- a/src/main.rs +++ b/src/main.rs @@ -347,7 +347,7 @@ fn download_iter( } else { tup.0 =...