diff options
author | Vladimir Makarov <vmakarov@redhat.com> | 2001-08-30 20:44:51 +0000 |
---|---|---|
committer | Vladimir Makarov <vmakarov@gcc.gnu.org> | 2001-08-30 20:44:51 +0000 |
commit | b8ec576419e8dd1e335dd16d22a0cd7a9b1865e0 (patch) | |
tree | 9cc1dc4a63e4c3af0ab3e68c017e773ea05dec6f /gcc/rtl.h | |
parent | 6e4302ec5b8658dbbed93bc09cf45b52aa94766c (diff) | |
download | gcc-b8ec576419e8dd1e335dd16d22a0cd7a9b1865e0.zip gcc-b8ec576419e8dd1e335dd16d22a0cd7a9b1865e0.tar.gz gcc-b8ec576419e8dd1e335dd16d22a0cd7a9b1865e0.tar.bz2 |
rtl.def: Undo my patch commited 2001-08-27.
2001-08-30 Vladimir Makarov <vmakarov@redhat.com>
* rtl.def: Undo my patch commited 2001-08-27.
* genattrtab.c: Ditto.
* rtl.h: Ditto.
* sched-int.h: Ditto.
* target-def.h: Ditto.
* target.h: Ditto.
* haifa-sched.c: Ditto.
* sched-rgn.c: Ditto.
* sched-vis.c: Ditto.
* Makefile.in: Ditto.
* doc/md.texi: Ditto.
* doc/tm.texi: Ditto.
* doc/contrib.texi: Ditto.
* doc/gcc.texi: Ditto.
* genattrtab.h: Remove it.
* genautomata.c: Remove it.
* genattr.c: Undo my patch and Richard Henderson's patch commited
2001-08-27.
From-SVN: r45297
Diffstat (limited to 'gcc/rtl.h')
-rw-r--r-- | gcc/rtl.h | 16 |
1 files changed, 14 insertions, 2 deletions
@@ -110,9 +110,11 @@ struct rtx_def ENUM_BITFIELD(machine_mode) mode : 8; /* 1 in an INSN if it can alter flow of control - within this function. */ + within this function. + LINK_COST_ZERO in an INSN_LIST. */ unsigned int jump : 1; - /* 1 in an INSN if it can call another function. */ + /* 1 in an INSN if it can call another function. + LINK_COST_FREE in an INSN_LIST. */ unsigned int call : 1; /* 1 in a REG if value of this expression will never change during the current function, even though it is not manifestly constant. @@ -897,6 +899,16 @@ extern unsigned int subreg_regno PARAMS ((rtx)); with the preceding insn. */ #define SCHED_GROUP_P(INSN) ((INSN)->in_struct) +/* During sched, for the LOG_LINKS of an insn, these cache the adjusted + cost of the dependence link. The cost of executing an instruction + may vary based on how the results are used. LINK_COST_ZERO is 1 when + the cost through the link varies and is unchanged (i.e., the link has + zero additional cost). LINK_COST_FREE is 1 when the cost through the + link is zero (i.e., the link makes the cost free). In other cases, + the adjustment to the cost is recomputed each time it is needed. */ +#define LINK_COST_ZERO(X) ((X)->jump) +#define LINK_COST_FREE(X) ((X)->call) + /* For a SET rtx, SET_DEST is the place that is set and SET_SRC is the value it is set to. */ #define SET_DEST(RTX) XC2EXP(RTX, 0, SET, CLOBBER) |