1999-04-08 02:10:10 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Zend Engine |
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| Copyright (c) 1998-2004 Zend Technologies Ltd. (http://www.zend.com) |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2001-12-11 23:16:21 +08:00
|
|
|
| This source file is subject to version 2.00 of the Zend license, |
|
1999-07-16 22:58:16 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
2001-12-11 23:16:21 +08:00
|
|
|
| http://www.zend.com/license/2_00.txt. |
|
1999-07-16 22:58:16 +08:00
|
|
|
| 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. |
|
1999-04-08 02:10:10 +08:00
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
| Authors: Andi Gutmans <andi@zend.com> |
|
|
|
|
| Zeev Suraski <zeev@zend.com> |
|
|
|
|
+----------------------------------------------------------------------+
|
|
|
|
*/
|
|
|
|
|
2003-02-01 09:49:15 +08:00
|
|
|
/* $Id$ */
|
1999-07-16 22:58:16 +08:00
|
|
|
|
2000-07-03 08:55:36 +08:00
|
|
|
#ifndef ZEND_COMPILE_H
|
|
|
|
#define ZEND_COMPILE_H
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#include "zend.h"
|
1999-04-15 05:03:25 +08:00
|
|
|
|
1999-09-07 00:14:08 +08:00
|
|
|
#ifdef HAVE_STDARG_H
|
|
|
|
# include <stdarg.h>
|
1999-04-15 05:03:25 +08:00
|
|
|
#endif
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#include "zend_llist.h"
|
|
|
|
|
|
|
|
#define DEBUG_ZEND 0
|
1999-05-03 03:07:46 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
#define FREE_PNODE(znode) zval_dtor(&znode->u.constant);
|
|
|
|
|
2000-11-12 01:59:47 +08:00
|
|
|
#define SET_UNUSED(op) (op).op_type = IS_UNUSED
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-15 22:08:58 +08:00
|
|
|
#define INC_BPC(op_array) if (CG(interactive)) { ((op_array)->backpatch_count++); }
|
|
|
|
#define DEC_BPC(op_array) if (CG(interactive)) { ((op_array)->backpatch_count--); }
|
2001-07-28 18:51:54 +08:00
|
|
|
#define HANDLE_INTERACTIVE() if (CG(interactive)) { execute_new_code(TSRMLS_C); }
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-04-03 00:51:49 +08:00
|
|
|
#define RESET_DOC_COMMENT() \
|
2003-04-03 02:15:08 +08:00
|
|
|
{ \
|
2003-04-03 00:51:49 +08:00
|
|
|
CG(doc_comment) = NULL; \
|
|
|
|
CG(doc_comment_len) = 0; \
|
2003-04-03 02:15:08 +08:00
|
|
|
}
|
2003-04-03 00:51:49 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
typedef struct _zend_op_array zend_op_array;
|
2002-10-25 02:04:12 +08:00
|
|
|
typedef struct _zend_op zend_op;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _znode {
|
1999-04-08 02:10:10 +08:00
|
|
|
int op_type;
|
|
|
|
union {
|
|
|
|
zval constant;
|
|
|
|
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uint var;
|
2000-04-11 02:02:40 +08:00
|
|
|
zend_uint opline_num; /* Needs to be signed */
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_op_array *op_array;
|
2002-10-25 02:04:12 +08:00
|
|
|
zend_op *jmp_addr;
|
1999-04-08 02:10:10 +08:00
|
|
|
struct {
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uint var; /* dummy */
|
|
|
|
zend_uint type;
|
1999-04-08 02:10:10 +08:00
|
|
|
} EA;
|
|
|
|
} u;
|
|
|
|
} znode;
|
|
|
|
|
2002-10-19 17:45:51 +08:00
|
|
|
typedef struct _zend_execute_data zend_execute_data;
|
|
|
|
|
2004-08-20 04:03:06 +08:00
|
|
|
#define ZEND_OPCODE_HANDLER_ARGS zend_execute_data *execute_data TSRMLS_DC
|
|
|
|
#define ZEND_OPCODE_HANDLER_ARGS_PASSTHRU execute_data TSRMLS_CC
|
2002-10-19 17:45:51 +08:00
|
|
|
|
|
|
|
typedef int (*opcode_handler_t) (ZEND_OPCODE_HANDLER_ARGS);
|
|
|
|
|
2004-09-24 05:43:32 +08:00
|
|
|
extern ZEND_API opcode_handler_t *zend_opcode_handlers;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-10-25 02:04:12 +08:00
|
|
|
struct _zend_op {
|
2002-11-06 05:35:05 +08:00
|
|
|
opcode_handler_t handler;
|
1999-04-08 02:10:10 +08:00
|
|
|
znode result;
|
|
|
|
znode op1;
|
|
|
|
znode op2;
|
1999-04-13 02:29:09 +08:00
|
|
|
ulong extended_value;
|
1999-04-08 02:10:10 +08:00
|
|
|
uint lineno;
|
2002-11-06 05:35:05 +08:00
|
|
|
zend_uchar opcode;
|
2002-10-25 02:04:12 +08:00
|
|
|
};
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_brk_cont_element {
|
1999-04-08 02:10:10 +08:00
|
|
|
int cont;
|
|
|
|
int brk;
|
|
|
|
int parent;
|
|
|
|
} zend_brk_cont_element;
|
|
|
|
|
|
|
|
|
2004-02-03 20:17:09 +08:00
|
|
|
typedef struct _zend_try_catch_element {
|
|
|
|
zend_uint try_op;
|
|
|
|
zend_uint catch_op; /* ketchup! */
|
|
|
|
} zend_try_catch_element;
|
|
|
|
|
|
|
|
|
2004-03-10 00:38:37 +08:00
|
|
|
/* method flags (types) */
|
2003-03-07 06:53:23 +08:00
|
|
|
#define ZEND_ACC_STATIC 0x01
|
|
|
|
#define ZEND_ACC_ABSTRACT 0x02
|
|
|
|
#define ZEND_ACC_FINAL 0x04
|
2004-03-10 00:38:37 +08:00
|
|
|
#define ZEND_ACC_IMPLEMENTED_ABSTRACT 0x08
|
2004-01-24 06:04:42 +08:00
|
|
|
|
2004-03-10 00:38:37 +08:00
|
|
|
/* class flags (types) */
|
|
|
|
/* ZEND_ACC_IMPLICIT_ABSTRACT_CLASS is used for abstract classes (since it is set by any abstract method even interfaces MAY have it set, too). */
|
|
|
|
/* ZEND_ACC_EXPLICIT_ABSTRACT_CLASS denotes that a class was explicitly defined as abstract by using the keyword. */
|
|
|
|
#define ZEND_ACC_IMPLICIT_ABSTRACT_CLASS 0x10
|
|
|
|
#define ZEND_ACC_EXPLICIT_ABSTRACT_CLASS 0x20
|
|
|
|
#define ZEND_ACC_FINAL_CLASS 0x40
|
|
|
|
#define ZEND_ACC_INTERFACE 0x80
|
2002-11-24 04:44:12 +08:00
|
|
|
|
2004-03-10 00:38:37 +08:00
|
|
|
/* method flags (visibility) */
|
2002-12-09 20:10:17 +08:00
|
|
|
/* The order of those must be kept - public < protected < private */
|
2003-03-07 06:53:23 +08:00
|
|
|
#define ZEND_ACC_PUBLIC 0x100
|
|
|
|
#define ZEND_ACC_PROTECTED 0x200
|
|
|
|
#define ZEND_ACC_PRIVATE 0x400
|
2002-12-08 22:09:43 +08:00
|
|
|
#define ZEND_ACC_PPP_MASK (ZEND_ACC_PUBLIC | ZEND_ACC_PROTECTED | ZEND_ACC_PRIVATE)
|
2002-12-07 01:09:44 +08:00
|
|
|
|
2003-03-07 06:53:23 +08:00
|
|
|
#define ZEND_ACC_CHANGED 0x800
|
|
|
|
#define ZEND_ACC_IMPLICIT_PUBLIC 0x1000
|
2003-01-02 21:58:08 +08:00
|
|
|
|
2004-03-10 00:38:37 +08:00
|
|
|
/* method flags (special method detection) */
|
2003-08-23 23:38:58 +08:00
|
|
|
#define ZEND_ACC_CTOR 0x2000
|
2004-01-24 04:52:39 +08:00
|
|
|
#define ZEND_ACC_DTOR 0x4000
|
|
|
|
#define ZEND_ACC_CLONE 0x8000
|
2003-08-24 19:09:45 +08:00
|
|
|
|
2004-03-10 00:38:37 +08:00
|
|
|
/* method flag (bc only), any method that has this flag can be used statically and non statically. */
|
|
|
|
#define ZEND_ACC_ALLOW_STATIC 0x10000
|
|
|
|
|
2002-12-07 01:09:44 +08:00
|
|
|
char *zend_visibility_string(zend_uint fn_flags);
|
2002-11-24 04:44:12 +08:00
|
|
|
|
2003-02-04 20:12:34 +08:00
|
|
|
|
|
|
|
typedef struct _zend_property_info {
|
|
|
|
zend_uint flags;
|
|
|
|
char *name;
|
|
|
|
int name_length;
|
|
|
|
ulong h;
|
|
|
|
} zend_property_info;
|
|
|
|
|
|
|
|
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
typedef struct _zend_arg_info {
|
|
|
|
char *name;
|
|
|
|
zend_uint name_len;
|
|
|
|
char *class_name;
|
|
|
|
zend_uint class_name_len;
|
|
|
|
zend_bool allow_null;
|
|
|
|
zend_bool pass_by_reference;
|
2004-02-12 21:49:55 +08:00
|
|
|
zend_bool return_reference;
|
2004-02-25 22:56:45 +08:00
|
|
|
int required_num_args;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
} zend_arg_info;
|
|
|
|
|
2004-10-05 03:54:35 +08:00
|
|
|
typedef struct _zend_compiled_variable {
|
|
|
|
char *name;
|
|
|
|
int name_len;
|
|
|
|
ulong hash_value;
|
|
|
|
} zend_compiled_variable;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
struct _zend_op_array {
|
2003-03-29 19:19:38 +08:00
|
|
|
/* Common elements */
|
|
|
|
zend_uchar type;
|
|
|
|
char *function_name;
|
|
|
|
zend_class_entry *scope;
|
|
|
|
zend_uint fn_flags;
|
|
|
|
union _zend_function *prototype;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_uint num_args;
|
2004-02-25 17:25:37 +08:00
|
|
|
zend_uint required_num_args;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_arg_info *arg_info;
|
|
|
|
zend_bool pass_rest_by_reference;
|
2004-02-12 21:49:55 +08:00
|
|
|
unsigned char return_reference;
|
2003-03-29 19:19:38 +08:00
|
|
|
/* END of common elements */
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uint *refcount;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
zend_op *opcodes;
|
2000-04-11 02:02:40 +08:00
|
|
|
zend_uint last, size;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2004-10-05 03:54:35 +08:00
|
|
|
zend_compiled_variable *vars;
|
|
|
|
int last_var, size_var;
|
|
|
|
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uint T;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
zend_brk_cont_element *brk_cont_array;
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uint last_brk_cont;
|
|
|
|
zend_uint current_brk_cont;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2004-02-03 20:17:09 +08:00
|
|
|
zend_try_catch_element *try_catch_array;
|
|
|
|
int last_try_catch;
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/* static variables support */
|
|
|
|
HashTable *static_variables;
|
|
|
|
|
2001-07-15 22:08:58 +08:00
|
|
|
zend_op *start_op;
|
1999-04-08 02:10:10 +08:00
|
|
|
int backpatch_count;
|
2001-07-15 22:08:58 +08:00
|
|
|
|
2000-04-29 10:56:44 +08:00
|
|
|
zend_bool done_pass_two;
|
2002-03-15 23:09:46 +08:00
|
|
|
zend_bool uses_this;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-08-10 03:22:35 +08:00
|
|
|
char *filename;
|
2003-04-01 04:42:01 +08:00
|
|
|
zend_uint line_start;
|
|
|
|
zend_uint line_end;
|
|
|
|
char *doc_comment;
|
|
|
|
zend_uint doc_comment_len;
|
2000-08-10 03:22:35 +08:00
|
|
|
|
1999-08-16 03:29:39 +08:00
|
|
|
void *reserved[ZEND_MAX_RESERVED_RESOURCES];
|
1999-04-08 02:10:10 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2004-02-12 21:49:55 +08:00
|
|
|
#define ZEND_RETURN_VALUE 0
|
|
|
|
#define ZEND_RETURN_REFERENCE 1
|
|
|
|
#define ZEND_RETURN_REFERENCE_AGNOSTIC 2
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_internal_function {
|
2003-03-29 19:19:38 +08:00
|
|
|
/* Common elements */
|
|
|
|
zend_uchar type;
|
|
|
|
char *function_name;
|
|
|
|
zend_class_entry *scope;
|
|
|
|
zend_uint fn_flags;
|
|
|
|
union _zend_function *prototype;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_uint num_args;
|
2004-02-25 17:25:37 +08:00
|
|
|
zend_uint required_num_args;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_arg_info *arg_info;
|
|
|
|
zend_bool pass_rest_by_reference;
|
2004-02-12 21:49:55 +08:00
|
|
|
unsigned char return_reference;
|
2003-03-29 19:19:38 +08:00
|
|
|
/* END of common elements */
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
|
|
|
|
} zend_internal_function;
|
|
|
|
|
2002-12-07 01:09:44 +08:00
|
|
|
#define ZEND_FN_SCOPE_NAME(function) ((function) && (function)->common.scope ? (function)->common.scope->name : "")
|
2002-11-24 04:44:12 +08:00
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef union _zend_function {
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uchar type; /* MUST be the first element of this struct! */
|
2002-03-01 22:04:51 +08:00
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
struct {
|
2000-03-13 23:43:40 +08:00
|
|
|
zend_uchar type; /* never used */
|
1999-10-26 00:07:14 +08:00
|
|
|
char *function_name;
|
2002-03-01 22:04:51 +08:00
|
|
|
zend_class_entry *scope;
|
2002-11-24 04:46:39 +08:00
|
|
|
zend_uint fn_flags;
|
2003-03-29 19:19:38 +08:00
|
|
|
union _zend_function *prototype;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_uint num_args;
|
2004-02-25 17:25:37 +08:00
|
|
|
zend_uint required_num_args;
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
zend_arg_info *arg_info;
|
|
|
|
zend_bool pass_rest_by_reference;
|
2004-02-12 21:49:55 +08:00
|
|
|
unsigned char return_reference;
|
1999-04-08 02:10:10 +08:00
|
|
|
} common;
|
|
|
|
|
|
|
|
zend_op_array op_array;
|
|
|
|
zend_internal_function internal_function;
|
|
|
|
} zend_function;
|
|
|
|
|
|
|
|
|
1999-05-21 04:00:59 +08:00
|
|
|
typedef struct _zend_function_state {
|
1999-04-08 02:10:10 +08:00
|
|
|
HashTable *function_symbol_table;
|
|
|
|
zend_function *function;
|
1999-08-16 03:29:39 +08:00
|
|
|
void *reserved[ZEND_MAX_RESERVED_RESOURCES];
|
1999-04-08 02:10:10 +08:00
|
|
|
} zend_function_state;
|
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _zend_switch_entry {
|
1999-04-08 02:10:10 +08:00
|
|
|
znode cond;
|
|
|
|
int default_case;
|
|
|
|
int control_var;
|
|
|
|
} zend_switch_entry;
|
|
|
|
|
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
typedef struct _list_llist_element {
|
1999-04-08 02:10:10 +08:00
|
|
|
znode var;
|
|
|
|
zend_llist dimensions;
|
|
|
|
znode value;
|
|
|
|
} list_llist_element;
|
|
|
|
|
2002-05-03 01:20:48 +08:00
|
|
|
union _temp_variable;
|
|
|
|
|
2002-10-20 04:57:15 +08:00
|
|
|
struct _zend_execute_data {
|
2002-05-03 01:20:48 +08:00
|
|
|
struct _zend_op *opline;
|
|
|
|
zend_function_state function_state;
|
|
|
|
zend_function *fbc; /* Function Being Called */
|
|
|
|
zend_function *fbc_constructor;
|
2002-07-26 18:38:25 +08:00
|
|
|
zend_op_array *op_array;
|
2002-05-03 01:20:48 +08:00
|
|
|
zval *object;
|
|
|
|
union _temp_variable *Ts;
|
2004-10-05 03:54:35 +08:00
|
|
|
zval ***CVs;
|
2002-05-03 01:20:48 +08:00
|
|
|
zend_bool original_in_execution;
|
|
|
|
zend_class_entry *calling_scope;
|
2004-10-05 03:54:35 +08:00
|
|
|
HashTable *symbol_table;
|
2002-05-03 01:20:48 +08:00
|
|
|
struct _zend_execute_data *prev_execute_data;
|
2002-10-20 04:57:15 +08:00
|
|
|
};
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-05-08 02:42:13 +08:00
|
|
|
#define EX(element) execute_data.element
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define IS_CONST (1<<0)
|
|
|
|
#define IS_TMP_VAR (1<<1)
|
|
|
|
#define IS_VAR (1<<2)
|
|
|
|
#define IS_UNUSED (1<<3) /* Unused variable */
|
2004-10-05 03:54:35 +08:00
|
|
|
#define IS_CV (1<<4) /* Compiled variable */
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define EXT_TYPE_UNUSED (1<<0)
|
|
|
|
|
2000-06-14 01:58:33 +08:00
|
|
|
#include "zend_globals.h"
|
|
|
|
|
2000-01-30 01:19:47 +08:00
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void init_compiler(TSRMLS_D);
|
|
|
|
void shutdown_compiler(TSRMLS_D);
|
|
|
|
void zend_init_compiler_data_structures(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
extern ZEND_API zend_op_array *(*zend_compile_file)(zend_file_handle *file_handle, int type TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-02-10 20:54:02 +08:00
|
|
|
ZEND_API int lex_scan(zval *zendlval TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void startup_scanner(TSRMLS_D);
|
|
|
|
void shutdown_scanner(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-30 15:43:02 +08:00
|
|
|
ZEND_API char *zend_set_compiled_filename(char *new_compiled_filename TSRMLS_DC);
|
|
|
|
ZEND_API void zend_restore_compiled_filename(char *original_compiled_filename TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API char *zend_get_compiled_filename(TSRMLS_D);
|
|
|
|
ZEND_API int zend_get_compiled_lineno(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2005-01-22 10:29:18 +08:00
|
|
|
ZEND_API char* zend_get_compiled_variable_name(zend_op_array *op_array, zend_uint var, int* name_len);
|
|
|
|
|
1999-04-23 11:32:33 +08:00
|
|
|
#ifdef ZTS
|
2001-07-28 18:51:54 +08:00
|
|
|
const char *zend_get_zendtext(TSRMLS_D);
|
|
|
|
int zend_get_zendleng(TSRMLS_D);
|
1999-04-23 11:32:33 +08:00
|
|
|
#endif
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
/* parser-driven code generators */
|
2002-04-24 02:06:54 +08:00
|
|
|
void zend_do_binary_op(zend_uchar op, znode *result, znode *op1, znode *op2 TSRMLS_DC);
|
|
|
|
void zend_do_unary_op(zend_uchar op, znode *result, znode *op1 TSRMLS_DC);
|
|
|
|
void zend_do_binary_assign_op(zend_uchar op, znode *result, znode *op1, znode *op2 TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_assign(znode *result, znode *variable, znode *value TSRMLS_DC);
|
|
|
|
void zend_do_assign_ref(znode *result, znode *lvar, znode *rvar TSRMLS_DC);
|
|
|
|
void fetch_simple_variable(znode *result, znode *varname, int bp TSRMLS_DC);
|
2002-04-24 02:06:54 +08:00
|
|
|
void fetch_simple_variable_ex(znode *result, znode *varname, int bp, zend_uchar op TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_indirect_references(znode *result, znode *num_references, znode *variable TSRMLS_DC);
|
2002-11-11 01:50:27 +08:00
|
|
|
void zend_do_fetch_static_variable(znode *varname, znode *static_assignment, int fetch_type TSRMLS_DC);
|
|
|
|
void zend_do_fetch_global_variable(znode *varname, znode *static_assignment, int fetch_type TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
|
|
|
|
void fetch_array_begin(znode *result, znode *varname, znode *first_dim TSRMLS_DC);
|
|
|
|
void fetch_array_dim(znode *result, znode *parent, znode *dim TSRMLS_DC);
|
|
|
|
void fetch_string_offset(znode *result, znode *parent, znode *offset TSRMLS_DC);
|
2004-10-05 03:54:35 +08:00
|
|
|
void zend_do_fetch_static_member(znode *result, znode *class_znode TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_print(znode *result, znode *arg TSRMLS_DC);
|
|
|
|
void zend_do_echo(znode *arg TSRMLS_DC);
|
1999-05-30 21:28:56 +08:00
|
|
|
typedef int (*unary_op_type)(zval *, zval *);
|
|
|
|
ZEND_API unary_op_type get_unary_op(int opcode);
|
1999-04-08 02:10:10 +08:00
|
|
|
ZEND_API void *get_binary_op(int opcode);
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_while_cond(znode *expr, znode *close_bracket_token TSRMLS_DC);
|
|
|
|
void zend_do_while_end(znode *while_token, znode *close_bracket_token TSRMLS_DC);
|
|
|
|
void zend_do_do_while_begin(TSRMLS_D);
|
|
|
|
void zend_do_do_while_end(znode *do_token, znode *expr_open_bracket, znode *expr TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_if_cond(znode *cond, znode *closing_bracket_token TSRMLS_DC);
|
|
|
|
void zend_do_if_after_statement(znode *closing_bracket_token, unsigned char initialize TSRMLS_DC);
|
|
|
|
void zend_do_if_end(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_for_cond(znode *expr, znode *second_semicolon_token TSRMLS_DC);
|
|
|
|
void zend_do_for_before_statement(znode *cond_start, znode *second_semicolon_token TSRMLS_DC);
|
|
|
|
void zend_do_for_end(znode *second_semicolon_token TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-04-24 02:06:54 +08:00
|
|
|
void zend_do_pre_incdec(znode *result, znode *op1, zend_uchar op TSRMLS_DC);
|
|
|
|
void zend_do_post_incdec(znode *result, znode *op1, zend_uchar op TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_begin_variable_parse(TSRMLS_D);
|
|
|
|
void zend_do_end_variable_parse(int type, int arg_offset TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-12-17 03:45:49 +08:00
|
|
|
void zend_check_writable_variable(znode *variable);
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_free(znode *op1 TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_init_string(znode *result TSRMLS_DC);
|
|
|
|
void zend_do_add_char(znode *result, znode *op1, znode *op2 TSRMLS_DC);
|
|
|
|
void zend_do_add_string(znode *result, znode *op1, znode *op2 TSRMLS_DC);
|
|
|
|
void zend_do_add_variable(znode *result, znode *op1, znode *op2 TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-12-07 01:09:44 +08:00
|
|
|
int zend_do_verify_access_types(znode *current_access_type, znode *new_modifier);
|
2003-03-05 19:14:44 +08:00
|
|
|
void zend_do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference, znode *fn_flags_znode TSRMLS_DC);
|
2003-04-03 00:13:12 +08:00
|
|
|
void zend_do_end_function_declaration(znode *function_token TSRMLS_DC);
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
void zend_do_receive_arg(zend_uchar op, znode *var, znode *offset, znode *initialization, znode *class_type, znode *varname, zend_bool pass_by_reference TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
int zend_do_begin_function_call(znode *function_name TSRMLS_DC);
|
2001-12-27 01:49:22 +08:00
|
|
|
void zend_do_begin_method_call(znode *left_bracket TSRMLS_DC);
|
2004-02-02 20:28:19 +08:00
|
|
|
void zend_do_clone(znode *result, znode *expr TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_begin_dynamic_function_call(znode *function_name TSRMLS_DC);
|
2003-06-02 20:13:11 +08:00
|
|
|
void zend_do_fetch_class(znode *result, znode *class_name TSRMLS_DC);
|
2003-11-25 02:13:29 +08:00
|
|
|
void zend_do_fetch_class_name(znode *result, znode *class_entry, znode *class_name TSRMLS_DC);
|
2004-09-16 08:40:38 +08:00
|
|
|
void zend_do_begin_class_member_function_call(znode *class_name, znode *method_name TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_end_function_call(znode *function_name, znode *result, znode *argument_list, int is_method, int is_dynamic_fcall TSRMLS_DC);
|
|
|
|
void zend_do_return(znode *expr, int do_end_vparse TSRMLS_DC);
|
2004-02-03 20:17:09 +08:00
|
|
|
void zend_do_handle_exception(TSRMLS_D);
|
2001-08-30 23:26:30 +08:00
|
|
|
|
2001-08-31 01:27:43 +08:00
|
|
|
void zend_do_try(znode *try_token TSRMLS_DC);
|
2002-02-14 03:26:07 +08:00
|
|
|
void zend_do_begin_catch(znode *try_token, znode *catch_class, znode *catch_var, zend_bool first_catch TSRMLS_DC);
|
2001-08-31 01:27:43 +08:00
|
|
|
void zend_do_end_catch(znode *try_token TSRMLS_DC);
|
|
|
|
void zend_do_throw(znode *expr TSRMLS_DC);
|
2001-08-30 23:26:30 +08:00
|
|
|
|
2004-02-05 00:30:15 +08:00
|
|
|
ZEND_API int do_bind_function(zend_op *opline, HashTable *function_table, zend_bool compile_time);
|
|
|
|
ZEND_API zend_class_entry *do_bind_class(zend_op *opline, HashTable *class_table, zend_bool compile_time TSRMLS_DC);
|
|
|
|
ZEND_API zend_class_entry *do_bind_inherited_class(zend_op *opline, HashTable *class_table, zend_class_entry *parent_ce, zend_bool compile_time TSRMLS_DC);
|
2003-10-23 03:59:58 +08:00
|
|
|
ZEND_API void zend_do_inherit_interfaces(zend_class_entry *ce, zend_class_entry *iface TSRMLS_DC);
|
|
|
|
ZEND_API void zend_do_implement_interface(zend_class_entry *ce, zend_class_entry *iface TSRMLS_DC);
|
2003-03-05 19:14:44 +08:00
|
|
|
void zend_do_implements_interface(znode *interface_znode TSRMLS_DC);
|
2002-09-25 03:05:53 +08:00
|
|
|
|
2003-10-23 03:59:58 +08:00
|
|
|
void zend_do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_early_binding(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-04-24 02:06:54 +08:00
|
|
|
void zend_do_pass_param(znode *param, zend_uchar op, int offset TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_boolean_or_begin(znode *expr1, znode *op_token TSRMLS_DC);
|
|
|
|
void zend_do_boolean_or_end(znode *result, znode *expr1, znode *expr2, znode *op_token TSRMLS_DC);
|
2003-02-01 09:49:15 +08:00
|
|
|
void zend_do_boolean_and_begin(znode *expr1, znode *op_token TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_boolean_and_end(znode *result, znode *expr1, znode *expr2, znode *op_token TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-04-24 02:06:54 +08:00
|
|
|
void zend_do_brk_cont(zend_uchar op, znode *expr TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_switch_cond(znode *cond TSRMLS_DC);
|
|
|
|
void zend_do_switch_end(znode *case_list TSRMLS_DC);
|
|
|
|
void zend_do_case_before_statement(znode *case_list, znode *case_token, znode *case_expr TSRMLS_DC);
|
|
|
|
void zend_do_case_after_statement(znode *result, znode *case_token TSRMLS_DC);
|
|
|
|
void zend_do_default_before_statement(znode *case_list, znode *default_token TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-12-13 01:38:37 +08:00
|
|
|
void zend_do_begin_class_declaration(znode *class_token, znode *class_name, znode *parent_class_name TSRMLS_DC);
|
2003-04-03 00:13:12 +08:00
|
|
|
void zend_do_end_class_declaration(znode *class_token, znode *parent_token TSRMLS_DC);
|
2003-02-10 20:46:58 +08:00
|
|
|
void zend_do_declare_property(znode *var_name, znode *value, zend_uint access_type TSRMLS_DC);
|
2003-06-09 21:51:53 +08:00
|
|
|
void zend_do_declare_implicit_property(TSRMLS_D);
|
2002-12-07 01:09:44 +08:00
|
|
|
void zend_do_declare_class_constant(znode *var_name, znode *value TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_fetch_property(znode *result, znode *object, znode *property TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_push_object(znode *object TSRMLS_DC);
|
|
|
|
void zend_do_pop_object(znode *object TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2001-11-05 03:30:49 +08:00
|
|
|
void zend_do_begin_new_object(znode *new_token, znode *class_type TSRMLS_DC);
|
|
|
|
void zend_do_end_new_object(znode *result, znode *new_token, znode *argument_list TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-12-01 00:29:47 +08:00
|
|
|
void zend_do_fetch_constant(znode *result, znode *constant_container, znode *constant_name, int mode TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_shell_exec(znode *result, znode *cmd TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-04-24 02:06:54 +08:00
|
|
|
void zend_do_init_array(znode *result, znode *expr, znode *offset, zend_bool is_ref TSRMLS_DC);
|
|
|
|
void zend_do_add_array_element(znode *result, znode *expr, znode *offset, zend_bool is_ref TSRMLS_DC);
|
2000-11-03 03:27:55 +08:00
|
|
|
void zend_do_add_static_array_element(znode *result, znode *offset, znode *expr);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_list_init(TSRMLS_D);
|
|
|
|
void zend_do_list_end(znode *result, znode *expr TSRMLS_DC);
|
|
|
|
void zend_do_add_list_element(znode *element TSRMLS_DC);
|
|
|
|
void zend_do_new_list_begin(TSRMLS_D);
|
|
|
|
void zend_do_new_list_end(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_cast(znode *result, znode *expr, int type TSRMLS_DC);
|
|
|
|
void zend_do_include_or_eval(int type, znode *result, znode *op1 TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2002-07-15 03:23:18 +08:00
|
|
|
void zend_do_unset(znode *variable TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_isset_or_isempty(int type, znode *result, znode *variable TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-01-15 05:29:23 +08:00
|
|
|
void zend_do_instanceof(znode *result, znode *expr, znode *class_znode, int type TSRMLS_DC);
|
2002-07-30 12:07:15 +08:00
|
|
|
|
2005-02-12 06:26:45 +08:00
|
|
|
void zend_do_foreach_begin(znode *foreach_token, znode *open_brackets_token, znode *array, int variable TSRMLS_DC);
|
|
|
|
void zend_do_foreach_fetch(znode *foreach_token, znode *open_brackets_token, znode *as_token TSRMLS_DC);
|
|
|
|
void zend_do_foreach_cont(znode *foreach_token, znode *as_token, znode *value, znode *key TSRMLS_DC);
|
|
|
|
void zend_do_foreach_end(znode *foreach_token, znode *as_token TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_declare_begin(TSRMLS_D);
|
|
|
|
void zend_do_declare_stmt(znode *var, znode *val TSRMLS_DC);
|
2002-08-14 09:40:59 +08:00
|
|
|
void zend_do_declare_end(znode *declare_token TSRMLS_DC);
|
2000-01-25 03:00:30 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_end_heredoc(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_exit(znode *result, znode *message TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_begin_silence(znode *strudel_token TSRMLS_DC);
|
|
|
|
void zend_do_end_silence(znode *strudel_token TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_begin_qm_op(znode *cond, znode *qm_token TSRMLS_DC);
|
|
|
|
void zend_do_qm_true(znode *true_value, znode *qm_token, znode *colon_token TSRMLS_DC);
|
|
|
|
void zend_do_qm_false(znode *result, znode *false_value, znode *qm_token, znode *colon_token TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_extended_info(TSRMLS_D);
|
|
|
|
void zend_do_extended_fcall_begin(TSRMLS_D);
|
|
|
|
void zend_do_extended_fcall_end(TSRMLS_D);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
void zend_do_ticks(TSRMLS_D);
|
2000-01-25 03:00:30 +08:00
|
|
|
|
2003-02-11 17:48:37 +08:00
|
|
|
void zend_do_abstract_method(znode *function_name, znode *modifiers, znode *body TSRMLS_DC);
|
2002-11-21 02:00:23 +08:00
|
|
|
|
2000-06-14 03:01:22 +08:00
|
|
|
ZEND_API void function_add_ref(zend_function *function);
|
2000-06-03 09:49:49 +08:00
|
|
|
|
1999-04-26 22:10:42 +08:00
|
|
|
#define INITIAL_OP_ARRAY_SIZE 64
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2000-10-29 22:35:34 +08:00
|
|
|
/* helper functions in zend_language_scanner.l */
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API zend_op_array *compile_file(zend_file_handle *file_handle, int type TSRMLS_DC);
|
|
|
|
ZEND_API zend_op_array *compile_string(zval *source_string, char *filename TSRMLS_DC);
|
|
|
|
ZEND_API zend_op_array *compile_filename(int type, zval *filename TSRMLS_DC);
|
2001-08-31 21:11:52 +08:00
|
|
|
ZEND_API int zend_execute_scripts(int type TSRMLS_DC, zval **retval, int file_count, ...);
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API int open_file_for_scanning(zend_file_handle *file_handle TSRMLS_DC);
|
2002-04-24 02:06:54 +08:00
|
|
|
ZEND_API void init_op_array(zend_op_array *op_array, zend_uchar type, int initial_ops_size TSRMLS_DC);
|
2003-03-26 15:44:11 +08:00
|
|
|
ZEND_API void destroy_op_array(zend_op_array *op_array TSRMLS_DC);
|
2001-07-28 18:51:54 +08:00
|
|
|
ZEND_API void zend_destroy_file_handle(zend_file_handle *file_handle TSRMLS_DC);
|
2000-08-14 02:00:50 +08:00
|
|
|
ZEND_API void zend_file_handle_dtor(zend_file_handle *fh);
|
2003-01-30 01:54:48 +08:00
|
|
|
ZEND_API int zend_cleanup_class_data(zend_class_entry **pce TSRMLS_DC);
|
|
|
|
ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-03-26 15:44:11 +08:00
|
|
|
ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC);
|
2004-06-06 16:37:12 +08:00
|
|
|
ZEND_API void zend_function_dtor(zend_function *function);
|
2002-03-12 18:08:47 +08:00
|
|
|
ZEND_API void destroy_zend_class(zend_class_entry **pce);
|
2002-03-13 02:53:27 +08:00
|
|
|
void zend_class_add_ref(zend_class_entry **ce);
|
1999-04-26 22:10:42 +08:00
|
|
|
|
2004-01-03 21:51:02 +08:00
|
|
|
ZEND_API void zend_mangle_property_name(char **dest, int *dest_length, char *src1, int src1_length, char *src2, int src2_length, int internal);
|
|
|
|
ZEND_API void zend_unmangle_property_name(char *mangled_property, char **prop_name, char **class_name);
|
2003-02-04 20:12:34 +08:00
|
|
|
|
2004-06-06 16:37:12 +08:00
|
|
|
#define ZEND_FUNCTION_DTOR (void (*)(void *)) zend_function_dtor
|
2000-01-18 01:33:37 +08:00
|
|
|
#define ZEND_CLASS_DTOR (void (*)(void *)) destroy_zend_class
|
1999-07-10 01:24:47 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
zend_op *get_next_op(zend_op_array *op_array TSRMLS_DC);
|
|
|
|
void init_op(zend_op *op TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
int get_next_op_number(zend_op_array *op_array);
|
2001-07-31 12:53:54 +08:00
|
|
|
int print_class(zend_class_entry *class_entry TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
void print_op_array(zend_op_array *op_array, int optimizations);
|
2001-07-31 12:53:54 +08:00
|
|
|
int pass_two(zend_op_array *op_array TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
zend_brk_cont_element *get_next_brk_cont_element(zend_op_array *op_array);
|
2004-02-03 20:17:09 +08:00
|
|
|
void zend_do_first_catch(znode *open_parentheses TSRMLS_DC);
|
|
|
|
void zend_initialize_try_catch_element(znode *try_token TSRMLS_DC);
|
|
|
|
void zend_do_mark_last_catch(znode *first_catch, znode *last_additional_catch TSRMLS_DC);
|
2001-07-30 15:43:02 +08:00
|
|
|
ZEND_API zend_bool zend_is_compiling(TSRMLS_D);
|
2001-07-30 09:48:22 +08:00
|
|
|
ZEND_API char *zend_make_compiled_string_description(char *name TSRMLS_DC);
|
2003-12-16 19:44:19 +08:00
|
|
|
ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify_handlers TSRMLS_DC);
|
2003-08-03 16:21:08 +08:00
|
|
|
int zend_get_class_fetch_type(char *class_name, uint class_name_len);
|
2003-02-11 00:11:24 +08:00
|
|
|
|
2003-03-02 18:04:53 +08:00
|
|
|
typedef zend_bool (*zend_auto_global_callback)(char *name, uint name_len TSRMLS_DC);
|
|
|
|
typedef struct _zend_auto_global {
|
|
|
|
char *name;
|
|
|
|
uint name_len;
|
|
|
|
zend_auto_global_callback auto_global_callback;
|
|
|
|
zend_bool armed;
|
|
|
|
} zend_auto_global;
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-03-02 18:04:53 +08:00
|
|
|
void zend_auto_global_dtor(zend_auto_global *auto_global);
|
2003-03-23 07:26:00 +08:00
|
|
|
ZEND_API int zend_register_auto_global(char *name, uint name_len, zend_auto_global_callback auto_global_callback TSRMLS_DC);
|
|
|
|
ZEND_API zend_bool zend_is_auto_global(char *name, uint name_len TSRMLS_DC);
|
2004-03-17 03:46:04 +08:00
|
|
|
ZEND_API int zend_auto_global_disable_jit(char *varname, zend_uint varname_length TSRMLS_DC);
|
2001-08-09 01:18:16 +08:00
|
|
|
|
2001-07-28 18:51:54 +08:00
|
|
|
int zendlex(znode *zendlval TSRMLS_DC);
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-04-08 05:48:17 +08:00
|
|
|
/* BEGIN: OPCODES */
|
2003-06-02 20:13:11 +08:00
|
|
|
|
2004-10-28 01:58:46 +08:00
|
|
|
#include "zend_vm_opcodes.h"
|
2003-02-16 19:12:43 +08:00
|
|
|
|
2004-10-28 01:58:46 +08:00
|
|
|
#define ZEND_OP_DATA 137
|
2004-02-03 20:17:09 +08:00
|
|
|
|
2003-04-08 05:48:17 +08:00
|
|
|
/* END: OPCODES */
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* global/local fetches */
|
2001-11-25 16:49:09 +08:00
|
|
|
#define ZEND_FETCH_GLOBAL 0
|
|
|
|
#define ZEND_FETCH_LOCAL 1
|
|
|
|
#define ZEND_FETCH_STATIC 2
|
|
|
|
#define ZEND_FETCH_STATIC_MEMBER 3
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-07-31 01:49:27 +08:00
|
|
|
|
|
|
|
/* obj/dim unsets */
|
|
|
|
#define ZEND_UNSET_DIM 1
|
|
|
|
#define ZEND_UNSET_OBJ 2
|
|
|
|
|
2001-12-13 01:38:37 +08:00
|
|
|
/* class fetches */
|
|
|
|
#define ZEND_FETCH_CLASS_DEFAULT 0
|
|
|
|
#define ZEND_FETCH_CLASS_SELF 1
|
2001-12-27 21:12:45 +08:00
|
|
|
#define ZEND_FETCH_CLASS_PARENT 2
|
|
|
|
#define ZEND_FETCH_CLASS_MAIN 3
|
2003-02-16 19:12:43 +08:00
|
|
|
#define ZEND_FETCH_CLASS_GLOBAL 4
|
2003-08-03 16:21:08 +08:00
|
|
|
#define ZEND_FETCH_CLASS_AUTO 5
|
2001-12-27 21:12:45 +08:00
|
|
|
|
2001-12-13 01:38:37 +08:00
|
|
|
|
2001-12-17 03:18:19 +08:00
|
|
|
/* variable parsing type (compile-time) */
|
2003-07-24 20:38:33 +08:00
|
|
|
#define ZEND_PARSED_MEMBER (1<<0)
|
|
|
|
#define ZEND_PARSED_METHOD_CALL (1<<1)
|
|
|
|
#define ZEND_PARSED_STATIC_MEMBER (1<<2)
|
|
|
|
#define ZEND_PARSED_FUNCTION_CALL (1<<3)
|
|
|
|
#define ZEND_PARSED_VARIABLE (1<<4)
|
|
|
|
#define ZEND_PARSED_REFERENCE_VARIABLE (1<<5)
|
2001-12-17 03:18:19 +08:00
|
|
|
|
|
|
|
|
2001-08-07 11:17:33 +08:00
|
|
|
/* unset types */
|
|
|
|
#define ZEND_UNSET_REG 0
|
|
|
|
|
1999-04-08 02:10:10 +08:00
|
|
|
/* var status for backpatching */
|
1999-09-30 01:18:36 +08:00
|
|
|
#define BP_VAR_R 0
|
|
|
|
#define BP_VAR_W 1
|
|
|
|
#define BP_VAR_RW 2
|
|
|
|
#define BP_VAR_IS 3
|
|
|
|
#define BP_VAR_NA 4 /* if not applicable */
|
|
|
|
#define BP_VAR_FUNC_ARG 5
|
2000-02-15 04:31:01 +08:00
|
|
|
#define BP_VAR_UNSET 6
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
|
2003-08-19 06:31:11 +08:00
|
|
|
#define ZEND_INTERNAL_FUNCTION 1
|
|
|
|
#define ZEND_USER_FUNCTION 2
|
|
|
|
#define ZEND_OVERLOADED_FUNCTION 3
|
|
|
|
#define ZEND_EVAL_CODE 4
|
|
|
|
#define ZEND_OVERLOADED_FUNCTION_TEMPORARY 5
|
1999-04-08 02:10:10 +08:00
|
|
|
|
2003-04-02 03:37:04 +08:00
|
|
|
#define ZEND_INTERNAL_CLASS 1
|
|
|
|
#define ZEND_USER_CLASS 2
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define ZEND_EVAL (1<<0)
|
|
|
|
#define ZEND_INCLUDE (1<<1)
|
2000-03-10 23:05:00 +08:00
|
|
|
#define ZEND_INCLUDE_ONCE (1<<2)
|
1999-12-23 23:03:25 +08:00
|
|
|
#define ZEND_REQUIRE (1<<3)
|
2000-08-10 03:22:35 +08:00
|
|
|
#define ZEND_REQUIRE_ONCE (1<<4)
|
1999-04-08 02:10:10 +08:00
|
|
|
|
|
|
|
#define ZEND_ISSET (1<<0)
|
|
|
|
#define ZEND_ISEMPTY (1<<1)
|
|
|
|
|
|
|
|
#define ZEND_CT (1<<0)
|
|
|
|
#define ZEND_RT (1<<1)
|
|
|
|
|
|
|
|
|
1999-11-27 07:45:22 +08:00
|
|
|
#define ZEND_HANDLE_FILENAME 0
|
|
|
|
#define ZEND_HANDLE_FD 1
|
|
|
|
#define ZEND_HANDLE_FP 2
|
|
|
|
#define ZEND_HANDLE_STDIOSTREAM 3
|
|
|
|
#define ZEND_HANDLE_FSTREAM 4
|
2003-02-18 17:37:54 +08:00
|
|
|
#define ZEND_HANDLE_STREAM 5
|
1999-04-08 02:10:10 +08:00
|
|
|
|
1999-05-23 00:10:51 +08:00
|
|
|
#define ZEND_FETCH_STANDARD 0
|
1999-07-10 19:45:23 +08:00
|
|
|
#define ZEND_FETCH_ADD_LOCK 1
|
1999-05-23 00:10:51 +08:00
|
|
|
|
2004-08-12 13:54:11 +08:00
|
|
|
#define ZEND_FE_FETCH_BYREF 1
|
|
|
|
#define ZEND_FE_FETCH_WITH_KEY 2
|
|
|
|
|
1999-05-28 20:06:59 +08:00
|
|
|
#define ZEND_MEMBER_FUNC_CALL 1<<0
|
|
|
|
|
2000-11-28 02:46:23 +08:00
|
|
|
#define ZEND_ARG_SEND_BY_REF (1<<0)
|
|
|
|
#define ZEND_ARG_COMPILE_TIME_BOUND (1<<1)
|
1999-07-10 02:19:48 +08:00
|
|
|
|
1999-11-04 03:21:56 +08:00
|
|
|
/* Lost In Stupid Parentheses */
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
#define ARG_SHOULD_BE_SENT_BY_REF(zf, arg_num) \
|
|
|
|
( \
|
|
|
|
zf \
|
|
|
|
&& ((zend_function *) zf)->common.arg_info \
|
|
|
|
&& \
|
|
|
|
( \
|
|
|
|
( \
|
|
|
|
arg_num<=((zend_function *) zf)->common.num_args \
|
2004-10-09 06:17:32 +08:00
|
|
|
&& ((zend_function *) zf)->common.arg_info[arg_num-1].pass_by_reference \
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
) \
|
|
|
|
|| ( \
|
|
|
|
arg_num>((zend_function *) zf)->common.num_args \
|
2004-10-09 06:17:32 +08:00
|
|
|
&& ((zend_function *) zf)->common.pass_rest_by_reference \
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
) \
|
|
|
|
) \
|
1999-11-04 03:21:56 +08:00
|
|
|
)
|
|
|
|
|
ntroduce infrastructure for supplying information about arguments,
including:
- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance
Both user and builtin functions share the same data structures.
To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:
ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();
and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.
The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.
The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.
2003-08-04 01:40:44 +08:00
|
|
|
|
1999-12-16 04:15:32 +08:00
|
|
|
#define ZEND_RETURN_VAL 0
|
|
|
|
#define ZEND_RETURN_REF 1
|
|
|
|
|
2003-12-15 00:09:07 +08:00
|
|
|
|
|
|
|
#define ZEND_RETURNS_FUNCTION 1<<0
|
|
|
|
|
2000-01-30 01:19:47 +08:00
|
|
|
END_EXTERN_C()
|
|
|
|
|
2002-09-04 17:07:58 +08:00
|
|
|
#define ZEND_CLONE_FUNC_NAME "__clone"
|
|
|
|
#define ZEND_CONSTRUCTOR_FUNC_NAME "__construct"
|
|
|
|
#define ZEND_DESTRUCTOR_FUNC_NAME "__destruct"
|
|
|
|
#define ZEND_GET_FUNC_NAME "__get"
|
|
|
|
#define ZEND_SET_FUNC_NAME "__set"
|
|
|
|
#define ZEND_CALL_FUNC_NAME "__call"
|
2004-08-02 16:27:57 +08:00
|
|
|
#define ZEND_AUTOLOAD_FUNC_NAME "__autoload"
|
2002-09-04 17:07:58 +08:00
|
|
|
|
2000-07-03 08:55:36 +08:00
|
|
|
#endif /* ZEND_COMPILE_H */
|
2003-02-01 09:49:15 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* indent-tabs-mode: t
|
|
|
|
* End:
|
|
|
|
*/
|