[llvm-commits] CVS: llvm/lib/Target/X86/X86InstrSSE.td

Evan Cheng evan.cheng at apple.com
Tue Oct 31 22:54:07 PST 2006



Changes in directory llvm/lib/Target/X86:

X86InstrSSE.td updated: 1.167 -> 1.168
---
Log message:

Fix ldmxcsr JIT encoding.

---
Diffs of the changes:  (+4 -6)

 X86InstrSSE.td |   10 ++++------
 1 files changed, 4 insertions(+), 6 deletions(-)


Index: llvm/lib/Target/X86/X86InstrSSE.td
diff -u llvm/lib/Target/X86/X86InstrSSE.td:1.167 llvm/lib/Target/X86/X86InstrSSE.td:1.168
--- llvm/lib/Target/X86/X86InstrSSE.td:1.167	Fri Oct 27 16:08:32 2006
+++ llvm/lib/Target/X86/X86InstrSSE.td	Wed Nov  1 00:53:52 2006
@@ -1653,12 +1653,10 @@
                "mfence", [(int_x86_sse2_mfence)]>, TB, Requires<[HasSSE2]>;
 
 // MXCSR register
-def LDMXCSR : I<0xAE, MRM5m, (ops i32mem:$src),
-                "ldmxcsr $src",
-                [(int_x86_sse_ldmxcsr addr:$src)]>, TB, Requires<[HasSSE1]>;
-def STMXCSR : I<0xAE, MRM3m, (ops i32mem:$dst),
-                "stmxcsr $dst",
-                [(int_x86_sse_stmxcsr addr:$dst)]>, TB, Requires<[HasSSE1]>;
+def LDMXCSR : PSI<0xAE, MRM2m, (ops i32mem:$src),
+                  "ldmxcsr $src", [(int_x86_sse_ldmxcsr addr:$src)]>;
+def STMXCSR : PSI<0xAE, MRM3m, (ops i32mem:$dst),
+                  "stmxcsr $dst", [(int_x86_sse_stmxcsr addr:$dst)]>;
 
 // Thread synchronization
 def MONITOR : I<0xC8, RawFrm, (ops), "monitor",






More information about the llvm-commits mailing list