OpenCores
URL https://opencores.org/ocsvn/scarm/scarm/trunk

Subversion Repositories scarm

[/] [scarm/] [trunk/] [src/] [scRegisterFile.cpp] - Blame information for rev 6

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 5 zhong
// scRegisterFile.cpp: implementation of the scRegisterFile class.
2
/*                            -------------------
3
    begin                : Oct 2 2002
4
    copyright            : (C) 2002 UESTC
5
    author               : Zhong Tao
6
    email                : zhong@opencores.org
7
 ***************************************************************************/
8
 
9
/***************************************************************************
10
 *                                                                         *
11
 *   This program is free software; you can redistribute it and/or modify  *
12
 *   it under the terms of the GNU General Public License as published by  *
13
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 *   (at your option) any later version.                                   *
15
 *                                                                         *
16
 ***************************************************************************/
17
 
18
#include "scRegisterFile.h"
19
#define DEBUG
20
//////////////////////////////////////////////////////////////////////
21
// Construction/Destruction
22
//////////////////////////////////////////////////////////////////////
23
 
24
 
25
 
26
scRegisterFile::~scRegisterFile()
27
{
28
 
29
}
30
 
31
void scRegisterFile::set_mode(enum MODE m)
32
{
33
        m_Mode=m;
34
        r[0]=&m_r0;
35
    r[1]=&m_r1;
36
        r[2]=&m_r2;
37
        r[3]=&m_r3;
38
        r[4]=&m_r4;
39
        r[5]=&m_r5;
40
        r[6]=&m_r6;
41
        r[7]=&m_r7;
42
        r[8]=&m_r8;
43
        r[9]=&m_r9;
44
        r[10]=&m_r10;
45
        r[11]=&m_r11;
46
        r[12]=&m_r12;
47
        r[13]=&m_r13;
48
        r[14]=&m_r14;
49
        r[15]=&m_r15;
50
        r[16]=&m_cpsr;
51
        r[17]=&m_spsr;
52
switch(m_Mode)
53
{
54
 
55
case M_USER:
56
        {
57
                //16 general register   
58
          //printf("M_USER Mode \n");   
59
          break;
60
 
61
    }
62
case M_FIQ://7 reg for FIQ mode 
63
        {
64
        r[8]=&m_r8_fiq;
65
        r[9]=&m_r9_fiq;
66
        r[10]=&m_r10_fiq;
67
        r[11]=&m_r11_fiq;
68
        r[12]=&m_r12_fiq;
69
        r[13]=&m_r13_fiq;
70
        r[14]=&m_r14_fiq;
71
        r[17]=&m_spsr_fiq;
72
        printf("M_FIQ\n");
73
        break;
74
        }
75
case M_SVC : //2 reg for supervisor mode
76
        {
77
        r[13]=&m_r13_svc;
78
        r[14]=&m_r14_svc;
79
        //r[17]=&m_spsr_svc;
80
        m_spsr_svc=m_cpsr;
81
        break;
82
        }
83
 
84
case M_ABORT://2 reg for abort mode
85
        {
86
        r[13]=&m_r13_abt;
87
        r[14]=&m_r14_abt;
88
        r[17]=&m_spsr_abt;
89
        break;
90
        }
91
case M_IRQ://2 m_reg for IRQ mode
92
        {
93
                r[13]=&m_r13_irq;
94
                r[14]=&m_r14_irq;
95
                r[17]=&m_spsr_irq;
96
                break;
97
        }
98
case M_UNDEF://2 m_reg undefined instruction mode
99
        {
100
        r[13]=&m_r13_und;
101
        r[14]=&m_r14_und;
102
        r[17]=&m_spsr_und;
103
        break;
104
        }
105
default:
106
        {
107
      cout<<"error in Regsiger File"<<endl;
108
        }
109
}//end of switch (m_Mode)
110
 
111
}
112
 
113
void scRegisterFile::entry()
114
{
115
        uint32_t i=in_REG;
116
        #if defined(DEBUG)
117
        if(i>0x11) {
118
         cout<<" error00:try to access register which doesn't exist. "<<endl;
119
         sc_stop();
120
        }
121
#endif
122
        if(m_rw==0)
123
    {
124
                inout_n_Data=*(r[i]);
125
         //cout<<"read port0:"<<"r"<<hex<<i<<"="<<inout_n_Data<<endl;
126
        }else
127
        {       //cout<<"port0:"<<"r"<<hex<<i<<"="<<inout_n_Data<<endl;
128
                (*r[i])=inout_n_Data;
129
        m_rw=0;
130
        }
131
}
132
 
133
void scRegisterFile::change_mode()
134
{
135
   MODE temp;
136
   temp=in_MODE;
137
   set_mode(temp);
138
}
139
 
140
void scRegisterFile::entry1()
141
{
142
 
143
 
144
        uint32_t i=in_REG1;
145
 
146
        #if defined(DEBUG)
147
        if(i>0x11) {
148
                cout<<" error01:try to access register which doesn't exist. "<<endl;
149
         sc_stop();
150
        }
151
#endif
152
        if(m_rw==0)
153
    {
154
                inout_n_Data1=(*r[i]);
155
 
156
        }else
157
        {
158
                (*r[i])=inout_n_Data1;
159
 
160
        //      cout<<"port1:"<<"r"<<hex<<i<<"="<<inout_n_Data1<<endl;
161
 
162
            m_rw=0;
163
        }
164
 
165
}
166
 
167
void scRegisterFile::entry2()
168
{
169
        uint32_t i=in_REG2;
170
        #if defined(DEBUG)
171
        if(i>0x11) {
172
         cout<<" error02:try to access register which doesn't exist. "<<endl;
173
         sc_stop();
174
        }
175
#endif
176
        if(m_rw==0)
177
    {
178
                inout_n_Data2=*r[i];
179
        //      cout<<(*r[15])<<"read reg"<<endl;
180
        }else
181
        {
182
                (*r[i])=inout_n_Data2;
183
        //      cout<<"port2:"<<"r"<<hex<<i<<"="<<inout_n_Data2<<endl;
184
                m_rw=0;
185
        }
186
}
187
 
188
void scRegisterFile::entry4()
189
{
190
        uint32_t i=in_REG_PC;
191
#if defined(DEBUG)
192
        if(i>0x11) {
193
         cout<<" error04:try to access register which doesn't exist. "<<endl;
194
         sc_stop();
195
        }
196
#endif
197
        if(m_rw==0)
198
    {
199
                inout_n_Data_PC=*r[i];
200
        }else
201
        {
202
                *r[i]=inout_n_Data_PC;
203
                //      cout<<"port pc:"<<hex<<(*r[15])<<"="<<hex<<inout_n_Data_PC<<endl;
204
                m_rw=0;
205
        }
206
}
207
 
208
void scRegisterFile::display()
209
{
210
 
211
  cout<<"                 PC:"<<hex<<m_r15;
212
  cout<<"   CPSR:";//0100
213
  // Bit masks for CPSR
214
    if((m_cpsr&N_FLAG)==N_FLAG) cout<<"N";else cout<<"n";
215
    if((m_cpsr&Z_FLAG)==Z_FLAG) cout<<"Z"; else cout<<"z";
216
    if((m_cpsr&C_FLAG)==C_FLAG) cout<<"C"; else cout<<"c";
217
    if((m_cpsr&V_FLAG)==V_FLAG) cout<<"V"; else cout<<"v"<<endl;
218
 
219
  cout<<"                r0="<<hex<<m_r0;
220
  cout<<" r1="<<hex<<m_r1;
221
  cout<<" r2="<<hex<<m_r2;
222
  cout<<" r3="<<hex<<m_r3;
223
  cout<<" r4="<<hex<<m_r4;
224
  cout<<" r5="<<hex<<m_r5;
225
  cout<<" r6="<<hex<<m_r6;
226
  cout<<" r7="<<hex<<m_r7<<endl;
227
  cout<<"                r8="<<hex<<m_r8;
228
  cout<<" r9="<<hex<<m_r9;
229
  cout<<" r10="<<hex<<m_r10;
230
  cout<<" r11="<<hex<<m_r11;
231
  cout<<" r12="<<hex<<m_r12;
232
  cout<<" r13="<<hex<<m_r13;
233
  cout<<"link="<<hex<<m_r14<<endl<<endl;
234
 
235
 
236
}
237
 
238
void scRegisterFile::rw()
239
{
240
       m_rw=1;
241
}
242
void scRegisterFile::rw1()
243
{
244
       m_rw=1;
245
 
246
}
247
void scRegisterFile::rw2()
248
{
249
       m_rw=1;
250
}
251
void scRegisterFile::rw4()
252
{
253
       m_rw=1;
254
}
255
 
256
void scRegisterFile::show()
257
{
258
 
259
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.