Files
Ayke van Laethem df6614340b wasm: improve malloc/free heap tracking
Using a slice requires a lot less in code size than a map. This is
visible when compiling a very small "hello world" style program.

Before tracking memory in malloc/free:  2873 bytes
With tracking using a map:              6551 bytes
With a slice instead of a map:          3532 bytes

Of course, most of this code size increase won't be visible with
https://github.com/tinygo-org/tinygo/pull/3142, but it's still a saving
of around 3kB in this minimal example.
2022-09-30 14:28:54 +02:00
..
2022-08-06 08:05:29 +02:00
2022-08-09 09:18:49 +02:00
2022-09-02 11:48:01 +02:00
2022-08-07 09:04:57 +02:00