summaryrefslogtreecommitdiff
path: root/Zend/zend_execute.c
Commit message (Collapse)AuthorAgeFilesLines
* - Fix newly introduced problem reported by Sam RubyZeev Suraski2000-03-151-9/+0
|
* - Remove inline from functions which are pretty large and besides eating upAndi Gutmans2000-03-111-8/+8
| | | | | memory in compile time probably doesn't boost performance.
* - Quick way of supporting include_once().Andi Gutmans2000-03-101-0/+18
| | | | | Good enough for RC1.
* - Cleanup old IMPORT stuffAndi Gutmans2000-03-101-1/+0
|
* It's official now...Zeev Suraski2000-03-061-3/+3
|
* - Fix typosAndi Gutmans2000-03-011-1/+1
|
* Fix typo.Andrei Zmievski2000-02-261-1/+1
|
* (c) patchZeev Suraski2000-02-191-1/+1
|
* Generalize macrosZeev Suraski2000-02-191-1/+1
|
* -Fix bug 3504 concerning leaks with unset()Andi Gutmans2000-02-161-0/+7
|
* - Hopefully fix Thies' bug report.Andi Gutmans2000-02-161-7/+7
|
* - Fix bug #3309Andi Gutmans2000-02-161-3/+11
|
* - Put in the infrastructure for the unset() fix. Right now it has the oldAndi Gutmans2000-02-141-0/+15
| | | | | behavior but I just need time tomorrow to add the correct behavior.
* Fine tune Andi's patchZeev Suraski2000-02-111-1/+1
|
* - Finally beautify those WIN32|WINNT checksAndi Gutmans2000-02-101-1/+1
|
* - Shouldn't be thereAndi Gutmans2000-02-101-1/+1
|
* - Cleanup the codeAndi Gutmans2000-02-101-14/+11
|
* Fix last known nasty bugs in Zend. It'll be cool if there are no new ones :)Zeev Suraski2000-02-091-10/+33
|
* foreach() works now for objects as well.Thies C. Arntzen2000-02-091-7/+11
|
* Fix an elusive bugZeev Suraski2000-02-081-1/+3
|
* More cleanupZeev Suraski2000-02-051-3/+3
|
* Pass the executor globals to internal functionsZeev Suraski2000-02-051-2/+2
|
* - Stop passing list/plist to internal functionsZeev Suraski2000-02-051-2/+2
| | | | | | - Add a typedef for the pCopyConstructor function pointer - Minor hacks
* Maintain a state of whether we're compiling and/or executingZeev Suraski2000-02-041-0/+3
|
* Improve dependenciesZeev Suraski2000-02-011-0/+1
|
* Sort out a gdb problemZeev Suraski2000-02-011-1/+1
|
* Fix warningZeev Suraski2000-02-011-10/+9
|
* - Optimized garbage mechanismZeev Suraski2000-01-311-12/+0
| | | | | - Fixed another buglet in the parser
* - Fix foreach()Zeev Suraski2000-01-311-14/+26
| | | | | - Fix indirect reference with object properties
* - Fix the bug Thies found where I forgot to change a break; to NEXT_OPCODE();Andi Gutmans2000-01-301-1/+1
| | | | | - If you find anymore let me know
* - Yet another tiny optimization.Andi Gutmans2000-01-291-68/+70
|
* - Make loop a bit faster.Andi Gutmans2000-01-281-1/+9
|
* - Double the speed of some key switch() tests for Win32.Andi Gutmans2000-01-281-21/+16
|
* - This makes the switch() statement twice as quick. Moving to enumAndi Gutmans2000-01-281-0/+4
| | | | | might make this a general speed up for other platforms too
* - Make foreach() now copy the array but use the original array. It canAndi Gutmans2000-01-241-4/+18
| | | | | | still be optimized A LOT but it's only a performance issue and not a feature issue.
* - Implement declare() with declarables frameworkZeev Suraski2000-01-241-0/+8
| | | | | - Implement ticks - Germany&Norway - 5 points!
* FixesZeev Suraski2000-01-241-1/+1
|
* Leak fixZeev Suraski2000-01-181-4/+8
|
* Functionality & crash fixesZeev Suraski2000-01-091-2/+2
|
* - Separate the overloaded objects' types from Zend's data types.Andi Gutmans2000-01-041-4/+4
| | | | | | There is no reason for them to be the same, and IS_METHOD just cluttered there data types.
* - Change IS_UNSET -> IS_NULLAndi Gutmans2000-01-041-5/+5
|
* Fix a bug when using [] on a stringZeev Suraski2000-01-031-0/+4
|
* FixZeev Suraski2000-01-031-20/+29
|
* FixZeev Suraski2000-01-021-0/+1
|
* - Nuke undefined_variable_stringZeev Suraski1999-12-311-33/+29
| | | | | - Introduce IS_UNSET
* - Generalize the fast cache mechanismZeev Suraski1999-12-271-4/+4
| | | | | - Add the HashTable struct to the fast cache mechanism
* Introduce a zval-specific cache - 5-15% speed improvementZeev Suraski1999-12-261-0/+1
|
* Change ALLOC_ZVAL() semanticsZeev Suraski1999-12-261-26/+34
|
* - Create two new macro's. ALLOC_ZVAL() and FREE_ZVAL(z) and make Zend useAndi Gutmans1999-12-241-27/+27
| | | | | them.
* - require() of a dynamic expression now has the standard require() semanticsZeev Suraski1999-12-231-4/+3
| | | | | - Fixed a memory leak in require() of a dynamic expression