home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 15 / AACD15.ISO / AACD / Magazine / HomeAutomation / Apache / include / php / Zend / zend_compile.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-06-13  |  18.7 KB  |  628 lines

  1. /*
  2.    +----------------------------------------------------------------------+
  3.    | Zend Engine                                                          |
  4.    +----------------------------------------------------------------------+
  5.    | Copyright (c) 1998-2000 Zend Technologies Ltd. (http://www.zend.com) |
  6.    +----------------------------------------------------------------------+
  7.    | This source file is subject to version 0.92 of the Zend license,     |
  8.    | that is bundled with this package in the file LICENSE, and is        | 
  9.    | available at through the world-wide-web at                           |
  10.    | http://www.zend.com/license/0_92.txt.                                |
  11.    | If you did not receive a copy of the Zend license and are unable to  |
  12.    | obtain it through the world-wide-web, please send a note to          |
  13.    | license@zend.com so we can mail you a copy immediately.              |
  14.    +----------------------------------------------------------------------+
  15.    | Authors: Andi Gutmans <andi@zend.com>                                |
  16.    |          Zeev Suraski <zeev@zend.com>                                |
  17.    +----------------------------------------------------------------------+
  18. */
  19.  
  20.  
  21. #ifndef _COMPILE_H
  22. #define _COMPILE_H
  23.  
  24. #include "zend.h"
  25.  
  26. #ifdef HAVE_STDARG_H
  27. # include <stdarg.h>
  28. #endif
  29.  
  30. #include "zend_llist.h"
  31.  
  32. #define DEBUG_ZEND 0
  33.  
  34. #ifndef ZTS
  35. # define SUPPORT_INTERACTIVE 1
  36. #else
  37. # define SUPPORT_INTERACTIVE 0
  38. #endif
  39.  
  40. #define FREE_PNODE(znode)    zval_dtor(&znode->u.constant);
  41. #define FREE_OP(op, should_free) if (should_free) zval_dtor(&Ts[(op)->u.var].tmp_var);
  42.  
  43.  
  44. #if SUPPORT_INTERACTIVE
  45. #define INC_BPC(op_array)    ((op_array)->backpatch_count++)
  46. #define DEC_BPC(op_array)    ((op_array)->backpatch_count--)
  47. #define HANDLE_INTERACTIVE()  if (EG(interactive)) { execute_new_code(CLS_C); }
  48. #else
  49. #define INC_BPC(op_array)
  50. #define DEC_BPC(op_array)
  51. #define HANDLE_INTERACTIVE()
  52. #endif
  53.  
  54. typedef struct _zend_op_array zend_op_array;
  55.  
  56. typedef struct _znode {
  57.     int op_type;
  58.     union {
  59.         zval constant;
  60.  
  61.         zend_uint var;
  62.         zend_uint opline_num; /*  Needs to be signed */
  63.         zend_uint fetch_type;
  64.         zend_op_array *op_array;
  65.         struct {
  66.             zend_uint var;    /* dummy */
  67.             zend_uint type;
  68.         } EA;
  69.     } u;
  70. } znode;
  71.  
  72.  
  73. typedef struct _zend_op {
  74.     zend_uchar opcode;
  75.     znode result;
  76.     znode op1;
  77.     znode op2;
  78.     ulong extended_value;
  79.     char *filename;
  80.     uint lineno;
  81. } zend_op;
  82.  
  83.  
  84. typedef struct _zend_brk_cont_element {
  85.     int cont;
  86.     int brk;
  87.     int parent;
  88. } zend_brk_cont_element;
  89.  
  90.  
  91. struct _zend_op_array {
  92.     zend_uchar type;    /* MUST be the first element of this struct! */
  93.  
  94.     zend_uchar *arg_types;        /* MUST be the second element of this struct! */
  95.     char *function_name;            /* MUST be the third element of this struct! */
  96.  
  97.     zend_uint *refcount;
  98.  
  99.     zend_op *opcodes;
  100.     zend_uint last, size;
  101.  
  102.     zend_uint T;
  103.  
  104.     zend_brk_cont_element *brk_cont_array;
  105.     zend_uint last_brk_cont;
  106.     zend_uint current_brk_cont;
  107.     zend_bool uses_globals;
  108.  
  109.     /* static variables support */
  110.     HashTable *static_variables;
  111.  
  112. #if SUPPORT_INTERACTIVE
  113.     int start_op_number, end_op_number;
  114.     int last_executed_op_number;
  115.     int backpatch_count;
  116. #endif
  117.     zend_bool return_reference;
  118.     zend_bool done_pass_two;
  119.  
  120.     void *reserved[ZEND_MAX_RESERVED_RESOURCES];
  121. };
  122.  
  123.  
  124. typedef struct _zend_internal_function {
  125.     zend_uchar type;    /* MUST be the first element of this struct! */
  126.  
  127.     zend_uchar *arg_types;        /* MUST be the second element of this struct */
  128.     char *function_name;            /* MUST be the third element of this struct */
  129.  
  130.     void (*handler)(INTERNAL_FUNCTION_PARAMETERS);
  131. } zend_internal_function;
  132.  
  133.  
  134. typedef struct _zend_overloaded_function {
  135.     zend_uchar type;    /* MUST be the first element of this struct! */
  136.  
  137.     zend_uchar *arg_types;        /* MUST be the second element of this struct */
  138.     char *function_name;        /* MUST be the third element of this struct */
  139.  
  140.     zend_uint var;
  141. } zend_overloaded_function;
  142.  
  143.  
  144. typedef union _zend_function {
  145.     zend_uchar type;    /* MUST be the first element of this struct! */
  146.     struct {
  147.         zend_uchar type;  /* never used */
  148.         zend_uchar *arg_types;
  149.         char *function_name;
  150.     } common;
  151.     
  152.     zend_op_array op_array;
  153.     zend_internal_function internal_function;
  154.     zend_overloaded_function overloaded_function;
  155. } zend_function;
  156.  
  157.  
  158. typedef struct _zend_function_state {
  159.     HashTable *function_symbol_table;
  160.     zend_function *function;
  161.     void *reserved[ZEND_MAX_RESERVED_RESOURCES];
  162. } zend_function_state;
  163.  
  164.  
  165. typedef struct _zend_switch_entry {
  166.     znode cond;
  167.     int default_case;
  168.     int control_var;
  169. } zend_switch_entry;
  170.  
  171.  
  172. typedef struct _list_llist_element {
  173.     znode var;
  174.     zend_llist dimensions;
  175.     znode value;
  176. } list_llist_element;
  177.  
  178.  
  179. typedef struct _zend_file_handle {
  180.     zend_uchar type;
  181.     char *filename;
  182.     char *opened_path;
  183.     union {
  184.         int fd;
  185.         FILE *fp;
  186. #ifdef __cplusplus
  187.         istream *is;
  188. #endif
  189.     } handle;
  190.     zend_bool free_filename;
  191. } zend_file_handle;
  192.  
  193.  
  194.  
  195. #define IS_CONST    (1<<0)
  196. #define IS_TMP_VAR    (1<<1)
  197. #define IS_VAR        (1<<2)
  198. #define IS_UNUSED    (1<<3)    /* Unused variable */
  199.  
  200.  
  201. #define EXT_TYPE_UNUSED        (1<<0)
  202.  
  203. #include "zend_globals.h"
  204.  
  205. BEGIN_EXTERN_C()
  206.  
  207. void init_compiler(CLS_D ELS_DC);
  208. void shutdown_compiler(CLS_D);
  209.  
  210. extern ZEND_API zend_op_array *(*zend_v_compile_files)(int type CLS_DC, int file_count, va_list files);
  211.  
  212. void zend_activate(CLS_D ELS_DC);
  213. void zend_deactivate(CLS_D ELS_DC);
  214. void zend_activate_modules(void);
  215. void zend_deactivate_modules(void);
  216.  
  217.  
  218. int lex_scan(zval *zendlval CLS_DC);
  219. void startup_scanner(CLS_D);
  220. void shutdown_scanner(CLS_D);
  221.  
  222. ZEND_API char *zend_set_compiled_filename(char *new_compiled_filename);
  223. ZEND_API void zend_restore_compiled_filename(char *original_compiled_filename);
  224. ZEND_API char *zend_get_compiled_filename(CLS_D);
  225. ZEND_API int zend_get_compiled_lineno(CLS_D);
  226.  
  227. #ifdef ZTS
  228. const char *zend_get_zendtext(CLS_D);
  229. int zend_get_zendleng(CLS_D);
  230. #endif
  231.  
  232.  
  233. /* parser-driven code generators */
  234. void do_binary_op(int op, znode *result, znode *op1, znode *op2 CLS_DC);
  235. void do_unary_op(int op, znode *result, znode *op1 CLS_DC);
  236. void do_binary_assign_op(int op, znode *result, znode *op1, znode *op2 CLS_DC);
  237. void do_assign(znode *result, znode *variable, znode *value CLS_DC);
  238. void do_assign_ref(znode *result, znode *lvar, znode *rvar CLS_DC);
  239. void fetch_simple_variable(znode *result, znode *varname, int bp CLS_DC);
  240. void fetch_simple_variable_ex(znode *result, znode *varname, int bp, int op CLS_DC);
  241. void do_indirect_references(znode *result, znode *num_references, znode *variable CLS_DC);
  242. void do_fetch_global_or_static_variable(znode *varname, znode *static_assignment, int fetch_type CLS_DC);
  243. void do_fetch_globals(znode *varname CLS_DC);
  244.  
  245. void fetch_array_begin(znode *result, znode *varname, znode *first_dim CLS_DC);
  246. void fetch_array_dim(znode *result, znode *parent, znode *dim CLS_DC);
  247. void fetch_string_offset(znode *result, znode *parent, znode *offset CLS_DC);
  248. void do_print(znode *result, znode *arg CLS_DC);
  249. void do_echo(znode *arg CLS_DC);
  250. typedef int (*unary_op_type)(zval *, zval *);
  251. ZEND_API unary_op_type get_unary_op(int opcode);
  252. ZEND_API void *get_binary_op(int opcode);
  253.  
  254. void do_while_cond(znode *expr, znode *close_bracket_token CLS_DC);
  255. void do_while_end(znode *while_token, znode *close_bracket_token CLS_DC);
  256. void do_do_while_begin(CLS_D);
  257. void do_do_while_end(znode *do_token, znode *expr_open_bracket, znode *expr CLS_DC);
  258.  
  259.  
  260. void do_if_cond(znode *cond, znode *closing_bracket_token CLS_DC);
  261. void do_if_after_statement(znode *closing_bracket_token, unsigned char initialize CLS_DC);
  262. void do_if_end(CLS_D);
  263.  
  264. void do_for_cond(znode *expr, znode *second_semicolon_token CLS_DC);
  265. void do_for_before_statement(znode *cond_start, znode *second_semicolon_token CLS_DC);
  266. void do_for_end(znode *second_semicolon_token CLS_DC);
  267.  
  268. void do_pre_incdec(znode *result, znode *op1, int op CLS_DC);
  269. void do_post_incdec(znode *result, znode *op1, int op CLS_DC);
  270.  
  271. void do_begin_variable_parse(CLS_D);
  272. void do_end_variable_parse(int type, int arg_offset CLS_DC);
  273.  
  274. void do_free(znode *op1 CLS_DC);
  275.  
  276. void do_init_string(znode *result CLS_DC);
  277. void do_add_char(znode *result, znode *op1, znode *op2 CLS_DC);
  278. void do_add_string(znode *result, znode *op1, znode *op2 CLS_DC);
  279. void do_add_variable(znode *result, znode *op1, znode *op2 CLS_DC);
  280.  
  281. void do_begin_function_declaration(znode *function_token, znode *function_name, int is_method, int return_reference CLS_DC);
  282. void do_end_function_declaration(znode *function_token CLS_DC);
  283. void do_receive_arg(int op, znode *var, znode *offset, znode *initialization, unsigned char pass_type CLS_DC);
  284. int do_begin_function_call(znode *function_name CLS_DC);
  285. void do_begin_dynamic_function_call(znode *function_name CLS_DC);
  286. void do_begin_class_member_function_call(znode *class_name, znode *function_name CLS_DC);
  287. void do_end_function_call(znode *function_name, znode *result, znode *argument_list, int is_method, int is_dynamic_fcall CLS_DC);
  288. void do_return(znode *expr, int do_end_vparse CLS_DC);
  289. ZEND_API int do_bind_function_or_class(zend_op *opline, HashTable *function_table, HashTable *class_table, int compile_time);
  290. void do_inheritance(zend_class_entry *ce, zend_class_entry *parent_ce);
  291. void do_early_binding(CLS_D);
  292.  
  293. void do_pass_param(znode *param, int op, int offset CLS_DC);
  294.  
  295.  
  296. void do_boolean_or_begin(znode *expr1, znode *op_token CLS_DC);
  297. void do_boolean_or_end(znode *result, znode *expr1, znode *expr2, znode *op_token CLS_DC);
  298. void do_boolean_and_begin(znode *expr1, znode *op_token CLS_DC);               
  299. void do_boolean_and_end(znode *result, znode *expr1, znode *expr2, znode *op_token CLS_DC);
  300.  
  301. void do_brk_cont(int op, znode *expr CLS_DC);
  302.  
  303. void do_switch_cond(znode *cond CLS_DC);
  304. void do_switch_end(znode *case_list CLS_DC);
  305. void do_case_before_statement(znode *case_list, znode *case_token, znode *case_expr CLS_DC);
  306. void do_case_after_statement(znode *result, znode *case_token CLS_DC);
  307. void do_default_before_statement(znode *case_list, znode *default_token CLS_DC);
  308.  
  309. void do_begin_class_declaration(znode *class_name, znode *parent_class_name CLS_DC);
  310. void do_end_class_declaration(CLS_D);
  311. void do_declare_property(znode *var_name, znode *value CLS_DC);
  312.  
  313. void do_fetch_property(znode *result, znode *object, znode *property CLS_DC);
  314.  
  315.  
  316. void do_push_object(znode *object CLS_DC);
  317. void do_pop_object(znode *object CLS_DC);
  318.  
  319.  
  320. void do_begin_new_object(znode *new_token, znode *class_name CLS_DC);
  321. void do_end_new_object(znode *result, znode *class_name, znode *new_token, znode *argument_list CLS_DC);
  322.  
  323. void do_fetch_constant(znode *result, znode *constant_name, int mode CLS_DC);
  324.  
  325. void do_shell_exec(znode *result, znode *cmd CLS_DC);
  326.  
  327. void do_init_array(znode *result, znode *expr, znode *offset, int is_ref CLS_DC);
  328. void do_add_array_element(znode *result, znode *expr, znode *offset, int is_ref CLS_DC);
  329. void do_add_static_array_element(znode *result, znode *offset, znode *expr);
  330. void do_list_init(CLS_D);
  331. void do_list_end(znode *result, znode *expr CLS_DC);
  332. void do_add_list_element(znode *element CLS_DC);
  333. void do_new_list_begin(CLS_D);
  334. void do_new_list_end(CLS_D);
  335.  
  336. void do_cast(znode *result, znode *expr, int type CLS_DC);
  337. void do_include_or_eval(int type, znode *result, znode *op1 CLS_DC);
  338. void do_require(znode *filename, zend_bool unique CLS_DC);
  339.  
  340. void do_unset(znode *variable CLS_DC);
  341. void do_isset_or_isempty(int type, znode *result, znode *variable CLS_DC);
  342.  
  343. void do_foreach_begin(znode *foreach_token, znode *array, znode *open_brackets_token, znode *as_token CLS_DC);
  344. void do_foreach_cont(znode *value, znode *key, znode *as_token CLS_DC);
  345. void do_foreach_end(znode *foreach_token, znode *open_brackets_token CLS_DC);
  346.  
  347. void do_declare_begin(CLS_D);
  348. void do_declare_stmt(znode *var, znode *val CLS_DC);
  349. void do_declare_end(CLS_D);
  350.  
  351. void do_end_heredoc(CLS_D);
  352.  
  353. void do_exit(znode *result, znode *message CLS_DC);
  354.  
  355. void do_begin_silence(znode *strudel_token CLS_DC);
  356. void do_end_silence(znode *strudel_token CLS_DC);
  357.  
  358. void do_begin_qm_op(znode *cond, znode *qm_token CLS_DC);
  359. void do_qm_true(znode *true_value, znode *qm_token, znode *colon_token CLS_DC);
  360. void do_qm_false(znode *result, znode *false_value, znode *qm_token, znode *colon_token CLS_DC);
  361.  
  362. void do_extended_info(CLS_D);
  363. void do_extended_fcall_begin(CLS_D);
  364. void do_extended_fcall_end(CLS_D);
  365.  
  366. void do_ticks(CLS_D);
  367.  
  368. ZEND_API void function_add_ref(zend_function *function);
  369.  
  370. #define INITIAL_OP_ARRAY_SIZE 64
  371.  
  372.  
  373. /* helper functions in zend-scanner.l */
  374. ZEND_API int require_file(zend_file_handle *file_handle, zend_bool unique CLS_DC);    
  375. ZEND_API int require_filename(char *filename, zend_bool unique CLS_DC);
  376. ZEND_API int use_filename(char *filename, uint filename_length CLS_DC);
  377. ZEND_API zend_op_array *zend_compile_files(int type CLS_DC, int file_count, ...);
  378. ZEND_API zend_op_array *v_compile_files(int type CLS_DC, int file_count, va_list files);
  379. ZEND_API zend_op_array *compile_string(zval *source_string CLS_DC);    
  380. ZEND_API zend_op_array *compile_filename(int type, zval *filename CLS_DC ELS_DC);
  381. ZEND_API int open_file_for_scanning(zend_file_handle *file_handle CLS_DC);
  382. ZEND_API void init_op_array(zend_op_array *op_array, int type, int initial_ops_size);
  383. ZEND_API void destroy_op_array(zend_op_array *op_array);
  384. ZEND_API void zend_close_file_handle(zend_file_handle *file_handle CLS_DC);
  385. ZEND_API void zend_open_file_dtor(zend_file_handle *fh);
  386.  
  387. ZEND_API void destroy_zend_function(zend_function *function);
  388. ZEND_API void destroy_zend_class(zend_class_entry *ce);
  389. void zend_class_add_ref(zend_class_entry *ce);
  390.  
  391. #define ZEND_FUNCTION_DTOR (void (*)(void *)) destroy_zend_function
  392. #define ZEND_CLASS_DTOR (void (*)(void *)) destroy_zend_class
  393.  
  394. zend_op *get_next_op(zend_op_array *op_array CLS_DC);
  395. void init_op(zend_op *op CLS_DC);
  396. int get_next_op_number(zend_op_array *op_array);
  397. int print_class(zend_class_entry *class_entry);
  398. void print_op_array(zend_op_array *op_array, int optimizations);
  399. int pass_two(zend_op_array *op_array);
  400. ZEND_API void pass_include_eval(zend_op_array *op_array);
  401. zend_brk_cont_element *get_next_brk_cont_element(zend_op_array *op_array);
  402. ZEND_API zend_bool zend_is_compiling(void);
  403.  
  404. int zendlex(znode *zendlval CLS_DC);
  405.  
  406. #define ZEND_NOP                    0
  407.                                     
  408. #define ZEND_ADD                    1
  409. #define ZEND_SUB                    2
  410. #define ZEND_MUL                    3
  411. #define ZEND_DIV                    4
  412. #define ZEND_MOD                    5
  413. #define ZEND_SL                        6
  414. #define ZEND_SR                        7
  415. #define ZEND_CONCAT                    8
  416. #define ZEND_BW_OR                    9
  417. #define ZEND_BW_AND                    10
  418. #define ZEND_BW_XOR                    11
  419. #define ZEND_BW_NOT                    12
  420. #define ZEND_BOOL_NOT                13
  421. #define ZEND_BOOL_XOR                14
  422. #define ZEND_IS_IDENTICAL            15
  423. #define ZEND_IS_NOT_IDENTICAL       16
  424. #define ZEND_IS_EQUAL                17
  425. #define ZEND_IS_NOT_EQUAL            18
  426. #define ZEND_IS_SMALLER                19
  427. #define ZEND_IS_SMALLER_OR_EQUAL    20
  428. #define ZEND_CAST                    21
  429. #define ZEND_QM_ASSIGN                22
  430.  
  431. #define ZEND_ASSIGN_ADD                23
  432. #define ZEND_ASSIGN_SUB                24
  433. #define ZEND_ASSIGN_MUL                25
  434. #define ZEND_ASSIGN_DIV                26
  435. #define ZEND_ASSIGN_MOD                27
  436. #define ZEND_ASSIGN_SL                28
  437. #define ZEND_ASSIGN_SR                29
  438. #define ZEND_ASSIGN_CONCAT            30
  439. #define ZEND_ASSIGN_BW_OR            31
  440. #define ZEND_ASSIGN_BW_AND            32
  441. #define ZEND_ASSIGN_BW_XOR            33
  442.                                     
  443. #define ZEND_PRE_INC                34
  444. #define ZEND_PRE_DEC                35
  445. #define ZEND_POST_INC                36
  446. #define ZEND_POST_DEC                37
  447.                                      
  448. #define ZEND_ASSIGN                    38
  449. #define ZEND_ASSIGN_REF                39
  450.  
  451. #define ZEND_ECHO                    40
  452. #define ZEND_PRINT                    41
  453.  
  454. #define ZEND_JMP                    42
  455. #define ZEND_JMPZ                    43
  456. #define ZEND_JMPNZ                    44
  457. #define ZEND_JMPZNZ                    45
  458. #define ZEND_JMPZ_EX                46
  459. #define ZEND_JMPNZ_EX                47
  460. #define ZEND_CASE                    48
  461. #define ZEND_SWITCH_FREE            49
  462. #define ZEND_BRK                    50
  463. #define ZEND_CONT                    51
  464. #define ZEND_BOOL                    52
  465.  
  466. #define ZEND_INIT_STRING            53
  467. #define ZEND_ADD_CHAR                54
  468. #define ZEND_ADD_STRING                55
  469. #define ZEND_ADD_VAR                56
  470.  
  471. #define ZEND_BEGIN_SILENCE            57
  472. #define ZEND_END_SILENCE            58
  473.  
  474. #define ZEND_INIT_FCALL_BY_NAME        59
  475. #define ZEND_DO_FCALL                60
  476. #define ZEND_DO_FCALL_BY_NAME        61
  477. #define ZEND_RETURN                    62
  478.  
  479. #define ZEND_RECV                    63
  480. #define ZEND_RECV_INIT                64
  481.                                     
  482. #define ZEND_SEND_VAL                65
  483. #define ZEND_SEND_VAR                66
  484. #define ZEND_SEND_REF                67
  485.  
  486. #define ZEND_NEW                     68
  487. #define ZEND_JMP_NO_CTOR            69
  488. #define ZEND_FREE                    70
  489.                                     
  490. #define ZEND_INIT_ARRAY                71
  491. #define ZEND_ADD_ARRAY_ELEMENT        72
  492.                                     
  493. #define ZEND_INCLUDE_OR_EVAL        73
  494.                                     
  495. #define ZEND_UNSET_VAR                74
  496. #define ZEND_UNSET_DIM_OBJ            75
  497. #define ZEND_ISSET_ISEMPTY            76
  498.                                     
  499. #define ZEND_FE_RESET                77
  500. #define ZEND_FE_FETCH                78
  501.                                     
  502. #define ZEND_EXIT                    79
  503.  
  504.  
  505. /* the following 18 opcodes are 6 groups of 3 opcodes each, and must
  506.  * remain in that order!
  507.  */
  508. #define ZEND_FETCH_R                80
  509. #define ZEND_FETCH_DIM_R            81
  510. #define ZEND_FETCH_OBJ_R            82
  511. #define ZEND_FETCH_W                83
  512. #define ZEND_FETCH_DIM_W            84
  513. #define ZEND_FETCH_OBJ_W            85
  514. #define ZEND_FETCH_RW                86
  515. #define ZEND_FETCH_DIM_RW            87
  516. #define ZEND_FETCH_OBJ_RW            88
  517. #define ZEND_FETCH_IS                89
  518. #define ZEND_FETCH_DIM_IS            90
  519. #define ZEND_FETCH_OBJ_IS            91
  520. #define ZEND_FETCH_FUNC_ARG            92
  521. #define ZEND_FETCH_DIM_FUNC_ARG        93
  522. #define ZEND_FETCH_OBJ_FUNC_ARG        94
  523. #define ZEND_FETCH_UNSET            95
  524. #define ZEND_FETCH_DIM_UNSET        96
  525. #define ZEND_FETCH_OBJ_UNSET        97
  526.  
  527. #define ZEND_FETCH_DIM_TMP_VAR        98
  528. #define ZEND_FETCH_CONSTANT            99
  529.  
  530. #define ZEND_DECLARE_FUNCTION_OR_CLASS    100
  531.  
  532. #define ZEND_EXT_STMT                101
  533. #define ZEND_EXT_FCALL_BEGIN        102
  534. #define ZEND_EXT_FCALL_END            103
  535. #define ZEND_EXT_NOP                104
  536.  
  537. #define ZEND_TICKS                    105
  538.  
  539. /* end of block */
  540.  
  541.  
  542.  
  543.  
  544. /* global/local fetches */
  545. #define ZEND_FETCH_GLOBAL    0
  546. #define ZEND_FETCH_LOCAL    1
  547. #define ZEND_FETCH_STATIC    2
  548.  
  549. /* var status for backpatching */
  550. #define BP_VAR_R            0
  551. #define BP_VAR_W            1
  552. #define BP_VAR_RW            2
  553. #define BP_VAR_IS            3
  554. #define BP_VAR_NA            4    /* if not applicable */
  555. #define BP_VAR_FUNC_ARG        5
  556. #define BP_VAR_UNSET        6
  557.  
  558.  
  559. #define ZEND_INTERNAL_FUNCTION        1
  560. #define ZEND_USER_FUNCTION            2
  561. #define ZEND_OVERLOADED_FUNCTION    3
  562. #define    ZEND_EVAL_CODE                4
  563.  
  564. #define ZEND_INTERNAL_CLASS        1
  565. #define ZEND_USER_CLASS            2
  566.  
  567. #define ZEND_EVAL                (1<<0)
  568. #define ZEND_INCLUDE            (1<<1)
  569. #define ZEND_INCLUDE_ONCE        (1<<2)
  570. #define ZEND_REQUIRE            (1<<3)
  571.  
  572. #define ZEND_ISSET                (1<<0)
  573. #define ZEND_ISEMPTY            (1<<1)
  574.  
  575. #define ZEND_CT    (1<<0)
  576. #define ZEND_RT (1<<1)
  577.  
  578.  
  579. #define ZEND_HANDLE_FILENAME        0
  580. #define ZEND_HANDLE_FD                1
  581. #define ZEND_HANDLE_FP                2
  582. #define ZEND_HANDLE_STDIOSTREAM        3
  583. #define ZEND_HANDLE_FSTREAM            4
  584.  
  585. #define ZEND_DECLARE_CLASS                1
  586. #define ZEND_DECLARE_FUNCTION            2
  587. #define ZEND_DECLARE_INHERITED_CLASS    3
  588.  
  589. #define ZEND_FETCH_STANDARD        0
  590. #define ZEND_FETCH_ADD_LOCK        1
  591.  
  592. #define ZEND_MEMBER_FUNC_CALL    1<<0
  593. #define ZEND_CTOR_CALL            1<<1
  594.  
  595.  
  596. #define AI_USE_PTR(ai) \
  597.     if ((ai).ptr_ptr) { \
  598.         (ai).ptr = *((ai).ptr_ptr); \
  599.         (ai).ptr_ptr = &((ai).ptr); \
  600.     } else { \
  601.         (ai).ptr = NULL; \
  602.     }
  603.  
  604. /* Lost In Stupid Parentheses */
  605. #define ARG_SHOULD_BE_SENT_BY_REF(offset, conduct_check, arg_types)    \
  606.     (                                                                \
  607.         conduct_check                                                \
  608.         && arg_types                                                \
  609.         &&                                                            \
  610.         (                                                            \
  611.             (                                                        \
  612.                 offset<=arg_types[0]                                \
  613.                 && arg_types[offset]==BYREF_FORCE                    \
  614.             )                                                        \
  615.         ||    (                                                        \
  616.                 offset>=arg_types[0]                                \
  617.                 && arg_types[arg_types[0]]==BYREF_FORCE_REST        \
  618.             )                                                        \
  619.         )                                                            \
  620.     )
  621.  
  622. #define ZEND_RETURN_VAL 0
  623. #define ZEND_RETURN_REF 1
  624.  
  625. END_EXTERN_C()
  626.  
  627. #endif /* _COMPILE_H */
  628.