Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-26 Thread Mikhail Maltsev
On 10/26/2015 12:47 PM, Richard Biener wrote: > I committed the attached to fix build with the valgrind annotations active. > > Richard. > Doh! Sorry for breakage. -- Regards, Mikhail Maltsev

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-26 Thread Richard Biener
On Mon, Oct 26, 2015 at 2:18 AM, Mikhail Maltsev wrote: > On 10/21/2015 01:57 PM, Richard Biener wrote: >> Ugh (stupid templates). >> >> @@ -387,10 +389,10 @@ base_pool_allocator ::allocate () >>block = m_virgin_free_list; >>header = (allocation_pool_list*)

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-25 Thread Mikhail Maltsev
On 10/21/2015 01:57 PM, Richard Biener wrote: > Ugh (stupid templates). > > @@ -387,10 +389,10 @@ base_pool_allocator ::allocate () >block = m_virgin_free_list; >header = (allocation_pool_list*) allocation_object::get_data (block); >header->next = NULL; > -#ifdef

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-21 Thread Richard Biener
On Mon, Oct 19, 2015 at 2:09 AM, Mikhail Maltsev wrote: > On 10/06/2015 03:45 PM, Richard Biener wrote: >> On Tue, Oct 6, 2015 at 2:41 PM, Bernd Schmidt wrote: >>> On 10/06/2015 01:32 AM, Mikhail Maltsev wrote: gcc/ChangeLog:

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-18 Thread Mikhail Maltsev
On 10/06/2015 03:45 PM, Richard Biener wrote: > On Tue, Oct 6, 2015 at 2:41 PM, Bernd Schmidt wrote: >> On 10/06/2015 01:32 AM, Mikhail Maltsev wrote: >>> >>> gcc/ChangeLog: >>> >>> 2015-10-05 Mikhail Maltsev >>> >>> * alloc-pool.h

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-06 Thread Richard Biener
On Tue, Oct 6, 2015 at 2:41 PM, Bernd Schmidt wrote: > On 10/06/2015 01:32 AM, Mikhail Maltsev wrote: >> >> gcc/ChangeLog: >> >> 2015-10-05 Mikhail Maltsev >> >> * alloc-pool.h (base_pool_allocator::initialize, ::allocate, >> ::remove):

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-06 Thread Bernd Schmidt
On 10/06/2015 01:32 AM, Mikhail Maltsev wrote: gcc/ChangeLog: 2015-10-05 Mikhail Maltsev * alloc-pool.h (base_pool_allocator::initialize, ::allocate, ::remove): Adjust to use CHECKING_P. Why CHECKING_P for these and not flag_checking as elsewhere?

Re: [PATCH 5/9] ENABLE_CHECKING refactoring: pool allocators

2015-10-05 Thread Mikhail Maltsev
gcc/ChangeLog: 2015-10-05 Mikhail Maltsev * alloc-pool.h (base_pool_allocator::initialize, ::allocate, ::remove): Adjust to use CHECKING_P. >From ed727b2279dd36e2fbf1ab6956270cbd487b1a01 Mon Sep 17 00:00:00 2001 From: Mikhail Maltsev