binary_op_type    484 Zend/zend_compile.h typedef int (*binary_op_type)(zval *, zval *, zval * TSRMLS_DC);
binary_op_type    486 Zend/zend_compile.h ZEND_API binary_op_type get_binary_op(int opcode);
binary_op_type    820 Zend/zend_opcode.c ZEND_API binary_op_type get_binary_op(int opcode)
binary_op_type    825 Zend/zend_opcode.c 			return (binary_op_type) add_function;
binary_op_type    829 Zend/zend_opcode.c 			return (binary_op_type) sub_function;
binary_op_type    833 Zend/zend_opcode.c 			return (binary_op_type) mul_function;
binary_op_type    836 Zend/zend_opcode.c 			return (binary_op_type) pow_function;
binary_op_type    840 Zend/zend_opcode.c 			return (binary_op_type) div_function;
binary_op_type    844 Zend/zend_opcode.c 			return (binary_op_type) mod_function;
binary_op_type    848 Zend/zend_opcode.c 			return (binary_op_type) shift_left_function;
binary_op_type    852 Zend/zend_opcode.c 			return (binary_op_type) shift_right_function;
binary_op_type    856 Zend/zend_opcode.c 			return (binary_op_type) concat_function;
binary_op_type    859 Zend/zend_opcode.c 			return (binary_op_type) is_identical_function;
binary_op_type    862 Zend/zend_opcode.c 			return (binary_op_type) is_not_identical_function;
binary_op_type    865 Zend/zend_opcode.c 			return (binary_op_type) is_equal_function;
binary_op_type    868 Zend/zend_opcode.c 			return (binary_op_type) is_not_equal_function;
binary_op_type    871 Zend/zend_opcode.c 			return (binary_op_type) is_smaller_function;
binary_op_type    874 Zend/zend_opcode.c 			return (binary_op_type) is_smaller_or_equal_function;
binary_op_type    878 Zend/zend_opcode.c 			return (binary_op_type) bitwise_or_function;
binary_op_type    882 Zend/zend_opcode.c 			return (binary_op_type) bitwise_and_function;
binary_op_type    886 Zend/zend_opcode.c 			return (binary_op_type) bitwise_xor_function;
binary_op_type    889 Zend/zend_opcode.c 			return (binary_op_type) boolean_xor_function;
binary_op_type    892 Zend/zend_opcode.c 			return (binary_op_type) NULL;