Lines Matching full:operands
321 * **ADD**: returns the sum of its two integer operands.
322 * **SUB**: returns the difference of its two integer operands. It is used to implement the "-" unar…
323 * **MUL**: returns the product of its two integer operands.
325 * **SDIV**: returns the signed quotient of its two integer operands.
326 * **SREM**: returns the remainder from the signed division of its two integer operands.
327 * **UDIV**: returns the unsigned quotient of its two integer operands.
328 * **UREM**: returns the remainder from the unsigned division of its two integer operands.
329 * **AND**: returns the bitwise logical and of its two operands.
330 * **XOR**: returns the bitwise logical exclusive or of its two operands. It is used to implement th…
331 * **OR**: returns the bitwise logical inclusive or of its two operands.
347 * **FADD**: returns the sum of its two floating-point operands.
348 * **FSUB**: returns the difference of its two floating-point operands.
349 * **FMUL**: returns the product of its two floating-point operands.
351 * **FDIV**: returns the quotient of its two floating-point operands.
352 * **FMOD**: returns the remainder from the division of its two floating-point operands.
365 * **ICMP**: returns a boolean (`I1`) value based on comparison of its two integer operands. Conditi…
366 …* `0001` `EQ`: yields true if the operands are equal, false otherwise. No sign interpretation is n…
367 …* `0010` `UGT`: interprets the operands as unsigned values and yields true if op1 is greater than …
368 …* `0011` `UGE`: interprets the operands as unsigned values and yields true if op1 is greater than …
369 …* `0100` `ULT`: interprets the operands as unsigned values and yields true if op1 is less than op2.
370 …* `0101` `ULE`: interprets the operands as unsigned values and yields true if op1 is less than or …
371 …* `0110` `NE`: yields true if the operands are unequal, false otherwise. No sign interpretation is…
372 …* `1010` `SGT`: interprets the operands as signed values and yields true if op1 is greater than op…
373 …* `1011` `SGE`: interprets the operands as signed values and yields true if op1 is greater than or…
374 * `1100` `SLT`: interprets the operands as signed values and yields true if op1 is less than op2.
375 …* `1101` `SLE`: interprets the operands as signed values and yields true if op1 is less than or eq…
388 Note: **ordered** means there is no NaN in the operands.
390 * **FCMP**: returns a boolean (`I1`) value based on comparison of its two floating-point operands. …