Ted Mielczarek

Results 181 comments of Ted Mielczarek

It's probably a bit out-of-date at this point, but a while ago I tried switching my `disasm` crate from `capstone` to `yaxpeax-arch`. It was pretty straightforward, feel free to use...

Is that top frame JIT code? We've struggled with walking out of JIT frames since Spidermonkey grew a JIT. I'm not sure if anything has improved on that front.

I think this matches Breakpad's behavior. Only Windows has a truly native concept of `debug_file` (path to the PDB). We could use the [`locate-dwarf` crate](https://docs.rs/locate-dwarf/latest/locate_dwarf/) for this purpose (I wrote...

I'm not aware that anyone has tried it. (unless maybe @Gankra did and I forgot?) The vast majority of what these crates do is just parsing the input minidump from...

> The name reflects the fact that CAB compression is so old and apparently out of favor that I thought it was some adhoc hack mozilla added For the record:...

The only real difference I see here is that Visual Studio has symbols loaded for these modules whereas the rust minidump debugger does not. When symbols are not available it's...

> However encoding-rs unconditionally depends on this crate, which means it can't be built on ppc64. I don't think this has ever been true, has it? encoding-rs hides it behind...

I think it'd be great to figure out a way to integrate any work here with cargo's `-Z timings` feature. I tried that out on a crate of mine and...

Unfortunately there's something wrong with that code as per #9. I spent some time looking into it but couldn't figure it out. If you've got any ideas I'm all ears....

Hi there! This is just a simple demo app, but it's somewhat popular for demonstrating the Gamepad API, so I would certainly take PRs for improvements that don't break any...