aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/arm/interpreter/armvirt.cpp
blob: 7845d10425825ab95c3b1195e52009775f4fe2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*  armvirt.c -- ARMulator virtual memory interace:  ARM6 Instruction Emulator.
    Copyright (C) 1994 Advanced RISC Machines Ltd.
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */

/* This file contains a complete ARMulator memory model, modelling a
"virtual memory" system. A much simpler model can be found in armfast.c,
and that model goes faster too, but has a fixed amount of memory. This
model's memory has 64K pages, allocated on demand from a 64K entry page
table. The routines PutWord and GetWord implement this. Pages are never
freed as they might be needed again. A single area of memory may be
defined to generate aborts. */

#include "core/arm/skyeye_common/armdefs.h"
#include "core/arm/skyeye_common/armemu.h"

#include "core/mem_map.h"

#define dumpstack 1
#define dumpstacksize 0x10
#define maxdmupaddr 0x0033a850

/*ARMword ARMul_GetCPSR (ARMul_State * state) {
return 0;
}
ARMword ARMul_GetSPSR (ARMul_State * state, ARMword mode) {
return 0;
}
void ARMul_SetCPSR (ARMul_State * state, ARMword value) {

}
void ARMul_SetSPSR (ARMul_State * state, ARMword mode, ARMword value) {

}*/

void ARMul_Icycles(ARMul_State * state, unsigned number, ARMword address) {
}

void ARMul_Ccycles(ARMul_State * state, unsigned number, ARMword address) {
}

ARMword ARMul_LoadInstrS(ARMul_State * state, ARMword address, ARMword isize) {
    state->NumScycles++;

#ifdef HOURGLASS
    if ((state->NumScycles & HOURGLASS_RATE) == 0) {
        HOURGLASS;
    }
#endif
    if (isize == 2)
        return (u16)Memory::Read16(address);
    else
        return (u32)Memory::Read32(address);
}

ARMword ARMul_LoadInstrN(ARMul_State * state, ARMword address, ARMword isize) {
    state->NumNcycles++;

    if (isize == 2)
        return (u16)Memory::Read16(address);
    else
        return (u32)Memory::Read32(address);
}

ARMword ARMul_ReLoadInstr(ARMul_State * state, ARMword address, ARMword isize) {
    ARMword data;

    if ((isize == 2) && (address & 0x2)) {
        ARMword lo;
        lo = (u16)Memory::Read16(address);
        return lo;
    }

    data = (u32)Memory::Read32(address);
    return data;
}

ARMword ARMul_ReadWord(ARMul_State * state, ARMword address) {
    ARMword data;
    data = Memory::Read32(address);
    return data;
}

ARMword ARMul_LoadWordS(ARMul_State * state, ARMword address) {
    state->NumScycles++;
    return ARMul_ReadWord(state, address);
}

ARMword ARMul_LoadWordN(ARMul_State * state, ARMword address) {
    state->NumNcycles++;
    return ARMul_ReadWord(state, address);
}

ARMword ARMul_LoadHalfWord(ARMul_State * state, ARMword address) {
    state->NumNcycles++;
    return (u16)Memory::Read16(address);;
}

ARMword ARMul_ReadByte(ARMul_State * state, ARMword address) {
    return (u8)Memory::Read8(address);
}

ARMword ARMul_LoadByte(ARMul_State * state, ARMword address) {
    state->NumNcycles++;
    return ARMul_ReadByte(state, address);
}

void ARMul_StoreHalfWord(ARMul_State * state, ARMword address, ARMword data) {
    state->NumNcycles++;
    Memory::Write16(address, data);
}

void ARMul_StoreByte(ARMul_State * state, ARMword address, ARMword data) {
    state->NumNcycles++;
    ARMul_WriteByte(state, address, data);
}

ARMword ARMul_SwapWord(ARMul_State * state, ARMword address, ARMword data) {
    ARMword temp;
    state->NumNcycles++;
    temp = ARMul_ReadWord(state, address);
    state->NumNcycles++;
    Memory::Write32(address, data);
    return temp;
}

ARMword ARMul_SwapByte(ARMul_State * state, ARMword address, ARMword data) {
    ARMword temp;
    temp = ARMul_LoadByte(state, address);
    Memory::Write8(address, data);
    return temp;
}

void ARMul_WriteWord(ARMul_State * state, ARMword address, ARMword data) {
    Memory::Write32(address, data);
}

void ARMul_WriteByte(ARMul_State * state, ARMword address, ARMword data)
{
    Memory::Write8(address, data);
}

void ARMul_StoreWordS(ARMul_State * state, ARMword address, ARMword data)
{
    state->NumScycles++;
    ARMul_WriteWord(state, address, data);
}

void ARMul_StoreWordN(ARMul_State * state, ARMword address, ARMword data)
{
    state->NumNcycles++;
    ARMul_WriteWord(state, address, data);
}