• Home
  • Raw
  • Download

Lines Matching full:operands

334 * **ADD**: returns the sum of its two integer operands.
335 * **SUB**: returns the difference of its two integer operands. It is used to implement the "-" unar…
336 * **MUL**: returns the product of its two integer operands.
338 * **SDIV**: returns the signed quotient of its two integer operands.
339 * **SREM**: returns the remainder from the signed division of its two integer operands.
340 * **UDIV**: returns the unsigned quotient of its two integer operands.
341 * **UREM**: returns the remainder from the unsigned division of its two integer operands.
342 * **AND**: returns the bitwise logical and of its two operands.
343 * **XOR**: returns the bitwise logical exclusive or of its two operands. It is used to implement th…
344 * **OR**: returns the bitwise logical inclusive or of its two operands.
360 * **FADD**: returns the sum of its two floating-point operands.
361 * **FSUB**: returns the difference of its two floating-point operands.
362 * **FMUL**: returns the product of its two floating-point operands.
364 * **FDIV**: returns the quotient of its two floating-point operands.
365 * **FMOD**: returns the remainder from the division of its two floating-point operands.
378 * **ICMP**: returns a boolean (`I1`) value based on comparison of its two integer operands. Conditi…
379 …* `0001` `EQ`: yields true if the operands are equal, false otherwise. No sign interpretation is n…
380 …* `0010` `UGT`: interprets the operands as unsigned values and yields true if op1 is greater than …
381 …* `0011` `UGE`: interprets the operands as unsigned values and yields true if op1 is greater than …
382 …* `0100` `ULT`: interprets the operands as unsigned values and yields true if op1 is less than op2.
383 …* `0101` `ULE`: interprets the operands as unsigned values and yields true if op1 is less than or …
384 …* `0110` `NE`: yields true if the operands are unequal, false otherwise. No sign interpretation is…
385 …* `1010` `SGT`: interprets the operands as signed values and yields true if op1 is greater than op…
386 …* `1011` `SGE`: interprets the operands as signed values and yields true if op1 is greater than or…
387 * `1100` `SLT`: interprets the operands as signed values and yields true if op1 is less than op2.
388 …* `1101` `SLE`: interprets the operands as signed values and yields true if op1 is less than or eq…
401 Note: **ordered** means there is no NaN in the operands.
403 * **FCMP**: returns a boolean (`I1`) value based on comparison of its two floating-point operands. …