├── .arcconfig ├── .arclint ├── .gitignore ├── .travis.yml ├── CHANGELOG ├── CREDITS ├── LICENSE ├── README ├── bin └── xhprofile ├── composer.json ├── examples └── sample.php ├── extension ├── Makefile.local ├── config.m4 ├── php_xhprof.h ├── tests │ ├── common.php │ ├── xhprof_001.phpt │ ├── xhprof_002.phpt │ ├── xhprof_003.phpt │ ├── xhprof_004.phpt │ ├── xhprof_004_inc.php │ ├── xhprof_004_require.php │ ├── xhprof_005.phpt │ ├── xhprof_006.phpt │ ├── xhprof_007.phpt │ ├── xhprof_008.phpt │ ├── xhprof_009.phpt │ ├── xhprof_010.phpt │ ├── xhprof_010_append.php │ ├── xhprof_011.phpt │ ├── xhprof_011_prepend.php │ └── xhprof_012.phpt └── xhprof.c ├── package.xml ├── scripts └── xhprofile.php ├── support └── libxhprof │ ├── __phutil_library_init__.php │ ├── __phutil_library_map__.php │ └── unit │ └── XHProfUnitTestEngine.php ├── xhprof_html ├── callgraph.php ├── css │ └── xhprof.css ├── docs │ ├── index-fr.html │ ├── index.html │ ├── sample-callgraph-image.jpg │ ├── sample-diff-report-flat-view.jpg │ ├── sample-diff-report-parent-child-view.jpg │ ├── sample-flat-view.jpg │ └── sample-parent-child-view.jpg ├── index.php ├── jquery │ ├── indicator.gif │ ├── jquery-1.2.6.js │ ├── jquery.autocomplete.css │ ├── jquery.autocomplete.js │ ├── jquery.tooltip.css │ └── jquery.tooltip.js ├── js │ └── xhprof_report.js └── typeahead.php └── xhprof_lib ├── display ├── typeahead_common.php └── xhprof.php └── utils ├── callgraph_utils.php ├── xhprof_lib.php └── xhprof_runs.php /.arcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/.arcconfig -------------------------------------------------------------------------------- /.arclint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/.arclint -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/CREDITS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/README -------------------------------------------------------------------------------- /bin/xhprofile: -------------------------------------------------------------------------------- 1 | ../scripts/xhprofile.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/composer.json -------------------------------------------------------------------------------- /examples/sample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/examples/sample.php -------------------------------------------------------------------------------- /extension/Makefile.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/Makefile.local -------------------------------------------------------------------------------- /extension/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/config.m4 -------------------------------------------------------------------------------- /extension/php_xhprof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/php_xhprof.h -------------------------------------------------------------------------------- /extension/tests/common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/common.php -------------------------------------------------------------------------------- /extension/tests/xhprof_001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_001.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_002.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_003.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_004.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_004.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_004_inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_004_inc.php -------------------------------------------------------------------------------- /extension/tests/xhprof_004_require.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_004_require.php -------------------------------------------------------------------------------- /extension/tests/xhprof_005.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_005.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_006.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_006.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_007.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_007.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_008.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_008.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_009.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_009.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_010.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lox/xhprof/HEAD/extension/tests/xhprof_010.phpt -------------------------------------------------------------------------------- /extension/tests/xhprof_010_append.php: -------------------------------------------------------------------------------- 1 |