Changes between Version 15 and Version 16 of GcnInstrsSop2


Ignore:
Timestamp:
05/29/16 10:00:30 (8 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GcnInstrsSop2

    v15 v16  
    302302<p>Opcode: 2 (0x2)<br />
    303303Syntax: S_ADD_I32 SDST, SSRC0, SSRC1<br />
    304 Description: Add SSRC0 to SSRC1 and store result into SDST and store overflow flag into SCC.<br />
     304Description: Add SSRC0 to SSRC1 and store result into SDST and store overflow
     305flag into SCC.<br />
    305306Operation:<br />
    306307<code>SDST = SSRC0 + SSRC1
     
    645646<p>Opcode: 1 (0x1)<br />
    646647Syntax: S_SUB_U32 SDST, SSRC0, SSRC1<br />
    647 Description: Subtract SSRC1 from SSRC0 and store result into SDST and store borrow into SCC.<br />
     648Description: Subtract SSRC1 from SSRC0 and store result into SDST and store borrow
     649into SCC.<br />
    648650Operation:<br />
    649651<code>UINT64 temp = (UINT64)SSRC0 - (UINT64)SSRC1