mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 04:35:00 +00:00
ldmxcsr and stmxcsr.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27506 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
85db0df76c
commit
372db540d9
@ -1538,9 +1538,13 @@ def MASKMOVQ : I<0xF7, MRMDestMem, (ops i64mem:$dst, VR64:$src),
|
||||
def SFENCE : I<0xAE, MRM7m, (ops),
|
||||
"sfence", []>, TB, Requires<[HasSSE1]>;
|
||||
|
||||
// Load MXCSR register
|
||||
// MXCSR register
|
||||
def LDMXCSR : I<0xAE, MRM2m, (ops i32mem:$src),
|
||||
"ldmxcsr {$src|$src}", []>, TB, Requires<[HasSSE1]>;
|
||||
"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]>;
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Alias Instructions
|
||||
|
Loading…
x
Reference in New Issue
Block a user