Re: [PATCH GCC][08/13]Refactoring structure partition for distribution

2017-06-23 Thread Richard Biener
On Fri, Jun 23, 2017 at 12:29 PM, Bin.Cheng wrote: > On Mon, Jun 19, 2017 at 4:18 PM, Richard Biener > wrote: >> On Mon, Jun 19, 2017 at 3:37 PM, Bin.Cheng wrote: >>> On Wed, Jun 14, 2017 at 2:47 PM, Richard Biener >>> wrote: On Mon, Jun 12, 2017 at 7:03 PM, Bin Cheng wrote: > Hi, >>>

Re: [PATCH GCC][08/13]Refactoring structure partition for distribution

2017-06-23 Thread Bin.Cheng
On Mon, Jun 19, 2017 at 4:18 PM, Richard Biener wrote: > On Mon, Jun 19, 2017 at 3:37 PM, Bin.Cheng wrote: >> On Wed, Jun 14, 2017 at 2:47 PM, Richard Biener >> wrote: >>> On Mon, Jun 12, 2017 at 7:03 PM, Bin Cheng wrote: Hi, This patch refactors struct partition for later distributio

Re: [PATCH GCC][08/13]Refactoring structure partition for distribution

2017-06-19 Thread Richard Biener
On Mon, Jun 19, 2017 at 3:37 PM, Bin.Cheng wrote: > On Wed, Jun 14, 2017 at 2:47 PM, Richard Biener > wrote: >> On Mon, Jun 12, 2017 at 7:03 PM, Bin Cheng wrote: >>> Hi, >>> This patch refactors struct partition for later distribution. It records >>> bitmap of data references in struct partitio

Re: [PATCH GCC][08/13]Refactoring structure partition for distribution

2017-06-19 Thread Bin.Cheng
On Wed, Jun 14, 2017 at 2:47 PM, Richard Biener wrote: > On Mon, Jun 12, 2017 at 7:03 PM, Bin Cheng wrote: >> Hi, >> This patch refactors struct partition for later distribution. It records >> bitmap of data references in struct partition rather than vertices' data in >> partition dependence gra

Re: [PATCH GCC][08/13]Refactoring structure partition for distribution

2017-06-14 Thread Richard Biener
On Mon, Jun 12, 2017 at 7:03 PM, Bin Cheng wrote: > Hi, > This patch refactors struct partition for later distribution. It records > bitmap of data references in struct partition rather than vertices' data in > partition dependence graph. It simplifies code as well as enables following > rewriti

[PATCH GCC][08/13]Refactoring structure partition for distribution

2017-06-12 Thread Bin Cheng
Hi, This patch refactors struct partition for later distribution. It records bitmap of data references in struct partition rather than vertices' data in partition dependence graph. It simplifies code as well as enables following rewriting. Bootstrap and test on x86_64 and AArch64. Is it OK? Tha