2012-12-19 09:30:18 +00:00
|
|
|
/****************************************************************************
|
|
|
|
* *
|
2015-11-10 05:21:49 +00:00
|
|
|
* Project64 - A Nintendo 64 emulator. *
|
2012-12-19 09:30:18 +00:00
|
|
|
* http://www.pj64-emu.com/ *
|
|
|
|
* Copyright (C) 2012 Project64. All rights reserved. *
|
|
|
|
* *
|
|
|
|
* License: *
|
|
|
|
* GNU/GPLv2 http://www.gnu.org/licenses/gpl-2.0.html *
|
|
|
|
* *
|
|
|
|
****************************************************************************/
|
2010-10-23 18:53:01 +00:00
|
|
|
#include "stdafx.h"
|
2015-12-21 20:28:53 +00:00
|
|
|
#include <string.h>
|
2016-01-13 11:15:30 +00:00
|
|
|
#include <Project64-core/N64System/Recompiler/CodeBlock.h>
|
2016-06-27 11:49:15 +00:00
|
|
|
#include <Project64-core/N64System/Recompiler/RecompilerCodeLog.h>
|
|
|
|
#include <Project64-core/N64System/Recompiler/x86/x86RecompilerOps.h>
|
2016-08-11 11:09:21 +00:00
|
|
|
#include <Project64-core/N64System/Recompiler/Arm/ArmRecompilerOps.h>
|
2015-12-06 09:59:58 +00:00
|
|
|
#include <Project64-core/N64System/SystemGlobals.h>
|
|
|
|
#include <Project64-core/N64System/Mips/TranslateVaddr.h>
|
|
|
|
#include <Project64-core/N64System/N64Class.h>
|
|
|
|
#include <Project64-core/N64System/Mips/OpcodeName.h>
|
2010-10-23 18:53:01 +00:00
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
bool DelaySlotEffectsCompare(uint32_t PC, uint32_t Reg1, uint32_t Reg2);
|
2012-10-19 06:32:42 +00:00
|
|
|
|
2016-08-11 11:09:21 +00:00
|
|
|
#if defined(ANDROID) && (defined(__arm__) || defined(_M_ARM))
|
|
|
|
/* bug-fix to implement __clear_cache (missing in Android; http://code.google.com/p/android/issues/detail?id=1803) */
|
|
|
|
extern "C" void __clear_cache_android(uint8_t* begin, uint8_t *end);
|
|
|
|
#endif
|
|
|
|
|
2016-06-27 11:49:15 +00:00
|
|
|
CCodeBlock::CCodeBlock(uint32_t VAddrEnter, uint8_t * CompiledLocation) :
|
2016-07-04 07:51:11 +00:00
|
|
|
m_VAddrEnter(VAddrEnter),
|
|
|
|
m_VAddrFirst(VAddrEnter),
|
|
|
|
m_VAddrLast(VAddrEnter),
|
|
|
|
m_CompiledLocation(CompiledLocation),
|
|
|
|
m_EnterSection(NULL),
|
|
|
|
m_RecompilerOps(NULL),
|
|
|
|
m_Test(1)
|
2010-10-23 18:53:01 +00:00
|
|
|
{
|
2016-08-11 11:09:21 +00:00
|
|
|
#if defined(__arm__) || defined(_M_ARM)
|
|
|
|
// make sure function starts at odd address so that the system knows it is thumb mode
|
|
|
|
if (((uint32_t)m_CompiledLocation % 2) == 0)
|
|
|
|
{
|
|
|
|
m_CompiledLocation+=1;
|
|
|
|
}
|
|
|
|
#endif
|
2016-07-06 20:14:12 +00:00
|
|
|
#if defined(__i386__) || defined(_M_IX86)
|
2016-07-04 07:51:11 +00:00
|
|
|
m_RecompilerOps = new CX86RecompilerOps;
|
2016-08-11 11:09:21 +00:00
|
|
|
#elif defined(__arm__) || defined(_M_ARM)
|
|
|
|
m_RecompilerOps = new CArmRecompilerOps;
|
2016-07-06 20:14:12 +00:00
|
|
|
#endif
|
2016-07-04 07:51:11 +00:00
|
|
|
if (m_RecompilerOps == NULL)
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2016-08-11 11:09:21 +00:00
|
|
|
return;
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
2016-07-04 07:51:11 +00:00
|
|
|
CCodeSection * baseSection = new CCodeSection(this, VAddrEnter, 0, false);
|
|
|
|
if (baseSection == NULL)
|
2016-07-03 05:22:14 +00:00
|
|
|
{
|
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
|
|
|
}
|
2016-06-28 11:22:30 +00:00
|
|
|
|
2015-11-08 21:00:16 +00:00
|
|
|
m_Sections.push_back(baseSection);
|
|
|
|
baseSection->AddParent(NULL);
|
|
|
|
baseSection->m_CompiledLocation = (uint8_t *)-1;
|
|
|
|
baseSection->m_Cont.JumpPC = VAddrEnter;
|
|
|
|
baseSection->m_Cont.FallThrough = true;
|
|
|
|
baseSection->m_Cont.RegSet = baseSection->m_RegEnter;
|
|
|
|
|
|
|
|
m_EnterSection = new CCodeSection(this, VAddrEnter, 1, true);
|
|
|
|
if (m_EnterSection == NULL)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
baseSection->m_ContinueSection = m_EnterSection;
|
|
|
|
m_EnterSection->AddParent(baseSection);
|
|
|
|
m_Sections.push_back(m_EnterSection);
|
2016-07-04 07:51:11 +00:00
|
|
|
m_SectionMap.insert(SectionMap::value_type(VAddrEnter, m_EnterSection));
|
2015-11-08 21:00:16 +00:00
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
if (g_TransVaddr->VAddrToRealAddr(VAddrEnter, *(reinterpret_cast<void **>(&m_MemLocation[0]))))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
m_MemLocation[1] = m_MemLocation[0] + 1;
|
|
|
|
m_MemContents[0] = *m_MemLocation[0];
|
|
|
|
m_MemContents[1] = *m_MemLocation[1];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
memset(m_MemLocation, 0, sizeof(m_MemLocation));
|
|
|
|
memset(m_MemContents, 0, sizeof(m_MemContents));
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
2016-06-27 11:49:15 +00:00
|
|
|
|
2015-11-08 21:00:16 +00:00
|
|
|
AnalyseBlock();
|
2010-10-23 18:53:01 +00:00
|
|
|
}
|
|
|
|
|
2012-10-14 06:33:51 +00:00
|
|
|
CCodeBlock::~CCodeBlock()
|
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
for (SectionList::iterator itr = m_Sections.begin(); itr != m_Sections.end(); itr++)
|
|
|
|
{
|
|
|
|
CCodeSection * Section = *itr;
|
|
|
|
delete Section;
|
|
|
|
}
|
|
|
|
m_Sections.clear();
|
2016-07-03 05:22:14 +00:00
|
|
|
|
|
|
|
if (m_RecompilerOps != NULL)
|
|
|
|
{
|
2016-07-06 20:14:12 +00:00
|
|
|
#if defined(__i386__) || defined(_M_IX86)
|
2016-07-05 10:32:10 +00:00
|
|
|
delete (CX86RecompilerOps *)m_RecompilerOps;
|
2016-07-06 20:14:12 +00:00
|
|
|
#endif
|
2016-07-03 05:22:14 +00:00
|
|
|
m_RecompilerOps = NULL;
|
|
|
|
}
|
2012-10-14 06:33:51 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
bool CCodeBlock::SetSection(CCodeSection * & Section, CCodeSection * CurrentSection, uint32_t TargetPC, bool LinkAllowed, uint32_t CurrentPC)
|
2012-10-14 01:05:52 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
if (Section != NULL)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (TargetPC >= ((CurrentPC + 0x1000) & 0xFFFFF000))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TargetPC < m_EnterSection->m_EnterPC)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LinkAllowed)
|
|
|
|
{
|
|
|
|
if (Section != NULL)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
SectionMap::const_iterator itr = m_SectionMap.find(TargetPC);
|
|
|
|
if (itr != m_SectionMap.end())
|
|
|
|
{
|
|
|
|
Section = itr->second;
|
|
|
|
Section->AddParent(CurrentSection);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Section == NULL)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
Section = new CCodeSection(this, TargetPC, m_Sections.size(), LinkAllowed);
|
2015-11-08 21:00:16 +00:00
|
|
|
if (Section == NULL)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_Sections.push_back(Section);
|
|
|
|
if (LinkAllowed)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
m_SectionMap.insert(SectionMap::value_type(TargetPC, Section));
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
Section->AddParent(CurrentSection);
|
|
|
|
if (TargetPC <= CurrentPC && TargetPC != m_VAddrEnter)
|
|
|
|
{
|
|
|
|
CCodeSection * SplitSection = NULL;
|
|
|
|
for (SectionMap::const_iterator itr = m_SectionMap.begin(); itr != m_SectionMap.end(); itr++)
|
|
|
|
{
|
|
|
|
if (itr->first >= TargetPC)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
SplitSection = itr->second;
|
|
|
|
}
|
|
|
|
if (SplitSection == NULL)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
if (SplitSection->m_EndPC == (uint32_t)-1)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
if (SplitSection->m_EndPC >= TargetPC)
|
|
|
|
{
|
2016-01-13 20:36:46 +00:00
|
|
|
CPU_Message("%s: Split Section: %d with section: %d", __FUNCTION__, SplitSection->m_SectionID, Section->m_SectionID);
|
2015-11-08 21:00:16 +00:00
|
|
|
CCodeSection * BaseSection = Section;
|
|
|
|
BaseSection->m_EndPC = SplitSection->m_EndPC;
|
2016-07-04 07:51:11 +00:00
|
|
|
BaseSection->SetJumpAddress(SplitSection->m_Jump.JumpPC, SplitSection->m_Jump.TargetPC, SplitSection->m_Jump.PermLoop);
|
2015-11-08 21:00:16 +00:00
|
|
|
BaseSection->m_JumpSection = SplitSection->m_JumpSection;
|
2016-07-04 07:51:11 +00:00
|
|
|
BaseSection->SetContinueAddress(SplitSection->m_Cont.JumpPC, SplitSection->m_Cont.TargetPC);
|
2015-11-08 21:00:16 +00:00
|
|
|
BaseSection->m_ContinueSection = SplitSection->m_ContinueSection;
|
2016-11-27 20:34:02 +00:00
|
|
|
if (BaseSection->m_JumpSection)
|
|
|
|
{
|
|
|
|
BaseSection->m_JumpSection->SwitchParent(SplitSection, BaseSection);
|
|
|
|
}
|
|
|
|
if (BaseSection->m_ContinueSection)
|
|
|
|
{
|
|
|
|
BaseSection->m_ContinueSection->SwitchParent(SplitSection, BaseSection);
|
|
|
|
}
|
2015-11-08 21:00:16 +00:00
|
|
|
BaseSection->AddParent(SplitSection);
|
|
|
|
|
|
|
|
SplitSection->m_EndPC = TargetPC - 4;
|
|
|
|
SplitSection->m_JumpSection = NULL;
|
|
|
|
SplitSection->m_ContinueSection = BaseSection;
|
|
|
|
SplitSection->SetContinueAddress(TargetPC - 4, TargetPC);
|
2016-07-04 07:51:11 +00:00
|
|
|
SplitSection->SetJumpAddress((uint32_t)-1, (uint32_t)-1, false);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
2012-10-14 01:05:52 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
bool CCodeBlock::CreateBlockLinkage(CCodeSection * EnterSection)
|
2012-10-14 01:05:52 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
CCodeSection * CurrentSection = EnterSection;
|
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("Section %d", CurrentSection->m_SectionID);
|
2015-11-08 21:00:16 +00:00
|
|
|
for (uint32_t TestPC = EnterSection->m_EnterPC, EndPC = ((EnterSection->m_EnterPC + 0x1000) & 0xFFFFF000); TestPC <= EndPC; TestPC += 4)
|
|
|
|
{
|
|
|
|
if (TestPC != EndPC)
|
|
|
|
{
|
|
|
|
SectionMap::const_iterator itr = m_SectionMap.find(TestPC);
|
|
|
|
if (itr != m_SectionMap.end() && CurrentSection != itr->second)
|
|
|
|
{
|
|
|
|
if (CurrentSection->m_ContinueSection != NULL &&
|
|
|
|
CurrentSection->m_ContinueSection != itr->second)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
if (CurrentSection->m_ContinueSection == NULL)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
SetSection(CurrentSection->m_ContinueSection, CurrentSection, TestPC, true, TestPC);
|
2015-11-08 21:00:16 +00:00
|
|
|
CurrentSection->SetContinueAddress(TestPC - 4, TestPC);
|
|
|
|
}
|
|
|
|
CurrentSection->m_EndPC = TestPC - 4;
|
|
|
|
CurrentSection = itr->second;
|
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("Section %d", CurrentSection->m_SectionID);
|
2015-11-08 21:00:16 +00:00
|
|
|
if (EnterSection != m_EnterSection)
|
|
|
|
{
|
|
|
|
if (CurrentSection->m_JumpSection != NULL ||
|
|
|
|
CurrentSection->m_ContinueSection != NULL ||
|
|
|
|
CurrentSection->m_EndSection)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CurrentSection->m_EndSection = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LikelyBranch, EndBlock, IncludeDelaySlot, PermLoop;
|
|
|
|
uint32_t TargetPC, ContinuePC;
|
|
|
|
|
|
|
|
CurrentSection->m_EndPC = TestPC;
|
|
|
|
if (!AnalyzeInstruction(TestPC, TargetPC, ContinuePC, LikelyBranch, IncludeDelaySlot, EndBlock, PermLoop))
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (TestPC + 4 == EndPC && IncludeDelaySlot)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
ContinuePC = (uint32_t)-1;
|
|
|
|
EndBlock = true;
|
|
|
|
}
|
|
|
|
if (TargetPC == (uint32_t)-1 && !EndBlock)
|
|
|
|
{
|
|
|
|
if (ContinuePC != (uint32_t)-1)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (EndBlock)
|
|
|
|
{
|
2016-01-13 20:36:46 +00:00
|
|
|
CPU_Message("%s: End Block", __FUNCTION__);
|
2015-11-08 21:00:16 +00:00
|
|
|
CurrentSection->m_EndSection = true;
|
|
|
|
// find other sections that need compiling
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ContinuePC != (uint32_t)-1)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("%s: SetContinueAddress TestPC = %X ContinuePC = %X", __FUNCTION__, TestPC, ContinuePC);
|
2015-11-08 21:00:16 +00:00
|
|
|
CurrentSection->SetContinueAddress(TestPC, ContinuePC);
|
2016-07-04 07:51:11 +00:00
|
|
|
if (!SetSection(CurrentSection->m_ContinueSection, CurrentSection, ContinuePC, true, TestPC))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
ContinuePC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (LikelyBranch)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("%s: SetJumpAddress TestPC = %X Target = %X", __FUNCTION__, TestPC, TestPC + 4);
|
|
|
|
CurrentSection->SetJumpAddress(TestPC, TestPC + 4, false);
|
|
|
|
if (SetSection(CurrentSection->m_JumpSection, CurrentSection, TestPC + 4, false, TestPC))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
bool BranchLikelyBranch, BranchEndBlock, BranchIncludeDelaySlot, BranchPermLoop;
|
|
|
|
uint32_t BranchTargetPC, BranchContinuePC;
|
|
|
|
|
|
|
|
CCodeSection * JumpSection = CurrentSection->m_JumpSection;
|
|
|
|
if (!AnalyzeInstruction(JumpSection->m_EnterPC, BranchTargetPC, BranchContinuePC, BranchLikelyBranch, BranchIncludeDelaySlot, BranchEndBlock, BranchPermLoop))
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (BranchLikelyBranch || BranchIncludeDelaySlot || BranchPermLoop)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
JumpSection->m_EndPC = TestPC + 4;
|
|
|
|
if (BranchEndBlock)
|
|
|
|
{
|
2016-01-13 20:36:46 +00:00
|
|
|
CPU_Message("%s: Jump End Block", __FUNCTION__);
|
2015-11-08 21:00:16 +00:00
|
|
|
JumpSection->m_EndSection = true;
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
JumpSection->SetJumpAddress(TestPC, TargetPC, false);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
JumpSection->SetDelaySlot();
|
2016-07-04 07:51:11 +00:00
|
|
|
SetSection(JumpSection->m_JumpSection, JumpSection, TargetPC, true, TestPC);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (TargetPC != ((uint32_t)-1))
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("%s: SetJumpAddress TestPC = %X Target = %X", __FUNCTION__, TestPC, TargetPC);
|
|
|
|
CurrentSection->SetJumpAddress(TestPC, TargetPC, PermLoop);
|
|
|
|
if (PermLoop || !SetSection(CurrentSection->m_JumpSection, CurrentSection, TargetPC, true, TestPC))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
if (ContinuePC == (uint32_t)-1)
|
|
|
|
{
|
|
|
|
CurrentSection->m_EndSection = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
TestPC += IncludeDelaySlot ? 8 : 4;
|
|
|
|
|
|
|
|
//Find the next section
|
|
|
|
CCodeSection * NewSection = NULL;
|
|
|
|
for (SectionMap::const_iterator itr = m_SectionMap.begin(); itr != m_SectionMap.end(); itr++)
|
|
|
|
{
|
|
|
|
if (CurrentSection->m_JumpSection != NULL ||
|
|
|
|
CurrentSection->m_ContinueSection != NULL ||
|
|
|
|
CurrentSection->m_EndSection)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
NewSection = itr->second;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (NewSection == NULL)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (CurrentSection == NewSection)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
CurrentSection = NewSection;
|
|
|
|
if (CurrentSection->m_JumpSection != NULL ||
|
|
|
|
CurrentSection->m_ContinueSection != NULL ||
|
|
|
|
CurrentSection->m_EndSection)
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
TestPC = CurrentSection->m_EnterPC;
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("a. Section %d", CurrentSection->m_SectionID);
|
2015-11-08 21:00:16 +00:00
|
|
|
TestPC -= 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (SectionMap::iterator itr = m_SectionMap.begin(); itr != m_SectionMap.end(); itr++)
|
|
|
|
{
|
|
|
|
CCodeSection * Section = itr->second;
|
|
|
|
if (Section->m_JumpSection != NULL ||
|
|
|
|
Section->m_ContinueSection != NULL ||
|
|
|
|
Section->m_EndSection)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!CreateBlockLinkage(Section))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (CurrentSection->m_EndPC == (uint32_t)-1)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
return true;
|
2012-10-14 01:05:52 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 22:19:02 +00:00
|
|
|
void CCodeBlock::DetermineLoops()
|
2012-10-14 01:05:52 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
for (SectionMap::iterator itr = m_SectionMap.begin(); itr != m_SectionMap.end(); itr++)
|
|
|
|
{
|
|
|
|
CCodeSection * Section = itr->second;
|
2012-10-14 01:05:52 +00:00
|
|
|
|
2015-11-08 21:00:16 +00:00
|
|
|
uint32_t Test = NextTest();
|
2016-11-27 20:34:02 +00:00
|
|
|
if (Section)
|
|
|
|
{
|
|
|
|
Section->DetermineLoop(Test, Test, Section->m_SectionID);
|
|
|
|
}
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
2012-10-14 01:05:52 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 22:19:02 +00:00
|
|
|
void CCodeBlock::LogSectionInfo()
|
2012-10-14 01:05:52 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
for (SectionList::iterator itr = m_Sections.begin(); itr != m_Sections.end(); itr++)
|
|
|
|
{
|
|
|
|
CCodeSection * Section = *itr;
|
|
|
|
Section->DisplaySectionInformation();
|
|
|
|
}
|
2012-10-14 01:05:52 +00:00
|
|
|
}
|
|
|
|
|
2015-04-28 22:19:02 +00:00
|
|
|
bool CCodeBlock::AnalyseBlock()
|
2010-10-23 18:53:01 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
if (!g_System->bLinkBlocks())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!CreateBlockLinkage(m_EnterSection))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
DetermineLoops();
|
|
|
|
LogSectionInfo();
|
|
|
|
return true;
|
2012-10-14 01:05:52 +00:00
|
|
|
}
|
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
bool CCodeBlock::AnalyzeInstruction(uint32_t PC, uint32_t & TargetPC, uint32_t & ContinuePC, bool & LikelyBranch, bool & IncludeDelaySlot, bool & EndBlock, bool & PermLoop)
|
2012-10-14 01:05:52 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
ContinuePC = (uint32_t)-1;
|
|
|
|
LikelyBranch = false;
|
|
|
|
IncludeDelaySlot = false;
|
|
|
|
EndBlock = false;
|
|
|
|
PermLoop = false;
|
|
|
|
|
|
|
|
OPCODE Command;
|
|
|
|
if (!g_MMU->LW_VAddr(PC, Command.Hex))
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-10-14 01:05:52 +00:00
|
|
|
|
|
|
|
#ifdef _DEBUG
|
2016-07-04 07:51:11 +00:00
|
|
|
const char * Name = R4300iOpcodeName(Command.Hex, PC);
|
|
|
|
CPU_Message(" 0x%08X %s", PC, Name);
|
2012-10-14 01:05:52 +00:00
|
|
|
#endif
|
2015-11-08 21:00:16 +00:00
|
|
|
switch (Command.op)
|
|
|
|
{
|
|
|
|
case R4300i_SPECIAL:
|
|
|
|
switch (Command.funct)
|
|
|
|
{
|
|
|
|
case R4300i_SPECIAL_SLL: case R4300i_SPECIAL_SRL: case R4300i_SPECIAL_SRA:
|
|
|
|
case R4300i_SPECIAL_SLLV: case R4300i_SPECIAL_SRLV: case R4300i_SPECIAL_SRAV:
|
|
|
|
case R4300i_SPECIAL_MFHI: case R4300i_SPECIAL_MTHI: case R4300i_SPECIAL_MFLO:
|
|
|
|
case R4300i_SPECIAL_MTLO: case R4300i_SPECIAL_DSLLV: case R4300i_SPECIAL_DSRLV:
|
|
|
|
case R4300i_SPECIAL_DSRAV: case R4300i_SPECIAL_ADD: case R4300i_SPECIAL_ADDU:
|
|
|
|
case R4300i_SPECIAL_SUB: case R4300i_SPECIAL_SUBU: case R4300i_SPECIAL_AND:
|
|
|
|
case R4300i_SPECIAL_OR: case R4300i_SPECIAL_XOR: case R4300i_SPECIAL_NOR:
|
|
|
|
case R4300i_SPECIAL_SLT: case R4300i_SPECIAL_SLTU: case R4300i_SPECIAL_DADD:
|
|
|
|
case R4300i_SPECIAL_DADDU: case R4300i_SPECIAL_DSUB: case R4300i_SPECIAL_DSUBU:
|
|
|
|
case R4300i_SPECIAL_DSLL: case R4300i_SPECIAL_DSRL: case R4300i_SPECIAL_DSRA:
|
|
|
|
case R4300i_SPECIAL_DSLL32: case R4300i_SPECIAL_DSRL32: case R4300i_SPECIAL_DSRA32:
|
|
|
|
case R4300i_SPECIAL_MULT: case R4300i_SPECIAL_MULTU: case R4300i_SPECIAL_DIV:
|
|
|
|
case R4300i_SPECIAL_DIVU: case R4300i_SPECIAL_DMULT: case R4300i_SPECIAL_DMULTU:
|
|
|
|
case R4300i_SPECIAL_DDIV: case R4300i_SPECIAL_DDIVU:
|
|
|
|
break;
|
|
|
|
case R4300i_SPECIAL_JALR:
|
|
|
|
case R4300i_SPECIAL_JR:
|
|
|
|
EndBlock = true;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
break;
|
|
|
|
case R4300i_SPECIAL_SYSCALL:
|
|
|
|
case R4300i_SPECIAL_BREAK:
|
|
|
|
EndBlock = true;
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_REGIMM:
|
|
|
|
switch (Command.rt)
|
|
|
|
{
|
|
|
|
case R4300i_REGIMM_BLTZ:
|
|
|
|
case R4300i_REGIMM_BLTZAL:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC + 8)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
if (TargetPC == PC && !DelaySlotEffectsCompare(PC, Command.rs, 0))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_REGIMM_BGEZ:
|
|
|
|
case R4300i_REGIMM_BGEZAL:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC + 8)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
|
|
|
if (Command.rs == 0)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
EndBlock = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
if (!DelaySlotEffectsCompare(PC, Command.rs, Command.rt))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Command.rs != 0)
|
|
|
|
{
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
}
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_REGIMM_BLTZL:
|
|
|
|
case R4300i_REGIMM_BGEZL:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
if (!DelaySlotEffectsCompare(PC, Command.rs, 0))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
LikelyBranch = true;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (Command.Hex == 0x0407000D)
|
|
|
|
{
|
|
|
|
EndBlock = true;
|
|
|
|
break;
|
|
|
|
}
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_J:
|
|
|
|
TargetPC = (PC & 0xF0000000) + (Command.target << 2);
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
break;
|
|
|
|
case R4300i_JAL:
|
|
|
|
EndBlock = true;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
break;
|
|
|
|
case R4300i_BEQ:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC + 8)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (Command.rs != 0 || Command.rt != 0)
|
|
|
|
{
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
}
|
|
|
|
|
2016-07-04 07:51:11 +00:00
|
|
|
if (TargetPC == PC && !DelaySlotEffectsCompare(PC, Command.rs, Command.rt))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_BNE:
|
|
|
|
case R4300i_BLEZ:
|
|
|
|
case R4300i_BGTZ:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC + 8)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
if (!DelaySlotEffectsCompare(PC, Command.rs, Command.rt))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_CP0:
|
|
|
|
switch (Command.rs)
|
|
|
|
{
|
|
|
|
case R4300i_COP0_MT: case R4300i_COP0_MF:
|
|
|
|
break;
|
|
|
|
default:
|
2016-07-04 07:51:11 +00:00
|
|
|
if ((Command.rs & 0x10) != 0)
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
switch (Command.funct)
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
case R4300i_COP0_CO_TLBR: case R4300i_COP0_CO_TLBWI:
|
|
|
|
case R4300i_COP0_CO_TLBWR: case R4300i_COP0_CO_TLBP:
|
|
|
|
break;
|
|
|
|
case R4300i_COP0_CO_ERET:
|
|
|
|
EndBlock = true;
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_CP1:
|
|
|
|
switch (Command.fmt)
|
|
|
|
{
|
|
|
|
case R4300i_COP1_MF: case R4300i_COP1_DMF: case R4300i_COP1_CF: case R4300i_COP1_MT:
|
|
|
|
case R4300i_COP1_DMT: case R4300i_COP1_CT: case R4300i_COP1_S: case R4300i_COP1_D:
|
|
|
|
case R4300i_COP1_W: case R4300i_COP1_L:
|
|
|
|
break;
|
|
|
|
case R4300i_COP1_BC:
|
|
|
|
switch (Command.ft) {
|
|
|
|
case R4300i_COP1_BC_BCF:
|
|
|
|
case R4300i_COP1_BC_BCT:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC + 8)
|
|
|
|
{
|
|
|
|
TargetPC = (uint32_t)-1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_COP1_BC_BCFL:
|
|
|
|
case R4300i_COP1_BC_BCTL:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
LikelyBranch = true;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R4300i_ANDI: case R4300i_ORI: case R4300i_XORI: case R4300i_LUI:
|
|
|
|
case R4300i_ADDI: case R4300i_ADDIU: case R4300i_SLTI: case R4300i_SLTIU:
|
|
|
|
case R4300i_DADDI: case R4300i_DADDIU: case R4300i_LDL: case R4300i_LDR:
|
|
|
|
case R4300i_LB: case R4300i_LH: case R4300i_LWL: case R4300i_LW:
|
|
|
|
case R4300i_LBU: case R4300i_LHU: case R4300i_LWR: case R4300i_LWU:
|
|
|
|
case R4300i_SB: case R4300i_SH: case R4300i_SWL: case R4300i_SW:
|
|
|
|
case R4300i_SDL: case R4300i_SDR: case R4300i_SWR: case R4300i_CACHE:
|
|
|
|
case R4300i_LL: case R4300i_LWC1: case R4300i_LDC1: case R4300i_LD:
|
|
|
|
case R4300i_SC: case R4300i_SWC1: case R4300i_SDC1: case R4300i_SD:
|
|
|
|
break;
|
|
|
|
case R4300i_BEQL:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
if (!DelaySlotEffectsCompare(PC, Command.rs, Command.rt))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (Command.rs != 0 || Command.rt != 0)
|
|
|
|
{
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
}
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
LikelyBranch = true;
|
|
|
|
break;
|
|
|
|
case R4300i_BNEL:
|
|
|
|
case R4300i_BLEZL:
|
|
|
|
case R4300i_BGTZL:
|
|
|
|
TargetPC = PC + ((int16_t)Command.offset << 2) + 4;
|
|
|
|
ContinuePC = PC + 8;
|
|
|
|
if (TargetPC == PC)
|
|
|
|
{
|
2016-07-04 07:51:11 +00:00
|
|
|
if (!DelaySlotEffectsCompare(PC, Command.rs, Command.rt))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
PermLoop = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
LikelyBranch = true;
|
|
|
|
IncludeDelaySlot = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (Command.Hex == 0x7C1C97C0 ||
|
|
|
|
Command.Hex == 0xF1F3F5F7)
|
|
|
|
{
|
|
|
|
EndBlock = true;
|
|
|
|
break;
|
|
|
|
}
|
2015-12-09 11:37:58 +00:00
|
|
|
g_Notify->BreakPoint(__FILE__, __LINE__);
|
2015-11-08 21:00:16 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2010-10-23 18:53:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CCodeBlock::Compile()
|
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
CPU_Message("====== Code Block ======");
|
2016-07-18 07:19:20 +00:00
|
|
|
CPU_Message("Native entry point: %X", CompiledLocation());
|
2016-07-04 07:51:11 +00:00
|
|
|
CPU_Message("Start of Block: %X", VAddrEnter());
|
|
|
|
CPU_Message("No of Sections: %d", NoOfSections());
|
2015-11-08 21:00:16 +00:00
|
|
|
CPU_Message("====== recompiled code ======");
|
|
|
|
|
2016-07-03 05:22:14 +00:00
|
|
|
m_RecompilerOps->EnterCodeBlock();
|
2015-11-08 21:00:16 +00:00
|
|
|
if (g_System->bLinkBlocks())
|
|
|
|
{
|
2016-11-27 20:34:02 +00:00
|
|
|
while (m_EnterSection !=NULL && m_EnterSection->GenerateNativeCode(NextTest()));
|
2015-11-08 21:00:16 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-11-27 20:34:02 +00:00
|
|
|
if (m_EnterSection == NULL || !m_EnterSection->GenerateNativeCode(NextTest()))
|
2015-11-08 21:00:16 +00:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-07-03 05:22:14 +00:00
|
|
|
m_RecompilerOps->CompileExitCode();
|
2017-01-10 07:01:59 +00:00
|
|
|
m_CompiledLocationEnd = *g_RecompPos;
|
2015-11-08 21:00:16 +00:00
|
|
|
|
|
|
|
uint32_t PAddr;
|
2016-07-04 07:51:11 +00:00
|
|
|
g_TransVaddr->TranslateVaddr(VAddrFirst(), PAddr);
|
|
|
|
MD5(g_MMU->Rdram() + PAddr, (VAddrLast() - VAddrFirst()) + 4).get_digest(m_Hash);
|
2015-11-08 21:00:16 +00:00
|
|
|
|
2016-08-11 11:09:21 +00:00
|
|
|
#if defined(ANDROID) && (defined(__arm__) || defined(_M_ARM))
|
2017-01-10 07:01:59 +00:00
|
|
|
__clear_cache_android((uint8_t *)((uint32_t)m_CompiledLocation & ~1), m_CompiledLocationEnd);
|
2016-08-11 11:09:21 +00:00
|
|
|
#endif
|
2015-11-08 21:00:16 +00:00
|
|
|
return true;
|
2010-10-23 18:53:01 +00:00
|
|
|
}
|
|
|
|
|
2015-11-08 21:00:16 +00:00
|
|
|
uint32_t CCodeBlock::NextTest()
|
2010-10-23 18:53:01 +00:00
|
|
|
{
|
2015-11-08 21:00:16 +00:00
|
|
|
uint32_t next_test = m_Test;
|
|
|
|
m_Test += 1;
|
|
|
|
return next_test;
|
2016-07-04 07:51:11 +00:00
|
|
|
}
|