Ömer Sinan Ağacan
Ömer Sinan Ağacan
This is still a problem. Loading a 1G eventlog file is impossible even with 32G RAM. I think we need two things: - Externally sort GHC-generated .eventlog files. Currently for...
I started working on a fix. I currently have an external sort library and another library for filesystem-backed, cached arrays. I'll report in a few days probably.
Currently blocked on https://github.com/haskell/ghc-events/issues/42.
It looks like analyzer can't handle the conditional import properly, it thinks `int64_native` and `int64_emulated` are available at the same time. Does anyone know how to work around this issue?...
> Heck, we could wait and make the native Int64 be an extension type, for zero memory overhead. (And if we inline the members, also a good chance of very...
It looks splitting the class into an abstract + concrete classes doesn't work as well as we thought it would. In this program: ```dart import 'package:fixnum/fixnum.dart'; List fixed64s = [];...
dart2wasm issue reported above is fixed in https://dart-review.googlesource.com/c/sdk/+/331102. While investigating this we also discovered some missed optimizations in the TFA, which is reported as https://github.com/dart-lang/sdk/issues/53800. > What kind of code...
@rakudrama I checked dart2js unoptimized outputs. There's the diff of before vs. after: dart2js changes in protobuf to_binary after this PR ```diff --- out_before/to_binary.js 2023-10-19 11:24:53.540545406 +0200 +++ out_after/to_binary.js 2023-10-19...
> One concern is that x is Int64 compiles differently - look for _promote and check it uses instanceof in both. Before: ```js Int64__promote(value) { if (value instanceof A.Int64) return...
Blocked on https://github.com/dart-lang/sdk/issues/53811.