[llvm] r316340 - [X86] Change VMPTRST to use PS instead of TB to match VMPTRLD.

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 23 09:22:41 PDT 2017


Author: ctopper
Date: Mon Oct 23 09:22:40 2017
New Revision: 316340

URL: http://llvm.org/viewvc/llvm-project?rev=316340&view=rev
Log:
[X86] Change VMPTRST to use PS instead of TB to match VMPTRLD.

Modified:
    llvm/trunk/lib/Target/X86/X86InstrVMX.td

Modified: llvm/trunk/lib/Target/X86/X86InstrVMX.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86InstrVMX.td?rev=316340&r1=316339&r2=316340&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86InstrVMX.td (original)
+++ llvm/trunk/lib/Target/X86/X86InstrVMX.td Mon Oct 23 09:22:40 2017
@@ -42,7 +42,7 @@ def VMRESUME : I<0x01, MRM_C3, (outs), (
 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", []>, TB;
+  "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]>;
 def VMREAD32rr : I<0x78, MRMDestReg, (outs GR32:$dst), (ins GR32:$src),




More information about the llvm-commits mailing list