public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: Alan Lehotsky <apl@alum.mit.edu>
To: gcc@gcc.gnu.org
Subject: Why does peephole not handle JUMP before barrier?
Date: Wed, 12 Sep 2001 09:30:00 -0000	[thread overview]
Message-ID: <p04330103b7c53c924b45@[192.168.1.254]> (raw)

genpeep.c produces a peephole() function that explicitly excludes performing peepholes on
anything that's immediately followed by a barrier instruction.

I've got a machine that has branch delay slots.  If the instruction following a branch is another branch,
then the second branch is suppressed.  So, if I have something like

		jeq	$10
		  nop
		jmp	$12
		  ....

that can be replaced by

	jeq $10
	jmp $12
	...

avoiding the nop.

But, if I've got

		jmp	$10
		  nop
		jmp $12
		  nop

the peephole() NEVER looks at the jmp $10, as it's actually got a barrier after it.


-- 
------------------------------------------------------------------------

		    Quality Software Management
		http://home.earthlink.net/~qsmgmt
			apl@alum.mit.edu
			(978)287-0435 Voice
			(978)808-6836 Cell
			(978)287-0436 Fax

	Software Process Improvement and Management Consulting
	     Language Design and Compiler Implementation

                 reply	other threads:[~2001-09-12  9:30 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='p04330103b7c53c924b45@[192.168.1.254]' \
    --to=apl@alum.mit.edu \
    --cc=gcc@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).