Home
last modified time | relevance | path

Searched refs:zend_ast_create_binary_op (Results 1 – 2 of 2) sorted by relevance

/PHP-7.3/Zend/
H A Dzend_language_parser.y921 { $$ = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1, $3); }
926 | expr '+' expr { $$ = zend_ast_create_binary_op(ZEND_ADD, $1, $3); }
928 | expr '*' expr { $$ = zend_ast_create_binary_op(ZEND_MUL, $1, $3); }
930 | expr '/' expr { $$ = zend_ast_create_binary_op(ZEND_DIV, $1, $3); }
933 | expr T_SR expr { $$ = zend_ast_create_binary_op(ZEND_SR, $1, $3); }
939 { $$ = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1, $3); }
941 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1, $3); }
943 { $$ = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1, $3); }
945 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1, $3); }
947 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1, $3); }
[all …]
H A Dzend_ast.h317 static zend_always_inline zend_ast *zend_ast_create_binary_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_binary_op() function

Completed in 9 milliseconds