php-src/Zend/zend_ast.h

62 lines
2.2 KiB
C
Raw Normal View History

/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 1998-2013 Zend Technologies Ltd. (http://www.zend.com) |
+----------------------------------------------------------------------+
| This source file is subject to version 2.00 of the Zend license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.zend.com/license/2_00.txt. |
| If you did not receive a copy of the Zend license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@zend.com so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Bob Weinand <bwoebi@php.net> |
2013-11-06 18:21:07 +00:00
| Dmitry Stogov <dmitry@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
#ifndef ZEND_AST_H
#define ZEND_AST_H
typedef struct _zend_ast zend_ast;
#include "zend.h"
2013-11-06 18:21:07 +00:00
typedef enum _zend_ast_node_kind {
/* first 256 node kinds are reserved for opcodes */
ZEND_CONST = 256,
ZEND_BOOL_AND,
ZEND_BOOL_OR,
ZEND_TERNARY,
ZEND_UNARY_PLUS,
ZEND_UNARY_MINUS,
} zend_ast_ode_kind;
struct _zend_ast {
2013-11-06 18:21:07 +00:00
unsigned short kind;
unsigned short children;
union {
zval *val;
zend_ast *child[1];
} u;
};
2013-11-06 18:21:07 +00:00
ZEND_API zend_ast *zend_ast_create_constant_node(zval *zv);
2013-11-06 18:21:07 +00:00
ZEND_API zend_ast *zend_ast_create_node1(uint kind, zend_ast *op0);
ZEND_API zend_ast *zend_ast_create_node2(uint kind, zend_ast *op0, zend_ast *op1);
ZEND_API zend_ast *zend_ast_create_node3(uint kind, zend_ast *op0, zend_ast *op1, zend_ast *op2);
2013-11-06 18:21:07 +00:00
ZEND_API int zend_ast_is_ct_constant(zend_ast *ast);
2013-11-06 18:21:07 +00:00
ZEND_API void zend_ast_evaluate(zval *result, zend_ast *ast TSRMLS_DC);
2013-11-06 18:21:07 +00:00
ZEND_API zend_ast *zend_ast_copy(zend_ast *ast);
ZEND_API void zend_ast_destroy(zend_ast *ast);
#endif