diff options
author | Sean Callanan <scallanan@apple.com> | 2009-09-16 21:50:07 +0000 |
---|---|---|
committer | Sean Callanan <scallanan@apple.com> | 2009-09-16 21:50:07 +0000 |
commit | 7e6d727c9b76c0f9421546400980565d61e43d5c (patch) | |
tree | e2ab32540d9721e5c68a0d5bb479df3d313b9963 | |
parent | d2125a03af8cd98a67e1fb97e8c44979c1138796 (diff) |
Added the LOOP family of instructions to the Intel
instruction tables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82083 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/X86InstrInfo.td | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Target/X86/X86InstrInfo.td b/lib/Target/X86/X86InstrInfo.td index 88dbf67ee6..570c54d96d 100644 --- a/lib/Target/X86/X86InstrInfo.td +++ b/lib/Target/X86/X86InstrInfo.td @@ -660,6 +660,12 @@ def JNO : IBr<0x81, (ins brtarget:$dst), "jno\t$dst", [(X86brcond bb:$dst, X86_COND_NO, EFLAGS)]>, TB; } // Uses = [EFLAGS] +// Loop instructions + +def LOOP : I<0xE2, RawFrm, (ins brtarget8:$dst), (outs), "loop\t$dst", []>; +def LOOPE : I<0xE1, RawFrm, (ins brtarget8:$dst), (outs), "loope\t$dst", []>; +def LOOPNE : I<0xE0, RawFrm, (ins brtarget8:$dst), (outs), "loopne\t$dst", []>; + //===----------------------------------------------------------------------===// // Call Instructions... // |