Commit 7d0bfbd0 by Richard Henderson

alpha.h (LABEL_ALIGN_AFTER_BARRIER): Was ALIGN_LABEL_AFTER_BARRIER.

        * alpha.h (LABEL_ALIGN_AFTER_BARRIER): Was ALIGN_LABEL_AFTER_BARRIER.
        (MD_SCHED_VARIABLE_ISSUE): New.

From-SVN: r22011
parent 68aed21b
...@@ -483,7 +483,7 @@ extern void override_options (); ...@@ -483,7 +483,7 @@ extern void override_options ();
Alpha we'll get better performance by aligning on an octaword Alpha we'll get better performance by aligning on an octaword
boundary. */ boundary. */
#define ALIGN_LABEL_AFTER_BARRIER(FILE) \ #define LABEL_ALIGN_AFTER_BARRIER(FILE) \
(optimize > 0 && write_symbols != SDB_DEBUG ? 4 : 0) (optimize > 0 && write_symbols != SDB_DEBUG ? 4 : 0)
/* No data type wants to be aligned rounder than this. */ /* No data type wants to be aligned rounder than this. */
...@@ -1680,6 +1680,12 @@ do { \ ...@@ -1680,6 +1680,12 @@ do { \
/* The EV4 is dual issue; EV5/EV6 are quad issue. */ /* The EV4 is dual issue; EV5/EV6 are quad issue. */
#define ISSUE_RATE (alpha_cpu == PROCESSOR_EV4 ? 2 : 4) #define ISSUE_RATE (alpha_cpu == PROCESSOR_EV4 ? 2 : 4)
/* Describe the fact that MULTI instructions are multiple instructions
and so to assume they don't pair with anything. */
#define MD_SCHED_VARIABLE_ISSUE(DUMP, SCHED_VERBOSE, INSN, CAN_ISSUE_MORE) \
if (recog_memoized (INSN) < 0 || get_attr_type (INSN) == TYPE_MULTI) \
(CAN_ISSUE_MORE) = 0
/* Compute the cost of computing a constant rtl expression RTX /* Compute the cost of computing a constant rtl expression RTX
whose rtx-code is CODE. The body of this macro is a portion whose rtx-code is CODE. The body of this macro is a portion
of a switch statement. If the code is computed here, of a switch statement. If the code is computed here,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment