Searched refs:zend_ast_create_binary_op (Results 1 – 2 of 2) sorted by relevance
/PHP-8.1/Zend/ |
H A D | zend_language_parser.y | 1127 { $$ = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1, $3); } 1133 | expr '+' expr { $$ = zend_ast_create_binary_op(ZEND_ADD, $1, $3); } 1135 | expr '*' expr { $$ = zend_ast_create_binary_op(ZEND_MUL, $1, $3); } 1137 | expr '/' expr { $$ = zend_ast_create_binary_op(ZEND_DIV, $1, $3); } 1140 | expr T_SR expr { $$ = zend_ast_create_binary_op(ZEND_SR, $1, $3); } 1146 { $$ = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1, $3); } 1148 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1, $3); } 1150 { $$ = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1, $3); } 1152 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1, $3); } 1154 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1, $3); } [all …]
|
H A D | zend_ast.h | 355 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 8 milliseconds