mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 13:30:02 +00:00
Revert "ARM64 vmmul experiment: Disable if S and T matrices overlap."
This reverts commit c4d26dcb10
.
This commit is contained in:
parent
841cfdfc11
commit
f49999efca
@ -1227,11 +1227,10 @@ namespace MIPSComp {
|
||||
GetMatrixRegs(tregs, sz, _VT);
|
||||
GetMatrixRegs(dregs, sz, _VD);
|
||||
|
||||
MatrixOverlapType sdoverlap = GetMatrixOverlap(_VS, _VD, sz);
|
||||
MatrixOverlapType tdoverlap = GetMatrixOverlap(_VT, _VD, sz);
|
||||
MatrixOverlapType stoverlap = GetMatrixOverlap(_VS, _VT, sz);
|
||||
MatrixOverlapType soverlap = GetMatrixOverlap(_VS, _VD, sz);
|
||||
MatrixOverlapType toverlap = GetMatrixOverlap(_VT, _VD, sz);
|
||||
|
||||
if (sdoverlap != OVERLAP_NONE || tdoverlap != OVERLAP_NONE || stoverlap != OVERLAP_NONE) {
|
||||
if (soverlap || toverlap) {
|
||||
DISABLE;
|
||||
} else {
|
||||
for (int a = 0; a < n; a++) {
|
||||
|
Loading…
Reference in New Issue
Block a user