summaryrefslogtreecommitdiff
path: root/Zend/zend_execute_API.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix -a interactive mode (no idea how the previous commit got committed)Zeev Suraski2000-10-111-0/+1
|
* Make compile_string() accept a description of the codeZeev Suraski2000-09-121-2/+2
|
* - Fix bug report by Andrei when using a method as a sort user functionAndi Gutmans2000-08-221-0/+2
| | | | | - parameter in usort() like functions
* The patch we promised - redesigned the compilation/execution API:Zeev Suraski2000-08-091-14/+3
| | | | | | | | | | | | | | | | | | Advantages: - Smaller memory footprint for the op arrays - Slightly faster compilation times (due to saved erealloc() calls and faster zend_op initialization) - include_once() & require_once() share the same file list - Consistency between include() and require() - this mostly means that return() works inside require()'d files just as it does in include() files (it used to be meaningless in require()'d files, most of the time (see below)) - Made require() consistent with itself. Before, if the argument was not a constant string, require() took the include() behavior (with return()). - Removed lots of duplicate code. Bottom line - require() and include() are very similar now; require() is simply an include() which isn't allowed to fail. Due to the erealloc() calls for large op arrays, require() didn't end up being any faster than include() in the Zend engine.
* Unblock SIGPROF signal when starting timer.Stanislav Malyshev2000-07-031-0/+4
| | | | | On Linux, this signal is blocked by default after first signal is run
* - Forgot ZEND_APIAndi Gutmans2000-07-021-1/+1
|
* error_reporting fixZeev Suraski2000-06-301-0/+4
|
* Make max_execution_time work properly when set to 0 under Win32 (disable)Zeev Suraski2000-06-261-1/+5
|
* - Add restore_error_handler()Zeev Suraski2000-06-171-1/+5
| | | | | error_handler's are now stored in a stack
* Allow the symbol_table to be passed to call_user_function_ex()Zeev Suraski2000-06-171-6/+12
|
* Ok, this time here's some real Win32 system programming :)Zeev Suraski2000-06-161-15/+68
| | | | | | Redesigned the timeout system using a single timeout thread and a single window, and used a much quicker check.
* Fix UNIX buildAndi Gutmans2000-06-161-9/+16
|
* - Move timeout code to ZendZeev Suraski2000-06-161-0/+109
| | | | | - Implement timeouts in Win32
* Add optional support for C0x inline semantics.Sascha Schumann2000-06-131-128/+0
| | | | | | | These are enabled by specifying `--enable-c0x-inline' on the command line. We might add an autoconf check for this particular feature later.
* Add a couple of castsSascha Schumann2000-06-081-1/+1
|
* Change shutdown order to sort out a crash when assigning a resource id to a ↵Zeev Suraski2000-06-041-1/+21
| | | | static.
* Improve call_user_function() to support array($obj, $method)Zeev Suraski2000-06-031-0/+18
|
* Fix a bug in static initializers/default values/class member variables that ↵Zeev Suraski2000-05-311-4/+11
| | | | | | | contained array values
* - Make zend_eval_string() return SUCCESS/FAILUREAndi Gutmans2000-05-061-2/+5
|
* Fix - forgot to split away if refcount>1Zeev Suraski2000-04-261-1/+8
|
* Initial support for trapping errors (not complete and disabled; will be ↵Zeev Suraski2000-04-191-1/+7
| | | | | | | enabled only post-PHP 4.0.0)
* - Clean up resource lists namespaceZeev Suraski2000-04-151-1/+1
| | | | | - Prepare extended resource list destructor APIs (currently unused)
* - Fix memory leakAndi Gutmans2000-04-111-1/+5
|
* Fix object overloading supportZeev Suraski2000-04-101-2/+0
|
* - Stop zend_func_args() and co. from crashingAndi Gutmans2000-03-261-4/+4
|
* - Some header dependencies cleanupZeev Suraski2000-03-251-2/+0
| | | | | - Generalize zval_print() and zval_print_r()
* - Nuke hash_*_ptr functionsAndi Gutmans2000-03-241-1/+1
|
* - Quick way of supporting include_once().Andi Gutmans2000-03-101-2/+2
| | | | | Good enough for RC1.
* It's official now...Zeev Suraski2000-03-061-3/+3
|
* (c) patchZeev Suraski2000-02-191-1/+1
|
* Pass the executor globals to internal functionsZeev Suraski2000-02-051-1/+1
|
* - Stop passing list/plist to internal functionsZeev Suraski2000-02-051-1/+1
| | | | | | - 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/+10
|
* Improve dependenciesZeev Suraski2000-02-011-0/+1
|
* - Get rid of remains of garbage.Andi Gutmans2000-02-011-1/+0
| | | | | - This should fix Thies' UMR
* moved destroying of garbage before resource-list gets destroyed - (see my ↵Thies C. Arntzen2000-02-011-5/+7
| | | | | | | previous mail) zeev, andi - please comment!
* - Optimized garbage mechanismZeev Suraski2000-01-311-2/+3
| | | | | - Fixed another buglet in the parser
* - Keep objects as references.Andi Gutmans2000-01-261-1/+1
|
* - Allow is_ref to become 0 in case the refcount is back to 1.Andi Gutmans2000-01-261-1/+3
|
* - Implement declare() with declarables frameworkZeev Suraski2000-01-241-0/+2
| | | | | - Implement ticks - Germany&Norway - 5 points!
* FixesZeev Suraski2000-01-241-2/+5
|
* Fix an elusive bugZeev Suraski2000-01-221-1/+1
|
* Destructors no longer return ints, the low level problem it was intended to ↵Zeev Suraski2000-01-171-2/+1
| | | | solve is long gone now...
* - Make zend_hash_apply() (and friends) reentrant and much, much quickerZeev Suraski2000-01-161-1/+1
| | | | | | | - Introduce zend_hash_graceful_destroy(), which allows the destructor functions to use zend_hash_apply() and/or zend_hash_graceful_destroy() - Switch to zend_hash_graceful_destroy() in the resource list shutdowns
* Fix a bug in call_user_function_ex()Zeev Suraski2000-01-151-1/+2
|
* - Change IS_UNSET -> IS_NULLAndi Gutmans2000-01-041-1/+1
|
* - Nuke undefined_variable_stringZeev Suraski1999-12-311-0/+3
| | | | | - Introduce IS_UNSET
* - Generalize the fast cache mechanismZeev Suraski1999-12-271-2/+2
| | | | | - Add the HashTable struct to the fast cache mechanism
* Change ALLOC_ZVAL() semanticsZeev Suraski1999-12-261-4/+5
|
* - Create two new macro's. ALLOC_ZVAL() and FREE_ZVAL(z) and make Zend useAndi Gutmans1999-12-241-7/+7
| | | | | them.