Re: [PATCH 3/3] add hash_map class

2014-06-25 Thread Martin Liška
On 06/24/2014 09:31 PM, Richard Biener wrote: On June 24, 2014 9:16:34 PM CEST, Trevor Saunders wrote: On Tue, Jun 24, 2014 at 08:23:49PM +0200, Jan Hubicka wrote: On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: From: Trevor Saunders Hi, This patch adds a hash_map class so we can con

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Richard Biener
On June 24, 2014 9:16:34 PM CEST, Trevor Saunders wrote: >On Tue, Jun 24, 2014 at 08:23:49PM +0200, Jan Hubicka wrote: >> > >> > On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: >> > >From: Trevor Saunders >> > > >> > >Hi, >> > > >> > >This patch adds a hash_map class so we can consolidate t

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Trevor Saunders
On Tue, Jun 24, 2014 at 08:23:49PM +0200, Jan Hubicka wrote: > > > > On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: > > >From: Trevor Saunders > > > > > >Hi, > > > > > >This patch adds a hash_map class so we can consolidate the boiler plate > > >around > > >using hash_table as a map, it al

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Jan Hubicka
> > On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: > >From: Trevor Saunders > > > >Hi, > > > >This patch adds a hash_map class so we can consolidate the boiler plate > >around > >using hash_table as a map, it also allows us to get rid of pointer_map which > >I > >do in this patch by conve

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Trevor Saunders
On Tue, Jun 24, 2014 at 03:17:46PM +0200, Martin Liška wrote: > > On 06/24/2014 02:40 PM, Trevor Saunders wrote: > >On Tue, Jun 24, 2014 at 02:29:53PM +0200, Martin Liška wrote: > >>On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: > >>>From: Trevor Saunders > >>> > >>>Hi, > >>> > >>>This patc

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Martin Liška
On 06/24/2014 02:40 PM, Trevor Saunders wrote: On Tue, Jun 24, 2014 at 02:29:53PM +0200, Martin Liška wrote: On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: From: Trevor Saunders Hi, This patch adds a hash_map class so we can consolidate the boiler plate around using hash_table as a ma

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Trevor Saunders
On Tue, Jun 24, 2014 at 02:29:53PM +0200, Martin Liška wrote: > > On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: > >From: Trevor Saunders > > > >Hi, > > > >This patch adds a hash_map class so we can consolidate the boiler plate > >around > >using hash_table as a map, it also allows us to g

Re: [PATCH 3/3] add hash_map class

2014-06-24 Thread Martin Liška
On 06/20/2014 12:52 PM, tsaund...@mozilla.com wrote: From: Trevor Saunders Hi, This patch adds a hash_map class so we can consolidate the boiler plate around using hash_table as a map, it also allows us to get rid of pointer_map which I do in this patch by converting its users to hash_map.

Re: [PATCH 3/3] add hash_map class

2014-06-23 Thread Richard Biener
On Fri, Jun 20, 2014 at 12:52 PM, wrote: > From: Trevor Saunders > > Hi, > > This patch adds a hash_map class so we can consolidate the boiler plate around > using hash_table as a map, it also allows us to get rid of pointer_map which I > do in this patch by converting its users to hash_map. > >

[PATCH 3/3] add hash_map class

2014-06-20 Thread tsaunders
From: Trevor Saunders Hi, This patch adds a hash_map class so we can consolidate the boiler plate around using hash_table as a map, it also allows us to get rid of pointer_map which I do in this patch by converting its users to hash_map. bootstrapped + regtested without regression on x86_64-unk