Skip to content

Moving stuff around for the AOT compiler refactor. #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ext/types/strlen.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

# This file is generated, changes you make will be lost.
# Make your changes in /compiler/ext/types/strlen.pre instead.
// This file is generated and changes you make will be lost.
// Change /compiler/ext/types/strlen.pre instead.

/*
* This file is part of PHP-Compiler, a PHP CFG Compiler for PHP code
Expand Down
2 changes: 1 addition & 1 deletion lib/JIT/Analyzer.php → lib/Analyzer.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* @license MIT See LICENSE at the root of the project for more info
*/

namespace PHPCompiler\JIT;
namespace PHPCompiler;

use PHPCfg\Op;
use PHPCfg\Operand;
Expand Down
130 changes: 0 additions & 130 deletions lib/Block.php

This file was deleted.

2 changes: 1 addition & 1 deletion lib/JIT/Builtin.php → lib/Builtin.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @license MIT See LICENSE at the root of the project for more info
*/

namespace PHPCompiler\JIT;
namespace PHPCompiler;

abstract class Builtin {
const LOAD_TYPE_EXPORT = 1;
Expand Down
File renamed without changes.
38 changes: 19 additions & 19 deletions lib/JIT/Builtin/Internal.php → lib/Builtin/Internal.php
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
<?php

# This file is generated, changes you make will be lost.
# Make your changes in /compiler/lib/JIT/Builtin/Internal.pre instead.
// This file is generated and changes you make will be lost.
// Change /compiler/lib/Builtin/Internal.pre instead.

/*
* This file is part of PHP-Compiler, a PHP CFG Compiler for PHP code
*
* @copyright 2015 Anthony Ferrara. All rights reserved
* @license MIT See LICENSE at the root of the project for more info
*/
namespace PHPCompiler\JIT\Builtin;
use PHPCompiler\JIT\Builtin;
class Internal extends Builtin {
public function register(): void {
}
}
/*
* This file is part of PHP-Compiler, a PHP CFG Compiler for PHP code
*
* @copyright 2015 Anthony Ferrara. All rights reserved
* @license MIT See LICENSE at the root of the project for more info
*/

namespace PHPCompiler\JIT\Builtin;

use PHPCompiler\JIT\Builtin;

class Internal extends Builtin
{
public function register(): void
{
}
}
File renamed without changes.
Loading