mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-09 16:08:04 +01:00
A64: Implement scalar variants of CMEQ, CMGT, and CMGE zero comparison instructions
These can trivially use the ScalarCompare helper function.
This commit is contained in:
parent
3ad4e547e4
commit
718f3e9bb4
2 changed files with 29 additions and 10 deletions
|
|
@ -407,14 +407,14 @@ INST(UCVTF_int_2, "UCVTF (vector, integer)", "01111
|
|||
// Data Processing - FP and SIMD - Scalar two-register misc
|
||||
//INST(SUQADD_1, "SUQADD", "01011110zz100000001110nnnnnddddd")
|
||||
//INST(SQABS_1, "SQABS", "01011110zz100000011110nnnnnddddd")
|
||||
//INST(CMGT_zero_1, "CMGT (zero)", "01011110zz100000100010nnnnnddddd")
|
||||
//INST(CMEQ_zero_1, "CMEQ (zero)", "01011110zz100000100110nnnnnddddd")
|
||||
INST(CMGT_zero_1, "CMGT (zero)", "01011110zz100000100010nnnnnddddd")
|
||||
INST(CMEQ_zero_1, "CMEQ (zero)", "01011110zz100000100110nnnnnddddd")
|
||||
//INST(CMLT_1, "CMLT (zero)", "01011110zz100000101010nnnnnddddd")
|
||||
//INST(ABS_1, "ABS", "01011110zz100000101110nnnnnddddd")
|
||||
//INST(SQXTN_1, "SQXTN, SQXTN2", "01011110zz100001010010nnnnnddddd")
|
||||
//INST(USQADD_1, "USQADD", "01111110zz100000001110nnnnnddddd")
|
||||
//INST(SQNEG_1, "SQNEG", "01111110zz100000011110nnnnnddddd")
|
||||
//INST(CMGE_zero_1, "CMGE (zero)", "01111110zz100000100010nnnnnddddd")
|
||||
INST(CMGE_zero_1, "CMGE (zero)", "01111110zz100000100010nnnnnddddd")
|
||||
//INST(CMLE_1, "CMLE (zero)", "01111110zz100000100110nnnnnddddd")
|
||||
INST(NEG_1, "NEG (vector)", "01111110zz100000101110nnnnnddddd")
|
||||
//INST(SQXTUN_1, "SQXTUN, SQXTUN2", "01111110zz100001001010nnnnnddddd")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue