Changes between Version 9 and Version 10 of GcnInstrsSop2


Ignore:
Timestamp:
11/15/15 11:00:24 (8 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GcnInstrsSop2

    v9 v10  
    476476Syntax: S_CSELECT_B32 SDST, SSRC0, SSRC1<br />
    477477Description: If SCC is 1 then store SSRC0 into SDST, otherwise store SSRC1 into SDST.
    478 SCC has not been changed.<br />
     478SCC is not changed.<br />
    479479Operation:<br />
    480480<code>SDST = SCC ? SSRC0 : SSRC1</code></p>
     
    483483Syntax: S_CSELECT_B32 SDST(2), SSRC0(2), SSRC1(2)<br />
    484484Description: If SCC is 1 then store 64-bit SSRC0 into SDST, otherwise store
    485 64-bit SSRC1 into SDST. SCC has not been changed.<br />
     48564-bit SSRC1 into SDST. SCC is not changed.<br />
    486486Operation:<br />
    487487<code>SDST = SCC ? SSRC0 : SSRC1</code></p>
     
    524524Syntax: S_MIN_I32 SDST, SSRC0, SSRC1<br />
    525525Description: Choose largest signed value value from SSRC0 and SSRC1 and store
    526 its into SDST, and store 1 to SCC if SSRC0 value has been choosen, otherwise store 0 to SCC.<br />
     526its into SDST, and store 1 to SCC if SSRC0 value was choosen, otherwise store 0 to SCC.<br />
    527527Operation:<br />
    528528<code>SDST = (INT32)SSRC0 &gt; (INT32)SSRC1 ? SSRC0 : SSRC1
     
    532532Syntax: S_MAX_U32 SDST, SSRC0, SSRC1<br />
    533533Description: Choose largest unsigned value value from SSRC0 and SSRC1 and store
    534 its into SDST, and store 1 to SCC if SSRC0 value has been choosen, otherwise store 0 to SCC.<br />
     534its into SDST, and store 1 to SCC if SSRC0 value was choosen, otherwise store 0 to SCC.<br />
    535535Operation:<br />
    536536<code>SDST = SSRC0 &gt; SSRC1 ? SSRC0 : SSRC1
     
    540540Syntax: S_MIN_I32 SDST, SSRC0, SSRC1<br />
    541541Description: Choose smallest signed value value from SSRC0 and SSRC1 and store
    542 its into SDST, and store 1 to SCC if SSRC0 value has been choosen, otherwise store 0 to SCC.<br />
     542its into SDST, and store 1 to SCC if SSRC0 value was choosen, otherwise store 0 to SCC.<br />
    543543Operation:<br />
    544544<code>SDST = (INT32)SSRC0 &lt; (INT32)SSRC1 ? SSRC0 : SSRC1
     
    548548Syntax: S_MIN_U32 SDST, SSRC0, SSRC1<br />
    549549Description: Choose smallest unsigned value value from SSRC0 and SSRC1 and store
    550 its into SDST, and store 1 to SCC if SSRC0 value has been choosen, otherwise store 0 to SCC.<br />
     550its into SDST, and store 1 to SCC if SSRC0 value was choosen, otherwise store 0 to SCC.<br />
    551551Operation:<br />
    552552<code>SDST = SSRC0 &lt; SSRC1 ? SSRC0 : SSRC1