From: Sandra Loosemore <sandra@codesourcery.com>
To: David Ung <davidu@mips.com>,
GCC Patches <gcc-patches@gcc.gnu.org>,
richard@codesourcery.com
Subject: Re: PATCH: MIPS 74K load/store scheduling tweak (take 2)
Date: Fri, 10 Aug 2007 15:17:00 -0000 [thread overview]
Message-ID: <46BC8131.5090204@codesourcery.com> (raw)
In-Reply-To: <87y7gomxb7.fsf@firetop.home>
[-- Attachment #1: Type: text/plain, Size: 507 bytes --]
Richard Sandiford wrote:
> I think defining TARGET_SCHED_REORDER2 is the right thing. Let's
> move the "cycle == 0" stuff in mips_sched_reorg into Sandra's new
> mips_sched_init function. I think mips_sched_reorder will then be
> suitable for both TARGET_SCHED_REORDER and TARGET_SCHED_REORDER2.
I think I've got in all the changes from the last round of discussion now. The
attached version of the patch tests without regressions both with and without
-march=74kc. Are we there yet? ;-)
-Sandra
[-- Attachment #2: 26b-74k-sched-ldst.log --]
[-- Type: text/x-log, Size: 526 bytes --]
2007-08-10 Sandra Loosemore <sandra@codesourcery.com>
David Ung <davidu@mips.com>
gcc/
* config/mips/mips.c (TARGET_SCHED_INIT): Define.
(TARGET_SCHED_REORDER2): Define.
(mips_maybe_swap_ready): New.
(mips_last_74k_agen_insn): New.
(mips_74k_agen_init): New.
(mips_74k_agen_reorder): New function to group loads and stores
in the ready queue.
(mips_sched_init): New.
(mips_sched_reorder): Don't do initialization here. Call
mips_74k_agen_reorder.
(mips_variable_issue): Call mips_74k_agen_init.
[-- Attachment #3: 26b-74k-sched-ldst.patch --]
[-- Type: text/x-patch, Size: 5739 bytes --]
Index: gcc/config/mips/mips.c
===================================================================
*** gcc/config/mips/mips.c (revision 127140)
--- gcc/config/mips/mips.c (working copy)
*************** static bool vr4130_true_reg_dependence_p
*** 393,398 ****
--- 393,399 ----
static bool vr4130_swap_insns_p (rtx, rtx);
static void vr4130_reorder (rtx *, int);
static void mips_promote_ready (rtx *, int, int);
+ static void mips_sched_init (FILE *, int, int);
static int mips_sched_reorder (FILE *, int, rtx *, int *, int);
static int mips_variable_issue (FILE *, int, rtx, int);
static int mips_adjust_cost (rtx, rtx, rtx, int);
*************** static const unsigned char mips16e_save_
*** 1225,1232 ****
--- 1226,1237 ----
#undef TARGET_ASM_FUNCTION_RODATA_SECTION
#define TARGET_ASM_FUNCTION_RODATA_SECTION mips_function_rodata_section
+ #undef TARGET_SCHED_INIT
+ #define TARGET_SCHED_INIT mips_sched_init
#undef TARGET_SCHED_REORDER
#define TARGET_SCHED_REORDER mips_sched_reorder
+ #undef TARGET_SCHED_REORDER2
+ #define TARGET_SCHED_REORDER2 mips_sched_reorder
#undef TARGET_SCHED_VARIABLE_ISSUE
#define TARGET_SCHED_VARIABLE_ISSUE mips_variable_issue
#undef TARGET_SCHED_ADJUST_COST
*************** mips_promote_ready (rtx *ready, int lowe
*** 10881,10906 ****
ready[i] = new_head;
}
! /* Implement TARGET_SCHED_REORDER. */
! static int
! mips_sched_reorder (FILE *file ATTRIBUTE_UNUSED, int verbose ATTRIBUTE_UNUSED,
! rtx *ready, int *nreadyp, int cycle)
{
! if (!reload_completed && TUNE_MACC_CHAINS)
{
! if (cycle == 0)
! mips_macc_chains_last_hilo = 0;
! if (*nreadyp > 0)
! mips_macc_chains_reorder (ready, *nreadyp);
}
! if (reload_completed && TUNE_MIPS4130 && !TARGET_VR4130_ALIGN)
{
! if (cycle == 0)
! vr4130_last_insn = 0;
! if (*nreadyp > 1)
! vr4130_reorder (ready, *nreadyp);
}
return mips_issue_rate ();
}
--- 10886,11014 ----
ready[i] = new_head;
}
! /* If the priority of the instruction at POS2 in the ready queue READY
! is within LIMIT units of that of the instruction at POS1, swap the
! instructions if POS2 is not already less than POS1. */
! static void
! mips_maybe_swap_ready (rtx *ready, int pos1, int pos2, int limit)
{
! if (pos1 < pos2
! && INSN_PRIORITY (ready[pos1]) + limit >= INSN_PRIORITY (ready[pos2]))
{
! rtx temp;
! temp = ready[pos1];
! ready[pos1] = ready[pos2];
! ready[pos2] = temp;
}
! }
!
! /* Record whether last 74k AGEN instruction was a load or store. */
!
! static enum attr_type mips_last_74k_agen_insn = TYPE_UNKNOWN;
!
! /* Initialize mips_last_74k_agen_insn from INSN. A null argument
! resets to TYPE_UNKNOWN state. */
!
! static void
! mips_74k_agen_init (rtx insn)
! {
! if (!insn || !NONJUMP_INSN_P (insn))
! mips_last_74k_agen_insn = TYPE_UNKNOWN;
! else if (USEFUL_INSN_P (insn))
{
! enum attr_type type = get_attr_type (insn);
! if (type == TYPE_LOAD || type == TYPE_STORE)
! mips_last_74k_agen_insn = type;
}
+ }
+
+ /* A TUNE_74K helper function. The 74K AGEN pipeline likes multiple
+ loads to be grouped together, and multiple stores to be grouped
+ together. Swap things around in the ready queue to make this happen. */
+
+ static void
+ mips_74k_agen_reorder (rtx *ready, int nready)
+ {
+ int i;
+ int store_pos, load_pos;
+
+ store_pos = -1;
+ load_pos = -1;
+
+ for (i = nready - 1; i >= 0; i--)
+ {
+ rtx insn = ready[i];
+ if (USEFUL_INSN_P (insn))
+ switch (get_attr_type (insn))
+ {
+ case TYPE_STORE:
+ if (store_pos == -1)
+ store_pos = i;
+ break;
+
+ case TYPE_LOAD:
+ if (load_pos == -1)
+ load_pos = i;
+ break;
+
+ default:
+ break;
+ }
+ }
+
+ if (load_pos == -1 || store_pos == -1)
+ return;
+
+ switch (mips_last_74k_agen_insn)
+ {
+ case TYPE_UNKNOWN:
+ /* Prefer to schedule loads since they have a higher latency. */
+ case TYPE_LOAD:
+ /* Swap loads to the front of the queue. */
+ mips_maybe_swap_ready (ready, load_pos, store_pos, 4);
+ break;
+ case TYPE_STORE:
+ /* Swap stores to the front of the queue. */
+ mips_maybe_swap_ready (ready, store_pos, load_pos, 4);
+ break;
+ default:
+ break;
+ }
+ }
+
+ /* Implement TARGET_SCHED_INIT. */
+
+ static void
+ mips_sched_init (FILE *file ATTRIBUTE_UNUSED, int verbose ATTRIBUTE_UNUSED,
+ int max_ready ATTRIBUTE_UNUSED)
+ {
+ if (!reload_completed && TUNE_MACC_CHAINS)
+ mips_macc_chains_last_hilo = 0;
+ if (reload_completed && TUNE_MIPS4130 && !TARGET_VR4130_ALIGN)
+ vr4130_last_insn = 0;
+ if (TUNE_74K)
+ mips_74k_agen_init (NULL_RTX);
+
+ }
+
+ /* Implement TARGET_SCHED_REORDER and TARG_SCHED_REORDER2. */
+
+ static int
+ mips_sched_reorder (FILE *file ATTRIBUTE_UNUSED, int verbose ATTRIBUTE_UNUSED,
+ rtx *ready, int *nreadyp, int cycle)
+ {
+ if (!reload_completed
+ && TUNE_MACC_CHAINS
+ && *nreadyp > 0)
+ mips_macc_chains_reorder (ready, *nreadyp);
+ if (reload_completed
+ && TUNE_MIPS4130
+ && !TARGET_VR4130_ALIGN
+ && *nreadyp > 1)
+ vr4130_reorder (ready, *nreadyp);
+ if (TUNE_74K)
+ mips_74k_agen_reorder (ready, *nreadyp);
return mips_issue_rate ();
}
*************** static int
*** 10910,10915 ****
--- 11018,11025 ----
mips_variable_issue (FILE *file ATTRIBUTE_UNUSED, int verbose ATTRIBUTE_UNUSED,
rtx insn, int more)
{
+ if (TUNE_74K)
+ mips_74k_agen_init (insn);
switch (GET_CODE (PATTERN (insn)))
{
case USE:
next prev parent reply other threads:[~2007-08-10 15:17 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-04 0:13 Sandra Loosemore
2007-08-04 7:35 ` Richard Sandiford
2007-08-06 16:21 ` David Ung
2007-08-06 16:40 ` Richard Sandiford
2007-08-06 17:19 ` David Ung
2007-08-06 17:53 ` Richard Sandiford
2007-08-07 10:43 ` David Ung
2007-08-10 15:17 ` Sandra Loosemore [this message]
2007-08-10 15:22 ` Richard Sandiford
2007-08-10 16:37 ` Sandra Loosemore
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=46BC8131.5090204@codesourcery.com \
--to=sandra@codesourcery.com \
--cc=davidu@mips.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=richard@codesourcery.com \
/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).