├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ ├── package.yml │ ├── package │ └── package.sh │ ├── test.yml │ └── test │ ├── build-extension.sh │ ├── build-php.sh │ ├── build-xdebug.sh │ └── tests.sh ├── .gitignore ├── INTERNALS.md ├── LICENSE ├── README.md ├── assets └── qcachegrind.png ├── composer.json ├── config.m4 ├── memprof.c ├── memprof.stub.php ├── memprof_arginfo.h ├── memprof_legacy_arginfo.h ├── package.xml ├── php_memprof.h ├── tests ├── 001.phpt ├── 002.phpt ├── 003.phpt ├── 004.phpt ├── 005.phpt ├── 006.phpt ├── 007.phpt ├── autodump-disabled.phpt ├── autodump-failure.phpt ├── autodump-format-failure.phpt ├── autodump-pprof.phpt ├── autodump-xdebug.phpt ├── autodump.phpt ├── common.php ├── dump-failure.phpt ├── dump-pprof.phpt ├── memprof-version.phpt └── zend_pass_function.phpt ├── util.c └── util.h /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/package/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/package/package.sh -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/test/build-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/test/build-extension.sh -------------------------------------------------------------------------------- /.github/workflows/test/build-php.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/test/build-php.sh -------------------------------------------------------------------------------- /.github/workflows/test/build-xdebug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/test/build-xdebug.sh -------------------------------------------------------------------------------- /.github/workflows/test/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.github/workflows/test/tests.sh -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /INTERNALS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/INTERNALS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/README.md -------------------------------------------------------------------------------- /assets/qcachegrind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/assets/qcachegrind.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/composer.json -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/config.m4 -------------------------------------------------------------------------------- /memprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/memprof.c -------------------------------------------------------------------------------- /memprof.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/memprof.stub.php -------------------------------------------------------------------------------- /memprof_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/memprof_arginfo.h -------------------------------------------------------------------------------- /memprof_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/memprof_legacy_arginfo.h -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/package.xml -------------------------------------------------------------------------------- /php_memprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/php_memprof.h -------------------------------------------------------------------------------- /tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/001.phpt -------------------------------------------------------------------------------- /tests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/002.phpt -------------------------------------------------------------------------------- /tests/003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/003.phpt -------------------------------------------------------------------------------- /tests/004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/004.phpt -------------------------------------------------------------------------------- /tests/005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/005.phpt -------------------------------------------------------------------------------- /tests/006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/006.phpt -------------------------------------------------------------------------------- /tests/007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/007.phpt -------------------------------------------------------------------------------- /tests/autodump-disabled.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/autodump-disabled.phpt -------------------------------------------------------------------------------- /tests/autodump-failure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/autodump-failure.phpt -------------------------------------------------------------------------------- /tests/autodump-format-failure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/autodump-format-failure.phpt -------------------------------------------------------------------------------- /tests/autodump-pprof.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/autodump-pprof.phpt -------------------------------------------------------------------------------- /tests/autodump-xdebug.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/autodump-xdebug.phpt -------------------------------------------------------------------------------- /tests/autodump.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/autodump.phpt -------------------------------------------------------------------------------- /tests/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/common.php -------------------------------------------------------------------------------- /tests/dump-failure.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/dump-failure.phpt -------------------------------------------------------------------------------- /tests/dump-pprof.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/dump-pprof.phpt -------------------------------------------------------------------------------- /tests/memprof-version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/memprof-version.phpt -------------------------------------------------------------------------------- /tests/zend_pass_function.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/tests/zend_pass_function.phpt -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arnaud-lb/php-memory-profiler/HEAD/util.h --------------------------------------------------------------------------------