├── .gitignore ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── demo_aot.php ├── demo_jit.php ├── lib ├── CodeGen.php └── functions.php └── rebuild.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/composer.lock -------------------------------------------------------------------------------- /demo_aot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/demo_aot.php -------------------------------------------------------------------------------- /demo_jit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/demo_jit.php -------------------------------------------------------------------------------- /lib/CodeGen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/lib/CodeGen.php -------------------------------------------------------------------------------- /lib/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/lib/functions.php -------------------------------------------------------------------------------- /rebuild.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ircmaxell/libgccffi/HEAD/rebuild.php --------------------------------------------------------------------------------