reprospect.test.sass.matchers.move32 module
- class reprospect.test.sass.matchers.move32.Move32Matcher(*, src: str | None = None, dst: str | None = None)View on GitHub
Bases:
InstructionMatcherMatch the move of a 32-bit source to a 32-bit destination.
It can be achieved using one of the following instructions:
MOV <dst>, <src> IMAD.MOV.U32 <dst>, RZ, RZ, <src>
Note
It is not decorated with
dataclasses.dataclass()because of https://github.com/mypyc/mypyc/issues/1061.- match(inst: Instruction | str) InstructionMatch | NoneView on GitHub