mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
a7886bd055
'NP' means that the instruction is not recognized with a 66, F2 or F3 prefix. It will either #UD or decode to a different instruction. All of the cases are here should fall into the #UD variety since we should be detecting the collision with other instructions when we build the disassembler tables.
88 lines
3.5 KiB
TableGen
88 lines
3.5 KiB
TableGen
//===-- X86InstrVMX.td - VMX Instruction Set Extension -----*- tablegen -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file describes the instructions that make up the Intel VMX instruction
|
|
// set.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// VMX instructions
|
|
|
|
let SchedRW = [WriteSystem] in {
|
|
// 66 0F 38 80
|
|
def INVEPT32 : I<0x80, MRMSrcMem, (outs), (ins GR32:$src1, i128mem:$src2),
|
|
"invept\t{$src2, $src1|$src1, $src2}", []>, T8PD,
|
|
Requires<[Not64BitMode]>;
|
|
def INVEPT64 : I<0x80, MRMSrcMem, (outs), (ins GR64:$src1, i128mem:$src2),
|
|
"invept\t{$src2, $src1|$src1, $src2}", []>, T8PD,
|
|
Requires<[In64BitMode]>;
|
|
|
|
// 66 0F 38 81
|
|
def INVVPID32 : I<0x81, MRMSrcMem, (outs), (ins GR32:$src1, i128mem:$src2),
|
|
"invvpid\t{$src2, $src1|$src1, $src2}", []>, T8PD,
|
|
Requires<[Not64BitMode]>;
|
|
def INVVPID64 : I<0x81, MRMSrcMem, (outs), (ins GR64:$src1, i128mem:$src2),
|
|
"invvpid\t{$src2, $src1|$src1, $src2}", []>, T8PD,
|
|
Requires<[In64BitMode]>;
|
|
|
|
// 0F 01 C1
|
|
def VMCALL : I<0x01, MRM_C1, (outs), (ins), "vmcall", []>, TB;
|
|
def VMCLEARm : I<0xC7, MRM6m, (outs), (ins i64mem:$vmcs),
|
|
"vmclear\t$vmcs", []>, PD;
|
|
|
|
// OF 01 D4
|
|
def VMFUNC : I<0x01, MRM_D4, (outs), (ins), "vmfunc", []>, PS;
|
|
|
|
// 0F 01 C2
|
|
def VMLAUNCH : I<0x01, MRM_C2, (outs), (ins), "vmlaunch", []>, TB;
|
|
|
|
// 0F 01 C3
|
|
def VMRESUME : I<0x01, MRM_C3, (outs), (ins), "vmresume", []>, TB;
|
|
def VMPTRLDm : I<0xC7, MRM6m, (outs), (ins i64mem:$vmcs),
|
|
"vmptrld\t$vmcs", []>, PS;
|
|
def VMPTRSTm : I<0xC7, MRM7m, (outs), (ins i64mem:$vmcs),
|
|
"vmptrst\t$vmcs", []>, PS;
|
|
def VMREAD64rr : I<0x78, MRMDestReg, (outs GR64:$dst), (ins GR64:$src),
|
|
"vmread{q}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[In64BitMode]>,
|
|
NotMemoryFoldable;
|
|
def VMREAD32rr : I<0x78, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),
|
|
"vmread{l}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[Not64BitMode]>,
|
|
NotMemoryFoldable;
|
|
|
|
let mayStore = 1 in {
|
|
def VMREAD64mr : I<0x78, MRMDestMem, (outs), (ins i64mem:$dst, GR64:$src),
|
|
"vmread{q}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[In64BitMode]>,
|
|
NotMemoryFoldable;
|
|
def VMREAD32mr : I<0x78, MRMDestMem, (outs), (ins i32mem:$dst, GR32:$src),
|
|
"vmread{l}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[Not64BitMode]>,
|
|
NotMemoryFoldable;
|
|
} // mayStore
|
|
|
|
def VMWRITE64rr : I<0x79, MRMSrcReg, (outs GR64:$dst), (ins GR64:$src),
|
|
"vmwrite{q}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[In64BitMode]>,
|
|
NotMemoryFoldable;
|
|
def VMWRITE32rr : I<0x79, MRMSrcReg, (outs GR32:$dst), (ins GR32:$src),
|
|
"vmwrite{l}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[Not64BitMode]>,
|
|
NotMemoryFoldable;
|
|
|
|
let mayLoad = 1 in {
|
|
def VMWRITE64rm : I<0x79, MRMSrcMem, (outs GR64:$dst), (ins i64mem:$src),
|
|
"vmwrite{q}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[In64BitMode]>,
|
|
NotMemoryFoldable;
|
|
def VMWRITE32rm : I<0x79, MRMSrcMem, (outs GR32:$dst), (ins i32mem:$src),
|
|
"vmwrite{l}\t{$src, $dst|$dst, $src}", []>, PS, Requires<[Not64BitMode]>,
|
|
NotMemoryFoldable;
|
|
} // mayLoad
|
|
|
|
// 0F 01 C4
|
|
def VMXOFF : I<0x01, MRM_C4, (outs), (ins), "vmxoff", []>, TB;
|
|
def VMXON : I<0xC7, MRM6m, (outs), (ins i64mem:$vmxon),
|
|
"vmxon\t$vmxon", []>, XS;
|
|
} // SchedRW
|