Home
last modified time | relevance | path

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

/php-src/Zend/
H A Dzend_language_parser.y1186 { $$ = zend_ast_create_binary_op(ZEND_BOOL_XOR, $1, $3); }
1192 | expr '+' expr { $$ = zend_ast_create_binary_op(ZEND_ADD, $1, $3); }
1194 | expr '*' expr { $$ = zend_ast_create_binary_op(ZEND_MUL, $1, $3); }
1196 | expr '/' expr { $$ = zend_ast_create_binary_op(ZEND_DIV, $1, $3); }
1199 | expr T_SR expr { $$ = zend_ast_create_binary_op(ZEND_SR, $1, $3); }
1205 { $$ = zend_ast_create_binary_op(ZEND_IS_IDENTICAL, $1, $3); }
1207 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_IDENTICAL, $1, $3); }
1209 { $$ = zend_ast_create_binary_op(ZEND_IS_EQUAL, $1, $3); }
1211 { $$ = zend_ast_create_binary_op(ZEND_IS_NOT_EQUAL, $1, $3); }
1213 { $$ = zend_ast_create_binary_op(ZEND_IS_SMALLER, $1, $3); }
[all …]
H A Dzend_ast.h363 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
H A Dzend_ast.c432 return zend_ast_create_binary_op(ZEND_CONCAT, op0, op1); in zend_ast_create_concat_op()

Completed in 20 milliseconds