-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdouble.c
268 lines (208 loc) · 4.45 KB
/
double.c
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
/* double.c - Double operand instructions.
*
* $Revision: 2.11 $
* $Date: 1999/12/27 10:19:40 $
*/
#include "defines.h"
static u_int32_t templong;
/* mov() - Move Instruction. Move operations with registers as the source
* and/or destination have been inlined. */
void mov()
{
if (SRC_MODE) {
load_src();
dstword = srcword;
} else {
dstword = regs[SRC_REG];
}
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
if (DST_MODE) {
store_dst();
} else {
regs[DST_REG] = dstword;
}
}
/* movsreg(), movsreg1() and movsreg1pc() can all be replaced with
* mov() above. I've broken them out in an attempt to improve
* performance.
*/
void movsreg()
{
dstword = regs[SRC_REG];
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
if (DST_MODE) {
store_dst();
} else {
regs[DST_REG] = dstword;
}
}
void movsreg1()
{
ll_word(regs[SRC_REG], dstword);
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
if (DST_MODE) {
store_dst();
} else {
regs[DST_REG] = dstword;
}
}
void movsreg1pc()
{
lli_word(regs[PC], dstword)
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
if (DST_MODE) {
store_dst();
} else {
regs[DST_REG] = dstword;
}
}
/* cmp() - Compare Instruction. */
void cmp()
{
load_src();
load_dst();
tmpword = ~dstword;
templong = ((u_int32_t) srcword) + ((u_int32_t) (tmpword)) + 1;
tmpword = LOW16(templong);
CHG_CC_N(tmpword);
CHG_CC_Z(tmpword);
CHG_CC_VC(srcword, dstword, tmpword); /* was CHG_CC_V */
CHG_CC_IC(templong);
}
/* add() - Add Instruction. */
void add()
{
load_src();
load_dst();
templong = ((u_int32_t) srcword) + ((u_int32_t) dstword);
tmpword = LOW16(templong);
CHG_CC_N(tmpword);
CHG_CC_Z(tmpword);
CHG_CC_V(srcword, dstword, tmpword);
CHG_CC_C(templong);
dstword = tmpword;
store_dst_2();
}
/* Subtract Instruction. */
void sub()
{
load_src();
load_dst();
tmpword = ~srcword;
templong = ((u_int32_t) dstword) + ((u_int32_t) tmpword) + 1;
tmpword = LOW16(templong);
CHG_CC_N(tmpword);
CHG_CC_Z(tmpword);
CHG_CC_VS(srcword, dstword, tmpword); /* was CHG_CC_V */
CHG_CC_IC(templong);
dstword = tmpword;
store_dst_2();
}
/* bit() - Bit Test Instruction. */
void bit()
{
load_src();
load_dst();
dstword = srcword & dstword;
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
}
/* bic() - Bit Clear Instruction. */
void bic()
{
load_src();
load_dst();
dstword = (~srcword) & dstword;
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
store_dst_2();
}
/* bis() - Bit Set Instruction. */
void bis()
{
load_src();
load_dst();
dstword = srcword | dstword;
CHG_CC_N(dstword);
CHG_CC_Z(dstword);
CLR_CC_V();
store_dst_2();
}
/* movb() - Move Byte Instruction. Move operations with registers as the
* source and/or destination have been inlined. */
void movb()
{
if (SRC_MODE) {
loadb_src();
} else {
srcbyte = LOW8(regs[SRC_REG]);
}
CHGB_CC_N(srcbyte);
CHGB_CC_Z(srcbyte);
CLR_CC_V();
/* move byte to a register causes sign extension */
if (DST_MODE) {
storeb_dst();
} else {
if (srcbyte & SIGN_B)
regs[DST_REG] = (u_int16_t) 0177400 + (u_int16_t) srcbyte;
else
regs[DST_REG] = (u_int16_t) srcbyte;
}
}
/* cmpb() - Compare Byte Instruction. */
void cmpb()
{
u_int8_t data3;
loadb_src();
loadb_dst();
data3 = (u_int8_t) ~ dstbyte;
tmpword = ((u_int16_t) srcbyte) + ((u_int16_t) (data3)) + 1;
data3 = LOW8(tmpword);
CHGB_CC_N(data3);
CHGB_CC_Z(data3);
CHGB_CC_VC(srcbyte, dstbyte, data3);
CHGB_CC_IC(tmpword);
}
/* bitb() - Bit Test Byte Instruction. */
void bitb()
{
loadb_src();
loadb_dst();
dstbyte = srcbyte & dstbyte;
CHGB_CC_N(dstbyte);
CHGB_CC_Z(dstbyte);
CLR_CC_V();
}
/* bicb() - Bit Clear Byte Instruction. */
void bicb()
{
loadb_src();
loadb_dst();
dstbyte = (u_int8_t) ((~srcbyte) & dstbyte);
CHGB_CC_N(dstbyte);
CHGB_CC_Z(dstbyte);
CLR_CC_V();
storeb_dst_2();
}
/* bisb() - Bit Set Byte Instruction. */
void bisb()
{
loadb_src();
loadb_dst();
dstbyte = srcbyte | dstbyte;
CHGB_CC_N(dstbyte);
CHGB_CC_Z(dstbyte);
CLR_CC_V();
storeb_dst_2();
}