public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] cfgrtl: Fix up fixup_partitions caused ICE [PR99085]
@ 2021-02-16  8:13 Jakub Jelinek
  2021-02-23  8:49 ` Patch ping Jakub Jelinek
  2021-03-02 23:39 ` [PATCH] cfgrtl: Fix up fixup_partitions caused ICE [PR99085] Jeff Law
  0 siblings, 2 replies; 62+ messages in thread
From: Jakub Jelinek @ 2021-02-16  8:13 UTC (permalink / raw)
  To: Richard Biener, Jan Hubicka; +Cc: gcc-patches

Hi!

fixup_partitions sometimes changes some basic blocks from hot partition to
cold partition, in particular if after unreachable block removal or other
optimizations a hot partition block is dominated by cold partition block(s).
It fixes up the edges and jumps on those edges, but when after reorder
blocks and in rtl (non-cfglayout) mode that is clearly not enough, because
it keeps the block order the same and so we can end up with more than
1 hot/cold section transition in the same function.

So, this patch fixes that up too.

Bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk?

2021-02-15  Jakub Jelinek  <jakub@redhat.com>

	PR target/99085
	* cfgrtl.c (fixup_partitions): When changing some bbs from hot to cold
	partitions, if in non-layout mode after reorder_blocks also move
	affected blocks to ensure a single partition transition.

	* gcc.dg/graphite/pr99085.c: New test.

--- gcc/cfgrtl.c.jj	2021-02-10 19:27:33.000000000 +0100
+++ gcc/cfgrtl.c	2021-02-15 16:47:41.625798717 +0100
@@ -2414,8 +2414,6 @@ find_partition_fixes (bool flag_only)
 void
 fixup_partitions (void)
 {
-  basic_block bb;
-
   if (!crtl->has_bb_partition)
     return;
 
@@ -2436,10 +2434,61 @@ fixup_partitions (void)
   /* Do the partition fixup after all necessary blocks have been converted to
      cold, so that we only update the region crossings the minimum number of
      places, which can require forcing edges to be non fallthru.  */
-  while (! bbs_to_fix.is_empty ())
+  if (! bbs_to_fix.is_empty ())
     {
-      bb = bbs_to_fix.pop ();
-      fixup_new_cold_bb (bb);
+      do
+	{
+	  basic_block bb = bbs_to_fix.pop ();
+	  fixup_new_cold_bb (bb);
+	}
+      while (! bbs_to_fix.is_empty ());
+
+      /* Fix up hot cold block grouping if needed.  */
+      if (crtl->bb_reorder_complete && current_ir_type () == IR_RTL_CFGRTL)
+	{
+	  basic_block bb, first = NULL, second = NULL;
+	  int current_partition = BB_UNPARTITIONED;
+
+	  FOR_EACH_BB_FN (bb, cfun)
+	    {
+	      if (current_partition != BB_UNPARTITIONED
+		  && BB_PARTITION (bb) != current_partition)
+		{
+		  if (first == NULL)
+		    first = bb;
+		  else if (second == NULL)
+		    second = bb;
+		  else
+		    {
+		      /* If we switch partitions for the 3rd, 5th etc. time,
+			 move bbs first (inclusive) .. second (exclusive) right
+			 before bb.  */
+		      basic_block prev_first = first->prev_bb;
+		      basic_block prev_second = second->prev_bb;
+		      basic_block prev_bb = bb->prev_bb;
+		      prev_first->next_bb = second;
+		      second->prev_bb = prev_first;
+		      prev_second->next_bb = bb;
+		      bb->prev_bb = prev_second;
+		      prev_bb->next_bb = first;
+		      first->prev_bb = prev_bb;
+		      rtx_insn *prev_first_insn = PREV_INSN (BB_HEAD (first));
+		      rtx_insn *prev_second_insn
+			= PREV_INSN (BB_HEAD (second));
+		      rtx_insn *prev_bb_insn = PREV_INSN (BB_HEAD (bb));
+		      SET_NEXT_INSN (prev_first_insn) = BB_HEAD (second);
+		      SET_PREV_INSN (BB_HEAD (second)) = prev_first_insn;
+		      SET_NEXT_INSN (prev_second_insn) = BB_HEAD (bb);
+		      SET_PREV_INSN (BB_HEAD (bb)) = prev_second_insn;
+		      SET_NEXT_INSN (prev_bb_insn) = BB_HEAD (first);
+		      SET_PREV_INSN (BB_HEAD (first)) = prev_bb_insn;
+		      second = NULL;
+		    }
+		}
+	      current_partition = BB_PARTITION (bb);
+	    }
+	  gcc_assert (!second);
+	}
     }
 }
 
--- gcc/testsuite/gcc.dg/graphite/pr99085.c.jj	2021-02-15 16:52:59.313169888 +0100
+++ gcc/testsuite/gcc.dg/graphite/pr99085.c	2021-02-15 16:51:54.589910609 +0100
@@ -0,0 +1,20 @@
+/* PR target/99085 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -fgraphite-identity -fsel-sched-pipelining -fselective-scheduling2" } */
+
+void
+foo (int m, int n, int o, int i)
+{
+  long double a2[m];
+  int c2[n][o];
+  int j, k;
+
+  while (i < m)
+    a2[i++] = 13.132L;
+
+  for (j = 0; j < n; j++)
+    for (k = 0; k < o; k++)
+      c2[j][k] = 1;
+
+  __builtin_abort ();
+}

	Jakub


^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2024-02-26  9:33 Jakub Jelinek
  2024-02-26  9:38 ` Uros Bizjak
  2024-02-26 16:26 ` Jan Hubicka
  0 siblings, 2 replies; 62+ messages in thread
From: Jakub Jelinek @ 2024-02-26  9:33 UTC (permalink / raw)
  To: Richard Biener, Jeff Law, Uros Bizjak, Jan Hubicka; +Cc: gcc-patches

Hi!

I'd like to ping 2 patches:

https://gcc.gnu.org/pipermail/gcc-patches/2024-January/644580.html                                                                                                                    
PR113617 P1 - Handle private COMDAT function symbol reference in readonly data section                                                                                                
                                                                                                                                                                                      
More details in the                                                                                                                                                                   
https://gcc.gnu.org/pipermail/gcc-patches/2024-January/thread.html#644121                                                                                                             
and                                                                                                                                                                                   
https://gcc.gnu.org/pipermail/gcc-patches/2024-January/thread.html#644486                                                                                                             
threads.                                                                                                                                                                              

and

https://gcc.gnu.org/pipermail/gcc-patches/2024-February/645326.html
i386: Enable _BitInt support on ia32

all the FAILs mentioned in that mail have been fixed by now.

Thanks

	Jakub


^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping
@ 2021-03-19  9:57 Jakub Jelinek
  2021-03-29 15:19 ` Patch ping^2 Jakub Jelinek
  0 siblings, 1 reply; 62+ messages in thread
From: Jakub Jelinek @ 2021-03-19  9:57 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches

Hi!

I'd like to ping two patches:

https://gcc.gnu.org/pipermail/gcc-patches/2021-March/566324.html
PR99388 dwarf2out half float fix

https://gcc.gnu.org/pipermail/gcc-patches/2021-March/566669.html
PR99490 dwarf2out -gsplit-dwarf ranges fixes

Thanks

	Jakub


^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping
@ 2020-03-10 12:28 Jakub Jelinek
  2020-03-17 12:10 ` Patch ping^2 Jakub Jelinek
  0 siblings, 1 reply; 62+ messages in thread
From: Jakub Jelinek @ 2020-03-10 12:28 UTC (permalink / raw)
  To: Jeff Law; +Cc: gcc-patches

Hi!

I'd like to ping the
https://gcc.gnu.org/legacy-ml/gcc-patches/2020-03/msg00154.html
  P1 PR94015
patch, with the https://gcc.gnu.org/bugzilla/show_bug.cgi?id=94015#c5
testcase instead of the one sent in the patch, so that it FAILs without the
fix on more targets and more reliably.

Thanks

	Jakub


^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2018-05-07  8:10 Jakub Jelinek
  0 siblings, 0 replies; 62+ messages in thread
From: Jakub Jelinek @ 2018-05-07  8:10 UTC (permalink / raw)
  To: Kirill Yukhin; +Cc: gcc-patches

Hi!

I'd like to ping following patches:

- PR85480 improve AVX512 128-bit insertion into 512-bit zero vector
  http://gcc.gnu.org/ml/gcc-patches/2018-04/msg01058.html

- PR85572 implement absv2di2 and absv4di2 expanders for pre-avx512vl
  http://gcc.gnu.org/ml/gcc-patches/2018-04/msg01341.html

Thanks

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2018-04-05  8:35 Jakub Jelinek
  0 siblings, 0 replies; 62+ messages in thread
From: Jakub Jelinek @ 2018-04-05  8:35 UTC (permalink / raw)
  To: Richard Biener, Jeff Law, Alexandre Oliva, Uros Bizjak; +Cc: gcc-patches

Hi!

I'd like to ping the

http://gcc.gnu.org/ml/gcc-patches/2018-03/msg01244.html
  - PR83157 - improve debug info for x86 setcc peepholes

patch.  Thanks.

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2017-12-15  9:09 Jakub Jelinek
  0 siblings, 0 replies; 62+ messages in thread
From: Jakub Jelinek @ 2017-12-15  9:09 UTC (permalink / raw)
  To: Jason Merrill, Nathan Sidwell, Richard Biener, Jeff Law; +Cc: gcc-patches

Hi!

I'd like to ping a bunch of patches:

http://gcc.gnu.org/ml/gcc-patches/2017-11/msg02521.html                                                                                            
  PR c++/83205 - diagnose invalid std::tuple_size<X>::value for structured                                                                         
                 bindings; the follow-up with plural spelling is approved                                                                          
                 already                                                                                                                           
                                                                                                                                                   
http://gcc.gnu.org/ml/gcc-patches/2017-11/msg02629.html                                                                                            
  PR c++/83217 - handle references to non-complete type in structured                                                                              
                 bindings                                                                                                                          

http://gcc.gnu.org/ml/gcc-patches/2017-12/msg00184.html
  PR c++/81197 - fix ICE with structured bindings and extend_ref_init_temps

http://gcc.gnu.org/ml/gcc-patches/2017-12/msg00391.html
  PR c++/83300 - RFC fix for C++ late attribute handling

http://gcc.gnu.org/ml/gcc-patches/2017-12/msg00507.html
  PR c++/80135, c++/81922 - fix ICEs with flexible array member initialization
			    in nested contexts

http://gcc.gnu.org/ml/gcc-patches/2017-12/msg00395.html
  PR sanitizer/81281 - further improvements for match.pd
		       (T)(P + A) - (T)(P + B) -> (T)A - (T)B optimization

http://gcc.gnu.org/ml/gcc-patches/2017-12/msg00346.html
  PR target/41455, target/82935 - use tail calls in aggregate copy or clear
				  expanded as memcpy or memset call if possible

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping
@ 2017-11-06 16:22 Jakub Jelinek
  2017-11-14 17:07 ` Patch ping^2 Jakub Jelinek
  0 siblings, 1 reply; 62+ messages in thread
From: Jakub Jelinek @ 2017-11-06 16:22 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches

Hi!

I'd like to ping the:

  http://gcc.gnu.org/ml/gcc-patches/2017-10/msg01895.html
  PR debug/82718
  Fix DWARF5 .debug_loclist handling with hot/cold partitioning

patch.  Thanks

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2017-04-18 14:21 Jakub Jelinek
  2017-04-18 17:07 ` Jeff Law
  0 siblings, 1 reply; 62+ messages in thread
From: Jakub Jelinek @ 2017-04-18 14:21 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches

I'd like to ping following patch:

PR debug/80263
   http://gcc.gnu.org/ml/gcc-patches/2017-04/msg00004.html
   avoid emitting sizetype artificial name into debug info

Thanks

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2017-02-13 15:53 Jakub Jelinek
  2017-02-13 16:45 ` Nathan Sidwell
  2017-02-14 15:07 ` Nathan Sidwell
  0 siblings, 2 replies; 62+ messages in thread
From: Jakub Jelinek @ 2017-02-13 15:53 UTC (permalink / raw)
  To: Jason Merrill, Jan Hubicka, Jeff Law, Martin Sebor; +Cc: gcc-patches

Hi!

I'd like to ping a couple of patches:

- C++ P1 PR79232 - ICEs and wrong-code with COMPOUND_EXPR on lhs of assignment
  http://gcc.gnu.org/ml/gcc-patches/2017-01/msg02341.html

- C++ P1 PR79288 - wrong default TLS model for __thread static data members
  http://gcc.gnu.org/ml/gcc-patches/2017-01/msg02349.html

- small simplification for gimple-ssa-sprintf.c
  http://gcc.gnu.org/ml/gcc-patches/2017-02/msg00331.html

- noipa attribute addition
  http://gcc.gnu.org/ml/gcc-patches/2016-12/msg01501.html

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2012-09-05 16:34 Jakub Jelinek
  0 siblings, 0 replies; 62+ messages in thread
From: Jakub Jelinek @ 2012-09-05 16:34 UTC (permalink / raw)
  To: Jason Merrill; +Cc: gcc-patches

http://gcc.gnu.org/ml/gcc-patches/2012-08/msg01100.html                                                                                            
  - C++ -Wsizeof-pointer-memaccess support (C is already in)                                                                                       

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping #2
@ 2011-05-31 12:25 Jakub Jelinek
  2011-05-31 18:19 ` Richard Henderson
  0 siblings, 1 reply; 62+ messages in thread
From: Jakub Jelinek @ 2011-05-31 12:25 UTC (permalink / raw)
  To: Jason Merrill, Richard Henderson; +Cc: gcc-patches

Hi!

- http://gcc.gnu.org/ml/gcc-patches/2011-05/msg01182.html                                                                                          
  various debug info improvements (typed DWARF stack etc.)                                                                                         
                                                                                                                                                   
- http://gcc.gnu.org/ml/gcc-patches/2011-05/msg01246.html                                                                                          
  optimize away unneeded DW_OP_GNU_convert ops with typed DWARF stack                                                                              
                                                                                                                                                   
- http://gcc.gnu.org/ml/gcc-patches/2011-04/msg01669.html                                                                                          
  PR48688 optimization, I know Richard asked for trying it during                                                                                  
  combine, but that attempt failed due to opposite optimization                                                                                    

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping #2
@ 2011-05-23  9:45 Eric Botcazou
  2011-05-23 10:16 ` Richard Guenther
  0 siblings, 1 reply; 62+ messages in thread
From: Eric Botcazou @ 2011-05-23  9:45 UTC (permalink / raw)
  To: gcc-patches

Not as many as Jakub, but still. :-)


Fix annoying gcov filename handling (gcov.c, 2 lines):
  http://gcc.gnu.org/ml/gcc-patches/2011-03/msg01380.html

Introduce -Wstack-usage:
  http://gcc.gnu.org/ml/gcc-patches/2011-03/msg01992.html

Extend TYPE_DECL_IS_STUB trick (dwarf2out.c, 1 line):
  http://gcc.gnu.org/ml/gcc-patches/2011-04/msg00683.html

Emit DW_AT_artificial for types:
  http://gcc.gnu.org/ml/gcc-patches/2011-04/msg00700.html

Fix PR lto/48492 (bis) (dwarf2out.c, 1 line):
  http://gcc.gnu.org/ml/gcc-patches/2011-04/msg01461.html

Thanks in advance.


-- 
Eric Botcazou

^ permalink raw reply	[flat|nested] 62+ messages in thread
* patch ping^2
@ 2010-02-23 20:38 Jerry Quinn
  0 siblings, 0 replies; 62+ messages in thread
From: Jerry Quinn @ 2010-02-23 20:38 UTC (permalink / raw)
  To: gcc-patches

http://gcc.gnu.org/ml/gcc-patches/2010-02/msg00222.html

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping
@ 2006-02-14 17:19 Jakub Jelinek
  2006-02-20 19:41 ` Patch ping^2 Jakub Jelinek
  0 siblings, 1 reply; 62+ messages in thread
From: Jakub Jelinek @ 2006-02-14 17:19 UTC (permalink / raw)
  To: gcc-patches

Hi!

--with{,out}-long-double-128 configure option:
http://gcc.gnu.org/ml/gcc-patches/2006-02/msg00664.html

(together with the already approved remaining parts of:
http://gcc.gnu.org/ml/gcc-patches/2006-02/msg00274.html
http://gcc.gnu.org/ml/gcc-patches/2006-02/msg00271.html
http://gcc.gnu.org/ml/gcc-patches/2006-02/msg00263.html).

Ok for trunk?

	Jakub

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping**2
@ 2005-12-09  0:05 Ben Elliston
  0 siblings, 0 replies; 62+ messages in thread
From: Ben Elliston @ 2005-12-09  0:05 UTC (permalink / raw)
  To: gcc-patches

Ping:
  http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00472.html

If this patch is too hard to review in its present form, is there
further partitioning that would make it easier for reviewers?

Thanks,
Ben

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2005-08-20 18:32 Uros Bizjak
  0 siblings, 0 replies; 62+ messages in thread
From: Uros Bizjak @ 2005-08-20 18:32 UTC (permalink / raw)
  To: gcc-patches

Hello!

  I would relly appreciate a revew of a simple one-liner patch that 
would fix critical regression for i386 in 4.0.x and 4.1 branches.  The 
patch itself can be found at 
http://gcc.gnu.org/ml/gcc-patches/2005-07/msg01490.html. There are also 
some (unreviewed) testcases for recent PR fixes at 
http://gcc.gnu.org/ml/gcc-patches/2005-08/msg00966.html.

  BTW: I may be mistaken, but I was under impression that regressions 
(found in real code, not some artifical testcases) that are marked 
critical for some reason, have some kind of priority. Otherwise,  I see 
no point to fix them in as-soon-as-possible way, if the patch is then 
left unreviewed for a month.

Thanks,
Uros.

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Re: Patch ping**2
@ 2005-03-28  1:59 Feng Wang
  0 siblings, 0 replies; 62+ messages in thread
From: Feng Wang @ 2005-03-28  1:59 UTC (permalink / raw)
  To: Tobias Schlüter, GCC Fortran mailing list, patch

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=gb2312, Size: 761 bytes --]

> 2005-03-05 [gfortran] More type-safety issues
> http://gcc.gnu.org/ml/fortran/2005-03/msg00071.html
> (the part which removes the fold_convert doesn't work with the g77 calling
> conventions, but I think the should remove support for the NULL rhs anyway,
> and that part is independent)
> 
I agree with this one. It's more reasonable.

Best Regards,
Feng Wang

_________________________________________________________
Do You Yahoo!?
150ÍòÇúMP3·è¿ñËÑ£¬´øÄú´³ÈëÒôÀÖµîÌÃ
http://music.yisou.com/
ÃÀÅ®Ã÷ÐÇÓ¦Óо¡ÓУ¬ËѱéÃÀͼ¡¢ÑÞͼºÍ¿áͼ
http://image.yisou.com
1G¾ÍÊÇ1000Õ×£¬ÑÅ»¢µçÓÊ×ÔÖúÀ©ÈÝ£¡
http://cn.rd.yahoo.com/mail_cn/tag/1g/*http://cn.mail.yahoo.com/event/mail_1g/

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping**2
@ 2005-03-27 18:21 Tobias Schlüter
  2005-03-28  4:05 ` Steve Kargl
  0 siblings, 1 reply; 62+ messages in thread
From: Tobias Schlüter @ 2005-03-27 18:21 UTC (permalink / raw)
  To: GCC Fortran mailing list, patch


2005-03-08 [gfortran] Fix PR 20178: Implement g77 / f2c calling conventions
mail here: http://gcc.gnu.org/ml/fortran/2005-03/msg00126.html
patch here: http://gcc.gnu.org/ml/fortran/2005-03/msg00129.html
one-line fix here: http://gcc.gnu.org/ml/fortran/2005-03/msg00163.html

2005-03-05 [gfortran] More type-safety issues
http://gcc.gnu.org/ml/fortran/2005-03/msg00071.html
(the part which removes the fold_convert doesn't work with the g77 calling
conventions, but I think the should remove support for the NULL rhs anyway,
and that part is independent)

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping ^ 2
@ 2004-10-17 20:43 Zdenek Dvorak
  2004-10-17 20:50 ` Daniel Berlin
  0 siblings, 1 reply; 62+ messages in thread
From: Zdenek Dvorak @ 2004-10-17 20:43 UTC (permalink / raw)
  To: gcc-patches

Hello,

this patch fixes (at least) two several serious problems in lim store
motion -- misscompilations (PR 17133 and several duplicates) and
problems with compile time (PR 17790).

http://gcc.gnu.org/ml/gcc-patches/2004-09/msg01120.html

Zdenek

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping ^2
@ 2004-08-02 18:04 Pat Haugen
  0 siblings, 0 replies; 62+ messages in thread
From: Pat Haugen @ 2004-08-02 18:04 UTC (permalink / raw)
  To: gcc-patches





Ping for crossjump patch.

http://gcc.gnu.org/ml/gcc-patches/2004-07/msg00495.html


-Pat

^ permalink raw reply	[flat|nested] 62+ messages in thread
* patch ping^2
@ 2004-06-28  5:52 Jerry Quinn
  0 siblings, 0 replies; 62+ messages in thread
From: Jerry Quinn @ 2004-06-28  5:52 UTC (permalink / raw)
  To: gcc-patches

Still unreviewed:

http://gcc.gnu.org/ml/gcc-patches/2004-06/msg01662.html

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2004-06-10 21:36 Richard Guenther
  0 siblings, 0 replies; 62+ messages in thread
From: Richard Guenther @ 2004-06-10 21:36 UTC (permalink / raw)
  To: gcc-patches

Ping!

http://gcc.gnu.org/ml/gcc-patches/2004-05/msg00187.html
[PATCH] Add leafify function attribute

Thanks,
Richard.

^ permalink raw reply	[flat|nested] 62+ messages in thread
* Patch ping^2
@ 2004-03-16 23:21 Zdenek Dvorak
  2004-03-17  2:40 ` Roger Sayle
  2004-03-19  8:14 ` Zdenek Dvorak
  0 siblings, 2 replies; 62+ messages in thread
From: Zdenek Dvorak @ 2004-03-16 23:21 UTC (permalink / raw)
  To: gcc-patches; +Cc: rth

Hello,

http://gcc.gnu.org/ml/gcc-patches/2004-02/msg01733.html
  -- doloop optimization rewrite.  I would like to get this in since
     it fixes the problem with interaction of the new loop unroller and
     doloop optimization (possibly not fully optimally, as we discussed
     with Mircea Namolaru, at least in a way that should be simple to
     improve upon).

Zdenek

^ permalink raw reply	[flat|nested] 62+ messages in thread

end of thread, other threads:[~2024-02-26 16:26 UTC | newest]

Thread overview: 62+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-16  8:13 [PATCH] cfgrtl: Fix up fixup_partitions caused ICE [PR99085] Jakub Jelinek
2021-02-23  8:49 ` Patch ping Jakub Jelinek
2021-03-01 13:01   ` Patch ping^2 Jakub Jelinek
2021-03-02 23:39 ` [PATCH] cfgrtl: Fix up fixup_partitions caused ICE [PR99085] Jeff Law
  -- strict thread matches above, loose matches on Subject: below --
2024-02-26  9:33 Patch ping^2 Jakub Jelinek
2024-02-26  9:38 ` Uros Bizjak
2024-02-26 16:26 ` Jan Hubicka
2021-03-19  9:57 Patch ping Jakub Jelinek
2021-03-29 15:19 ` Patch ping^2 Jakub Jelinek
2020-03-10 12:28 Patch ping Jakub Jelinek
2020-03-17 12:10 ` Patch ping^2 Jakub Jelinek
2020-03-17 12:23   ` Richard Biener
2018-05-07  8:10 Jakub Jelinek
2018-04-05  8:35 Jakub Jelinek
2017-12-15  9:09 Jakub Jelinek
2017-11-06 16:22 Patch ping Jakub Jelinek
2017-11-14 17:07 ` Patch ping^2 Jakub Jelinek
2017-11-16  3:07   ` Jim Wilson
2017-04-18 14:21 Jakub Jelinek
2017-04-18 17:07 ` Jeff Law
2017-02-13 15:53 Jakub Jelinek
2017-02-13 16:45 ` Nathan Sidwell
2017-02-13 16:50   ` Jakub Jelinek
2017-02-13 17:37     ` Jakub Jelinek
2017-02-13 19:36       ` Nathan Sidwell
2017-02-14 15:07 ` Nathan Sidwell
2017-02-15 16:29   ` Jakub Jelinek
2012-09-05 16:34 Jakub Jelinek
2011-05-31 12:25 Patch ping #2 Jakub Jelinek
2011-05-31 18:19 ` Richard Henderson
2011-05-23  9:45 Eric Botcazou
2011-05-23 10:16 ` Richard Guenther
2011-05-23 12:01   ` Eric Botcazou
2011-05-23 13:34     ` Richard Guenther
2011-05-24 23:46       ` Eric Botcazou
2011-05-25 10:24         ` Richard Guenther
2010-02-23 20:38 patch ping^2 Jerry Quinn
2006-02-14 17:19 Patch ping Jakub Jelinek
2006-02-20 19:41 ` Patch ping^2 Jakub Jelinek
2005-12-09  0:05 Patch ping**2 Ben Elliston
2005-08-20 18:32 Patch ping^2 Uros Bizjak
2005-03-28  1:59 Patch ping**2 Feng Wang
2005-03-27 18:21 Tobias Schlüter
2005-03-28  4:05 ` Steve Kargl
2004-10-17 20:43 Patch ping ^ 2 Zdenek Dvorak
2004-10-17 20:50 ` Daniel Berlin
2004-10-17 21:28   ` Zdenek Dvorak
2004-10-17 21:49   ` Zdenek Dvorak
2004-10-17 23:34     ` Daniel Berlin
2004-10-17 23:56       ` Zdenek Dvorak
2004-10-18  1:18         ` Daniel Berlin
2004-10-18  6:50           ` Zdenek Dvorak
2004-10-18  8:37           ` Zdenek Dvorak
2004-10-18 14:12             ` David Edelsohn
2004-10-18 14:28               ` Zdenek Dvorak
2004-10-18 15:00                 ` Daniel Berlin
2004-10-18 15:40                   ` Zdenek Dvorak
2004-08-02 18:04 Patch ping ^2 Pat Haugen
2004-06-28  5:52 patch ping^2 Jerry Quinn
2004-06-10 21:36 Patch ping^2 Richard Guenther
2004-03-16 23:21 Zdenek Dvorak
2004-03-17  2:40 ` Roger Sayle
2004-03-17  4:58   ` Zdenek Dvorak
2004-03-19  8:14     ` Zdenek Dvorak
2004-03-19  8:14   ` Roger Sayle
2004-03-19  8:14 ` Zdenek Dvorak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).