mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 21:39:52 +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(tregs, sz, _VT);
|
||||||
GetMatrixRegs(dregs, sz, _VD);
|
GetMatrixRegs(dregs, sz, _VD);
|
||||||
|
|
||||||
MatrixOverlapType sdoverlap = GetMatrixOverlap(_VS, _VD, sz);
|
MatrixOverlapType soverlap = GetMatrixOverlap(_VS, _VD, sz);
|
||||||
MatrixOverlapType tdoverlap = GetMatrixOverlap(_VT, _VD, sz);
|
MatrixOverlapType toverlap = GetMatrixOverlap(_VT, _VD, sz);
|
||||||
MatrixOverlapType stoverlap = GetMatrixOverlap(_VS, _VT, sz);
|
|
||||||
|
|
||||||
if (sdoverlap != OVERLAP_NONE || tdoverlap != OVERLAP_NONE || stoverlap != OVERLAP_NONE) {
|
if (soverlap || toverlap) {
|
||||||
DISABLE;
|
DISABLE;
|
||||||
} else {
|
} else {
|
||||||
for (int a = 0; a < n; a++) {
|
for (int a = 0; a < n; a++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user