Logically XORs the contents of two general-purpose registers and places the complemented result in a general-purpose register.
eqv | RA,RS,RB |
eqv. | RA,RS,RB |
The eqv instruction logically XORs the contents of general-purpose register (GPR) RS with the contents of GPR RB and stores the complemented result in the target GPR RA.
The eqv instruction has two syntax forms. Each syntax form has a different effect on Condition Register Field 0.
Syntax Form | Overflow Exception (OE) | Fixed-Point Exception Register | Record Bit (Rc) | Condition Register Field 0 |
eqv | None | None | 0 | None |
eqv. | None | None | 1 | LT,GT,EQ,SO |
The two syntax forms of the eqv instruction never affect the Fixed-Point Exception Register. If the syntax form sets the Record (Rc) bit to 1, the instruction affects the Less Than (LT) zero, Greater Than (GT) zero, Equal To (EQ) zero, and Summary Overflow (SO) bits in Condition Register Field 0.
# Assume GPR 4 holds 0xFFF2 5730. # Assume GPR 6 holds 0x7B41 92C0. eqv 4,4,6 # GPR 4 now holds 0x7B4C 3A0F.
# Assume GPR 4 holds 0x0000 00FD. # Assume GPR 6 holds 0x7B41 92C0. eqv. 4,4,6 # GPR 4 now holds 0x84BE 6DC2.
Fixed-Point Logical Instructions.