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

Subversion Repositories scarm

[/] [scarm/] [trunk/] [src/] [scSW1.cpp] - Blame information for rev 5

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

Line No. Rev Author Line
1 5 zhong
///////////////////////////////////////////////////////////////////////////////
2
// This program is free software; you can redistribute it and/or
3
// modify it under the terms of the GNU General Public License
4
// as published by the Free Software Foundation; either version 2
5
// of the License, or (at your option) any later version.
6
//
7
// This program is distributed in the hope that it will be useful,
8
// but WITHOUT ANY WARRANTY; without even the implied warranty of
9
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
// GNU General Public License for more details.
11
//
12
// You should have received a copy of the GNU General Public License
13
// along with this program; if not, write to the Free Software
14
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
15
//////////////////////////////////////////////////////////////////////
16
 
17
///////////////////////////////////////////////////////////////////              
18
//          
19
//  Original Author: Allen Tao Zhong,
20
//  University of Electronic Science and Technology in China
21
//  email: zhong@opencores.org
22
//  info   This is a SystemC ARM model
23
// scSW1.cpp: implementation of the scSW1 class.
24
//
25
//////////////////////////////////////////////////////////////////////
26
 
27
#include "scSW1.h"
28
 
29
//////////////////////////////////////////////////////////////////////
30
// Construction/Destruction
31
//////////////////////////////////////////////////////////////////////
32
 
33
scSW1::scSW1(uint32_t i)
34
{
35
 
36
        ir.imm=i;
37
        ir.rd=i>>12;
38
        ir.rn=i>>16;
39
    ir.ls=i>>20;
40
        ir.wb=i>>21;
41
  ir.b=i>>22;
42
  ir.u=i>>23;
43
  ir.p=i>>24;
44
  ir.hash=i>>25;
45
  ir.pad=i>>26;
46
  ir.cond=i>>28;
47
 
48
}
49
 
50
scSW1::~scSW1()
51
{
52
 
53
}
54
const char* scSW1::kind_string_l = "LDR";
55
const char* scSW1::kind_string_s = "STR";
56
const char* scSW1::kind()
57
{
58
        if(ir.ls)
59
         return kind_string_l;
60
        else
61
                 return kind_string_s;
62
}
63
 
64
uint32_t scSW1::A()
65
{
66
 
67
   return ir.rn;
68
}
69
 
70
REGS scSW1::Rd()
71
{
72
 return REGS(ir.rd);
73
}
74
 
75
uint32_t scSW1::B()
76
{
77
   return ir.imm;
78
 
79
}
80
 
81
bool scSW1::is_imm()
82
{
83
 return true;
84
}
85
 
86
OPCODE scSW1::op()
87
{
88
   if(ir.u==0)
89
        return OP_SUB;
90
   else
91
        return OP_ADD;
92
}
93
 
94
COND scSW1::cond()
95
{
96
  return COND(ir.cond);
97
}
98
 
99
SHIFT scSW1::shift_type()
100
{
101
 return SHIFT(0);
102
}
103
 
104
uint32_t scSW1::dist()
105
{
106
 return 0;
107
}
108
 
109
bool scSW1::is_shift()
110
{
111
  return false;
112
}
113
 
114
bool scSW1::pre()
115
{
116
 return ir.p;
117
}
118
 
119
bool scSW1::load()
120
{
121
 return ir.ls;
122
}
123
 
124
bool scSW1::wb()
125
{
126
  return ir.wb;
127
}
128
 
129
REGS scSW1::Rn()
130
{
131
  return REGS(ir.rn);
132
}
133
 
134
bool scSW1::is_mult()
135
{
136
  return false;
137
}
138
 
139
 
140
bool scSW1::is_ls()
141
{
142
  return true;
143
}
144
 
145
bool scSW1::is_rs()
146
{
147
  return false;
148
}
149
 
150
bool scSW1::is_branch()
151
{
152
 return false;
153
}
154
 
155
bool scSW1::set()
156
{
157
 return false;
158
}

powered by: WebSVN 2.1.0

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