CensoredUsername

Results 214 comments of CensoredUsername

Heya, that looks pretty good. I see your issue with `MOVDIR64B`, right now the formatting logic doesn't have a way to specify a 64-byte memory address (and for the matter...

I've merged this into dev manually. I also wanted to try get movdir64b in there but turns out that next to the 512-bit memory operand, it has another constraint no...

The correct way to do that is indeed to do `mov reg, QWORD imm`. `movabs` isn't actually an opcode in x64. For some reason at&t style uses it, but intel/nasm...

I understand that this would be clearer. Unfortunately with how the x64 backend works right now this would entail a pretty big rewrite of the parser/compiler. It is built towards...

Hi! This has been mostly a just me shop for a while, and as such I've never really found much of a reason for doing this. Rustfmt also isn't perfect...

Had to fixup a conflict but it's merged! Github is sadly a bit confused.

It's plugin internal, so you can just kill it.

Fixed in v3.0.0.

Hi! I'm thinking about if this is reasonably implementable in dynasm-rs. Dynasm-rs does most of its work at compile time. Basically anything but non-constant immediates, dynamic register support and relocations...

Damn, I hadn't even thought about that register bits also might need to end up in the REX prefix. That makes it even messier. So this'd require possibly dynamic rewriting...