Add "Arm64EmitterTest" which can run on startup to play around with instructions.

This commit is contained in:
Henrik Rydgard
2015-04-06 18:13:26 +02:00
parent 6cb107d6fc
commit db0fd1042f
8 changed files with 127 additions and 10 deletions
+4
View File
@@ -105,6 +105,8 @@ static UI::Theme ui_theme;
#ifdef ARM
#include "../../android/jni/ArmEmitterTest.h"
#elif defined(ARM64)
#include "../../android/jni/Arm64EmitterTest.h"
#endif
#ifdef IOS
@@ -256,6 +258,8 @@ void NativeGetAppInfo(std::string *app_dir_name, std::string *app_nice_name, boo
#if defined(ARM) && defined(ANDROID)
ArmEmitterTest();
#elif defined(ARM64) && defined(ANDROID)
Arm64EmitterTest();
#endif
}