Home
last modified time | relevance | path

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

/php-src/Zend/
H A Dzend_ast.h373 static zend_always_inline zend_ast *zend_ast_create_binary_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_binary_op() argument
374 return zend_ast_create_ex(ZEND_AST_BINARY_OP, opcode, op0, op1); in zend_ast_create_binary_op()
377 zend_ast *zend_ast_create_concat_op(zend_ast *op0, zend_ast *op1);
379 static zend_always_inline zend_ast *zend_ast_create_assign_op(uint32_t opcode, zend_ast *op0, zend_… in zend_ast_create_assign_op() argument
380 return zend_ast_create_ex(ZEND_AST_ASSIGN_OP, opcode, op0, op1); in zend_ast_create_assign_op()
382 static zend_always_inline zend_ast *zend_ast_create_cast(uint32_t type, zend_ast *op0) { in zend_ast_create_cast() argument
383 return zend_ast_create_ex(ZEND_AST_CAST, type, op0); in zend_ast_create_cast()
H A Dzend_ast.c459 zend_ast *zend_ast_create_concat_op(zend_ast *op0, zend_ast *op1) { in zend_ast_create_concat_op() argument
460 if (op0->kind == ZEND_AST_ZVAL && op1->kind == ZEND_AST_ZVAL) { in zend_ast_create_concat_op()
461 zval *zv0 = zend_ast_get_zval(op0); in zend_ast_create_concat_op()
469 return zend_ast_create_binary_op(ZEND_CONCAT, op0, op1); in zend_ast_create_concat_op()

Completed in 12 milliseconds