(self, inst: Instruction)
| 611 | _frame_pointer_modify = re.compile(r"\s*stp\s+x29.*") |
| 612 | |
| 613 | def _get_reg(self, inst: Instruction) -> str: |
| 614 | _, rest = inst.text.split(inst.name) |
| 615 | reg, *_ = rest.split(",") |
| 616 | return reg.strip() |
| 617 | |
| 618 | def _small_const_1(self, inst: Instruction) -> tuple[str, Instruction | None]: |
| 619 | assert inst.kind is InstructionKind.SMALL_CONST_1 |
no test coverage detected