EasyManua.ls Logo

Infineon TriCore TC1.6P - ABSDIFS - Absolute Value of Difference with Saturation

Infineon TriCore TC1.6P
484 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
TriCore
®
TC1.6P & TC1.6E
32-bit Unified Processor Core
Instruction Set
V1.0 2013-07
User Manual (Volume 2) 3-8
ABSDIFS
Absolute Value of Difference with Saturation
Description
Put the absolute value of the difference between D[a] and either D[b] (instruction format RR) or const9 (instruction
format RC) in D[c]; i.e. if the contents of data register D[a] are greater than either D[b] (format RR) or const9 (format
RC), then subtract D[b] (format RR) or const9 (format RC) from D[a] and put the result in data register D[c];
otherwise, subtract D[a] from either D[b] (format RR) or const9 (format RC) and put the result in D[c]. The operands
are treated as signed, 32-bit integers, with saturation on signed overflow (ssov). The const9 value is sign-
extended.
ABSDIFSD[c], D[a], const9 (RC)
result = (D[a] > sign_ext(const9)) ? D[a] - sign_ext(const9) : sign_ext(const9) - D[a];
D[c] = ssov(result, 32);
ABSDIFSD[c], D[a], D[b] (RR)
result = (D[a] > D[b]) ? D[a] - D[b] : D[b] - D[a];
D[c] = ssov(result, 32);
Status Flags
Examples
absdifs d3, d1, d2
absdifs d3, d1, #126
See Also
ABS, ABSDIF, ABSS
C Not set by this instruction.
V overflow = (result > 7FFFFFFF
H
) OR (result < -80000000
H
);
if (overflow) then PSW.V = 1 else PSW.V = 0;
SV if (overflow) then PSW.SV = 1 else PSW.SV = PSW.SV;
AV advanced_overflow = result[31] ^ result[30];
if (advanced_overflow) then PSW.AV = 1 else PSW.AV = 0;
SAV if (advanced_overflow) then PSW.SAV = 1 else PSW.SAV = PSW.SAV;
31
c
28 27
0F
H
21 20
const9
12 11
a
8 7
8B
H
0
31
c
28 27
0F
H
20 19
-
18 17
-
16 15
b
12 11
a
8 7
0B
H
0

Table of Contents

Related product manuals