Re: [PHP-DEV] Re: EX(scope) removing

2014-12-01 Thread Dmitry Stogov
thanks. phpdbg was excluded in my DEBUG build (I was sure I built it, may be it was enabled it default previously...) Anyway, I enabled it now, and won't miss at least build problems. According to "make test", it would be great to make it run all the tests. For some reason "ext/opcahce" tests are

Re: [PHP-DEV] Re: EX(scope) removing

2014-11-30 Thread Ferenc Kovacs
2014.11.30. 11:14 ezt írta ("Dmitry Stogov" ): > > Sorry, I'll try to fix it on Monday. > is it a compilation problem, or how can reproduce it? I've fixed it already. There were two references to scope in phpdbg, you probably missed it because phpdbg tests are not part of make test (but could be).

Re: [PHP-DEV] Re: EX(scope) removing

2014-11-30 Thread Dmitry Stogov
Sorry, I'll try to fix it on Monday. is it a compilation problem, or how can reproduce it? Thanks. Dmitry. On Sat, Nov 29, 2014 at 1:01 AM, Ferenc Kovacs wrote: > 2014.11.28. 9:24 ezt írta ("Dmitry Stogov" ): > > > > > On Fri, Nov 28, 2014 at 7:33 AM, Xinchen Hui wrote: > > > > > Hey: > > > >

Re: [PHP-DEV] Re: EX(scope) removing

2014-11-28 Thread Ferenc Kovacs
2014.11.28. 9:24 ezt írta ("Dmitry Stogov" ): > > On Fri, Nov 28, 2014 at 7:33 AM, Xinchen Hui wrote: > > > Hey: > > > > On Fri, Nov 28, 2014 at 1:27 AM, Dmitry Stogov wrote: > > > Hi, > > > > > > I'm working on call/return sequence optimization. As part of this work > > I'm > > > minimizing the

[PHP-DEV] Re: EX(scope) removing

2014-11-28 Thread Dmitry Stogov
On Fri, Nov 28, 2014 at 7:33 AM, Xinchen Hui wrote: > Hey: > > On Fri, Nov 28, 2014 at 1:27 AM, Dmitry Stogov wrote: > > Hi, > > > > I'm working on call/return sequence optimization. As part of this work > I'm > > minimizing the size of call frame (zend_execute_data) and number of > > read/write

[PHP-DEV] Re: EX(scope) removing

2014-11-27 Thread Xinchen Hui
Hey: On Fri, Nov 28, 2014 at 1:27 AM, Dmitry Stogov wrote: > Hi, > > I'm working on call/return sequence optimization. As part of this work I'm > minimizing the size of call frame (zend_execute_data) and number of > read/write operations on call/return. > > Could you please take a look into the p