summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tag 'before-sapi-split'.before-sapi-splitSVN Migration1999-09-261-2090/+0
|
* - Changed Ts{}.var to Ts{}.var.ptr_ptr.Andi Gutmans1999-09-261-37/+37
|
* - Try to fix the leak Rasmus reported. It's pretty sucky code so I'm reallyAndi Gutmans1999-09-181-5/+8
| | | | | not sure this fix is OK.I can't remember all of what we did there.
* make SUNs c89 happyThies C. Arntzen1999-09-171-4/+3
|
* - Fix bug #2318Zeev Suraski1999-09-171-0/+1
|
* - Fix for floating point array offsets. Same behaviour as in PHP 3.0. WeAndi Gutmans1999-09-081-8/+12
| | | | | casted to (long).
* * header file cleanupStig S. Bakken1999-09-061-2/+2
| | | | | | | | * fixed --enable-thread-safety build for UNIX I don't have a Win32 environment available, could someone please try compiling on Win32 to see if I got all the header file stuff right there?
* - Fixed a specific memory leak linked to locking.Andi Gutmans1999-08-231-0/+20
|
* Fix #2070Zeev Suraski1999-08-171-1/+1
|
* - OopsieAndi Gutmans1999-08-151-5/+0
|
* - Optimize the execute stack a bit.Andi Gutmans1999-08-151-109/+112
|
* - Thies's crash fix.Andi Gutmans1999-08-091-1/+1
|
* Fix a few leaksZeev Suraski1999-08-071-3/+3
|
* *** empty log message ***Zeev Suraski1999-08-061-2/+1
|
* - Initialize extended value's and put the fetch_type in it's own variableAndi Gutmans1999-08-031-3/+3
| | | | | name.
* - Add ptr_stack_n_{push,pop} in order to speed up function calls a bit.Andi Gutmans1999-07-301-1/+6
| | | | | | There seems to be no reason for stack->top in the ptr_stack except for when realloc()'in the stack. I think I'll remove it.
* - Fixed various inheritance problems & Andrey's leakAndi Gutmans1999-07-281-0/+2
|
* - Add missing lockAndi Gutmans1999-07-271-0/+1
|
* - Fix up the new operator a bit more.Andi Gutmans1999-07-271-28/+41
|
* Set reference count and is_ref values for new objectsZeev Suraski1999-07-271-1/+3
|
* Fix a bug in inheritence from classes defined in include files, that areZeev Suraski1999-07-261-1/+1
| | | | | inherited from require()'d files
* - Oops I erased this by mistakeAndi Gutmans1999-07-261-0/+1
|
* - Should be a complete fix now. This break away code should maybe be madeAndi Gutmans1999-07-261-2/+14
| | | | | somewhat generic
* - Temporary fix for "this". Have to fix it tomorrow.Andi Gutmans1999-07-261-0/+1
|
* - Fix compile error. Weird that Visual didn't catch this one.Andi Gutmans1999-07-261-1/+1
|
* - Fix the new operator incompatibility.Andi Gutmans1999-07-261-18/+55
| | | | | | | - I commented PHP_FUNCTION(strtotime) in datetime.c because it stopped win32 from compiling. This needs to be fixed!!! - Check out libzend to compile the tree now.
* Thoroughly fix the SWITCH problem. No RETURN handling yet.Zeev Suraski1999-07-241-1/+17
|
* Fix bug #1812Zeev Suraski1999-07-231-7/+22
|
* - Include alloca.h when need and available.Andi Gutmans1999-07-201-0/+4
|
* 0.91 updateZeev Suraski1999-07-191-2/+2
|
* * Fix Zend versionAndi Gutmans1999-07-191-5/+2
| | | | | * Fix a method call bug
* License updateZeev Suraski1999-07-161-4/+8
|
* Fix a lock issueAndi Gutmans1999-07-151-3/+0
|
* - Fixed a purify warningAndi Gutmans1999-07-121-1/+3
|
* Ok, so we do have to lock in thereAndi Gutmans1999-07-101-10/+10
|
* Fix assignments of reference variablesAndi Gutmans1999-07-101-0/+2
|
* Put the garbage in the garbage binZeev Suraski1999-07-101-7/+0
|
* Get rid of AiCount completelyZeev Suraski1999-07-101-41/+17
|
* Final tweaksZeev Suraski1999-07-101-0/+6
|
* More locking workZeev Suraski1999-07-101-7/+8
|
* *** empty log message ***Zeev Suraski1999-07-091-1/+1
|
* More stuffZeev Suraski1999-07-091-0/+9
|
* Step 4:Zeev Suraski1999-07-091-27/+58
| | | | | Move to a 7-bit counter (not fully implemented yet)
* Phase 3:Zeev Suraski1999-07-091-17/+17
| | | | | Use a single bit to mark IS_REF variables
* Step 2:Zeev Suraski1999-07-091-32/+32
| | | | | Rename is_ref to EA
* Support isset()/empty() for string offsetsZeev Suraski1999-07-031-4/+21
|
* * Use to_string() instead of __print()Zeev Suraski1999-06-111-0/+3
| | | | | * Support boolean casts ((bool) and (boolean))
* * Make the output handling of variables much, much cooler.Zeev Suraski1999-06-111-7/+4
| | | | | | | | | | | | | | | | | | | | | | | | | Uses zend_make_printable_zval() instead of convert_to_string() now: $foo = true; print "\$foo is $foo"; will now print $foo is true (instead of "$foo is 1", earlier). Also, with objects, it automatically tries to call __print() and use it as a printing function. For example: class foo { function __print() { return "Foo Object"; } }; $foo = new foo; print $foo; will print "Foo Object".
* * Fix cases where you assign an array element to the parent array (the array wasZeev Suraski1999-06-091-4/+7
| | | | | being erased before the assignment, so the element was being smashed).
* * Fix foreach() that receives a non array argumentZeev Suraski1999-06-091-15/+7
| | | | | * Clean up some C++ comments