Eli Rosenthal

Results 50 comments of Eli Rosenthal

Thanks for reaching out, y'all! I haven't checked in on new crossbeam features in a while and I think the work you're doing looks awesome. I think joshlf@ gave a...

Oh nice, thanks! This looks like an operator precedence issue. In Awk, `6 + 5 "test"` gets parsed at `(6 + 5) "test"` but frawk is doing `6 + (5...

Quick update here, I should have a fix for the division issue soon, but I think I'll have to do a larger rewrite of the parser to fix the first...

It is not clear to me given the docs for `offset` and `wrapping_offset` that our uses of it are incorrect. Except in cases where the caller passes an invalid pointer...

+1 I was thinking that it doesn't even have to be a cycle count. The slab allocator could itself implement this trait. (Or a small struct containing allocation statistics). It...

That's a useful check! I just re-ran the frawk test suite on 1.72 (nightly) and it passed on macos. A couple guesses: * Maybe windows has types with a higher...

Something odd is definitely going on here. I was able to repro `!map.is_null()` after b356074, but 3017ce1 doesn't fix it, and I still get the "misaligned pointer dereference" failure on...

Just a quick update: I believe I am misaligning stack slots in cranelift. I need to add more padding there. It's definitely _a_ bug; not sure if it's the bug...

Those results look very promising! I'm curious though, is there a standard way to deploy PGO-optimized binaries ? e.g. suppose we had a representative invocation we can use for the...

Gotcha. I'll try and keep this in mind next time I do benchmarking for frawk. I'm not seeing a good way to get build.rs to work without requiring users to...