Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:BINARY

8    This file is part of Valgrind, a dynamic binary instrumentation
812 #define BINARY(name, op, s) \
825 BINARY (and, &, u);
826 BINARY (minus, -, u);
827 BINARY (mul, *, u);
830 BINARY (or, |, u);
831 BINARY (plus, +, u);
832 BINARY (shl, <<, u);
833 BINARY (shr, >>, u);
834 BINARY (shra, >>, s);
835 BINARY (xor, ^, u);
836 BINARY (le, <=, s);
837 BINARY (lt, <, s);
838 BINARY (ge, >=, s);
839 BINARY (gt, >, s);
840 BINARY (ne, !=, u);
841 BINARY (eq, ==, u);
843 #undef BINARY