Experimental commit: this is the base for a more complex dlist control code, is incomplete but i need some feedback.
whit this code hashing is completely disabled for the dlists content itself this must bring some fps more but i must know if this causes any glitches. i suspect that no game modify the content of the dlist so hash is time wasted but the only way to test it is with this commit. please test as many games s you can and give me feedback for any glitch. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7106 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
fa15389b17
commit
fc370c5136
|
@ -43,7 +43,7 @@
|
||||||
#define DL_CODE_CACHE_SIZE (1024*1024*16)
|
#define DL_CODE_CACHE_SIZE (1024*1024*16)
|
||||||
#define DL_CODE_CLEAR_THRESHOLD (128 * 1024)
|
#define DL_CODE_CLEAR_THRESHOLD (128 * 1024)
|
||||||
extern int frameCount;
|
extern int frameCount;
|
||||||
|
static int CheckContextId;
|
||||||
using namespace Gen;
|
using namespace Gen;
|
||||||
|
|
||||||
namespace DLCache
|
namespace DLCache
|
||||||
|
@ -101,7 +101,6 @@ struct CachedDisplayList
|
||||||
num_index_xf(0),
|
num_index_xf(0),
|
||||||
num_draw_call(0),
|
num_draw_call(0),
|
||||||
pass(DLPASS_ANALYZE),
|
pass(DLPASS_ANALYZE),
|
||||||
next_check(1),
|
|
||||||
BufferCount(0),
|
BufferCount(0),
|
||||||
Regions(NULL),
|
Regions(NULL),
|
||||||
LastRegion(NULL)
|
LastRegion(NULL)
|
||||||
|
@ -124,7 +123,6 @@ struct CachedDisplayList
|
||||||
|
|
||||||
|
|
||||||
u32 check;
|
u32 check;
|
||||||
u32 next_check;
|
|
||||||
|
|
||||||
int frame_count;
|
int frame_count;
|
||||||
|
|
||||||
|
@ -627,6 +625,7 @@ void CompileAndRunDisplayList(u32 address, u32 size, CachedDisplayList *dl)
|
||||||
|
|
||||||
void Init()
|
void Init()
|
||||||
{
|
{
|
||||||
|
CheckContextId = 0;
|
||||||
dlcode_cache = (u8*)AllocateExecutableMemory(DL_CODE_CACHE_SIZE, false); // Don't need low memory.
|
dlcode_cache = (u8*)AllocateExecutableMemory(DL_CODE_CACHE_SIZE, false); // Don't need low memory.
|
||||||
emitter.SetCodePtr(dlcode_cache);
|
emitter.SetCodePtr(dlcode_cache);
|
||||||
}
|
}
|
||||||
|
@ -738,9 +737,9 @@ bool HandleDisplayList(u32 address, u32 size)
|
||||||
case DLCache::DLPASS_RUN:
|
case DLCache::DLPASS_RUN:
|
||||||
{
|
{
|
||||||
// Every N draws, check hash
|
// Every N draws, check hash
|
||||||
dl.check--;
|
if (dl.check != CheckContextId)
|
||||||
if (dl.check <= 0)
|
|
||||||
{
|
{
|
||||||
|
dl.check = CheckContextId;
|
||||||
if (dl.dl_hash != GetHash64(Memory::GetPointer(address), size, 0) || !dl.CheckRegions())
|
if (dl.dl_hash != GetHash64(Memory::GetPointer(address), size, 0) || !dl.CheckRegions())
|
||||||
{
|
{
|
||||||
dl.uncachable = true;
|
dl.uncachable = true;
|
||||||
|
@ -748,7 +747,6 @@ bool HandleDisplayList(u32 address, u32 size)
|
||||||
dl.ClearRegions();
|
dl.ClearRegions();
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
dl.check = dl.next_check;
|
|
||||||
}
|
}
|
||||||
dl.frame_count= frameCount;
|
dl.frame_count= frameCount;
|
||||||
u8 *old_datareader = g_pVideoData;
|
u8 *old_datareader = g_pVideoData;
|
||||||
|
@ -778,8 +776,7 @@ bool HandleDisplayList(u32 address, u32 size)
|
||||||
u32 dlvatused = DLCache::AnalyzeAndRunDisplayList(address, size, &dl);
|
u32 dlvatused = DLCache::AnalyzeAndRunDisplayList(address, size, &dl);
|
||||||
dl.dl_hash = GetHash64(Memory::GetPointer(address), size,0);
|
dl.dl_hash = GetHash64(Memory::GetPointer(address), size,0);
|
||||||
dl.pass = DLCache::DLPASS_COMPILE;
|
dl.pass = DLCache::DLPASS_COMPILE;
|
||||||
dl.check = 1;
|
dl.check = CheckContextId;
|
||||||
dl.next_check = 1;
|
|
||||||
vhash = DLCache::CreateVMapId(dlvatused);
|
vhash = DLCache::CreateVMapId(dlvatused);
|
||||||
if(Parentiter != DLCache::dl_map.end())
|
if(Parentiter != DLCache::dl_map.end())
|
||||||
{
|
{
|
||||||
|
@ -800,3 +797,8 @@ bool HandleDisplayList(u32 address, u32 size)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void IncrementCheckContextId()
|
||||||
|
{
|
||||||
|
CheckContextId++;
|
||||||
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#define _DLCACHE_H
|
#define _DLCACHE_H
|
||||||
|
|
||||||
bool HandleDisplayList(u32 address, u32 size);
|
bool HandleDisplayList(u32 address, u32 size);
|
||||||
|
void IncrementCheckContextId();
|
||||||
|
|
||||||
namespace DLCache {
|
namespace DLCache {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue