public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 00/28] mn10300 cleanup + compare-elim, v2
@ 2011-01-10 20:33 Richard Henderson
  2011-01-10 20:32 ` [PATCH 13/28] mn10300: cleanup secondary reloads Richard Henderson
                   ` (29 more replies)
  0 siblings, 30 replies; 90+ messages in thread
From: Richard Henderson @ 2011-01-10 20:33 UTC (permalink / raw)
  To: gcc-patches; +Cc: nickc, law, Richard Henderson

From: Richard Henderson <rth@twiddle.net>

Aka, how I spent my xmas vacation.  ;-)

It may now be too late for the inclusion of the compare-elim
pass in 4.6, but I thought I'd post it anyway.  Some of the
target cleanup work might still go in, and I certainly don't
want Nick to duplicate work if he gets back to work on the port.

All patches except the last are totally port-specific.  Even
the last is mostly port-specific, since one has to define a
target hook in order to get the new pass to run.  About half
of these patches just fix errors in the port.

Comments appreciated.


r~


Richard Henderson (28):
  mn10300: Better definition of INCOMING_RETURN_ADDR_RTX.
  mn10300: disable test tree-ssa/vrp47.c
  mn10300: delete ASM_PN_FORMAT
  mn10300: Emit the movm stores in the correct order.
  mn10300: Fix debug offsets into the stack frame
  mn10300: fp insn cleanup
  mn10300: Add attribute enabled.
  mn10300: Define the A and D constraints.
  mn10300: Remove bset/bclr patterns.
  mn10300: Clean up trampoline handling
  mn10300: Clean up costing.
  mn10300: Re-write move patterns.
  mn10300: cleanup secondary reloads
  mn10300: Cleanup legitimate addresses
  mn10300: Force lower-subreg pass to run.
  mn10300: Expose the MDR register to register allocation.
  mn10300: Explicitly represent MDR in multiply and divide.
  mn10300: Cleanup all arithmetic.
  mn10300: tidy pic address loading
  mn10300: Emit clr.
  mn10300: Add clzsi2.
  mn10300: Emit retf instruction
  mn10300: Add delegitimize_address hook.
  mn10300: Implement adddi3, subdi3.
  mn10300: Use reg_or_am33_const_operand in mulsi3.
  mn10300: Auto-clobber the flags in asms.
  mn10300: Add support in longlong.h.
  New -fcompare-elim pass.

 gcc/Makefile.in                       |    4 +
 gcc/common.opt                        |    4 +
 gcc/compare-elim.c                    |  519 +++++
 gcc/config/mn10300/constraints.md     |   37 +-
 gcc/config/mn10300/mn10300-modes.def  |    2 +
 gcc/config/mn10300/mn10300-protos.h   |   17 +-
 gcc/config/mn10300/mn10300.c          | 1624 ++++++++++------
 gcc/config/mn10300/mn10300.h          |  185 +-
 gcc/config/mn10300/mn10300.md         | 3419 +++++++++++----------------------
 gcc/config/mn10300/predicates.md      |   33 +-
 gcc/doc/invoke.texi                   |   15 +-
 gcc/doc/tm.texi                       |    4 +
 gcc/doc/tm.texi.in                    |    2 +
 gcc/longlong.h                        |   37 +
 gcc/opts.c                            |    1 +
 gcc/passes.c                          |    1 +
 gcc/recog.h                           |    5 +
 gcc/target.def                        |    9 +
 gcc/testsuite/gcc.dg/tree-ssa/vrp47.c |    2 +-
 gcc/tree-pass.h                       |    1 +
 20 files changed, 2914 insertions(+), 3007 deletions(-)
 create mode 100644 gcc/compare-elim.c

-- 
1.7.3.4

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

end of thread, other threads:[~2011-01-23 14:28 UTC | newest]

Thread overview: 90+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-01-10 20:33 [PATCH 00/28] mn10300 cleanup + compare-elim, v2 Richard Henderson
2011-01-10 20:32 ` [PATCH 13/28] mn10300: cleanup secondary reloads Richard Henderson
2011-01-18 17:14   ` Jeff Law
2011-01-18 18:35     ` Richard Henderson
2011-01-18 18:49       ` Jeff Law
2011-01-18 19:12         ` Richard Henderson
2011-01-19 15:41           ` Jeff Law
2011-01-19 16:55             ` Richard Henderson
2011-01-10 20:32 ` [PATCH 04/28] mn10300: Emit the movm stores in the correct order Richard Henderson
2011-01-11 14:53   ` Jeff Law
2011-01-11 17:10     ` Richard Henderson
2011-01-10 20:32 ` [PATCH 01/28] mn10300: Better definition of INCOMING_RETURN_ADDR_RTX Richard Henderson
2011-01-11 14:45   ` Jeff Law
2011-01-10 20:33 ` [PATCH 27/28] mn10300: Add support in longlong.h Richard Henderson
2011-01-12 14:31   ` Jeff Law
2011-01-12 18:10     ` Richard Henderson
2011-01-10 20:33 ` [PATCH 12/28] mn10300: Re-write move patterns Richard Henderson
2011-01-18 17:12   ` Jeff Law
2011-01-18 18:30     ` Richard Henderson
2011-01-19 16:12       ` Jeff Law
2011-01-19 19:21         ` Hans-Peter Nilsson
2011-01-18 19:18     ` Richard Henderson
2011-01-19 15:48       ` Jeff Law
2011-01-10 20:33 ` [PATCH 02/28] mn10300: disable test tree-ssa/vrp47.c Richard Henderson
2011-01-11 14:46   ` Jeff Law
2011-01-10 20:33 ` [PATCH 20/28] mn10300: Emit clr Richard Henderson
2011-01-12 14:05   ` Jeff Law
2011-01-10 20:33 ` [PATCH 06/28] mn10300: fp insn cleanup Richard Henderson
2011-01-11 14:46   ` Jeff Law
2011-01-10 20:33 ` [PATCH 23/28] mn10300: Add delegitimize_address hook Richard Henderson
2011-01-12 14:06   ` Jeff Law
2011-01-10 20:33 ` [PATCH 25/28] mn10300: Use reg_or_am33_const_operand in mulsi3 Richard Henderson
2011-01-12 14:06   ` Jeff Law
2011-01-12 18:07     ` Richard Henderson
2011-01-12 18:11       ` Jeff Law
2011-01-10 20:33 ` [PATCH 10/28] mn10300: Clean up trampoline handling Richard Henderson
2011-01-12 14:04   ` Jeff Law
2011-01-10 20:33 ` [PATCH 21/28] mn10300: Add clzsi2 Richard Henderson
2011-01-12 14:05   ` Jeff Law
2011-01-10 20:33 ` [PATCH 15/28] mn10300: Force lower-subreg pass to run Richard Henderson
2011-01-12 14:04   ` Jeff Law
2011-01-10 20:34 ` [PATCH 28/28] New -fcompare-elim pass Richard Henderson
2011-01-11 19:00   ` Nathan Froyd
2011-01-11 19:24     ` Richard Henderson
2011-01-12  9:07   ` Paolo Bonzini
2011-01-12 20:34     ` Richard Henderson
2011-01-13  9:04       ` Paolo Bonzini
2011-01-17 22:42         ` [RFC, v2] " Richard Henderson
2011-01-18 10:06           ` Paolo Bonzini
2011-01-21 17:54             ` [RFC, v3] " Richard Henderson
2011-01-21 18:07               ` Richard Guenther
2011-01-21 19:28               ` Jakub Jelinek
2011-01-23 14:13               ` Andreas Schwab
2011-01-23 17:12                 ` Andreas Schwab
2011-01-10 20:34 ` [PATCH 07/28] mn10300: Add attribute enabled Richard Henderson
2011-01-11 14:47   ` Jeff Law
2011-01-10 20:34 ` [PATCH 09/28] mn10300: Remove bset/bclr patterns Richard Henderson
2011-01-11 14:57   ` Jeff Law
2011-01-10 20:34 ` [PATCH 05/28] mn10300: Fix debug offsets into the stack frame Richard Henderson
2011-01-11 14:50   ` Jeff Law
2011-01-10 20:34 ` [PATCH 11/28] mn10300: Clean up costing Richard Henderson
2011-01-11 15:02   ` Jeff Law
2011-01-10 20:34 ` [PATCH 22/28] mn10300: Emit retf instruction Richard Henderson
2011-01-18 18:18   ` Jeff Law
2011-01-10 20:34 ` [PATCH 14/28] mn10300: Cleanup legitimate addresses Richard Henderson
2011-01-18 17:14   ` Jeff Law
2011-01-10 20:34 ` [PATCH 18/28] mn10300: Cleanup all arithmetic Richard Henderson
2011-01-19 16:58   ` Jeff Law
2011-01-10 20:34 ` [PATCH 17/28] mn10300: Explicitly represent MDR in multiply and divide Richard Henderson
2011-01-18 18:13   ` Jeff Law
2011-01-10 20:34 ` [PATCH 03/28] mn10300: delete ASM_PN_FORMAT Richard Henderson
2011-01-11 14:46   ` Jeff Law
2011-01-10 20:34 ` [PATCH 26/28] mn10300: Auto-clobber the flags in asms Richard Henderson
2011-01-12 14:22   ` Jeff Law
2011-01-10 20:34 ` [PATCH 08/28] mn10300: Define the A and D constraints Richard Henderson
2011-01-11 14:56   ` Jeff Law
2011-01-11 16:44     ` Richard Henderson
2011-01-11 18:53       ` Jeff Law
2011-01-11 19:31         ` Richard Henderson
2011-01-11 20:59           ` Gerald Pfeifer
2011-01-12  0:30           ` Jeff Law
2011-01-10 20:34 ` [PATCH 24/28] mn10300: Implement adddi3, subdi3 Richard Henderson
2011-01-19 18:45   ` Jeff Law
2011-01-10 20:39 ` [PATCH 16/28] mn10300: Expose the MDR register to register allocation Richard Henderson
2011-01-18 17:56   ` Jeff Law
2011-01-10 20:44 ` [PATCH 19/28] mn10300: tidy pic address loading Richard Henderson
2011-01-19 16:44   ` Jeff Law
2011-01-11 14:20 ` [PATCH 00/28] mn10300 cleanup + compare-elim, v2 Nick Clifton
2011-01-11 16:45   ` Richard Henderson
2011-01-11 18:31 ` Richard Henderson

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