Rev. 1.50, 10/04, page 206 of 448
10.1.3
ADDV (Add with (V flag) Overflow Check): Arithmetic Instruction
Format
Operation
Instruction Code
Cycle
T Bit
ADDV Rm,Rn
Rn + Rm
→
Rn,
overflow
→
T
0011nnnnmmmm1111
1 Overflow
Description:
This instruction adds together the contents of general registers Rn and Rm and stores
the result in Rn. If overflow occurs, the T bit is set.
Notes:
None
Operation:
ADDV(long m, long n) /* ADDV Rm,Rn */
{
long dest,src,ans;
if ((long)R[n]>=0) dest = 0;
else dest = 1;
if ((long)R[m]>=0) src = 0;
else src = 1;
src += dest;
R[n] += R[m];
if ((long)R[n]>=0) ans = 0;
else ans = 1;
ans += dest;
if (src==0 || src==2) {
if (ans==1) T = 1;
else T = 0;
}
else T = 0;
PC += 2;
}
Содержание SuperH SH-4A
Страница 2: ...Rev 1 50 10 04 page ii of xx ...
Страница 8: ...Rev 1 50 10 04 page viii of xx ...
Страница 116: ...Rev 1 50 10 04 page 96 of 448 ...
Страница 178: ...Rev 1 50 10 04 page 158 of 448 ...
Страница 206: ...Rev 1 50 10 04 page 186 of 448 ...
Страница 231: ...Rev 1 50 10 04 page 211 of 448 Possible Exceptions Slot illegal instruction exception ...
Страница 235: ...Rev 1 50 10 04 page 215 of 448 Possible Exceptions Slot illegal instruction exception ...
Страница 238: ...Rev 1 50 10 04 page 218 of 448 Possible Exceptions Slot illegal instruction exception ...
Страница 408: ...Rev 1 50 10 04 page 388 of 448 Possible Exceptions Inexact Not generated when FPSCR PR 1 ...
Страница 445: ...Rev 1 50 10 04 page 425 of 448 Possible Exceptions Invalid operation Overflow Underflow Inexact ...
Страница 446: ...Rev 1 50 10 04 page 426 of 448 ...
Страница 468: ...Rev 1 50 10 04 page 448 of 448 ...
Страница 471: ......
Страница 472: ...SH 4A Software Manual ...