Searched refs:zend_ast_create_binary_op (Results 1 – 2 of 2) sorted by relevance
/PHP-7.1/Zend/ |
H A D | zend_language_parser.y | 914 { $$ = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1, $3); } 919 | expr '+' expr { $$ = zend_ast_create_binary_op(ZEND_ADD, $1, $3); } 921 | expr '*' expr { $$ = zend_ast_create_binary_op(ZEND_MUL, $1, $3); } 923 | expr '/' expr { $$ = zend_ast_create_binary_op(ZEND_DIV, $1, $3); } 926 | expr T_SR expr { $$ = zend_ast_create_binary_op(ZEND_SR, $1, $3); } 932 { $$ = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1, $3); } 934 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1, $3); } 936 { $$ = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1, $3); } 938 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1, $3); } 940 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1, $3); } [all …]
|
H A D | zend_ast.h | 261 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 13 milliseconds