Re: Good News: Almost all druntime supported on arsd webassembly

2023-11-05 Thread Lingo Chen via Digitalmars-d-announce
On Sunday, 5 November 2023 at 16:18:53 UTC, Sebastiaan Koppe wrote: On Sunday, 5 November 2023 at 01:28:25 UTC, Lingo Chen wrote: https://v8.dev/blog/wasm-gc-porting wasmgc is shipping. any plan for porting? My understanding is that it requires emitting dedicated instructions for allocating

Re: Good News: Almost all druntime supported on arsd webassembly

2023-11-05 Thread Richard (Rikki) Andrew Cattermole via Digitalmars-d-announce
On 06/11/2023 5:18 AM, Sebastiaan Koppe wrote: I am not sure what a possible path to support should look like, aside from writing a complete fresh backend. I don't think it would be a whole new backend. The output is the LLVM IR essentially, so its just the glue code that would need to be

Re: Good News: Almost all druntime supported on arsd webassembly

2023-11-05 Thread Sebastiaan Koppe via Digitalmars-d-announce
On Sunday, 5 November 2023 at 01:28:25 UTC, Lingo Chen wrote: https://v8.dev/blog/wasm-gc-porting wasmgc is shipping. any plan for porting? My understanding is that it requires emitting dedicated instructions for allocating such objects, as well as dedicated instructions for accessing them.