├── .appveyor.yml ├── .appveyor ├── build.cmd ├── build_task.cmd ├── install.cmd ├── test.cmd └── test_task.cmd ├── .buildkite ├── build_extension.sh ├── package_extension.sh └── pipeline.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── NOTICE ├── README.md ├── config.m4 ├── config.w32 ├── php_tideways_xhprof.h ├── tests ├── common.php ├── xhprof_001.phpt ├── xhprof_002.phpt ├── xhprof_003.phpt ├── xhprof_004.phpt ├── xhprof_005.phpt ├── xhprof_006.phpt ├── xhprof_007.phpt ├── xhprof_008.inc ├── xhprof_008.phpt ├── xhprof_009.phpt └── xhprof_010.phpt ├── tideways_xhprof.c ├── tideways_xhprof.stub.php ├── tideways_xhprof_arginfo.h ├── tideways_xhprof_legacy_arginfo.h ├── timer.h ├── tracing.c └── tracing.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.appveyor/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.appveyor/build.cmd -------------------------------------------------------------------------------- /.appveyor/build_task.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.appveyor/build_task.cmd -------------------------------------------------------------------------------- /.appveyor/install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.appveyor/install.cmd -------------------------------------------------------------------------------- /.appveyor/test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.appveyor/test.cmd -------------------------------------------------------------------------------- /.appveyor/test_task.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.appveyor/test_task.cmd -------------------------------------------------------------------------------- /.buildkite/build_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.buildkite/build_extension.sh -------------------------------------------------------------------------------- /.buildkite/package_extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.buildkite/package_extension.sh -------------------------------------------------------------------------------- /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/config.w32 -------------------------------------------------------------------------------- /php_tideways_xhprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/php_tideways_xhprof.h -------------------------------------------------------------------------------- /tests/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/common.php -------------------------------------------------------------------------------- /tests/xhprof_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_001.phpt -------------------------------------------------------------------------------- /tests/xhprof_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_002.phpt -------------------------------------------------------------------------------- /tests/xhprof_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_003.phpt -------------------------------------------------------------------------------- /tests/xhprof_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_004.phpt -------------------------------------------------------------------------------- /tests/xhprof_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_005.phpt -------------------------------------------------------------------------------- /tests/xhprof_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_006.phpt -------------------------------------------------------------------------------- /tests/xhprof_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_007.phpt -------------------------------------------------------------------------------- /tests/xhprof_008.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_008.inc -------------------------------------------------------------------------------- /tests/xhprof_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_008.phpt -------------------------------------------------------------------------------- /tests/xhprof_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_009.phpt -------------------------------------------------------------------------------- /tests/xhprof_010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tests/xhprof_010.phpt -------------------------------------------------------------------------------- /tideways_xhprof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tideways_xhprof.c -------------------------------------------------------------------------------- /tideways_xhprof.stub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tideways_xhprof.stub.php -------------------------------------------------------------------------------- /tideways_xhprof_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tideways_xhprof_arginfo.h -------------------------------------------------------------------------------- /tideways_xhprof_legacy_arginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tideways_xhprof_legacy_arginfo.h -------------------------------------------------------------------------------- /timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/timer.h -------------------------------------------------------------------------------- /tracing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tracing.c -------------------------------------------------------------------------------- /tracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tideways/php-xhprof-extension/HEAD/tracing.h --------------------------------------------------------------------------------