Tuesday, November 5, 2024 11:20 AM
> > > > To: gcc-patches@gcc.gnu.org; hubi...@ucw.cz; Liu, Hongtao
> > > > ; ubiz...@gmail.com
> > > > Cc: ti...@zhaoxin.com; silviaz...@zhaoxin.com; loui...@zhaoxin.com;
> > > > cobec...@zhaoxin.com
> > >
t; From: MayShao-oc
> > > > Sent: Tuesday, November 5, 2024 11:20 AM
> > > > To: gcc-patches@gcc.gnu.org; hubi...@ucw.cz; Liu, Hongtao
> > > > ; ubiz...@gmail.com
> > > > Cc: ti...@zhaoxin.com; silviaz...@zhaoxin.com; loui...@zhaoxin.com;
> > >
t; To: gcc-patches@gcc.gnu.org; hubi...@ucw.cz; Liu, Hongtao
> > > ; ubiz...@gmail.com
> > > Cc: ti...@zhaoxin.com; silviaz...@zhaoxin.com; loui...@zhaoxin.com;
> > > cobec...@zhaoxin.com
> > > Subject: [PATCH] [x86_64] Add flag to control tight loop
...@zhaoxin.com; silviaz...@zhaoxin.com; loui...@zhaoxin.com;
> > cobec...@zhaoxin.com
> > Subject: [PATCH] [x86_64] Add flag to control tight loops alignment opt
> >
> > Hi all:
> > This patch add -malign-tight-loops flag to control
> > pass_align_tight_l
Subject: [PATCH] [x86_64] Add flag to control tight loops alignment opt
>
> Hi all:
> This patch add -malign-tight-loops flag to control pass_align_tight_loops.
> The motivation is that pass_align_tight_loops may cause performance
> regression in nested loops.
>
>
Hi all:
This patch add -malign-tight-loops flag to control
pass_align_tight_loops.
The motivation is that pass_align_tight_loops may cause performance
regression in nested loops.
The example code as follows:
#define ITER 2
#define ITER_O 10
int i, j,k;
int array[I