Library ArithOps
@author Patryk Czarnik Module enumerates arithmetic operators supported by the semantics.
Unary arithmetic operators.
Binary arithmetic operators.
Inductive TBinOp :=
| BinOp_add
| BinOp_sub
| BinOp_mul
| BinOp_div
| BinOp_rem
| BinOp_xor
| BinOp_and
| BinOp_or
| BinOp_shl
| BinOp_shr
| BinOp_ushr.
| BinOp_add
| BinOp_sub
| BinOp_mul
| BinOp_div
| BinOp_rem
| BinOp_xor
| BinOp_and
| BinOp_or
| BinOp_shl
| BinOp_shr
| BinOp_ushr.
Comparison arithmetic operations.
Comparison operators.
Casting operators.
Comparison operators returning integer (for fcmpl and fcmpg
as well as lcmp).