Section courante

A propos

Section administrative du site

Assembleur 80x86

PMAXUW

SSE4.1 Maximum of Packed Unsigned Word

Syntaxe

PMAXUW destination, source

Description

Cette instruction permet de retourner la valeur maximal de chacun des mots (naturel) des paquets contenu dans deux opérandes.

Algorithme

SI destination(15..0) > source(15..0) ALORS
   destination(15..0) ← destination(15..0)
SINON
   destination(15..0) ← source(15..0)
FIN SI
SI destination(31..16) > source(31..16) ALORS
   destination(31..16) ← destination(31..16)
SINON
   destination(31..16) ← source(31..16)
FIN SI
SI destination(47..32) > source(47..32) ALORS
   destination(47..32) ← destination(47..32)
SINON
   destination(47..32) ← source(47..32)
FIN SI
SI destination(63..48) > source(63..48) ALORS
   destination(63..48) ← destination(63..48)
SINON
   destination(63..48) ← source(63..48)
FIN SI
SI destination(79..64) > source(79..64) ALORS
   destination(79..64) ← destination(79..64)
SINON
   destination(79..64) ← source(79..64)
FIN SI
SI destination(95..80) > source(95..80) ALORS
   destination(95..80) ← destination(95..80)
SINON
   destination(95..80) ← source(95..80)
FIN SI
SI destination(111..96) > source(111..96) ALORS
   destination(111..96) ← destination(111..96)
SINON
   destination(111..96) ← source(111..96)
FIN SI
SI destination(127..112) > source(127..112) ALORS
   destination(127..112) ← destination(127..112)
SINON
   destination(127..112) ← source(127..112)
FIN SI

Mnémonique

Instruction Opcode Description
PMAXUW xmm1,xmm2/m128 66h 0Fh 38h 3Eh /r Cette instruction permet de retourner la valeur maximal de chacun des mots (naturel) des paquets contenu dans deux opérandes.

Références

Intel® 64 and IA-32 Architectures Software Developer’s Manual Volume 2B: Instruction Set Reference, N-Z, Edition Intel, Mars 2010, Publication No. 253667-034US, page 167 à 169.

Dernière mise à jour : Samedi, le 20 septembre 2014