mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
add 'rep stos[bwd]' instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11441 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -181,6 +181,13 @@ def REP_MOVSW : X86Inst<"rep movsw", 0xA5, RawFrm, NoArg>, REP, OpSize,
|
|||||||
def REP_MOVSD : X86Inst<"rep movsd", 0xA5, RawFrm, NoArg>, REP,
|
def REP_MOVSD : X86Inst<"rep movsd", 0xA5, RawFrm, NoArg>, REP,
|
||||||
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>;
|
Imp<[ECX,EDI,ESI], [ECX,EDI,ESI]>;
|
||||||
|
|
||||||
|
def REP_STOSB : X86Inst<"rep stosb", 0xAA, RawFrm, NoArg>, REP,
|
||||||
|
Imp<[ECX,EDI], [ECX,EDI]>;
|
||||||
|
def REP_STOSW : X86Inst<"rep stosw", 0xAB, RawFrm, NoArg>, REP, OpSize,
|
||||||
|
Imp<[ECX,EDI], [ECX,EDI]>;
|
||||||
|
def REP_STOSD : X86Inst<"rep stosd", 0xAB, RawFrm, NoArg>, REP,
|
||||||
|
Imp<[ECX,EDI], [ECX,EDI]>;
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
// Move Instructions...
|
// Move Instructions...
|
||||||
//
|
//
|
||||||
|
Reference in New Issue
Block a user