diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2019-12-06 22:16:23 +0100 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-04-26 13:05:07 +0200 |
commit | 60650fa82e03dc8eb2a6118ce4cf2e4b0aa872e5 (patch) | |
tree | e131a85cf3014c2aba90f90ca141e1f85b9a59c4 /src/ARMJIT_x64 | |
parent | 0c5311731b8e249c17ce68af1d026aca230e7711 (diff) |
disable literal optimations in DTCM
Diffstat (limited to 'src/ARMJIT_x64')
-rw-r--r-- | src/ARMJIT_x64/ARMJIT_LoadStore.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ARMJIT_x64/ARMJIT_LoadStore.cpp b/src/ARMJIT_x64/ARMJIT_LoadStore.cpp index 82f80a7..b66f304 100644 --- a/src/ARMJIT_x64/ARMJIT_LoadStore.cpp +++ b/src/ARMJIT_x64/ARMJIT_LoadStore.cpp @@ -347,8 +347,10 @@ void Compiler::Comp_MemAccess(int rd, int rn, const ComplexOperand& op2, int siz // stupid dtcm... if (addr >= cpu5->DTCMBase && addr < (cpu5->DTCMBase + cpu5->DTCMSize)) { - region.Mem = cpu5->DTCM; - region.Mask = 0x3FFF; + // disable this for now as DTCM is located in heap + // which might excced the RIP-addressable range + //region.Mem = cpu5->DTCM; + //region.Mask = 0x3FFF; } else { |