One more round of reorg so sabre doesn't freak out. :-)
[oota-llvm.git] / lib / Target / X86 / X86InstrMMX.td
1 //====- X86InstrMMX.td - Describe the X86 Instruction Set -------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the Evan Cheng and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the X86 MMX instruction set, defining the instructions,
11 // and properties of the instructions which are needed for code generation,
12 // machine code emission, and analysis.
13 //
14 //===----------------------------------------------------------------------===//
15
16 // Move Instructions
17 def MOVD64rr : I<0x6E, MRMSrcReg, (ops VR64:$dst, R32:$src),
18                  "movd {$src, $dst|$dst, $src}", []>, TB,
19                Requires<[HasMMX]>;
20 def MOVD64rm : I<0x6E, MRMSrcMem, (ops VR64:$dst, i32mem:$src),
21                  "movd {$src, $dst|$dst, $src}", []>, TB,
22                Requires<[HasMMX]>;
23 def MOVD64mr : I<0x7E, MRMDestMem, (ops i32mem:$dst, VR64:$src),
24                  "movd {$src, $dst|$dst, $src}", []>, TB,
25                Requires<[HasMMX]>;
26
27 def MOVQ64rr : I<0x6F, MRMSrcReg, (ops VR64:$dst, VR64:$src),
28                  "movq {$src, $dst|$dst, $src}", []>, TB,
29                Requires<[HasMMX]>;
30 def MOVQ64rm : I<0x6F, MRMSrcMem, (ops VR64:$dst, i64mem:$src),
31                  "movq {$src, $dst|$dst, $src}", []>, TB,
32                Requires<[HasMMX]>;
33 def MOVQ64mr : I<0x7F, MRMDestMem, (ops i64mem:$dst, VR64:$src),
34                  "movq {$src, $dst|$dst, $src}", []>, TB,
35                Requires<[HasMMX]>;