Searched refs:zend_ast_create_binary_op (Results 1 – 2 of 2) sorted by relevance
/PHP-7.0/Zend/ |
H A D | zend_language_parser.y | 900 { $$ = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1, $3); } 905 | expr '+' expr { $$ = zend_ast_create_binary_op(ZEND_ADD, $1, $3); } 907 | expr '*' expr { $$ = zend_ast_create_binary_op(ZEND_MUL, $1, $3); } 909 | expr '/' expr { $$ = zend_ast_create_binary_op(ZEND_DIV, $1, $3); } 912 | expr T_SR expr { $$ = zend_ast_create_binary_op(ZEND_SR, $1, $3); } 918 { $$ = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1, $3); } 920 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1, $3); } 922 { $$ = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1, $3); } 924 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1, $3); } 926 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1, $3); } [all …]
|
H A D | zend_ast.h | 262 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 12 milliseconds