blob: 38b40a73342582d717c67bbd1af9279e30ba5be9 [file] [log] [blame]
Evan Cheng6e595b92006-02-21 19:13:53 +00001//====- 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
Evan Chenge6448442006-03-20 06:04:52 +000016// Some 'special' instructions
17def IMPLICIT_DEF_VR64 : I<0, Pseudo, (ops VR64:$dst),
18 "#IMPLICIT_DEF $dst",
19 [(set VR64:$dst, (v8i8 (undef)))]>,
20 Requires<[HasMMX]>;
21
22def : Pat<(v4i16 (undef)), (IMPLICIT_DEF_VR64)>, Requires<[HasMMX]>;
23def : Pat<(v2i32 (undef)), (IMPLICIT_DEF_VR64)>, Requires<[HasMMX]>;
24
Evan Cheng6e595b92006-02-21 19:13:53 +000025// Move Instructions
26def MOVD64rr : I<0x6E, MRMSrcReg, (ops VR64:$dst, R32:$src),
Evan Chengd5e905d2006-03-21 23:01:21 +000027 "movd {$src, $dst|$dst, $src}",
28 [(set VR64:$dst,
29 (v2i32 (scalar_to_vector R32:$src)))]>, TB,
Evan Cheng6e595b92006-02-21 19:13:53 +000030 Requires<[HasMMX]>;
31def MOVD64rm : I<0x6E, MRMSrcMem, (ops VR64:$dst, i32mem:$src),
32 "movd {$src, $dst|$dst, $src}", []>, TB,
33 Requires<[HasMMX]>;
34def MOVD64mr : I<0x7E, MRMDestMem, (ops i32mem:$dst, VR64:$src),
35 "movd {$src, $dst|$dst, $src}", []>, TB,
36 Requires<[HasMMX]>;
37
Evan Cheng6e595b92006-02-21 19:13:53 +000038def MOVQ64rr : I<0x6F, MRMSrcReg, (ops VR64:$dst, VR64:$src),
39 "movq {$src, $dst|$dst, $src}", []>, TB,
40 Requires<[HasMMX]>;
41def MOVQ64rm : I<0x6F, MRMSrcMem, (ops VR64:$dst, i64mem:$src),
42 "movq {$src, $dst|$dst, $src}", []>, TB,
43 Requires<[HasMMX]>;
44def MOVQ64mr : I<0x7F, MRMDestMem, (ops i64mem:$dst, VR64:$src),
45 "movq {$src, $dst|$dst, $src}", []>, TB,
46 Requires<[HasMMX]>;