1#include "host/KReplaySystem.hh"
2#include "host/KTestSystem.hh"
3#include "host/Option.hh"
5#include <egg/core/ExpHeap.hh>
7#if defined(__arm64__) || defined(__aarch64__)
8static void FlushDenormalsToZero() {
10 asm(
"mrs %0, fpcr" :
"=r"(fpcr));
11 asm(
"msr fpcr, %0" ::
"r"(fpcr | (1 << 24)));
13#elif defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86)
16static void FlushDenormalsToZero() {
17 _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
21static void *s_memorySpace =
nullptr;
24static void InitMemory() {
25 constexpr size_t MEMORY_SPACE_SIZE = 0x1000000;
27 opt.
setBit(Abstract::Memory::MEMiHeapHead::eOptFlag::ZeroFillAlloc);
30 opt.
setBit(Abstract::Memory::MEMiHeapHead::eOptFlag::DebugFillAlloc);
33 s_memorySpace = malloc(MEMORY_SPACE_SIZE);
34 s_rootHeap = EGG::ExpHeap::create(s_memorySpace, MEMORY_SPACE_SIZE, opt);
35 s_rootHeap->setName(
"EGGRoot");
36 s_rootHeap->becomeCurrentHeap();
38 EGG::SceneManager::SetRootHeap(s_rootHeap);
41int main(
int argc,
char **argv) {
42 FlushDenormalsToZero();
48 const std::unordered_map<std::string, std::function<
KSystem *()>> modeMap = {
49 {
"test", []() ->
KSystem * {
return KTestSystem::CreateInstance(); }},
50 {
"replay", []() ->
KSystem * {
return KReplaySystem::CreateInstance(); }},
54 PANIC(
"Too few arguments!");
61 std::optional<Host::EOption> flag = Host::Option::CheckFlag(argv[1]);
66 if (*flag != Host::EOption::Mode) {
67 PANIC(
"First flag expected to be mode!");
71 const std::string mode = argv[2];
73 auto it = modeMap.find(mode);
74 if (it != modeMap.end()) {
77 PANIC(
"Invalid mode!");
82 return sys->
run() ? 0 : 1;
A high-level representation of a memory heap for managing dynamic memory allocation....
Base interface for a Kinoko system.
virtual void init()=0
Initializes the system.
virtual void parseOptions(int argc, char **argv)=0
Parses non-generic command line options.
virtual bool run()=0
Executes a run.
constexpr TBitFlag< T, E > & setBit(Es... es)
Sets the corresponding bits for the provided enum values.