public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
@ 2003-07-11 20:37 ` pinskia at physics dot uc dot edu
  2003-07-11 23:36 ` pinskia at physics dot uc dot edu
                   ` (14 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-11 20:37 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2003-05-03 00:00:00         |2003-07-11 20:37:39
               date|                            |
            Summary|ICE in emit_move_insn, at   |[3.3/3.4 Regression]ICE in
                   |expr.c:3089                 |emit_move_insn, at
                   |                            |expr.c:3089
   Target Milestone|---                         |3.3.1


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-11 20:37 -------
This does not ICE but  gives "inconsistent operand constraints in an `asm'" in 2.91.66 so 
this is a regression with respect to that, it happens in 2.95.3 also so it was introduced in 
between.


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
  2003-07-11 20:37 ` [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089 pinskia at physics dot uc dot edu
@ 2003-07-11 23:36 ` pinskia at physics dot uc dot edu
  2003-07-13 19:53 ` pinskia at physics dot uc dot edu
                   ` (13 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-11 23:36 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|i386-djgpp                  |i?86-*-*


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-11 23:36 -------
This happens on all i?86-*-*.


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
  2003-07-11 20:37 ` [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089 pinskia at physics dot uc dot edu
  2003-07-11 23:36 ` pinskia at physics dot uc dot edu
@ 2003-07-13 19:53 ` pinskia at physics dot uc dot edu
  2003-08-18 19:40 ` falk at debian dot org
                   ` (12 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at physics dot uc dot edu @ 2003-07-13 19:53 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


pinskia at physics dot uc dot edu changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.3.1                       |3.3.2


------- Additional Comments From pinskia at physics dot uc dot edu  2003-07-13 19:53 -------
Since this is an ice-on-invalid-code regression moving target to 3.3.2.


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (2 preceding siblings ...)
  2003-07-13 19:53 ` pinskia at physics dot uc dot edu
@ 2003-08-18 19:40 ` falk at debian dot org
  2003-08-18 19:41 ` falk at debian dot org
                   ` (11 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: falk at debian dot org @ 2003-08-18 19:40 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788



------- Additional Comments From falk at debian dot org  2003-08-18 19:40 -------
This happens with any struct that has more than one element:

void f(){
    struct { char x, y; } s;
    asm ("" : : "r" (s));
}

The documentation is not quite clear about what's legal here, I think it would  
be best to document that one-element structs are OK for "r" (because people are  
likely using that at the moment), and reject all other structs with a useful  
error message.


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (3 preceding siblings ...)
  2003-08-18 19:40 ` falk at debian dot org
@ 2003-08-18 19:41 ` falk at debian dot org
  2003-08-18 19:41 ` falk at debian dot org
                   ` (10 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: falk at debian dot org @ 2003-08-18 19:41 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


falk at debian dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |j dot vanbemmel at home dot
                   |                            |nl


------- Additional Comments From falk at debian dot org  2003-08-18 19:41 -------
*** Bug 9233 has been marked as a duplicate of this bug. ***


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (4 preceding siblings ...)
  2003-08-18 19:41 ` falk at debian dot org
@ 2003-08-18 19:41 ` falk at debian dot org
  2003-10-06 21:11 ` pinskia at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: falk at debian dot org @ 2003-08-18 19:41 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


falk at debian dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |earthpower at libero dot it


------- Additional Comments From falk at debian dot org  2003-08-18 19:41 -------
*** Bug 11896 has been marked as a duplicate of this bug. ***


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (5 preceding siblings ...)
  2003-08-18 19:41 ` falk at debian dot org
@ 2003-10-06 21:11 ` pinskia at gcc dot gnu dot org
  2003-10-16  2:40 ` mmitchel at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-10-06 21:11 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |daniel at collin dot com


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-10-06 21:11 -------
*** Bug 12530 has been marked as a duplicate of this bug. ***


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (6 preceding siblings ...)
  2003-10-06 21:11 ` pinskia at gcc dot gnu dot org
@ 2003-10-16  2:40 ` mmitchel at gcc dot gnu dot org
  2003-12-12  9:48 ` ebotcazou at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2003-10-16  2:40 UTC (permalink / raw)
  To: gcc-bugs

PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.3.2                       |3.3.3


------- Additional Comments From mmitchel at gcc dot gnu dot org  2003-10-16 02:40 -------
Postponed until GCC 3.3.3.


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

* [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (7 preceding siblings ...)
  2003-10-16  2:40 ` mmitchel at gcc dot gnu dot org
@ 2003-12-12  9:48 ` ebotcazou at gcc dot gnu dot org
  2003-12-20  8:48 ` [Bug inline-asm/8788] ICE " pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2003-12-12  9:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2003-12-12 09:48 -------
It fails in GCC 2.95.x and all 3.x releases and I think it is not worth while to
tweak the middle-end on a release branch for such a pathological case.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.3.3                       |3.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (8 preceding siblings ...)
  2003-12-12  9:48 ` ebotcazou at gcc dot gnu dot org
@ 2003-12-20  8:48 ` pinskia at gcc dot gnu dot org
  2004-04-25 16:40 ` falk at debian dot org
                   ` (5 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2003-12-20  8:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2003-12-20 08:36 -------
A regression from 2.91 is not really worth being mentioned as this is an ice-on-invalid-
code.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|2003-10-26 21:40:18         |2003-12-20 08:36:25
               date|                            |
            Summary|[3.3/3.4 Regression]ICE in  |ICE in emit_move_insn, at
                   |emit_move_insn, at          |expr.c:3089
                   |expr.c:3089                 |
   Target Milestone|3.4.0                       |---


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (9 preceding siblings ...)
  2003-12-20  8:48 ` [Bug inline-asm/8788] ICE " pinskia at gcc dot gnu dot org
@ 2004-04-25 16:40 ` falk at debian dot org
  2004-04-25 19:10 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: falk at debian dot org @ 2004-04-25 16:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From falk at debian dot org  2004-04-25 15:53 -------
*** Bug 15131 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |az at rpiva dot lv


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (10 preceding siblings ...)
  2004-04-25 16:40 ` falk at debian dot org
@ 2004-04-25 19:10 ` pinskia at gcc dot gnu dot org
  2005-04-08  6:26 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-04-25 19:10 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-04-25 17:30 -------
*** Bug 15136 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |swierczu at wpk dot p dot
                   |                            |lodz dot pl


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (11 preceding siblings ...)
  2004-04-25 19:10 ` pinskia at gcc dot gnu dot org
@ 2005-04-08  6:26 ` pinskia at gcc dot gnu dot org
  2005-05-09  5:16 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-04-08  6:26 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-04-08 06:26 -------
*** Bug 20818 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |SchreiberX at Altmuehlnet
                   |                            |dot de


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (12 preceding siblings ...)
  2005-04-08  6:26 ` pinskia at gcc dot gnu dot org
@ 2005-05-09  5:16 ` cvs-commit at gcc dot gnu dot org
  2005-05-29 23:48 ` pinskia at gcc dot gnu dot org
  2005-05-29 23:52 ` pinskia at gcc dot gnu dot org
  15 siblings, 0 replies; 18+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-05-09  5:16 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-05-09 05:16 -------
Subject: Bug 8788

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	sayle@gcc.gnu.org	2005-05-09 05:15:51

Modified files:
	gcc            : ChangeLog stmt.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.dg: pr8788-1.c 

Log message:
	PR inline-asm/8788
	* stmt.c (expand_asm_operands): Avoid calling force_reg on BLKmode
	operands.
	
	* gcc.dg/pr8788-1.c: New testcase.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.8666&r2=2.8667
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/stmt.c.diff?cvsroot=gcc&r1=1.421&r2=1.422
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5447&r2=1.5448
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/pr8788-1.c.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (13 preceding siblings ...)
  2005-05-09  5:16 ` cvs-commit at gcc dot gnu dot org
@ 2005-05-29 23:48 ` pinskia at gcc dot gnu dot org
  2005-05-29 23:52 ` pinskia at gcc dot gnu dot org
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-29 23:48 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-29 23:48 -------
*** Bug 21811 has been marked as a duplicate of this bug. ***

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |larry at barello dot net


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
                   ` (14 preceding siblings ...)
  2005-05-29 23:48 ` pinskia at gcc dot gnu dot org
@ 2005-05-29 23:52 ` pinskia at gcc dot gnu dot org
  15 siblings, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-05-29 23:52 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-05-29 23:48 -------
Fixed on the mainline for 4.1.0.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.1.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <bug-8788-1645@http.gcc.gnu.org/bugzilla/>
  2006-02-02 17:13 ` pinskia at gcc dot gnu dot org
@ 2006-07-28 23:48 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-07-28 23:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #21 from pinskia at gcc dot gnu dot org  2006-07-28 23:48 -------
*** Bug 28529 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mmiikkee13 at gmail dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

* [Bug inline-asm/8788] ICE in emit_move_insn, at expr.c:3089
       [not found] <bug-8788-1645@http.gcc.gnu.org/bugzilla/>
@ 2006-02-02 17:13 ` pinskia at gcc dot gnu dot org
  2006-07-28 23:48 ` pinskia at gcc dot gnu dot org
  1 sibling, 0 replies; 18+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-02-02 17:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #20 from pinskia at gcc dot gnu dot org  2006-02-02 17:13 -------
*** Bug 26077 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gcc at broadmeadow dot plus
                   |                            |dot com


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=8788


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

end of thread, other threads:[~2006-07-28 23:48 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20021202092601.8788.killer.lightspeed@bigpond.com>
2003-07-11 20:37 ` [Bug inline-asm/8788] [3.3/3.4 Regression]ICE in emit_move_insn, at expr.c:3089 pinskia at physics dot uc dot edu
2003-07-11 23:36 ` pinskia at physics dot uc dot edu
2003-07-13 19:53 ` pinskia at physics dot uc dot edu
2003-08-18 19:40 ` falk at debian dot org
2003-08-18 19:41 ` falk at debian dot org
2003-08-18 19:41 ` falk at debian dot org
2003-10-06 21:11 ` pinskia at gcc dot gnu dot org
2003-10-16  2:40 ` mmitchel at gcc dot gnu dot org
2003-12-12  9:48 ` ebotcazou at gcc dot gnu dot org
2003-12-20  8:48 ` [Bug inline-asm/8788] ICE " pinskia at gcc dot gnu dot org
2004-04-25 16:40 ` falk at debian dot org
2004-04-25 19:10 ` pinskia at gcc dot gnu dot org
2005-04-08  6:26 ` pinskia at gcc dot gnu dot org
2005-05-09  5:16 ` cvs-commit at gcc dot gnu dot org
2005-05-29 23:48 ` pinskia at gcc dot gnu dot org
2005-05-29 23:52 ` pinskia at gcc dot gnu dot org
     [not found] <bug-8788-1645@http.gcc.gnu.org/bugzilla/>
2006-02-02 17:13 ` pinskia at gcc dot gnu dot org
2006-07-28 23:48 ` pinskia at gcc dot gnu dot org

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).