mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Zend/Optimizer/scdf: include cleanup
This commit is contained in:
parent
46371f4eb3
commit
c5933409b4
2 changed files with 7 additions and 1 deletions
|
@ -16,8 +16,9 @@
|
|||
+----------------------------------------------------------------------+
|
||||
*/
|
||||
|
||||
#include "Optimizer/zend_optimizer_internal.h"
|
||||
#include "Optimizer/scdf.h"
|
||||
#include "Optimizer/zend_optimizer_internal.h"
|
||||
#include "zend_arena.h"
|
||||
|
||||
/* This defines a generic framework for sparse conditional dataflow propagation. The algorithm is
|
||||
* based on "Sparse conditional constant propagation" by Wegman and Zadeck. We're using a
|
||||
|
|
|
@ -20,6 +20,11 @@
|
|||
#define _SCDF_H
|
||||
|
||||
#include "zend_bitset.h"
|
||||
#include "zend_long.h"
|
||||
#include "zend_ssa.h"
|
||||
|
||||
typedef struct _zend_op_array zend_op_array;
|
||||
typedef struct _zend_optimizer_ctx zend_optimizer_ctx;
|
||||
|
||||
typedef struct _scdf_ctx {
|
||||
zend_op_array *op_array;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue