mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
CMemory::FindPattern cache bytes in L1.
* Pre-fetch bytes and cache them in L1.
This commit is contained in:
parent
64cf0d33d7
commit
232680a2a6
@ -98,6 +98,7 @@ CMemory CMemory::FindPattern(const string& svPattern, const Direction searchDire
|
||||
// If either the current byte equals to the byte in our pattern or our current byte in the pattern is a wildcard
|
||||
// our if clause will be false.
|
||||
uint8_t currentByte = *(ScanBytes + memOffset + j);
|
||||
_mm_prefetch(reinterpret_cast<const char*>(currentByte + 64), _MM_HINT_T0); // precache some data in L1.
|
||||
if (currentByte != BytesInfo.second[j] && BytesInfo.second[j] != -1)
|
||||
{
|
||||
bFound = false;
|
||||
@ -144,6 +145,7 @@ CMemory CMemory::FindPatternSelf(const string& svPattern, const Direction search
|
||||
// If either the current byte equals to the byte in our pattern or our current byte in the pattern is a wildcard
|
||||
// our if clause will be false.
|
||||
uint8_t currentByte = *(pScanBytes + nMemOffset + j);
|
||||
_mm_prefetch(reinterpret_cast<const char*>(currentByte + 64), _MM_HINT_T0); // precache some data in L1.
|
||||
if (currentByte != bytesInfo.second[j] && bytesInfo.second[j] != -1)
|
||||
{
|
||||
bFound = false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user