summaryrefslogtreecommitdiffstats
path: root/src/core/arm
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-03 02:40:29 +0100
committerbunnei <bunneidev@gmail.com>2015-01-03 02:40:29 +0100
commit3b2da87080f6367d66ce13ee3e45b7ed0687c61b (patch)
tree287d3fd12ee288144ee3ced7714922b477404655 /src/core/arm
parentMerge pull request #388 from lioncash/sm (diff)
parentdyncom: Remove dead function InterpreterInitInstLength (diff)
downloadyuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.tar
yuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.tar.gz
yuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.tar.bz2
yuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.tar.lz
yuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.tar.xz
yuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.tar.zst
yuzu-3b2da87080f6367d66ce13ee3e45b7ed0687c61b.zip
Diffstat (limited to 'src/core/arm')
-rw-r--r--src/core/arm/dyncom/arm_dyncom_interpreter.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
index c5e885bcd..bc55a082f 100644
--- a/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
+++ b/src/core/arm/dyncom/arm_dyncom_interpreter.cpp
@@ -3443,8 +3443,6 @@ static tdstate decode_thumb_instr(arm_processor *cpu, uint32_t inst, addr_t addr
return ret;
}
-unsigned int *InstLength;
-
enum {
KEEP_GOING,
FETCH_EXCEPTION
@@ -3529,28 +3527,6 @@ translated:
#define LOG_IN_CLR skyeye_printf_in_color
-int cmp(const void *x, const void *y) {
- return *(unsigned long long int*)x - *(unsigned long long int *)y;
-}
-
-void InterpreterInitInstLength(unsigned long long int *ptr, size_t size) {
- int array_size = size / sizeof(void *);
- unsigned long long int *InstLabel = new unsigned long long int[array_size];
- memcpy(InstLabel, ptr, size);
- qsort(InstLabel, array_size, sizeof(void *), cmp);
- InstLength = new unsigned int[array_size - 4];
- for (int i = 0; i < array_size - 4; i++) {
- for (int j = 0; j < array_size; j++) {
- if (ptr[i] == InstLabel[j]) {
- InstLength[i] = InstLabel[j + 1] - InstLabel[j];
- break;
- }
- }
- }
- for (int i = 0; i < array_size - 4; i++)
- LOG_DEBUG(Core_ARM11, "[%d]:%d", i, InstLength[i]);
-}
-
int clz(unsigned int x) {
int n;
if (x == 0) return (32);
@@ -6593,9 +6569,6 @@ unsigned InterpreterMainLoop(ARMul_State* state) {
}
INIT_INST_LENGTH:
{
-#if defined __GNUC__ || defined __clang__
- InterpreterInitInstLength((unsigned long long int *)InstLabel, sizeof(InstLabel));
-#endif
cpu->NumInstrsToExecute = 0;
return num_instrs;
}