Jia Liu | 31d157a | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 1 | //===-- X86InstrSystem.td - System Instructions ------------*- tablegen -*-===// |
| 2 | // |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Jia Liu | 31d157a | 2012-02-18 12:03:15 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file describes the X86 instructions that are generally used in |
| 11 | // privileged modes. These are not typically used by the compiler, but are |
| 12 | // supported for the assembler and disassembler. |
| 13 | // |
| 14 | //===----------------------------------------------------------------------===// |
| 15 | |
| 16 | let Defs = [RAX, RDX] in |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 17 | def RDTSC : I<0x31, RawFrm, (outs), (ins), "rdtsc", [(X86rdtsc)], IIC_RDTSC>, |
| 18 | TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 19 | |
| 20 | let Defs = [RAX, RCX, RDX] in |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 21 | def RDTSCP : I<0x01, MRM_F9, (outs), (ins), "rdtscp", []>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 22 | |
| 23 | // CPU flow control instructions |
| 24 | |
Kevin Enderby | 529b1a4 | 2010-10-27 20:46:49 +0000 | [diff] [blame] | 25 | let isTerminator = 1, isBarrier = 1, hasCtrlDep = 1 in { |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 26 | def TRAP : I<0x0B, RawFrm, (outs), (ins), "ud2", [(trap)]>, TB; |
Kevin Enderby | 529b1a4 | 2010-10-27 20:46:49 +0000 | [diff] [blame] | 27 | def UD2B : I<0xB9, RawFrm, (outs), (ins), "ud2b", []>, TB; |
| 28 | } |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 29 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 30 | def HLT : I<0xF4, RawFrm, (outs), (ins), "hlt", [], IIC_HLT>; |
| 31 | def RSM : I<0xAA, RawFrm, (outs), (ins), "rsm", [], IIC_RSM>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 32 | |
| 33 | // Interrupt and SysCall Instructions. |
| 34 | let Uses = [EFLAGS] in |
| 35 | def INTO : I<0xce, RawFrm, (outs), (ins), "into", []>; |
| 36 | def INT3 : I<0xcc, RawFrm, (outs), (ins), "int3", |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 37 | [(int_x86_int (i8 3))], IIC_INT3>; |
Chris Lattner | 15f8951 | 2011-04-09 19:41:05 +0000 | [diff] [blame] | 38 | |
| 39 | // The long form of "int $3" turns into int3 as a size optimization. |
| 40 | // FIXME: This doesn't work because InstAlias can't match immediate constants. |
| 41 | //def : InstAlias<"int\t$3", (INT3)>; |
| 42 | |
| 43 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 44 | def INT : Ii8<0xcd, RawFrm, (outs), (ins i8imm:$trap), "int\t$trap", |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 45 | [(int_x86_int imm:$trap)], IIC_INT>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 46 | |
Chris Lattner | 15f8951 | 2011-04-09 19:41:05 +0000 | [diff] [blame] | 47 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 48 | def SYSCALL : I<0x05, RawFrm, (outs), (ins), "syscall", [], IIC_SYSCALL>, TB; |
| 49 | def SYSRET : I<0x07, RawFrm, (outs), (ins), "sysret{l}", [], IIC_SYSCALL>, TB; |
| 50 | def SYSRET64 :RI<0x07, RawFrm, (outs), (ins), "sysret{q}", [], IIC_SYSCALL>, TB, |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 51 | Requires<[In64BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 52 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 53 | def SYSENTER : I<0x34, RawFrm, (outs), (ins), "sysenter", [], |
| 54 | IIC_SYS_ENTER_EXIT>, TB; |
| 55 | |
| 56 | def SYSEXIT : I<0x35, RawFrm, (outs), (ins), "sysexit{l}", [], |
| 57 | IIC_SYS_ENTER_EXIT>, TB; |
Bill Wendling | e060eb8 | 2012-03-10 07:37:27 +0000 | [diff] [blame] | 58 | def SYSEXIT64 :RI<0x35, RawFrm, (outs), (ins), "sysexit{q}", []>, TB, |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 59 | Requires<[In64BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 60 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 61 | def IRET16 : I<0xcf, RawFrm, (outs), (ins), "iret{w}", [], IIC_IRET>, OpSize; |
| 62 | def IRET32 : I<0xcf, RawFrm, (outs), (ins), "iret{l|d}", [], IIC_IRET>; |
| 63 | def IRET64 : RI<0xcf, RawFrm, (outs), (ins), "iretq", [], IIC_IRET>, |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 64 | Requires<[In64BitMode]>; |
| 65 | |
| 66 | |
| 67 | //===----------------------------------------------------------------------===// |
| 68 | // Input/Output Instructions. |
| 69 | // |
| 70 | let Defs = [AL], Uses = [DX] in |
| 71 | def IN8rr : I<0xEC, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 72 | "in{b}\t{%dx, %al|AL, DX}", [], IIC_IN_RR>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 73 | let Defs = [AX], Uses = [DX] in |
| 74 | def IN16rr : I<0xED, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 75 | "in{w}\t{%dx, %ax|AX, DX}", [], IIC_IN_RR>, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 76 | let Defs = [EAX], Uses = [DX] in |
| 77 | def IN32rr : I<0xED, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 78 | "in{l}\t{%dx, %eax|EAX, DX}", [], IIC_IN_RR>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 79 | |
| 80 | let Defs = [AL] in |
| 81 | def IN8ri : Ii8<0xE4, RawFrm, (outs), (ins i8imm:$port), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 82 | "in{b}\t{$port, %al|AL, $port}", [], IIC_IN_RI>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 83 | let Defs = [AX] in |
| 84 | def IN16ri : Ii8<0xE5, RawFrm, (outs), (ins i8imm:$port), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 85 | "in{w}\t{$port, %ax|AX, $port}", [], IIC_IN_RI>, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 86 | let Defs = [EAX] in |
| 87 | def IN32ri : Ii8<0xE5, RawFrm, (outs), (ins i8imm:$port), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 88 | "in{l}\t{$port, %eax|EAX, $port}", [], IIC_IN_RI>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 89 | |
| 90 | let Uses = [DX, AL] in |
| 91 | def OUT8rr : I<0xEE, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 92 | "out{b}\t{%al, %dx|DX, AL}", [], IIC_OUT_RR>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 93 | let Uses = [DX, AX] in |
| 94 | def OUT16rr : I<0xEF, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 95 | "out{w}\t{%ax, %dx|DX, AX}", [], IIC_OUT_RR>, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 96 | let Uses = [DX, EAX] in |
| 97 | def OUT32rr : I<0xEF, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 98 | "out{l}\t{%eax, %dx|DX, EAX}", [], IIC_OUT_RR>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 99 | |
| 100 | let Uses = [AL] in |
| 101 | def OUT8ir : Ii8<0xE6, RawFrm, (outs), (ins i8imm:$port), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 102 | "out{b}\t{%al, $port|$port, AL}", [], IIC_OUT_IR>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 103 | let Uses = [AX] in |
| 104 | def OUT16ir : Ii8<0xE7, RawFrm, (outs), (ins i8imm:$port), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 105 | "out{w}\t{%ax, $port|$port, AX}", [], IIC_OUT_IR>, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 106 | let Uses = [EAX] in |
| 107 | def OUT32ir : Ii8<0xE7, RawFrm, (outs), (ins i8imm:$port), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 108 | "out{l}\t{%eax, $port|$port, EAX}", [], IIC_OUT_IR>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 109 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 110 | def IN8 : I<0x6C, RawFrm, (outs), (ins), "ins{b}", [], IIC_INS>; |
| 111 | def IN16 : I<0x6D, RawFrm, (outs), (ins), "ins{w}", [], IIC_INS>, OpSize; |
| 112 | def IN32 : I<0x6D, RawFrm, (outs), (ins), "ins{l}", [], IIC_INS>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 113 | |
| 114 | //===----------------------------------------------------------------------===// |
| 115 | // Moves to and from debug registers |
| 116 | |
| 117 | def MOV32rd : I<0x21, MRMDestReg, (outs GR32:$dst), (ins DEBUG_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 118 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_DR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 119 | def MOV64rd : I<0x21, MRMDestReg, (outs GR64:$dst), (ins DEBUG_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 120 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_DR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 121 | |
| 122 | def MOV32dr : I<0x23, MRMSrcReg, (outs DEBUG_REG:$dst), (ins GR32:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 123 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_DR_REG>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 124 | def MOV64dr : I<0x23, MRMSrcReg, (outs DEBUG_REG:$dst), (ins GR64:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 125 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_DR_REG>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 126 | |
| 127 | //===----------------------------------------------------------------------===// |
| 128 | // Moves to and from control registers |
| 129 | |
| 130 | def MOV32rc : I<0x20, MRMDestReg, (outs GR32:$dst), (ins CONTROL_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 131 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_CR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 132 | def MOV64rc : I<0x20, MRMDestReg, (outs GR64:$dst), (ins CONTROL_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 133 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_CR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 134 | |
| 135 | def MOV32cr : I<0x22, MRMSrcReg, (outs CONTROL_REG:$dst), (ins GR32:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 136 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_CR_REG>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 137 | def MOV64cr : I<0x22, MRMSrcReg, (outs CONTROL_REG:$dst), (ins GR64:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 138 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_CR_REG>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 139 | |
| 140 | //===----------------------------------------------------------------------===// |
| 141 | // Segment override instruction prefixes |
| 142 | |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 143 | def CS_PREFIX : I<0x2E, RawFrm, (outs), (ins), "cs", []>; |
| 144 | def SS_PREFIX : I<0x36, RawFrm, (outs), (ins), "ss", []>; |
| 145 | def DS_PREFIX : I<0x3E, RawFrm, (outs), (ins), "ds", []>; |
| 146 | def ES_PREFIX : I<0x26, RawFrm, (outs), (ins), "es", []>; |
| 147 | def FS_PREFIX : I<0x64, RawFrm, (outs), (ins), "fs", []>; |
| 148 | def GS_PREFIX : I<0x65, RawFrm, (outs), (ins), "gs", []>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 149 | |
| 150 | |
| 151 | //===----------------------------------------------------------------------===// |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 152 | // Moves to and from segment registers. |
| 153 | // |
| 154 | |
| 155 | def MOV16rs : I<0x8C, MRMDestReg, (outs GR16:$dst), (ins SEGMENT_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 156 | "mov{w}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_SR>, OpSize; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 157 | def MOV32rs : I<0x8C, MRMDestReg, (outs GR32:$dst), (ins SEGMENT_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 158 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_SR>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 159 | def MOV64rs : RI<0x8C, MRMDestReg, (outs GR64:$dst), (ins SEGMENT_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 160 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_REG_SR>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 161 | |
| 162 | def MOV16ms : I<0x8C, MRMDestMem, (outs i16mem:$dst), (ins SEGMENT_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 163 | "mov{w}\t{$src, $dst|$dst, $src}", [], IIC_MOV_MEM_SR>, OpSize; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 164 | def MOV32ms : I<0x8C, MRMDestMem, (outs i32mem:$dst), (ins SEGMENT_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 165 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_MEM_SR>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 166 | def MOV64ms : RI<0x8C, MRMDestMem, (outs i64mem:$dst), (ins SEGMENT_REG:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 167 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_MEM_SR>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 168 | |
| 169 | def MOV16sr : I<0x8E, MRMSrcReg, (outs SEGMENT_REG:$dst), (ins GR16:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 170 | "mov{w}\t{$src, $dst|$dst, $src}", [], IIC_MOV_SR_REG>, OpSize; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 171 | def MOV32sr : I<0x8E, MRMSrcReg, (outs SEGMENT_REG:$dst), (ins GR32:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 172 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_SR_REG>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 173 | def MOV64sr : RI<0x8E, MRMSrcReg, (outs SEGMENT_REG:$dst), (ins GR64:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 174 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_SR_REG>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 175 | |
| 176 | def MOV16sm : I<0x8E, MRMSrcMem, (outs SEGMENT_REG:$dst), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 177 | "mov{w}\t{$src, $dst|$dst, $src}", [], IIC_MOV_SR_MEM>, OpSize; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 178 | def MOV32sm : I<0x8E, MRMSrcMem, (outs SEGMENT_REG:$dst), (ins i32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 179 | "mov{l}\t{$src, $dst|$dst, $src}", [], IIC_MOV_SR_MEM>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 180 | def MOV64sm : RI<0x8E, MRMSrcMem, (outs SEGMENT_REG:$dst), (ins i64mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 181 | "mov{q}\t{$src, $dst|$dst, $src}", [], IIC_MOV_SR_MEM>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 182 | |
| 183 | //===----------------------------------------------------------------------===// |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 184 | // Segmentation support instructions. |
| 185 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 186 | def SWAPGS : I<0x01, MRM_F8, (outs), (ins), "swapgs", [], IIC_SWAPGS>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 187 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 188 | def LAR16rm : I<0x02, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 189 | "lar{w}\t{$src, $dst|$dst, $src}", [], IIC_LAR_RM>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 190 | def LAR16rr : I<0x02, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 191 | "lar{w}\t{$src, $dst|$dst, $src}", [], IIC_LAR_RR>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 192 | |
| 193 | // i16mem operand in LAR32rm and GR32 operand in LAR32rr is not a typo. |
| 194 | def LAR32rm : I<0x02, MRMSrcMem, (outs GR32:$dst), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 195 | "lar{l}\t{$src, $dst|$dst, $src}", [], IIC_LAR_RM>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 196 | def LAR32rr : I<0x02, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 197 | "lar{l}\t{$src, $dst|$dst, $src}", [], IIC_LAR_RR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 198 | // i16mem operand in LAR64rm and GR32 operand in LAR32rr is not a typo. |
| 199 | def LAR64rm : RI<0x02, MRMSrcMem, (outs GR64:$dst), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 200 | "lar{q}\t{$src, $dst|$dst, $src}", [], IIC_LAR_RM>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 201 | def LAR64rr : RI<0x02, MRMSrcReg, (outs GR64:$dst), (ins GR32:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 202 | "lar{q}\t{$src, $dst|$dst, $src}", [], IIC_LAR_RR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 203 | |
| 204 | def LSL16rm : I<0x03, MRMSrcMem, (outs GR16:$dst), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 205 | "lsl{w}\t{$src, $dst|$dst, $src}", [], IIC_LSL_RM>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 206 | def LSL16rr : I<0x03, MRMSrcReg, (outs GR16:$dst), (ins GR16:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 207 | "lsl{w}\t{$src, $dst|$dst, $src}", [], IIC_LSL_RR>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 208 | def LSL32rm : I<0x03, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 209 | "lsl{l}\t{$src, $dst|$dst, $src}", [], IIC_LSL_RM>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 210 | def LSL32rr : I<0x03, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 211 | "lsl{l}\t{$src, $dst|$dst, $src}", [], IIC_LSL_RR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 212 | def LSL64rm : RI<0x03, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 213 | "lsl{q}\t{$src, $dst|$dst, $src}", [], IIC_LSL_RM>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 214 | def LSL64rr : RI<0x03, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 215 | "lsl{q}\t{$src, $dst|$dst, $src}", [], IIC_LSL_RR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 216 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 217 | def INVLPG : I<0x01, MRM7m, (outs), (ins i8mem:$addr), "invlpg\t$addr", |
| 218 | [], IIC_INVLPG>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 219 | |
Eli Friedman | ac39bd5 | 2011-03-04 00:10:17 +0000 | [diff] [blame] | 220 | def STR16r : I<0x00, MRM1r, (outs GR16:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 221 | "str{w}\t$dst", [], IIC_STR>, TB, OpSize; |
Eli Friedman | ac39bd5 | 2011-03-04 00:10:17 +0000 | [diff] [blame] | 222 | def STR32r : I<0x00, MRM1r, (outs GR32:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 223 | "str{l}\t$dst", [], IIC_STR>, TB; |
Eli Friedman | ac39bd5 | 2011-03-04 00:10:17 +0000 | [diff] [blame] | 224 | def STR64r : RI<0x00, MRM1r, (outs GR64:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 225 | "str{q}\t$dst", [], IIC_STR>, TB; |
Eli Friedman | ac39bd5 | 2011-03-04 00:10:17 +0000 | [diff] [blame] | 226 | def STRm : I<0x00, MRM1m, (outs i16mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 227 | "str{w}\t$dst", [], IIC_STR>, TB; |
Eli Friedman | ac39bd5 | 2011-03-04 00:10:17 +0000 | [diff] [blame] | 228 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 229 | def LTRr : I<0x00, MRM3r, (outs), (ins GR16:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 230 | "ltr{w}\t$src", [], IIC_LTR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 231 | def LTRm : I<0x00, MRM3m, (outs), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 232 | "ltr{w}\t$src", [], IIC_LTR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 233 | |
| 234 | def PUSHCS16 : I<0x0E, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 235 | "push{w}\t{%cs|CS}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>, |
| 236 | OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 237 | def PUSHCS32 : I<0x0E, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 238 | "push{l}\t{%cs|CS}", [], IIC_PUSH_CS>, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 239 | def PUSHSS16 : I<0x16, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 240 | "push{w}\t{%ss|SS}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>, |
| 241 | OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 242 | def PUSHSS32 : I<0x16, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 243 | "push{l}\t{%ss|SS}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 244 | def PUSHDS16 : I<0x1E, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 245 | "push{w}\t{%ds|DS}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>, |
| 246 | OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 247 | def PUSHDS32 : I<0x1E, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 248 | "push{l}\t{%ds|DS}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 249 | def PUSHES16 : I<0x06, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 250 | "push{w}\t{%es|ES}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>, |
| 251 | OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 252 | def PUSHES32 : I<0x06, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 253 | "push{l}\t{%es|ES}", [], IIC_PUSH_SR>, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 254 | |
| 255 | def PUSHFS16 : I<0xa0, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 256 | "push{w}\t{%fs|FS}", [], IIC_PUSH_SR>, OpSize, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 257 | def PUSHFS32 : I<0xa0, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 258 | "push{l}\t{%fs|FS}", [], IIC_PUSH_SR>, TB, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 259 | def PUSHGS16 : I<0xa8, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 260 | "push{w}\t{%gs|GS}", [], IIC_PUSH_SR>, OpSize, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 261 | def PUSHGS32 : I<0xa8, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 262 | "push{l}\t{%gs|GS}", [], IIC_PUSH_SR>, TB, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 263 | |
| 264 | def PUSHFS64 : I<0xa0, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 265 | "push{q}\t{%fs|FS}", [], IIC_PUSH_SR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 266 | def PUSHGS64 : I<0xa8, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 267 | "push{q}\t{%gs|GS}", [], IIC_PUSH_SR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 268 | |
| 269 | // No "pop cs" instruction. |
| 270 | def POPSS16 : I<0x17, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 271 | "pop{w}\t{%ss|SS}", [], IIC_POP_SR_SS>, |
| 272 | OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 273 | def POPSS32 : I<0x17, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 274 | "pop{l}\t{%ss|SS}", [], IIC_POP_SR_SS>, |
| 275 | Requires<[In32BitMode]>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 276 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 277 | def POPDS16 : I<0x1F, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 278 | "pop{w}\t{%ds|DS}", [], IIC_POP_SR>, |
| 279 | OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 280 | def POPDS32 : I<0x1F, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 281 | "pop{l}\t{%ds|DS}", [], IIC_POP_SR>, |
| 282 | Requires<[In32BitMode]>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 284 | def POPES16 : I<0x07, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 285 | "pop{w}\t{%es|ES}", [], IIC_POP_SR>, |
| 286 | OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 287 | def POPES32 : I<0x07, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 288 | "pop{l}\t{%es|ES}", [], IIC_POP_SR>, |
| 289 | Requires<[In32BitMode]>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 290 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 291 | def POPFS16 : I<0xa1, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 292 | "pop{w}\t{%fs|FS}", [], IIC_POP_SR>, OpSize, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 293 | def POPFS32 : I<0xa1, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 294 | "pop{l}\t{%fs|FS}", [], IIC_POP_SR>, TB, Requires<[In32BitMode]>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 295 | def POPFS64 : I<0xa1, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 296 | "pop{q}\t{%fs|FS}", [], IIC_POP_SR>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 297 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 298 | def POPGS16 : I<0xa9, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 299 | "pop{w}\t{%gs|GS}", [], IIC_POP_SR>, OpSize, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 300 | def POPGS32 : I<0xa9, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 301 | "pop{l}\t{%gs|GS}", [], IIC_POP_SR>, TB, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 302 | def POPGS64 : I<0xa9, RawFrm, (outs), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 303 | "pop{q}\t{%gs|GS}", [], IIC_POP_SR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 304 | |
| 305 | |
| 306 | def LDS16rm : I<0xc5, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 307 | "lds{w}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 308 | def LDS32rm : I<0xc5, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 309 | "lds{l}\t{$src, $dst|$dst, $src}", [], IIC_LXS>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 310 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 311 | def LSS16rm : I<0xb2, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 312 | "lss{w}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 313 | def LSS32rm : I<0xb2, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 314 | "lss{l}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 315 | def LSS64rm : RI<0xb2, MRMSrcMem, (outs GR64:$dst), (ins opaque80mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 316 | "lss{q}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 317 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 318 | def LES16rm : I<0xc4, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 319 | "les{w}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 320 | def LES32rm : I<0xc4, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 321 | "les{l}\t{$src, $dst|$dst, $src}", [], IIC_LXS>; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 322 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 323 | def LFS16rm : I<0xb4, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 324 | "lfs{w}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 325 | def LFS32rm : I<0xb4, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 326 | "lfs{l}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 327 | def LFS64rm : RI<0xb4, MRMSrcMem, (outs GR64:$dst), (ins opaque80mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 328 | "lfs{q}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 329 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 330 | def LGS16rm : I<0xb5, MRMSrcMem, (outs GR16:$dst), (ins opaque32mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 331 | "lgs{w}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 332 | def LGS32rm : I<0xb5, MRMSrcMem, (outs GR32:$dst), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 333 | "lgs{l}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB; |
Chris Lattner | 87be16a | 2010-10-05 06:04:14 +0000 | [diff] [blame] | 334 | |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 335 | def LGS64rm : RI<0xb5, MRMSrcMem, (outs GR64:$dst), (ins opaque80mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 336 | "lgs{q}\t{$src, $dst|$dst, $src}", [], IIC_LXS>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 337 | |
| 338 | |
| 339 | def VERRr : I<0x00, MRM4r, (outs), (ins GR16:$seg), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 340 | "verr\t$seg", [], IIC_VERR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 341 | def VERRm : I<0x00, MRM4m, (outs), (ins i16mem:$seg), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 342 | "verr\t$seg", [], IIC_VERR>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 343 | def VERWr : I<0x00, MRM5r, (outs), (ins GR16:$seg), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 344 | "verw\t$seg", [], IIC_VERW_MEM>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 345 | def VERWm : I<0x00, MRM5m, (outs), (ins i16mem:$seg), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 346 | "verw\t$seg", [], IIC_VERW_REG>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 347 | |
| 348 | //===----------------------------------------------------------------------===// |
| 349 | // Descriptor-table support instructions |
| 350 | |
Kevin Enderby | 87f4a1a | 2010-10-19 00:01:44 +0000 | [diff] [blame] | 351 | def SGDT16m : I<0x01, MRM0m, (outs opaque48mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 352 | "sgdtw\t$dst", [], IIC_SGDT>, TB, OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 353 | def SGDTm : I<0x01, MRM0m, (outs opaque48mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 354 | "sgdt\t$dst", [], IIC_SGDT>, TB; |
Kevin Enderby | 87f4a1a | 2010-10-19 00:01:44 +0000 | [diff] [blame] | 355 | def SIDT16m : I<0x01, MRM1m, (outs opaque48mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 356 | "sidtw\t$dst", [], IIC_SIDT>, TB, OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 357 | def SIDTm : I<0x01, MRM1m, (outs opaque48mem:$dst), (ins), |
| 358 | "sidt\t$dst", []>, TB; |
| 359 | def SLDT16r : I<0x00, MRM0r, (outs GR16:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 360 | "sldt{w}\t$dst", [], IIC_SLDT>, TB, OpSize; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 361 | def SLDT16m : I<0x00, MRM0m, (outs i16mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 362 | "sldt{w}\t$dst", [], IIC_SLDT>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 363 | def SLDT32r : I<0x00, MRM0r, (outs GR32:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 364 | "sldt{l}\t$dst", [], IIC_SLDT>, TB; |
Chris Lattner | 010496c | 2010-10-05 06:22:35 +0000 | [diff] [blame] | 365 | |
| 366 | // LLDT is not interpreted specially in 64-bit mode because there is no sign |
| 367 | // extension. |
| 368 | def SLDT64r : RI<0x00, MRM0r, (outs GR64:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 369 | "sldt{q}\t$dst", [], IIC_SLDT>, TB; |
Chris Lattner | 010496c | 2010-10-05 06:22:35 +0000 | [diff] [blame] | 370 | def SLDT64m : RI<0x00, MRM0m, (outs i16mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 371 | "sldt{q}\t$dst", [], IIC_SLDT>, TB; |
Chris Lattner | 010496c | 2010-10-05 06:22:35 +0000 | [diff] [blame] | 372 | |
Kevin Enderby | 87f4a1a | 2010-10-19 00:01:44 +0000 | [diff] [blame] | 373 | def LGDT16m : I<0x01, MRM2m, (outs), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 374 | "lgdtw\t$src", [], IIC_LGDT>, TB, OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 375 | def LGDTm : I<0x01, MRM2m, (outs), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 376 | "lgdt\t$src", [], IIC_LGDT>, TB; |
Kevin Enderby | 87f4a1a | 2010-10-19 00:01:44 +0000 | [diff] [blame] | 377 | def LIDT16m : I<0x01, MRM3m, (outs), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 378 | "lidtw\t$src", [], IIC_LIDT>, TB, OpSize, Requires<[In32BitMode]>; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 379 | def LIDTm : I<0x01, MRM3m, (outs), (ins opaque48mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 380 | "lidt\t$src", [], IIC_LIDT>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 381 | def LLDT16r : I<0x00, MRM2r, (outs), (ins GR16:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 382 | "lldt{w}\t$src", [], IIC_LLDT_REG>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 383 | def LLDT16m : I<0x00, MRM2m, (outs), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 384 | "lldt{w}\t$src", [], IIC_LLDT_MEM>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 385 | |
| 386 | //===----------------------------------------------------------------------===// |
| 387 | // Specialized register support |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 388 | def WRMSR : I<0x30, RawFrm, (outs), (ins), "wrmsr", [], IIC_WRMSR>, TB; |
| 389 | def RDMSR : I<0x32, RawFrm, (outs), (ins), "rdmsr", [], IIC_RDMSR>, TB; |
| 390 | def RDPMC : I<0x33, RawFrm, (outs), (ins), "rdpmc", [], IIC_RDPMC>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 391 | |
| 392 | def SMSW16r : I<0x01, MRM4r, (outs GR16:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 393 | "smsw{w}\t$dst", [], IIC_SMSW>, OpSize, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 394 | def SMSW32r : I<0x01, MRM4r, (outs GR32:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 395 | "smsw{l}\t$dst", [], IIC_SMSW>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 396 | // no m form encodable; use SMSW16m |
| 397 | def SMSW64r : RI<0x01, MRM4r, (outs GR64:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 398 | "smsw{q}\t$dst", [], IIC_SMSW>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 399 | |
| 400 | // For memory operands, there is only a 16-bit form |
| 401 | def SMSW16m : I<0x01, MRM4m, (outs i16mem:$dst), (ins), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 402 | "smsw{w}\t$dst", [], IIC_SMSW>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 403 | |
| 404 | def LMSW16r : I<0x01, MRM6r, (outs), (ins GR16:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 405 | "lmsw{w}\t$src", [], IIC_LMSW_MEM>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 406 | def LMSW16m : I<0x01, MRM6m, (outs), (ins i16mem:$src), |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 407 | "lmsw{w}\t$src", [], IIC_LMSW_REG>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 408 | |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 409 | def CPUID : I<0xA2, RawFrm, (outs), (ins), "cpuid", [], IIC_CPUID>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 410 | |
| 411 | //===----------------------------------------------------------------------===// |
| 412 | // Cache instructions |
Preston Gurd | 3d142e5 | 2012-05-04 19:26:37 +0000 | [diff] [blame^] | 413 | def INVD : I<0x08, RawFrm, (outs), (ins), "invd", [], IIC_INVD>, TB; |
| 414 | def WBINVD : I<0x09, RawFrm, (outs), (ins), "wbinvd", [], IIC_INVD>, TB; |
Chris Lattner | 434c7cb | 2010-10-05 05:32:15 +0000 | [diff] [blame] | 415 | |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 416 | //===----------------------------------------------------------------------===// |
| 417 | // XSAVE instructions |
Rafael Espindola | 87ca0e0 | 2011-02-22 00:35:18 +0000 | [diff] [blame] | 418 | let Defs = [RDX, RAX], Uses = [RCX] in |
| 419 | def XGETBV : I<0x01, MRM_D0, (outs), (ins), "xgetbv", []>, TB; |
| 420 | |
| 421 | let Uses = [RDX, RAX, RCX] in |
| 422 | def XSETBV : I<0x01, MRM_D1, (outs), (ins), "xsetbv", []>, TB; |
Joerg Sonnenberger | 4a8ac8d | 2011-04-04 16:58:13 +0000 | [diff] [blame] | 423 | |
Craig Topper | 1b526a9 | 2011-10-07 05:53:50 +0000 | [diff] [blame] | 424 | let Uses = [RDX, RAX] in { |
| 425 | def XSAVE : I<0xAE, MRM4m, (outs opaque512mem:$dst), (ins), |
| 426 | "xsave\t$dst", []>, TB; |
| 427 | def XSAVE64 : I<0xAE, MRM4m, (outs opaque512mem:$dst), (ins), |
| 428 | "xsaveq\t$dst", []>, TB, REX_W, Requires<[In64BitMode]>; |
| 429 | def XRSTOR : I<0xAE, MRM5m, (outs), (ins opaque512mem:$dst), |
| 430 | "xrstor\t$dst", []>, TB; |
| 431 | def XRSTOR64 : I<0xAE, MRM5m, (outs), (ins opaque512mem:$dst), |
| 432 | "xrstorq\t$dst", []>, TB, REX_W, Requires<[In64BitMode]>; |
| 433 | def XSAVEOPT : I<0xAE, MRM6m, (outs opaque512mem:$dst), (ins), |
| 434 | "xsaveopt\t$dst", []>, TB; |
| 435 | def XSAVEOPT64 : I<0xAE, MRM6m, (outs opaque512mem:$dst), (ins), |
| 436 | "xsaveoptq\t$dst", []>, TB, REX_W, Requires<[In64BitMode]>; |
| 437 | } |
| 438 | |
Joerg Sonnenberger | 4a8ac8d | 2011-04-04 16:58:13 +0000 | [diff] [blame] | 439 | //===----------------------------------------------------------------------===// |
| 440 | // VIA PadLock crypto instructions |
| 441 | let Defs = [RAX, RDI], Uses = [RDX, RDI] in |
| 442 | def XSTORE : I<0xc0, RawFrm, (outs), (ins), "xstore", []>, A7; |
| 443 | |
Joerg Sonnenberger | ca0ede7 | 2011-06-30 01:38:03 +0000 | [diff] [blame] | 444 | def : InstAlias<"xstorerng", (XSTORE)>; |
| 445 | |
Joerg Sonnenberger | 4a8ac8d | 2011-04-04 16:58:13 +0000 | [diff] [blame] | 446 | let Defs = [RSI, RDI], Uses = [RBX, RDX, RSI, RDI] in { |
| 447 | def XCRYPTECB : I<0xc8, RawFrm, (outs), (ins), "xcryptecb", []>, A7; |
| 448 | def XCRYPTCBC : I<0xd0, RawFrm, (outs), (ins), "xcryptcbc", []>, A7; |
| 449 | def XCRYPTCTR : I<0xd8, RawFrm, (outs), (ins), "xcryptctr", []>, A7; |
| 450 | def XCRYPTCFB : I<0xe0, RawFrm, (outs), (ins), "xcryptcfb", []>, A7; |
| 451 | def XCRYPTOFB : I<0xe8, RawFrm, (outs), (ins), "xcryptofb", []>, A7; |
| 452 | } |
| 453 | |
| 454 | let Defs = [RAX, RSI, RDI], Uses = [RAX, RSI, RDI] in { |
| 455 | def XSHA1 : I<0xc8, RawFrm, (outs), (ins), "xsha1", []>, A6; |
| 456 | def XSHA256 : I<0xd0, RawFrm, (outs), (ins), "xsha256", []>, A6; |
| 457 | } |
| 458 | let Defs = [RAX, RDX, RSI], Uses = [RAX, RSI] in |
| 459 | def MONTMUL : I<0xc0, RawFrm, (outs), (ins), "montmul", []>, A6; |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 460 | |
| 461 | //===----------------------------------------------------------------------===// |
| 462 | // FS/GS Base Instructions |
Craig Topper | e7b0550 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 463 | let Predicates = [HasFSGSBase, In64BitMode] in { |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 464 | def RDFSBASE : I<0xAE, MRM0r, (outs GR32:$dst), (ins), |
Craig Topper | e7b0550 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 465 | "rdfsbase{l}\t$dst", |
| 466 | [(set GR32:$dst, (int_x86_rdfsbase_32))]>, TB, XS; |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 467 | def RDFSBASE64 : RI<0xAE, MRM0r, (outs GR64:$dst), (ins), |
Craig Topper | e7b0550 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 468 | "rdfsbase{q}\t$dst", |
| 469 | [(set GR64:$dst, (int_x86_rdfsbase_64))]>, TB, XS; |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 470 | def RDGSBASE : I<0xAE, MRM1r, (outs GR32:$dst), (ins), |
Craig Topper | e7b0550 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 471 | "rdgsbase{l}\t$dst", |
| 472 | [(set GR32:$dst, (int_x86_rdgsbase_32))]>, TB, XS; |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 473 | def RDGSBASE64 : RI<0xAE, MRM1r, (outs GR64:$dst), (ins), |
Craig Topper | e7b0550 | 2011-10-30 19:57:21 +0000 | [diff] [blame] | 474 | "rdgsbase{q}\t$dst", |
| 475 | [(set GR64:$dst, (int_x86_rdgsbase_64))]>, TB, XS; |
| 476 | def WRFSBASE : I<0xAE, MRM2r, (outs), (ins GR32:$src), |
| 477 | "wrfsbase{l}\t$src", |
| 478 | [(int_x86_wrfsbase_32 GR32:$src)]>, TB, XS; |
| 479 | def WRFSBASE64 : RI<0xAE, MRM2r, (outs), (ins GR64:$src), |
| 480 | "wrfsbase{q}\t$src", |
| 481 | [(int_x86_wrfsbase_64 GR64:$src)]>, TB, XS; |
| 482 | def WRGSBASE : I<0xAE, MRM3r, (outs), (ins GR32:$src), |
| 483 | "wrgsbase{l}\t$src", |
| 484 | [(int_x86_wrgsbase_32 GR32:$src)]>, TB, XS; |
| 485 | def WRGSBASE64 : RI<0xAE, MRM3r, (outs), (ins GR64:$src), |
| 486 | "wrgsbase{q}\t$src", |
| 487 | [(int_x86_wrgsbase_64 GR64:$src)]>, TB, XS; |
Craig Topper | 75fe5f3 | 2011-10-07 07:02:24 +0000 | [diff] [blame] | 488 | } |
Craig Topper | dc479c4 | 2011-10-16 07:05:40 +0000 | [diff] [blame] | 489 | |
| 490 | //===----------------------------------------------------------------------===// |
| 491 | // INVPCID Instruction |
| 492 | def INVPCID32 : I<0x82, MRMSrcMem, (outs), (ins GR32:$src1, i128mem:$src2), |
| 493 | "invpcid {$src2, $src1|$src1, $src2}", []>, OpSize, T8, |
| 494 | Requires<[In32BitMode]>; |
| 495 | def INVPCID64 : I<0x82, MRMSrcMem, (outs), (ins GR64:$src1, i128mem:$src2), |
| 496 | "invpcid {$src2, $src1|$src1, $src2}", []>, OpSize, T8, |
| 497 | Requires<[In64BitMode]>; |