summaryrefslogtreecommitdiff
path: root/ext/opcache
Commit message (Expand)AuthorAgeFilesLines
* Extended zend_extension API to allow storing additional data associated with ...Dmitry Stogov2015-09-252-0/+4
* fix identAnatol Belski2015-09-251-1/+1
* don't keep locked mutex after errorsAnatol Belski2015-09-241-0/+2
* avoid dangling pointersAnatol Belski2015-09-241-0/+3
* move accel_shared_globals assignment into locked blockAnatol Belski2015-09-241-1/+1
* Fix (revert) loop exit conditionDmitry Stogov2015-09-241-1/+1
* Attmpt to fix "Unable to reattach to base address" problem. (Matt Ficken)Dmitry Stogov2015-09-241-1/+6
* Enabled placing PHP code segment into huge pagesDmitry Stogov2015-09-151-2/+3
* Enable file based cache compilation by defaultDmitry Stogov2015-09-152-3/+3
* Use shorter php.ini directive name "opcache.huge_code_pages" and disable it b...Dmitry Stogov2015-09-153-3/+3
* Removed useless includeDmitry Stogov2015-09-151-1/+0
* Use memcpy() instead of mmap() to keep modifyed code (e.g. gdb breakpoints)Dmitry Stogov2015-09-141-10/+4
* Added an experemental ability to move PHP code pages (PHP TEXT segment) into ...Dmitry Stogov2015-09-144-0/+109
* Add support for **= in opcache optimizerBob Weinand2015-09-134-0/+6
* add test for bug #70423Anatol Belski2015-09-071-0/+70
* remove unnecessary checkAnatol Belski2015-09-071-1/+0
* Fix bug #70423 Warning Internal error: wrong size calculationAnatol Belski2015-09-071-5/+8
* Prevent HashTable compaction below HT_MIN_SIZE (this may lead to hash collisi...Dmitry Stogov2015-09-022-14/+18
* Fixed possible caching with invalid key valueDmitry Stogov2015-09-011-0/+3
* Ensure proper data alignmentDmitry Stogov2015-08-314-3/+34
* unnecessary 1 byte alloctedXinchen Hui2015-08-211-2/+2
* Merge branch 'PHP-5.6'Xinchen Hui2015-08-112-0/+24
|\
| * Fixed bug #70237 (Empty while and do-while segmentation fault with opcode on ...Xinchen Hui2015-08-112-0/+24
| * On Windows PHP may be restarted with different set of DSO extensions without ...Dmitry Stogov2015-06-291-4/+12
* | Fixed bug #70207 (Finally is broken with opcache)Dmitry Stogov2015-08-102-1/+54
* | Reduce memory usage by using bitsets instead of array of bytes.Dmitry Stogov2015-08-062-63/+72
* | Get rid of memcpy() in MAKE_NOP()Dmitry Stogov2015-08-061-7/+10
* | opcache: Patch SSE based fast_memcpy() implementationBogdan Andone2015-07-291-4/+5
* | Fix RECV_VARIADIC literal compacting wrt cache slotNikita Popov2015-07-261-0/+1
* | Fixed bug #70111 (Segfault when a function uses both an explicit return type ...Xinchen Hui2015-07-222-0/+32
* | fix duplicated lineAnatol Belski2015-07-171-1/+0
* | fix file cache path calculation at all the placesAnatol Belski2015-07-171-33/+29
* | fix path handling for the file cacheAnatol Belski2015-07-171-0/+16
* | Fixed segfault if opcache is disabled and with file_cacheXinchen Hui2015-07-151-9/+0
* | Fixed bug #70067 (Cross-compile failure in opcache when SIZEOF_ZEND_LONG < SI...Xinchen Hui2015-07-141-1/+1
* | Fixed Bug #70058 Build fails when building for i386Xinchen Hui2015-07-131-1/+1
* | Resolve GOTO at compile time and replace it with sequnce of FREE/FE_FREE and ...Dmitry Stogov2015-07-106-19/+0
* | Squashed commit of the following:Dmitry Stogov2015-07-108-26/+140
* | Disable opcache.fast_shutdown if USE_ZEND_ALLOC=0Dmitry Stogov2015-07-091-1/+1
* | Add comment to explaining the new checkXinchen Hui2015-07-081-0/+3
* | Fixed bug #70012 (Exception lost with nested finally block)Xinchen Hui2015-07-081-2/+3
* | Fixed bug #62210 (Exceptions can leak temporary variables. As a part of the f...Dmitry Stogov2015-07-078-140/+26
* | Avoid dangerous optimizationDmitry Stogov2015-07-061-1/+2
* | Fixed memory leak because of incorrect 'if ();' optimizationDmitry Stogov2015-07-023-6/+62
* | Cleanup (updated comments about optimization of comparison with IS_NULL)Dmitry Stogov2015-07-011-10/+14
* | Cleanup (we don't use is_ref=1/refcount=2 trick to trigger COW in PHP-7)Dmitry Stogov2015-07-011-2/+0
* | Use ZSTR_ API to access zend_string elements (this is just renaming without s...Dmitry Stogov2015-06-309-100/+100
* | On Windows PHP may be restarted with different set of DSO extensions without ...Dmitry Stogov2015-06-291-4/+12
* | Improved zend_string API (Francois Laupretre)Dmitry Stogov2015-06-294-10/+10
* | Don't evaluate invalid constant expressions.Dmitry Stogov2015-06-292-7/+14