Difference between revisions of "Assembler:Commands:MULSD"
Jump to navigation
Jump to search
m |
|||
Line 11: | Line 11: | ||
Multiplies the low double-precision floating-point value in the source operand (second operand) by the low double-precision floating-point value in the destination operand (first operand), and stores the double-precision floating-point result in the destination operand. The source operand can be an XMM register or a 64-bit memory location. The destination operand is an XMM register. The high quadword of the destination operand remains unchanged. | Multiplies the low double-precision floating-point value in the source operand (second operand) by the low double-precision floating-point value in the destination operand (first operand), and stores the double-precision floating-point result in the destination operand. The source operand can be an XMM register or a 64-bit memory location. The destination operand is an XMM register. The high quadword of the destination operand remains unchanged. | ||
− | [ | + | [https://c9x.me/x86/html/file_module_x86_id_213.html c9x.me/x86/html/file_module_x86_id_213.html] |
</div> | </div> | ||
Line 21: | Line 21: | ||
|- | |- | ||
|destination | |destination | ||
− | | | + | |xmm |
|- | |- | ||
|source | |source | ||
− | | | + | |xmm / m64 |
|} | |} | ||
Line 44: | Line 44: | ||
== External links == | == External links == | ||
− | * [http://x86. | + | * [http://https://c9x.me/x86/ https://c9x.me/x86/] |
* [http://ref.x86asm.net/ ref.x86asm.net] | * [http://ref.x86asm.net/ ref.x86asm.net] | ||
* [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings] | * [https://wikipedia.org/wiki/X86_instruction_listings wikipedia.org/wiki/X86_instruction_listings] |
Revision as of 00:58, 3 January 2018
command mulsd destination, source
Multiplies the source operand by destination operand. Used for Multiplying Scalar Double-Precision Floating-Point Values. The mulsd command can only be used with xmm registers.
Destination = Destination * Source
Multiplies the low double-precision floating-point value in the source operand (second operand) by the low double-precision floating-point value in the destination operand (first operand), and stores the double-precision floating-point result in the destination operand. The source operand can be an XMM register or a 64-bit memory location. The destination operand is an XMM register. The high quadword of the destination operand remains unchanged.
Command Parameters
Parameter | Description |
---|---|
destination | xmm |
source | xmm / m64 |
Examples
mulsd xmm0,xmm1
mulsd xmm3,[edx+110]
mulsd xmm15,[rdx+10]
mulsd xmm5,[00123abc]
mulsd xmm7,[UserDefinedSymbol]