# COMISD
# Compare Scalar Ordered Double-Precision Floating- Point Values and Set EFLAGS
Opcode | Mnemonic | Description |
---|---|---|
66 0F 2F /r | COMISD xmm1, xmm2/m64 | Compare low double-precision floating-point values in xmm1 and xmm2/mem64 and set the EFLAGS flags accordingly. |
# Description
Compares the double-precision floating-point values in the low quadwords of source operand 1 (first operand) and source operand 2 (second operand), and sets the ZF, PF, and CF flags in the EFLAGS register according to the result (unordered, greater than, less than, or equal). The OF, SF and AF flags in the EFLAGS register are set to 0. The unordered result is returned if either source operand is a NaN (QNaN or SNaN).
Source operand 1 is an XMM register; source operand 2 can be an XMM register or a 64 bit memory location.
The COMISD instruction differs from the UCOMISD instruction in that it signals an SIMD floating-point invalid operation exception (#I) when a source operand is either a QNaN or SNaN. The UCOMISD instruction signals an invalid numeric exception only if a source operand is an SNaN.
The EFLAGS register is not updated if an unmasked SIMD floating-point exception is generated.
# Operation
Result = OrderedCompare(Destination[0..63], Source[0..63]);
switch(Result) {
case ResultUnordered:
ZF = 1;
PF = 1;
CF = 1;
break;
case ResultGreaterThan:
ZF = 0;
PF = 0;
CF = 0;
break;
case ResultLessThan:
ZF = 0;
PF = 0;
CF = 1;
break;
case ResultEqual:
ZF = 1;
PF = 0;
CF = 0;
break;
}
OF = 0;
AF = 0;
SF = 0;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# SIMD Floating-Point Exceptions
Invalid (if SNaN or QNaN operands), Denormal.
# Protected Mode Exceptions
# Real-Address Mode Exceptions
# Virtual-8086 Mode Exceptions
Same exceptions as in Real Address Mode
#PF(fault-code) | For a page fault. |
#PF(fault-code) | For a page fault. |
Instruction | Latency | Throughput | Execution Unit |
---|---|---|---|
CPUID | 0F3n/0F2n/069n | 0F3n/0F2n/069n | 0F2n |
COMISD xmm, xmm | 7/6/1 | 2/2/1 | FP_ADD FP_MISC |