Home | History | Annotate | Download | only in m_debuginfo

Lines Matching refs:BINARY

8    This file is part of Valgrind, a dynamic binary instrumentation
796 #define BINARY(name, op, s) \
809 BINARY (and, &, u);
810 BINARY (minus, -, u);
811 BINARY (mul, *, u);
814 BINARY (or, |, u);
815 BINARY (plus, +, u);
816 BINARY (shl, <<, u);
817 BINARY (shr, >>, u);
818 BINARY (shra, >>, s);
819 BINARY (xor, ^, u);
820 BINARY (le, <=, s);
821 BINARY (lt, <, s);
822 BINARY (ge, >=, s);
823 BINARY (gt, >, s);
824 BINARY (ne, !=, u);
825 BINARY (eq, ==, u);
827 #undef BINARY