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

Subversion Repositories scarm

[/] [scarm/] [trunk/] [src/] [scSW2.cpp] - Blame information for rev 10

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

Line No. Rev Author Line
1 5 zhong
// scSW2.cpp: implementation of the scSW1 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
#include "scSW2.h"
18
 
19
//////////////////////////////////////////////////////////////////////
20
// Construction/Destruction
21
//////////////////////////////////////////////////////////////////////
22
 
23
scSW2::scSW2(uint32_t i)
24
{
25
  ir.rm=i;
26
  ir.pad2=i>>4;
27
  ir.type=i>>5;
28
  ir.shift=i>>7;
29
  ir.rd=i>>12;
30
  ir.rn=i>>16;
31
  ir.ls=i>>20;
32
  ir.wb=i>>21;
33
  ir.b=i>>22;
34
  ir.u=i>>23;
35
  ir.p=i>>24;
36
  ir.hash=i>>25;
37
  ir.pad=i>>26;
38
  ir.cond=i>>28;
39
 
40
}
41
 
42
scSW2::~scSW2()
43
{
44
 
45
}
46
const char* scSW2::kind_string_l = "LDR";
47
const char* scSW2::kind_string_s = "STR";
48
const char* scSW2::kind()
49
{
50
        if(ir.ls)
51
         return kind_string_l;
52
        else
53
                 return kind_string_s;
54
}
55
 
56
uint32_t scSW2::A()
57
{
58
  return ir.rn;
59
}
60
 
61
REGS scSW2::Rd()
62
{
63
 return REGS(ir.rd);
64
}
65
 
66
bool scSW2::is_imm()
67
{
68
 return ir.hash;
69
}
70
 
71
uint32_t scSW2::B()
72
{
73
  return ir.rm;
74
}
75
 
76
SHIFT scSW2::shift_type()
77
{
78
  return SHIFT(ir.type);
79
}
80
 
81
COND scSW2::cond()
82
{
83
  return COND(ir.cond);
84
}
85
 
86
bool scSW2::is_shift()
87
{
88
  return true;
89
}
90
 
91
bool scSW2::is_rs()
92
{
93
  return true;
94
}
95
 
96
uint32_t scSW2::dist()
97
{
98
  return ir.shift;
99
}
100
 
101
bool scSW2::pre()
102
{
103
 return ir.p;
104
}
105
 
106
bool scSW2::wb()
107
{
108
 return ir.wb;
109
}
110
 
111
bool scSW2::load()
112
{
113
  return ir.ls;
114
}
115
 
116
REGS scSW2::Rn()
117
{
118
 return REGS(ir.rn);
119
}
120
 
121
bool scSW2::is_ls()
122
{
123
  return true;
124
}
125
 
126
bool scSW2::is_word()
127
{
128
  return !(ir.b);//byte or word
129
}
130
 
131
OPCODE scSW2::op()
132
{
133
        if(ir.u==0)
134
        {
135
        return OP_SUB;
136
        }else
137
                return OP_ADD;
138
 
139
}
140
 
141
bool scSW2::is_branch()
142
{
143
  return false;
144
}
145
 
146
bool scSW2::is_mult()
147
{
148
  return false;
149
}
150
 
151
bool scSW2::set()
152
{
153
  return false;
154
}

powered by: WebSVN 2.1.0

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