mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-02 07:32:52 +00:00
Oops. Forgot these.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45036 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ded2b0d0fb
commit
8ec861183b
@ -171,17 +171,19 @@ def XCHG64rm : RI<0x87, MRMSrcMem, (outs), (ins GR64:$src1, i64mem:$src2),
|
||||
let Defs = [EFLAGS] in {
|
||||
def BSF64rr : RI<0xBC, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
|
||||
"bsf{q}\t{$src, $dst|$dst, $src}",
|
||||
[(set GR64:$dst, (X86bsf GR64:$src))]>, TB;
|
||||
[(set GR64:$dst, (X86bsf GR64:$src)), (implicit EFLAGS)]>, TB;
|
||||
def BSF64rm : RI<0xBC, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
|
||||
"bsf{q}\t{$src, $dst|$dst, $src}",
|
||||
[(set GR64:$dst, (X86bsf (loadi64 addr:$src)))]>, TB;
|
||||
[(set GR64:$dst, (X86bsf (loadi64 addr:$src))),
|
||||
(implicit EFLAGS)]>, TB;
|
||||
|
||||
def BSR64rr : RI<0xBD, AddRegFrm, (outs GR64:$dst), (ins GR64:$src),
|
||||
"bsr{q}\t{$src, $dst|$dst, $src}",
|
||||
[(set GR64:$dst, (X86bsr GR64:$src))]>, TB;
|
||||
[(set GR64:$dst, (X86bsr GR64:$src)), (implicit EFLAGS)]>, TB;
|
||||
def BSR64rm : RI<0xBD, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
|
||||
"bsr{q}\t{$src, $dst|$dst, $src}",
|
||||
[(set GR64:$dst, (X86bsr (loadi64 addr:$src)))]>, TB;
|
||||
[(set GR64:$dst, (X86bsr (loadi64 addr:$src))),
|
||||
(implicit EFLAGS)]>, TB;
|
||||
} // Defs = [EFLAGS]
|
||||
|
||||
// Repeat string ops
|
||||
|
Loading…
Reference in New Issue
Block a user