25 lines
703 B
C++
25 lines
703 B
C++
#include "stdafx.h"
|
|
#if defined(__aarch64__)
|
|
|
|
#include <Project64-core/N64System/Recompiler/Aarch64/Aarch64ops.h>
|
|
#include <Project64-core/N64System/Recompiler/CodeBlock.h>
|
|
|
|
CAarch64Ops::CAarch64Ops(CCodeBlock & CodeBlock) :
|
|
asmjit::a64::Assembler(&CodeBlock.CodeHolder()),
|
|
m_CodeBlock(CodeBlock)
|
|
{
|
|
}
|
|
|
|
asmjit::Error CAarch64Ops::_log(const char * data, size_t size) noexcept
|
|
{
|
|
stdstr AsmjitLog(std::string(data, size));
|
|
AsmjitLog.Trim("\n");
|
|
for (SymbolMap::const_iterator itr = m_Symbols.begin(); itr != m_Symbols.end(); itr++)
|
|
{
|
|
AsmjitLog.Replace(itr->first, itr->second);
|
|
}
|
|
m_CodeBlock.Log(" %s", AsmjitLog.c_str());
|
|
return asmjit::kErrorOk;
|
|
}
|
|
|
|
#endif |