Encoding:

MSA

011110

0000

df

wt

ws

wd

3RF

011011

6

4

1

5

5

5

6

Format:

FADD.df 

Vector Floating-Point Addition

FADD.W wd,ws,wt

MSA

Vector Floating-Point Addition

FADD.D wd,ws,wt

MSA

Vector Floating-Point Addition

Purpose:

Vector Floating-Point Addition

Vector floating-point addition.

Description:

wd[i] = ws[i] + wt[i]

The floating-point elements in vector wt are added to the floating-point elements in vector ws. The result is written to vector wd.

The add operation is defined by the IEEE Standard for Floating-Point Arithmetic 754TM-2008.

The operands and results are values in floating-point data format df.

Restrictions:

Data-dependent exceptions are poss ible as s pecified by the I EEE Standard for Floating-Point Arithmetic 754TM2008.

Operation:

FADD.W
   for i in 0 .. WRLEN/32-1
      WR[wd]32i+31..32i = AddFP(WR[ws]32i+31..32i, WR[wt]32i+31..32i, 32)
   endfor
FADD.D
   for i in 0 .. WRLEN/64-1
      WR[wd]64i+63..64i = AddFP(WR[ws]64i+63..64i, WR[wt]64i+63..64i, 64)
   endfor
function AddFP(tt, ts, n)
   /* Implementation defined add operation. */
endfunction AddFP

Exceptions:

Reserved Instruction Exception, MSA Disabled Exception, MSA Floating Point Exception.