Lines Matching refs:obj_node
2739 znode obj_node, prop_node; in zend_delayed_compile_prop() local
2743 obj_node.op_type = IS_UNUSED; in zend_delayed_compile_prop()
2745 zend_delayed_compile_var(&obj_node, obj_ast, type); in zend_delayed_compile_prop()
2746 zend_separate_if_call_and_write(&obj_node, obj_ast, type); in zend_delayed_compile_prop()
2750 opline = zend_delayed_emit_op(result, ZEND_FETCH_OBJ_R, &obj_node, &prop_node); in zend_delayed_compile_prop()
3789 znode obj_node, method_node; in zend_compile_method_call() local
3794 obj_node.op_type = IS_UNUSED; in zend_compile_method_call()
3796 zend_compile_expr(&obj_node, obj_ast); in zend_compile_method_call()
3800 opline = zend_emit_op(NULL, ZEND_INIT_METHOD_CALL, &obj_node, NULL); in zend_compile_method_call()
3957 znode obj_node; in zend_compile_clone() local
3958 zend_compile_expr(&obj_node, obj_ast); in zend_compile_clone()
3960 zend_emit_op_tmp(result, ZEND_CLONE, &obj_node, NULL); in zend_compile_clone()
7100 znode obj_node, class_node; in zend_compile_instanceof() local
7103 zend_compile_expr(&obj_node, obj_ast); in zend_compile_instanceof()
7104 if (obj_node.op_type == IS_CONST) { in zend_compile_instanceof()
7112 opline = zend_emit_op_tmp(result, ZEND_INSTANCEOF, &obj_node, NULL); in zend_compile_instanceof()