php-src/Zend/zend_opcode.c

561 lines
15 KiB
C
Raw Normal View History

1999-04-07 18:10:10 +00:00
/*
+----------------------------------------------------------------------+
| Zend Engine |
+----------------------------------------------------------------------+
| Copyright (c) 1998-2010 Zend Technologies Ltd. (http://www.zend.com) |
1999-04-07 18:10:10 +00:00
+----------------------------------------------------------------------+
2001-12-11 15:16:21 +00:00
| This source file is subject to version 2.00 of the Zend license, |
1999-07-16 14:58:16 +00:00
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
2001-12-11 15:16:21 +00:00
| http://www.zend.com/license/2_00.txt. |
1999-07-16 14:58:16 +00: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-07 18:10:10 +00:00
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
*/
/* $Id$ */
1999-07-16 14:58:16 +00:00
1999-04-07 18:10:10 +00:00
#include <stdio.h>
#include "zend.h"
#include "zend_alloc.h"
#include "zend_compile.h"
#include "zend_extensions.h"
#include "zend_API.h"
#include "zend_vm.h"
2001-07-31 04:53:54 +00:00
static void zend_extension_op_array_ctor_handler(zend_extension *extension, zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
if (extension->op_array_ctor) {
extension->op_array_ctor(op_array);
1999-04-07 18:10:10 +00:00
}
}
2001-07-31 04:53:54 +00:00
static void zend_extension_op_array_dtor_handler(zend_extension *extension, zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
if (extension->op_array_dtor) {
extension->op_array_dtor(op_array);
1999-04-07 18:10:10 +00:00
}
}
static void op_array_alloc_ops(zend_op_array *op_array)
{
op_array->opcodes = erealloc(op_array->opcodes, (op_array->size)*sizeof(zend_op));
}
2002-04-23 18:06:54 +00:00
void init_op_array(zend_op_array *op_array, zend_uchar type, int initial_ops_size TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
2000-04-29 01:30:17 +00:00
op_array->type = type;
op_array->backpatch_count = 0;
if (CG(interactive)) {
/* We must avoid a realloc() on the op_array in interactive mode, since pointers to constants
* will become invalid
*/
initial_ops_size = 8192;
1999-04-07 18:10:10 +00:00
}
2000-03-26 16:00:35 +00:00
op_array->refcount = (zend_uint *) emalloc(sizeof(zend_uint));
1999-04-07 18:10:10 +00:00
*op_array->refcount = 1;
op_array->size = initial_ops_size;
op_array->last = 0;
op_array->opcodes = NULL;
op_array_alloc_ops(op_array);
op_array->size_var = 0;
op_array->last_var = 0;
op_array->vars = NULL;
1999-04-07 18:10:10 +00:00
op_array->T = 0;
op_array->function_name = NULL;
op_array->filename = zend_get_compiled_filename(TSRMLS_C);
2004-02-20 06:59:37 +00:00
op_array->doc_comment = NULL;
op_array->doc_comment_len = 0;
1999-04-07 18:10:10 +00:00
op_array->arg_info = NULL;
op_array->num_args = 0;
op_array->required_num_args = 0;
1999-04-07 18:10:10 +00:00
op_array->scope = NULL;
1999-04-07 18:10:10 +00:00
op_array->brk_cont_array = NULL;
op_array->try_catch_array = NULL;
1999-04-07 18:10:10 +00:00
op_array->last_brk_cont = 0;
op_array->current_brk_cont = -1;
op_array->static_variables = NULL;
op_array->last_try_catch = 0;
1999-04-07 18:10:10 +00:00
op_array->return_reference = 0;
op_array->done_pass_two = 0;
op_array->this_var = -1;
op_array->start_op = NULL;
op_array->fn_flags = CG(interactive)?ZEND_ACC_INTERACTIVE:0;
op_array->early_binding = -1;
op_array->size_literal = 0;
op_array->last_literal = 0;
op_array->literals = NULL;
memset(op_array->reserved, 0, ZEND_MAX_RESERVED_RESOURCES * sizeof(void*));
2001-07-31 04:53:54 +00:00
zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_ctor_handler, op_array TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
ZEND_API void destroy_zend_function(zend_function *function TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
switch (function->type) {
case ZEND_USER_FUNCTION:
destroy_op_array((zend_op_array *) function TSRMLS_CC);
1999-04-07 18:10:10 +00:00
break;
case ZEND_INTERNAL_FUNCTION:
/* do nothing */
break;
}
}
ZEND_API void zend_function_dtor(zend_function *function)
{
TSRMLS_FETCH();
destroy_zend_function(function TSRMLS_CC);
}
static void zend_cleanup_op_array_data(zend_op_array *op_array)
{
if (op_array->static_variables) {
zend_hash_clean(op_array->static_variables);
}
}
ZEND_API int zend_cleanup_function_data(zend_function *function TSRMLS_DC)
{
if (function->type == ZEND_USER_FUNCTION) {
zend_cleanup_op_array_data((zend_op_array *) function);
return ZEND_HASH_APPLY_KEEP;
} else {
return ZEND_HASH_APPLY_STOP;
}
}
ZEND_API int zend_cleanup_function_data_full(zend_function *function TSRMLS_DC)
{
if (function->type == ZEND_USER_FUNCTION) {
zend_cleanup_op_array_data((zend_op_array *) function);
}
return 0;
}
ZEND_API int zend_cleanup_class_data(zend_class_entry **pce TSRMLS_DC)
{
if ((*pce)->type == ZEND_USER_CLASS) {
/* Clean all parts that can contain run-time data */
/* Note that only run-time accessed data need to be cleaned up, pre-defined data can
not contain objects and thus are not probelmatic */
zend_hash_apply(&(*pce)->function_table, (apply_func_t) zend_cleanup_function_data_full TSRMLS_CC);
(*pce)->static_members = NULL;
} else if (CE_STATIC_MEMBERS(*pce)) {
zend_hash_destroy(CE_STATIC_MEMBERS(*pce));
FREE_HASHTABLE(CE_STATIC_MEMBERS(*pce));
#ifdef ZTS
2007-04-16 08:09:56 +00:00
CG(static_members)[(zend_intptr_t)((*pce)->static_members)] = NULL;
#else
(*pce)->static_members = NULL;
#endif
}
return 0;
}
1999-04-14 19:53:33 +00:00
ZEND_API void destroy_zend_class(zend_class_entry **pce)
1999-04-07 18:10:10 +00:00
{
zend_class_entry *ce = *pce;
if (--ce->refcount > 0) {
return;
}
1999-04-07 18:10:10 +00:00
switch (ce->type) {
case ZEND_USER_CLASS:
zend_hash_destroy(&ce->default_properties);
zend_hash_destroy(&ce->properties_info);
zend_hash_destroy(&ce->default_static_members);
1999-04-07 18:10:10 +00:00
efree(ce->name);
zend_hash_destroy(&ce->function_table);
zend_hash_destroy(&ce->constants_table);
if (ce->num_interfaces > 0 && ce->interfaces) {
2003-03-05 11:14:44 +00:00
efree(ce->interfaces);
}
Implemented Traits for PHP as proposed in the RFC [TRAITS] # RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior # Ok, here we go, I guess that will result in more discussion, which is fine # by me. But now, the patch is here, and properly archived. # # See below a list of notes to the patch, it also includes a list of # points which should be fixed # # Internals of the Traits Patch # ----------------------------- # # Open TODOs # """""""""" # # - Reflection API # - support for traits for internal classes # - currently destroy_zend_class does not handle that case # # Introduced Structures # """"""""""""""""""""" # # Data structures to encode the composition information specified in the # source: # - zend_trait_method_reference # - zend_trait_precedence # - zend_trait_alias # # Changes # """"""" # # zend_class_entry # - uses NULL terminated lists of pointers for # - trait_aliases # - trait_precedences # - do you prefer an explicit counter? # - the information is only necessary during class composition # but might be interesting for reflection # - did not want to blow up class further with not really necessary length counters # # added keywords # - trait # - insteadof # # Added opcodes # ZEND_ADD_TRAIT # - similar to ZEND_ADD_INTERFACE # - adds the trait to the list of traits of a class, no actual composition done # ZEND_BIND_TRAITS # - emitted in zend_do_end_class_declaration # - concludes the class definition and will initiate the trait composition # when the class definition is encountered during runtime # # Added Flags # ZEND_ACC_TRAIT = 0x120 # ZEND_ACC_IMPLEMENT_TRAITS = 0x400000 # ZEND_FETCH_CLASS_TRAIT = 14 # # zend_vm_execute.h # - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER, # ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective # # zend_compile.c # - refactored do_inherit_method_check # split into do_inherit_method_check and do_inheritance_check_on_method # - added helper functions use a '_' as prefix and are not mentioned in the # headers # - _copy_functions # prepare hash-maps of functions which should be merged into a class # here the aliases are handled # - _merge_functions # builds a hash-table of the methods which need to be added to a class # does the conflict detection # - reused php_runkit_function_copy_ctor # - it is not identical with the original code anymore, needed to update it # think I fixed some bugs, not sure whether all have been reported back to runkit # - has to be renamed, left the name for the moment, to make its origin obvious # - here might be optimization potential # - not sure whether everything needs to be copied # - copying the literals might be broken # - added it since the literals array is freed by efree and gave problems # with doubled frees # - all immutable parts of the zend_op array should not be copied # - am not sure which parts are immutable # - and not sure how to avoid doubled frees on the same arrays on shutdown # - _merge_functions_to_class # does the final merging with the target class to handle inherited # and overridden methods # - small helper for NULL terminated lists # zend_init_list, zend_add_to_list # # zend_language_parser.y # - reused class definition for traits # - there should be something with regard to properties # - if they get explicitly defined, it might be worthwhile to # check that there are no collisions with other traits in a composition # (however, I would not introduce elaborate language features to control that # but a notice for such conflicts might be nice to the developers)
2010-04-22 22:05:56 +00:00
if (ce->num_traits > 0 && ce->traits) {
efree(ce->traits);
}
if (ce->doc_comment) {
efree(ce->doc_comment);
}
Implemented Traits for PHP as proposed in the RFC [TRAITS] # RFC http://wiki.php.net/rfc/horizontalreuse#traits_-_reuse_of_behavior # Ok, here we go, I guess that will result in more discussion, which is fine # by me. But now, the patch is here, and properly archived. # # See below a list of notes to the patch, it also includes a list of # points which should be fixed # # Internals of the Traits Patch # ----------------------------- # # Open TODOs # """""""""" # # - Reflection API # - support for traits for internal classes # - currently destroy_zend_class does not handle that case # # Introduced Structures # """"""""""""""""""""" # # Data structures to encode the composition information specified in the # source: # - zend_trait_method_reference # - zend_trait_precedence # - zend_trait_alias # # Changes # """"""" # # zend_class_entry # - uses NULL terminated lists of pointers for # - trait_aliases # - trait_precedences # - do you prefer an explicit counter? # - the information is only necessary during class composition # but might be interesting for reflection # - did not want to blow up class further with not really necessary length counters # # added keywords # - trait # - insteadof # # Added opcodes # ZEND_ADD_TRAIT # - similar to ZEND_ADD_INTERFACE # - adds the trait to the list of traits of a class, no actual composition done # ZEND_BIND_TRAITS # - emitted in zend_do_end_class_declaration # - concludes the class definition and will initiate the trait composition # when the class definition is encountered during runtime # # Added Flags # ZEND_ACC_TRAIT = 0x120 # ZEND_ACC_IMPLEMENT_TRAITS = 0x400000 # ZEND_FETCH_CLASS_TRAIT = 14 # # zend_vm_execute.h # - not sure whether the handler initialization (ZEND_ADD_TRAIT_SPEC_HANDLER, # ZEND_BIND_TRAITS_SPEC_HANDLER) is correct, maybe it should be more selective # # zend_compile.c # - refactored do_inherit_method_check # split into do_inherit_method_check and do_inheritance_check_on_method # - added helper functions use a '_' as prefix and are not mentioned in the # headers # - _copy_functions # prepare hash-maps of functions which should be merged into a class # here the aliases are handled # - _merge_functions # builds a hash-table of the methods which need to be added to a class # does the conflict detection # - reused php_runkit_function_copy_ctor # - it is not identical with the original code anymore, needed to update it # think I fixed some bugs, not sure whether all have been reported back to runkit # - has to be renamed, left the name for the moment, to make its origin obvious # - here might be optimization potential # - not sure whether everything needs to be copied # - copying the literals might be broken # - added it since the literals array is freed by efree and gave problems # with doubled frees # - all immutable parts of the zend_op array should not be copied # - am not sure which parts are immutable # - and not sure how to avoid doubled frees on the same arrays on shutdown # - _merge_functions_to_class # does the final merging with the target class to handle inherited # and overridden methods # - small helper for NULL terminated lists # zend_init_list, zend_add_to_list # # zend_language_parser.y # - reused class definition for traits # - there should be something with regard to properties # - if they get explicitly defined, it might be worthwhile to # check that there are no collisions with other traits in a composition # (however, I would not introduce elaborate language features to control that # but a notice for such conflicts might be nice to the developers)
2010-04-22 22:05:56 +00:00
if (ce->trait_aliases) {
size_t i = 0;
while (ce->trait_aliases[i]) {
if (ce->trait_aliases[i]->trait_method) {
if (ce->trait_aliases[i]->trait_method->method_name) {
efree(ce->trait_aliases[i]->trait_method->method_name);
}
if (ce->trait_aliases[i]->trait_method->class_name) {
efree(ce->trait_aliases[i]->trait_method->class_name);
}
efree(ce->trait_aliases[i]->trait_method);
}
if (ce->trait_aliases[i]->alias) {
efree(ce->trait_aliases[i]->alias);
}
efree(ce->trait_aliases[i]);
i++;
}
efree(ce->trait_aliases);
}
if (ce->trait_precedences) {
size_t i = 0;
while (ce->trait_precedences[i]) {
efree(ce->trait_precedences[i]->trait_method->method_name);
efree(ce->trait_precedences[i]->trait_method->class_name);
efree(ce->trait_precedences[i]->trait_method);
if (ce->trait_precedences[i]->exclude_from_classes) {
efree(ce->trait_precedences[i]->exclude_from_classes);
}
efree(ce->trait_precedences[i]);
i++;
}
efree(ce->trait_precedences);
}
efree(ce);
1999-04-07 18:10:10 +00:00
break;
case ZEND_INTERNAL_CLASS:
zend_hash_destroy(&ce->default_properties);
zend_hash_destroy(&ce->properties_info);
zend_hash_destroy(&ce->default_static_members);
1999-04-07 18:10:10 +00:00
free(ce->name);
zend_hash_destroy(&ce->function_table);
zend_hash_destroy(&ce->constants_table);
if (ce->num_interfaces > 0) {
free(ce->interfaces);
}
if (ce->doc_comment) {
free(ce->doc_comment);
}
free(ce);
1999-04-07 18:10:10 +00:00
break;
}
}
1999-04-07 18:10:10 +00:00
void zend_class_add_ref(zend_class_entry **ce)
{
(*ce)->refcount++;
}
ZEND_API void destroy_op_array(zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zend_literal *literal = op_array->literals;
zend_literal *end;
zend_uint i;
1999-04-07 18:10:10 +00:00
if (op_array->static_variables) {
zend_hash_destroy(op_array->static_variables);
FREE_HASHTABLE(op_array->static_variables);
}
1999-04-07 18:10:10 +00:00
if (--(*op_array->refcount)>0) {
return;
}
efree(op_array->refcount);
if (op_array->vars) {
i = op_array->last_var;
while (i > 0) {
i--;
str_efree(op_array->vars[i].name);
}
efree(op_array->vars);
}
if (literal) {
end = literal + op_array->last_literal;
while (literal < end) {
zval_dtor(&literal->constant);
literal++;
1999-04-07 18:10:10 +00:00
}
efree(op_array->literals);
1999-04-07 18:10:10 +00:00
}
efree(op_array->opcodes);
2004-07-29 15:23:47 +00:00
1999-04-07 18:10:10 +00:00
if (op_array->function_name) {
efree(op_array->function_name);
}
2004-02-20 06:59:37 +00:00
if (op_array->doc_comment) {
efree(op_array->doc_comment);
}
1999-04-07 18:10:10 +00:00
if (op_array->brk_cont_array) {
efree(op_array->brk_cont_array);
}
if (op_array->try_catch_array) {
efree(op_array->try_catch_array);
}
if (op_array->done_pass_two) {
2001-07-31 04:53:54 +00:00
zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_dtor_handler, op_array TSRMLS_CC);
}
if (op_array->arg_info) {
for (i=0; i<op_array->num_args; i++) {
str_efree((char*)op_array->arg_info[i].name);
if (op_array->arg_info[i].class_name && !IS_INTERNED(op_array->arg_info[i].class_name)) {
efree((char*)op_array->arg_info[i].class_name);
2003-08-03 22:28:14 +00:00
}
}
efree(op_array->arg_info);
}
1999-04-07 18:10:10 +00:00
}
void init_op(zend_op *op TSRMLS_DC)
{
2004-02-04 15:51:07 +00:00
memset(op, 0, sizeof(zend_op));
op->lineno = CG(zend_lineno);
SET_UNUSED(op->result);
}
zend_op *get_next_op(zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zend_uint next_op_num = op_array->last++;
1999-04-07 18:10:10 +00:00
zend_op *next_op;
if (next_op_num >= op_array->size) {
if (op_array->fn_flags & ZEND_ACC_INTERACTIVE) {
1999-04-07 18:10:10 +00:00
/* we messed up */
zend_printf("Ran out of opcode space!\n"
"You should probably consider writing this huge script into a file!\n");
zend_bailout();
}
op_array->size *= 4;
1999-04-07 18:10:10 +00:00
op_array_alloc_ops(op_array);
}
next_op = &(op_array->opcodes[next_op_num]);
init_op(next_op TSRMLS_CC);
1999-04-07 18:10:10 +00:00
return next_op;
}
int get_next_op_number(zend_op_array *op_array)
{
return op_array->last;
}
zend_brk_cont_element *get_next_brk_cont_element(zend_op_array *op_array)
{
op_array->last_brk_cont++;
op_array->brk_cont_array = erealloc(op_array->brk_cont_array, sizeof(zend_brk_cont_element)*op_array->last_brk_cont);
return &op_array->brk_cont_array[op_array->last_brk_cont-1];
}
static void zend_update_extended_info(zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zend_op *opline = op_array->opcodes, *end=opline+op_array->last;
while (opline<end) {
if (opline->opcode == ZEND_EXT_STMT) {
if (opline+1<end) {
if ((opline+1)->opcode == ZEND_EXT_STMT) {
opline->opcode = ZEND_NOP;
opline++;
continue;
}
if (opline+1<end) {
opline->lineno = (opline+1)->lineno;
}
1999-04-07 18:10:10 +00:00
} else {
opline->opcode = ZEND_NOP;
}
}
opline++;
}
}
2001-07-31 04:53:54 +00:00
static void zend_extension_op_array_handler(zend_extension *extension, zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
if (extension->op_array_handler) {
extension->op_array_handler(op_array);
}
}
ZEND_API int pass_two(zend_op_array *op_array TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
zend_op *opline, *end;
1999-04-07 18:10:10 +00:00
if (op_array->type!=ZEND_USER_FUNCTION && op_array->type!=ZEND_EVAL_CODE) {
1999-04-07 18:10:10 +00:00
return 0;
}
if (CG(compiler_options) & ZEND_COMPILE_EXTENDED_INFO) {
zend_update_extended_info(op_array TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
if (CG(compiler_options) & ZEND_COMPILE_HANDLE_OP_ARRAY) {
2001-07-31 04:53:54 +00:00
zend_llist_apply_with_argument(&zend_extensions, (llist_apply_with_arg_func_t) zend_extension_op_array_handler, op_array TSRMLS_CC);
1999-04-07 18:10:10 +00:00
}
if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && op_array->size != op_array->last) {
op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last);
op_array->size = op_array->last;
}
if (!(op_array->fn_flags & ZEND_ACC_INTERACTIVE) && op_array->size_literal != op_array->last_literal) {
op_array->literals = (zend_literal*)erealloc(op_array->literals, sizeof(zend_literal) * op_array->last_literal);
op_array->size_literal = op_array->last_literal;
}
opline = op_array->opcodes;
end = opline + op_array->last;
while (opline < end) {
if (opline->op1_type == IS_CONST) {
opline->op1.zv = &op_array->literals[opline->op1.constant].constant;
1999-04-07 18:10:10 +00:00
}
if (opline->op2_type == IS_CONST) {
opline->op2.zv = &op_array->literals[opline->op2.constant].constant;
1999-04-07 18:10:10 +00:00
}
2002-10-24 18:24:55 +00:00
switch (opline->opcode) {
case ZEND_GOTO:
if (Z_TYPE_P(opline->op2.zv) != IS_LONG) {
zend_resolve_goto_label(op_array, opline, 1 TSRMLS_CC);
}
/* break omitted intentionally */
2002-10-24 18:24:55 +00:00
case ZEND_JMP:
opline->op1.jmp_addr = &op_array->opcodes[opline->op1.opline_num];
2002-10-24 18:24:55 +00:00
break;
case ZEND_JMPZ:
case ZEND_JMPNZ:
case ZEND_JMPZ_EX:
case ZEND_JMPNZ_EX:
case ZEND_JMP_SET:
opline->op2.jmp_addr = &op_array->opcodes[opline->op2.opline_num];
2002-10-24 18:24:55 +00:00
break;
}
ZEND_VM_SET_OPCODE_HANDLER(opline);
1999-04-07 18:10:10 +00:00
opline++;
}
op_array->done_pass_two = 1;
return 0;
1999-04-07 18:10:10 +00:00
}
2001-07-31 04:53:54 +00:00
int print_class(zend_class_entry *class_entry TSRMLS_DC)
1999-04-07 18:10:10 +00:00
{
printf("Class %s:\n", class_entry->name);
2001-07-31 04:53:54 +00:00
zend_hash_apply(&class_entry->function_table, (apply_func_t) pass_two TSRMLS_CC);
1999-04-07 18:10:10 +00:00
printf("End of class %s.\n\n", class_entry->name);
return 0;
}
ZEND_API unary_op_type get_unary_op(int opcode)
1999-04-07 18:10:10 +00:00
{
2002-11-30 11:20:25 +00:00
switch (opcode) {
1999-04-07 18:10:10 +00:00
case ZEND_BW_NOT:
return (unary_op_type) bitwise_not_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_BOOL_NOT:
return (unary_op_type) boolean_not_function;
1999-04-07 18:10:10 +00:00
break;
default:
return (unary_op_type) NULL;
1999-04-07 18:10:10 +00:00
break;
}
}
ZEND_API binary_op_type get_binary_op(int opcode)
1999-04-07 18:10:10 +00:00
{
switch (opcode) {
case ZEND_ADD:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_ADD:
return (binary_op_type) add_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_SUB:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_SUB:
return (binary_op_type) sub_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_MUL:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_MUL:
return (binary_op_type) mul_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_DIV:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_DIV:
return (binary_op_type) div_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_MOD:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_MOD:
return (binary_op_type) mod_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_SL:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_SL:
return (binary_op_type) shift_left_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_SR:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_SR:
return (binary_op_type) shift_right_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_CONCAT:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_CONCAT:
return (binary_op_type) concat_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_IS_IDENTICAL:
return (binary_op_type) is_identical_function;
break;
2000-03-29 22:05:19 +00:00
case ZEND_IS_NOT_IDENTICAL:
return (binary_op_type) is_not_identical_function;
2000-03-29 22:05:19 +00:00
break;
1999-04-24 00:12:55 +00:00
case ZEND_IS_EQUAL:
return (binary_op_type) is_equal_function;
1999-04-07 18:10:10 +00:00
break;
1999-04-24 00:12:55 +00:00
case ZEND_IS_NOT_EQUAL:
return (binary_op_type) is_not_equal_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_IS_SMALLER:
return (binary_op_type) is_smaller_function;
1999-04-07 18:10:10 +00:00
break;
1999-04-24 00:12:55 +00:00
case ZEND_IS_SMALLER_OR_EQUAL:
return (binary_op_type) is_smaller_or_equal_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_BW_OR:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_BW_OR:
return (binary_op_type) bitwise_or_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_BW_AND:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_BW_AND:
return (binary_op_type) bitwise_and_function;
1999-04-07 18:10:10 +00:00
break;
case ZEND_BW_XOR:
1999-04-24 00:12:55 +00:00
case ZEND_ASSIGN_BW_XOR:
return (binary_op_type) bitwise_xor_function;
break;
case ZEND_BOOL_XOR:
return (binary_op_type) boolean_xor_function;
1999-04-07 18:10:10 +00:00
break;
default:
return (binary_op_type) NULL;
1999-04-07 18:10:10 +00:00
break;
}
}
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* indent-tabs-mode: t
* End:
*/