123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560 |
- /* Optimize by combining instructions for GNU compiler.
- Copyright (C) 1987 Free Software Foundation, Inc.
- This file is part of GNU CC.
- GNU CC is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY. No author or distributor
- accepts responsibility to anyone for the consequences of using it
- or for whether it serves any particular purpose or works at all,
- unless he says so in writing. Refer to the GNU CC General Public
- License for full details.
- Everyone is granted permission to copy, modify and redistribute
- GNU CC, but only under the conditions described in the
- GNU CC General Public License. A copy of this license is
- supposed to have been given to you along with GNU CC so you
- can know your rights and responsibilities. It should be in a
- file named COPYING. Among other things, the copyright notice
- and this notice must be preserved on all copies. */
- /* This module is essentially the "combiner" phase of the U. of Arizona
- Portable Optimizer, but redone to work on our list-structured
- representation for RTL instead of their string representation.
- The LOG_LINKS of each insn identify the most recent assignment
- to each REG used in the insn. It is a list of previous insns,
- each of which contains a SET for a REG that is used in this insn
- and not used or set in between. LOG_LINKs never cross basic blocks.
- They were set up by the preceding pass (lifetime analysis).
- We try to combine each pair of insns joined by a logical link.
- We also try to combine triples of insns A, B and C when
- C has a link back to B and B has a link back to A.
- LOG_LINKS does not have links for use of the CC0. They don't
- need to, because the insn that sets the CC0 is always immediately
- before the insn that tests it. So we always regard a branch
- insn as having a logical link to the preceding insn.
- We check (with use_crosses_set_p) to avoid combining in such a way
- as to move a computation to a place where its value would be different.
- Combination is done by mathematically substituting the previous
- insn(s) values for the regs they set into the expressions in
- the later insns that refer to these regs. If the result is a valid insn
- for our target machine, according to the machine description,
- we install it, delete the earlier insns, and update the data flow
- information (LOG_LINKS and REG_NOTES) for what we did.
- To simplify substitution, we combine only when the earlier insn(s)
- consist of only a single assignment. To simplify updating afterward,
- we never combine when a subroutine call appears in the middle.
- Since we do not represent assignments to CC0 explicitly except when that
- is all an insn does, there is no LOG_LINKS entry in an insn that uses
- the condition code for the insn that set the condition code.
- Fortunately, these two insns must be consecutive.
- Therefore, every JUMP_INSN is taken to have an implicit logical link
- to the preceding insn. This is not quite right, since non-jumps can
- also use the condition code; but in practice such insns would not
- combine anyway. */
- #include "config.h"
- #include "rtl.h"
- #include "regs.h"
- #include "basic-block.h"
- #include "insn-config.h"
- #include "recog.h"
- #define max(A,B) ((A) > (B) ? (A) : (B))
- #define min(A,B) ((A) < (B) ? (A) : (B))
- /* Number of attempts to combine instructions in this function. */
- static int combine_attempts;
- /* Number of attempts that got as far as substitution in this function. */
- static int combine_merges;
- /* Number of instructions combined with added SETs in this function. */
- static int combine_extras;
- /* Number of instructions combined in this function. */
- static int combine_successes;
- /* Totals over entire compilation. */
- static int total_attempts, total_merges, total_extras, total_successes;
- /* Vector mapping INSN_UIDs to cuids.
- The cuids are like uids but increase monononically always.
- Combine always uses cuids so that it can compare them.
- But actually renumbering the uids, which we used to do,
- proves to be a bad idea because it makes it hard to compare
- the dumps produced by earlier passes with those from later passes. */
- static short *uid_cuid;
- /* Get the cuid of an insn. */
- #define INSN_CUID(INSN) (uid_cuid[INSN_UID (INSN)])
- /* Record last point of death of (hard or pseudo) register n. */
- static rtx *reg_last_death;
- /* Record last point of modification of (hard or pseudo) register n. */
- static rtx *reg_last_set;
- /* Record the cuid of the last insn that invalidated memory
- (anything that writes memory, and subroutine calls). */
- static int mem_last_set;
- /* Record the cuid of the last CALL_INSN
- so we can tell whether a potential combination crosses any calls. */
- static int last_call_cuid;
- /* When `subst' is called, this is the insn that is being modified
- (by combining in a previous insn). The PATTERN of this insn
- is still the old pattern partially modified and it should not be
- looked at, but this may be used to examine the successors of the insn
- to judge whether a simplification is valid. */
- static rtx subst_insn;
- /* Record one modification to rtl structure
- to be undone by storing old_contents into *where. */
- struct undo
- {
- rtx *where;
- rtx old_contents;
- };
- /* Record a bunch of changes to be undone, up to MAX_UNDO of them.
- num_undo says how many are currently recorded.
- storage is nonzero if we must undo the allocation of new storage.
- The value of storage is what to pass to obfree. */
- #define MAX_UNDO 10
- struct undobuf
- {
- int num_undo;
- char *storage;
- struct undo undo[MAX_UNDO];
- };
- static struct undobuf undobuf;
- static void move_deaths ();
- static void remove_death ();
- static void record_dead_and_set_regs ();
- int regno_dead_p ();
- static int reg_set_in_range_p ();
- static int use_crosses_set_p ();
- static rtx subst ();
- static void undo_all ();
- static void add_links ();
- static void add_incs ();
- static int adjacent_insns_p ();
- static rtx simplify_and_const_int ();
- static rtx gen_lowpart_for_combine ();
- static void simplify_set_cc0_and ();
- /* Main entry point for combiner. F is the first insn of the function.
- NREGS is the first unused pseudo-reg number. */
- void
- combine_instructions (f, nregs)
- rtx f;
- int nregs;
- {
- register rtx insn;
- register int i;
- register rtx links, nextlinks;
- rtx prev;
- combine_attempts = 0;
- combine_merges = 0;
- combine_extras = 0;
- combine_successes = 0;
- reg_last_death = (rtx *) alloca (nregs * sizeof (rtx));
- reg_last_set = (rtx *) alloca (nregs * sizeof (rtx));
- bzero (reg_last_death, nregs * sizeof (rtx));
- bzero (reg_last_set, nregs * sizeof (rtx));
- init_recog ();
- /* Compute maximum uid value so uid_cuid can be allocated. */
- for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
- if (INSN_UID (insn) > i)
- i = INSN_UID (insn);
- uid_cuid = (short *) alloca ((i + 1) * sizeof (short));
- /* Compute the mapping from uids to cuids.
- Cuids are numbers assigned to insns, like uids,
- except that cuids increase monotonically through the code. */
- for (insn = f, i = 0; insn; insn = NEXT_INSN (insn))
- INSN_CUID (insn) = ++i;
- /* Now scan all the insns in forward order. */
- last_call_cuid = 0;
- mem_last_set = 0;
- prev = 0;
- for (insn = f; insn; insn = NEXT_INSN (insn))
- {
- if (GET_CODE (insn) == INSN
- || GET_CODE (insn) == CALL_INSN
- || GET_CODE (insn) == JUMP_INSN)
- {
- retry:
- /* Try this insn with each insn it links back to. */
- for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
- if (try_combine (insn, XEXP (links, 0), 0))
- goto retry;
- /* Try each sequence of three linked insns ending with this one. */
- for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
- if (GET_CODE (XEXP (links, 0)) != NOTE)
- for (nextlinks = LOG_LINKS (XEXP (links, 0)); nextlinks;
- nextlinks = XEXP (nextlinks, 1))
- if (try_combine (insn, XEXP (links, 0), XEXP (nextlinks, 0)))
- goto retry;
- /* Try to combine a jump insn that uses CC0
- with a preceding insn that sets CC0, and maybe with its
- logical predecessor as well.
- This is how we make decrement-and-branch insns.
- We need this special code because data flow connections
- via CC0 do not get entered in LOG_LINKS. */
- if (GET_CODE (insn) == JUMP_INSN
- && prev != 0
- && GET_CODE (prev) == INSN
- && GET_CODE (PATTERN (prev)) == SET
- && GET_CODE (SET_DEST (PATTERN (prev))) == CC0)
- {
- if (try_combine (insn, prev, 0))
- goto retry;
- if (GET_CODE (prev) != NOTE)
- for (nextlinks = LOG_LINKS (prev); nextlinks;
- nextlinks = XEXP (nextlinks, 1))
- if (try_combine (insn, prev, XEXP (nextlinks, 0)))
- goto retry;
- }
- #if 0
- /* Turned off because on 68020 it takes four insns to make
- something like (a[b / 32] & (1 << (31 - (b % 32)))) != 0
- that could actually be optimized, and that's an unlikely piece of code. */
- /* If an insn gets or sets a bit field, try combining it
- with two different insns whose results it uses. */
- if (GET_CODE (insn) == INSN
- && GET_CODE (PATTERN (insn)) == SET
- && (GET_CODE (SET_DEST (PATTERN (insn))) == ZERO_EXTRACT
- || GET_CODE (SET_DEST (PATTERN (insn))) == SIGN_EXTRACT
- || GET_CODE (SET_SRC (PATTERN (insn))) == ZERO_EXTRACT
- || GET_CODE (SET_SRC (PATTERN (insn))) == SIGN_EXTRACT))
- {
- for (links = LOG_LINKS (insn); links; links = XEXP (links, 1))
- if (GET_CODE (XEXP (links, 0)) != NOTE)
- for (nextlinks = XEXP (links, 1); nextlinks;
- nextlinks = XEXP (nextlinks, 1))
- if (try_combine (insn, XEXP (links, 0), XEXP (nextlinks, 0)))
- goto retry;
- }
- #endif
- record_dead_and_set_regs (insn);
- prev = insn;
- }
- else if (GET_CODE (insn) != NOTE)
- prev = 0;
- }
- total_attempts += combine_attempts;
- total_merges += combine_merges;
- total_extras += combine_extras;
- total_successes += combine_successes;
- }
- /* Try to combine the insns I1 and I2 into I3.
- Here I1 appears earlier than I2, which is earlier than I3.
- I1 can be zero; then we combine just I2 into I3.
-
- Return 1 if successful; if that happens, I1 and I2 are pseudo-deleted
- by turning them into NOTEs, and I3 is modified.
- Return 0 if the combination does not work. Then nothing is changed. */
- static int
- try_combine (i3, i2, i1)
- register rtx i3, i2, i1;
- {
- register rtx newpat;
- int added_sets_1 = 0;
- int added_sets_2 = 0;
- int total_sets;
- int i2_is_used;
- register rtx link;
- int insn_code_number;
- int recog_flags = 0;
- rtx i2dest, i2src;
- rtx i1dest, i1src;
- combine_attempts++;
- /* Don't combine with something already used up by combination. */
- if (GET_CODE (i2) == NOTE
- || (i1 && GET_CODE (i1) == NOTE))
- return 0;
- /* Don't combine across a CALL_INSN, because that would possibly
- change whether the life span of some REGs crosses calls or not,
- and it is a pain to update that information. */
- if (INSN_CUID (i2) < last_call_cuid
- || (i1 && INSN_CUID (i1) < last_call_cuid))
- return 0;
- /* Can combine only if previous insn is a SET of a REG, a SUBREG or CC0.
- That REG must be either set or dead by the final instruction
- (so that we can safely forget about setting it).
- Also test use_crosses_set_p to make sure that the value
- that is to be substituted for the register
- does not use any registers whose values alter in between.
- Do not try combining with moves from one register to another
- since it is better to let them be tied by register allocation.
- A set of a SUBREG is considered as if it were a set from
- SUBREG. Thus, (SET (SUBREG:X (REG:Y...)) (something:X...))
- is handled by substituting (SUBREG:Y (something:X...)) for (REG:Y...). */
- if (GET_CODE (PATTERN (i2)) != SET)
- return 0;
- i2dest = SET_DEST (PATTERN (i2));
- i2src = SET_SRC (PATTERN (i2));
- if (GET_CODE (i2dest) == SUBREG)
- {
- i2dest = SUBREG_REG (i2dest);
- i2src = gen_rtx (SUBREG, GET_MODE (i2dest), i2src, 0);
- }
- if (GET_CODE (i2dest) != CC0
- && (GET_CODE (i2dest) != REG
- || GET_CODE (i2src) == REG
- || use_crosses_set_p (i2src, INSN_CUID (i2))))
- return 0;
- if (i1 != 0)
- {
- if (GET_CODE (PATTERN (i1)) != SET)
- return 0;
- i1dest = SET_DEST (PATTERN (i1));
- i1src = SET_SRC (PATTERN (i1));
- if (GET_CODE (i1dest) == SUBREG)
- {
- i1dest = SUBREG_REG (i1dest);
- i1src = gen_rtx (SUBREG, GET_MODE (i1dest), i1src, 0);
- }
- if (GET_CODE (i1dest) != CC0
- && (GET_CODE (i1dest) != REG
- || GET_CODE (i1src) == REG
- || use_crosses_set_p (i1src, INSN_CUID (i1))))
- return 0;
- }
- /* If I1 or I2 contains an autoincrement or autodecrement,
- make sure that register is not used between there and I3.
- Also insist that I3 not be a jump; if it were one
- and the incremented register were spilled, we would lose. */
- for (link = REG_NOTES (i2); link; link = XEXP (link, 1))
- if ((enum reg_note) GET_MODE (link) == REG_INC)
- if (GET_CODE (i3) == JUMP_INSN
- || reg_used_between_p (XEXP (link, 0), i2, i3))
- return 0;
- if (i1)
- for (link = REG_NOTES (i1); link; link = XEXP (link, 1))
- if ((enum reg_note) GET_MODE (link) == REG_INC)
- if (GET_CODE (i3) == JUMP_INSN
- || reg_used_between_p (XEXP (link, 0), i1, i3))
- return 0;
- /* See if the SETs in i1 or i2 need to be kept around in the merged
- instruction: whenever the value set there is still needed past i3. */
- added_sets_2 = (GET_CODE (i2dest) != CC0
- && ! dead_or_set_p (i3, i2dest));
- if (i1)
- added_sets_1 = ! (dead_or_set_p (i3, i1dest)
- || dead_or_set_p (i2, i1dest));
- combine_merges++;
- undobuf.num_undo = 0;
- undobuf.storage = 0;
- /* Substitute in the latest insn for the regs set by the earlier ones. */
- subst_insn = i3;
- newpat = subst (PATTERN (i3), i2dest, i2src);
- /* Record whether i2's body now appears within i3's body. */
- i2_is_used = undobuf.num_undo;
- if (i1)
- newpat = subst (newpat, i1dest, i1src);
- if (GET_CODE (PATTERN (i3)) == SET
- && SET_DEST (PATTERN (i3)) == cc0_rtx
- && GET_CODE (SET_SRC (PATTERN (i3))) == AND
- && next_insn_tests_no_inequality (i3))
- simplify_set_cc0_and (i3);
- /* If the actions of the earler insns must be kept
- in addition to substituting them into the latest one,
- we must make a new PARALLEL for the latest insn
- to hold additional the SETs. */
- if (added_sets_1 || added_sets_2)
- {
- combine_extras++;
- /* Arrange to free later what we allocate now
- if we don't accept this combination. */
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- if (GET_CODE (newpat) == PARALLEL)
- {
- total_sets = XVECLEN (newpat, 0) + added_sets_1 + added_sets_2;
- newpat = gen_rtx (PARALLEL, VOIDmode,
- gen_rtvec_v (total_sets,
- &XVECEXP (newpat, 0, 0)));
- }
- else
- {
- total_sets = 1 + added_sets_1 + added_sets_2;
- newpat = gen_rtx (PARALLEL, VOIDmode,
- gen_rtvec (total_sets, newpat));
- }
- if (added_sets_1)
- {
- XVECEXP (newpat, 0, --total_sets) = PATTERN (i1);
- }
- if (added_sets_2)
- {
- /* If there is no I1, use I2's body as is. */
- if (i1 == 0
- /* If I2 was stuck into I3, then anything within it has
- already had I1 substituted into it when that was done to I3. */
- || i2_is_used)
- {
- XVECEXP (newpat, 0, --total_sets) = PATTERN (i2);
- }
- else
- XVECEXP (newpat, 0, --total_sets)
- = subst (PATTERN (i2), i1dest, i1src);
- }
- }
- /* Is the result of combination a valid instruction? */
- insn_code_number = recog (newpat, i3);
- if (insn_code_number >= 0)
- {
- /* Yes. Install it. */
- register int regno;
- INSN_CODE (i3) = insn_code_number;
- PATTERN (i3) = newpat;
- /* Most REGs that previously died in I2 now die in I3. */
- move_deaths (i2src, INSN_CUID (i2), i3);
- if (GET_CODE (i2dest) == REG)
- {
- /* If the reg formerly set in I2 died only once and that was in I3,
- zero its use count so it won't make `reload' do any work. */
- regno = REGNO (i2dest);
- if (! added_sets_2)
- reg_n_sets[regno]--;
- if (reg_n_sets[regno] == 0 && regno_dead_p (regno, i3))
- reg_n_refs[regno] = 0;
- /* If a ref to REGNO was substituted into I3 from I2,
- then it still dies there if it previously did.
- Otherwise either REGNO never did die in I3 so remove_death is safe
- or this entire life of REGNO is gone so remove its death. */
- if (!added_sets_2
- && ! reg_mentioned_p (i2dest, PATTERN (i3)))
- remove_death (regno, i3);
- }
- /* The data flowing into I2 now flows into I3.
- But we cannot always move I2's LOG_LINKS into I3,
- since they must go to a setting of a REG from the
- first use following. If I2 was the first use following a set,
- I3 is now a use, but it is not the first use
- if some instruction between I2 and I3 is also a use.
- Here, for simplicity, we move the links only if
- there are no real insns between I2 and I3. */
- if (adjacent_insns_p (i2, i3))
- add_links (i3, LOG_LINKS (i2));
- /* Any registers previously autoincremented in I2
- are now incremented in I3. */
- add_incs (i3, REG_NOTES (i2));
- /* Get rid of I2. */
- LOG_LINKS (i2) = 0;
- PUT_CODE (i2, NOTE);
- NOTE_LINE_NUMBER (i2) = NOTE_INSN_DELETED;
- NOTE_SOURCE_FILE (i2) = 0;
- if (i1)
- {
- /* Likewise, merge the info from I1 and get rid of it. */
- move_deaths (i1src, INSN_CUID (i1), i3);
- if (GET_CODE (i1dest) == REG)
- {
- regno = REGNO (i1dest);
- if (! added_sets_1)
- reg_n_sets[regno]--;
- if (reg_n_sets[regno] == 0 && regno_dead_p (regno, i3))
- reg_n_refs[regno] = 0;
- /* If a ref to REGNO was substituted into I3 from I1,
- then it still dies there if it previously did.
- Else either REGNO never did die in I3 so remove_death is safe
- or this entire life of REGNO is gone so remove its death. */
- if (! added_sets_1
- && ! reg_mentioned_p (i1dest, PATTERN (i3)))
- remove_death (regno, i3);
- }
- if (adjacent_insns_p (i2, i3))
- add_links (i3, LOG_LINKS (i1));
- add_incs (i3, REG_NOTES (i1));
- LOG_LINKS (i1) = 0;
- PUT_CODE (i1, NOTE);
- NOTE_LINE_NUMBER (i1) = NOTE_INSN_DELETED;
- NOTE_SOURCE_FILE (i1) = 0;
- }
- combine_successes++;
- return 1;
- }
- /* Failure: change I3 back the way it was. */
- undo_all ();
- return 0;
- }
- /* Undo all the modifications recorded in undobuf. */
- static void
- undo_all ()
- {
- register int i;
- if (undobuf.num_undo > MAX_UNDO)
- undobuf.num_undo = MAX_UNDO;
- for (i = undobuf.num_undo - 1; i >= 0; i--)
- *undobuf.undo[i].where = undobuf.undo[i].old_contents;
- if (undobuf.storage)
- obfree (undobuf.storage);
- undobuf.num_undo = 0;
- undobuf.storage = 0;
- }
- /* Throughout X, replace FROM with TO, and return the result.
- The result is TO if X is FROM;
- otherwise the result is X, but its contents may have been modified.
- If they were modified, a record was made in undobuf so that
- undo_all will (among other things) return X to its original state.
- If the number of changes necessary is too much to record to undo,
- the excess changes are not made, so the result is invalid.
- The changes already made can still be undone.
- undobuf.num_undo is incremented for such changes, so by testing that
- the caller can tell whether the result is valid. */
- static rtx
- subst (x, from, to)
- register rtx x, from, to;
- {
- register char *fmt;
- register int len, i;
- register enum rtx_code code;
- /* THIS_TO is used to replace FROM if it appears exactly one
- level down in X. Simplifications often work by changing
- THIS_TO after observing that FROM appears in a specific way
- one level down in X. Since only THIS_TO is changed, and TO
- is left alone, further occurrences of FROM within the operands
- of X are replaced normally. */
- rtx this_to;
- if (x == from)
- return to;
- code = GET_CODE (x);
- this_to = to;
- /* A little bit of algebraic simplification here. */
- switch (code)
- {
- /* This case has no effect except to speed things up. */
- case REG:
- case CONST_INT:
- case CONST:
- case SYMBOL_REF:
- case LABEL_REF:
- case PC:
- case CC0:
- return x;
- case NOT:
- case NEG:
- /* Don't let substitution introduce double-negatives. */
- if (XEXP (x, 0) == from
- && GET_CODE (to) == code)
- return XEXP (to, 0);
- break;
- case PLUS:
- /* In (plus <foo> (ashift <bar> <n>))
- change the shift to a multiply so we can recognize
- scaled indexed addresses. */
- if ((XEXP (x, 0) == from
- || XEXP (x, 1) == from)
- && GET_CODE (to) == ASHIFT
- && GET_CODE (XEXP (to, 1)) == CONST_INT)
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- this_to = gen_rtx (MULT, GET_MODE (to),
- XEXP (to, 0),
- gen_rtx (CONST_INT, VOIDmode,
- 1 << INTVAL (XEXP (to, 1))));
- }
- /* If we have something (putative index) being added to a sum,
- associate it so that any constant term is outermost.
- That's because that's the way indexed addresses are
- now supposed to appear. */
- if (((XEXP (x, 0) == from && GET_CODE (XEXP (x, 1)) == PLUS)
- || (XEXP (x, 1) == from && GET_CODE (XEXP (x, 0)) == PLUS))
- ||
- ((XEXP (x, 0) == from || XEXP (x, 1) == from)
- && GET_CODE (this_to) == PLUS))
- {
- rtx offset = 0, base, index;
- if (GET_CODE (this_to) != PLUS)
- {
- index = this_to;
- base = XEXP (x, 0) == from ? XEXP (x, 1) : XEXP (x, 0);
- }
- else
- {
- index = XEXP (x, 0) == from ? XEXP (x, 1) : XEXP (x, 0);
- base = this_to;
- }
- if (CONSTANT_ADDRESS_P (XEXP (base, 0)))
- {
- offset = XEXP (base, 0);
- base = XEXP (base, 1);
- }
- else if (CONSTANT_ADDRESS_P (XEXP (base, 1)))
- {
- offset = XEXP (base, 1);
- base = XEXP (base, 0);
- }
- if (offset != 0)
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (PLUS, GET_MODE (index), offset,
- gen_rtx (PLUS, GET_MODE (index),
- index, base));
- }
- }
- break;
- case MINUS:
- /* Can simplify (minus:VOIDmode (zero/sign_extend FOO) CONST)
- (which is a compare instruction, not a subtract instruction)
- to (minus FOO CONST) if CONST fits in FOO's mode
- and we are only testing equality.
- In fact, this is valid for zero_extend if what follows is an
- unsigned comparison, and for sign_extend with a signed comparison. */
- if (GET_MODE (x) == VOIDmode
- && XEXP (x, 0) == from
- && (GET_CODE (to) == ZERO_EXTEND || GET_CODE (to) == SIGN_EXTEND)
- && next_insn_tests_no_inequality (subst_insn)
- && GET_CODE (XEXP (x, 1)) == CONST_INT
- && ((unsigned) INTVAL (XEXP (x, 1))
- < (1 << (BITS_PER_UNIT * GET_MODE_SIZE (GET_MODE (XEXP (to, 0)))))))
- this_to = XEXP (to, 0);
- break;
- case EQ:
- case NE:
- /* If comparing a subreg against zero, discard the subreg. */
- if (XEXP (x, 0) == from
- && GET_CODE (to) == SUBREG
- && SUBREG_WORD (to) == 0
- && XEXP (x, 1) == const0_rtx)
- this_to = SUBREG_REG (to);
- /* If comparing a ZERO_EXTRACT against zero,
- canonicalize to a SIGN_EXTRACT,
- since the two are equivalent here. */
- if (XEXP (x, 0) == from
- && GET_CODE (this_to) == ZERO_EXTRACT
- && XEXP (x, 1) == const0_rtx)
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- this_to = gen_rtx (SIGN_EXTRACT, GET_MODE (this_to),
- XEXP (this_to, 0), XEXP (this_to, 1),
- XEXP (this_to, 2));
- }
- /* If we are putting (ASHIFT 1 x) into (EQ (AND ... y) 0),
- arrange to return (EQ (SIGN_EXTRACT y 1 x) 0),
- which is what jump-on-bit instructions are written with. */
- else if (XEXP (x, 1) == const0_rtx
- && GET_CODE (XEXP (x, 0)) == AND
- && (XEXP (XEXP (x, 0), 0) == from
- || XEXP (XEXP (x, 0), 1) == from)
- && GET_CODE (this_to) == ASHIFT
- && XEXP (this_to, 0) == const1_rtx)
- {
- register rtx y = XEXP (XEXP (x, 0),
- XEXP (XEXP (x, 0), 0) == from);
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- this_to = gen_rtx (SIGN_EXTRACT, GET_MODE (this_to),
- y,
- const1_rtx, XEXP (this_to, 1));
- from = XEXP (x, 0);
- }
- break;
- case ZERO_EXTEND:
- if (XEXP (x, 0) == from
- && GET_CODE (to) == ZERO_EXTEND)
- this_to = XEXP (to, 0);
- /* Zero-extending the result of an and with a constant can be done
- with a wider and. */
- if (XEXP (x, 0) == from
- && GET_CODE (to) == AND
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && (GET_CODE (XEXP (to, 0)) == REG
- || offsetable_address_p (XEXP (to, 0)))
- /* Avoid getting wrong result if the constant has high bits set
- that are irrelevant in the narrow mode where it is being used. */
- && ((INTVAL (XEXP (to, 1))
- & (-1 << (GET_MODE_SIZE (GET_MODE (to)) * BITS_PER_UNIT)))
- == 0))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (AND, GET_MODE (x),
- gen_lowpart (GET_MODE (x), XEXP (to, 0)),
- XEXP (to, 1));
- }
- break;
- case SIGN_EXTEND:
- if (XEXP (x, 0) == from
- && GET_CODE (to) == SIGN_EXTEND)
- this_to = XEXP (to, 0);
- /* Sign-extending the result of an and with a constant can be done
- with a wider and, provided the high bit of the constant is 0. */
- if (XEXP (x, 0) == from
- && GET_CODE (to) == AND
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && (GET_CODE (XEXP (to, 0)) == REG
- || offsetable_address_p (XEXP (to, 0)))
- && ((INTVAL (XEXP (to, 1))
- & (-1 << (GET_MODE_SIZE (GET_MODE (to)) * BITS_PER_UNIT - 1)))
- == 0))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (AND, GET_MODE (x),
- gen_lowpart (GET_MODE (x), XEXP (to, 0)),
- XEXP (to, 1));
- }
- break;
- case SET:
- /* In (set (zero-extract <x> <1> <y>) (and <foo> <1>))
- the `and' can be deleted. This can happen when storing a bit
- that came from a set-flag insn followed by masking to one bit.
- There is probably no need to optimize other field widths similarly
- because on machines with bit-field insns `and' is not needed
- to extract the fields. */
- if (GET_CODE (XEXP (x, 0)) == ZERO_EXTRACT
- && XEXP (XEXP (x, 0), 1) == const1_rtx
- && XEXP (x, 1) == from
- && GET_CODE (to) == AND
- && XEXP (to, 1) == const1_rtx)
- {
- this_to = XEXP (to, 0);
- }
- break;
- case AND:
- if (GET_CODE (XEXP (x, 1)) == CONST_INT)
- {
- rtx tem = simplify_and_const_int (x, from, to);
- if (tem)
- return tem;
- }
- break;
- case FLOAT:
- /* (float (sign_extend <X>)) = (float <X>). */
- if (XEXP (x, 0) == from
- && GET_CODE (to) == SIGN_EXTEND)
- this_to = XEXP (to, 0);
- break;
- case ZERO_EXTRACT:
- /* Extracting a single bit from the result of a shift:
- see which bit it was before the shift and extract that directly. */
- if (XEXP (x, 0) == from
- && (GET_CODE (to) == ASHIFTRT || GET_CODE (to) == LSHIFTRT
- || GET_CODE (to) == ASHIFT || GET_CODE (to) == LSHIFT)
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && XEXP (x, 1) == const1_rtx
- && GET_CODE (XEXP (x, 2)) == CONST_INT)
- {
- int shift = INTVAL (XEXP (to, 1));
- int newpos;
- if (GET_CODE (to) == ASHIFT || GET_CODE (to) == LSHIFT)
- shift = - shift;
- #ifdef BITS_BIG_ENDIAN
- shift = - shift;
- #endif
- newpos = INTVAL (XEXP (x, 2)) + shift;
- if (newpos >= 0 &&
- newpos < BITS_PER_UNIT * GET_MODE_SIZE (GET_MODE (from)))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (ZERO_EXTRACT, GET_MODE (x),
- XEXP (to, 0), const1_rtx,
- gen_rtx (CONST_INT, VOIDmode, newpos));
- }
- }
- break;
- case LSHIFTRT:
- case ASHIFTRT:
- case ROTATE:
- case ROTATERT:
- #ifdef SHIFT_COUNT_TRUNCATED
- /* (lshift <X> (sign_extend <Y>)) = (lshift <X> <Y>) (most machines).
- True for all kinds of shifts and also for zero_extend. */
- if (XEXP (x, 1) == from
- && (GET_CODE (to) == SIGN_EXTEND
- || GET_CODE (to) == ZERO_EXTEND))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- this_to = gen_rtx (SUBREG, GET_MODE (to), XEXP (to, 0), 0);
- }
- #endif
- /* Two shifts in a row of same kind
- in same direction with constant counts
- may be combined. */
- if (XEXP (x, 0) == from
- && GET_CODE (to) == GET_CODE (x)
- && GET_CODE (XEXP (x, 1)) == CONST_INT
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && INTVAL (XEXP (to, 1)) > 0
- && INTVAL (XEXP (x, 1)) > 0
- && (INTVAL (XEXP (x, 1)) + INTVAL (XEXP (to, 1))
- < BITS_PER_UNIT * GET_MODE_SIZE (GET_MODE (x))))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (GET_CODE (x), GET_MODE (x),
- XEXP (to, 0),
- gen_rtx (CONST_INT, VOIDmode,
- INTVAL (XEXP (x, 1))
- + INTVAL (XEXP (to, 1))));
- }
- break;
- case LSHIFT:
- case ASHIFT:
- #ifdef SHIFT_COUNT_TRUNCATED
- /* (lshift <X> (sign_extend <Y>)) = (lshift <X> <Y>) (most machines).
- True for all kinds of shifts and also for zero_extend. */
- if (XEXP (x, 1) == from
- && (GET_CODE (to) == SIGN_EXTEND
- || GET_CODE (to) == ZERO_EXTEND))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- this_to = gen_rtx (SUBREG, GET_MODE (to), XEXP (to, 0), 0);
- }
- #endif
- /* (lshift (and (lshiftrt <foo> <X>) <Y>) <X>)
- happens copying between bit fields in similar structures.
- It can be replaced by one and instruction.
- It does not matter whether the shifts are logical or arithmetic. */
- if (GET_CODE (XEXP (x, 0)) == AND
- && GET_CODE (XEXP (x, 1)) == CONST_INT
- && INTVAL (XEXP (x, 1)) > 0
- && GET_CODE (XEXP (XEXP (x, 0), 1)) == CONST_INT
- && XEXP (XEXP (x, 0), 0) == from
- && (GET_CODE (to) == LSHIFTRT
- || GET_CODE (to) == ASHIFTRT)
- #if 0
- /* I now believe this restriction is unnecessary.
- The outer shift will discard those bits in any case, right? */
- /* If inner shift is arithmetic, either it shifts left or
- the bits it shifts the sign into are zeroed by the and. */
- && (INTVAL (XEXP (x, 1)) < 0
- || ((unsigned) INTVAL (XEXP (XEXP (x, 0), 1))
- < 1 << (GET_MODE_BITSIZE (GET_MODE (x))
- - INTVAL (XEXP (x, 0)))))
- #endif
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && INTVAL (XEXP (x, 1)) == INTVAL (XEXP (to, 1)))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- /* The constant in the new `and' is <Y> << <X>
- but clear out all bits that don't belong in our mode. */
- return gen_rtx (AND, GET_MODE (x), XEXP (to, 0),
- gen_rtx (CONST_INT, VOIDmode,
- (GET_MODE_MASK (GET_MODE (x))
- & ((GET_MODE_MASK (GET_MODE (x))
- & INTVAL (XEXP (XEXP (x, 0), 1)))
- << INTVAL (XEXP (x, 1))))));
- }
- /* Two shifts in a row in same direction with constant counts
- may be combined. */
- if (XEXP (x, 0) == from
- && (GET_CODE (to) == ASHIFT || GET_CODE (to) == LSHIFT)
- && GET_CODE (XEXP (x, 1)) == CONST_INT
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && INTVAL (XEXP (to, 1)) > 0
- && INTVAL (XEXP (x, 1)) > 0
- && (INTVAL (XEXP (x, 1)) + INTVAL (XEXP (to, 1))
- < BITS_PER_UNIT * GET_MODE_SIZE (GET_MODE (x))))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (GET_CODE (x), GET_MODE (x),
- XEXP (to, 0),
- gen_rtx (CONST_INT, VOIDmode,
- INTVAL (XEXP (x, 1))
- + INTVAL (XEXP (to, 1))));
- }
- /* (ashift (ashiftrt <foo> <X>) <X>)
- (or, on some machines, (ashift (ashift <foo> <-X>) <X>) instead)
- happens if you divide by 2**N and then multiply by 2**N.
- It can be replaced by one `and' instruction.
- It does not matter whether the shifts are logical or arithmetic. */
- if (GET_CODE (XEXP (x, 1)) == CONST_INT
- && INTVAL (XEXP (x, 1)) > 0
- && XEXP (x, 0) == from
- && (((GET_CODE (to) == LSHIFTRT || GET_CODE (to) == ASHIFTRT)
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && INTVAL (XEXP (x, 1)) == INTVAL (XEXP (to, 1)))
- ||
- ((GET_CODE (to) == LSHIFT || GET_CODE (to) == ASHIFT)
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && INTVAL (XEXP (x, 1)) == - INTVAL (XEXP (to, 1)))))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- /* The constant in the new `and' is <Y> << <X>
- but clear out all bits that don't belong in our mode. */
- return gen_rtx (AND, GET_MODE (x), XEXP (to, 0),
- gen_rtx (CONST_INT, VOIDmode,
- (GET_MODE_MASK (GET_MODE (x))
- & (GET_MODE_MASK (GET_MODE (x))
- << INTVAL (XEXP (x, 1))))));
- }
- }
- len = GET_RTX_LENGTH (code);
- fmt = GET_RTX_FORMAT (code);
- /* Don't replace FROM where it is being stored in rather than used. */
- if (code == SET && SET_DEST (x) == from)
- fmt = "ie";
- for (i = 0; i < len; i++)
- {
- if (fmt[i] == 'E')
- {
- register int j;
- for (j = XVECLEN (x, i) - 1; j >= 0; j--)
- {
- register rtx new;
- if (XVECEXP (x, i, j) == from)
- new = this_to;
- else
- new = subst (XVECEXP (x, i, j), from, to);
- if (new != XVECEXP (x, i, j))
- {
- if (undobuf.num_undo < MAX_UNDO)
- {
- undobuf.undo[undobuf.num_undo].where = &XVECEXP (x, i, j);
- undobuf.undo[undobuf.num_undo].old_contents = XVECEXP (x, i, j);
- XVECEXP (x, i, j) = new;
- }
- undobuf.num_undo++;
- }
- }
- }
- else if (fmt[i] == 'e')
- {
- register rtx new;
- if (XEXP (x, i) == from)
- new = this_to;
- else
- new = subst (XEXP (x, i), from, to);
- if (new != XEXP (x, i))
- {
- if (undobuf.num_undo < MAX_UNDO)
- {
- undobuf.undo[undobuf.num_undo].where = &XEXP (x, i);
- undobuf.undo[undobuf.num_undo].old_contents = XEXP (x, i);
- XEXP (x, i) = new;
- }
- undobuf.num_undo++;
- }
- }
- }
- return x;
- }
- /* This is the AND case of the function subst. */
- static rtx
- simplify_and_const_int (x, from, to)
- rtx x, from, to;
- {
- register rtx varop = XEXP (x, 0);
- register int constop = INTVAL (XEXP (x, 1));
- /* (and (subreg (and <foo> <constant>) 0) <constant>)
- results from an andsi followed by an andqi,
- which happens frequently when storing bit-fields
- on something whose result comes from an andsi. */
- if (GET_CODE (varop) == SUBREG
- && XEXP (varop, 0) == from
- && subreg_lowpart_p (varop)
- && GET_CODE (to) == AND
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- /* Verify that the result of the outer `and'
- is not affected by any bits not defined in the inner `and'.
- True if the outer mode is narrower, or if the outer constant
- masks to zero all the bits that the inner mode doesn't have. */
- && (GET_MODE_SIZE (GET_MODE (x)) < GET_MODE_SIZE (GET_MODE (from))
- || constop & (-1 << (BITS_PER_UNIT * GET_MODE_SIZE (GET_MODE (from)))) == 0))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (AND, GET_MODE (x),
- gen_lowpart (GET_MODE (x), XEXP (to, 0)),
- gen_rtx (CONST_INT, VOIDmode,
- constop
- /* Remember that the bits outside that mode
- are not being changed, so the effect
- is as if they were all 1. */
- & INTVAL (XEXP (to, 1))));
- }
- /* (and (zero_extend <foo>) <constant>)
- often results from storing in a bit-field something
- that was calculated as a short. Replace with a single `and'
- in whose constant all bits not in <foo>'s mode are zero. */
- if (varop == from
- && GET_CODE (to) == ZERO_EXTEND)
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (AND, GET_MODE (x),
- gen_rtx (SUBREG, GET_MODE (x),
- XEXP (to, 0), 0),
- gen_rtx (CONST_INT, VOIDmode,
- constop
- & ((1 << (BITS_PER_UNIT * GET_MODE_SIZE (GET_MODE (XEXP (to, 0))))) - 1)));
- }
- /* (and (sign_extend <foo>) <constant>)
- can be replaced with (and (subreg <foo>) <constant>)
- if <constant> is narrower than <foo>'s mode,
- or with (zero_extend <foo>) if <constant> is a mask for that mode. */
- if (varop == from
- && GET_CODE (to) == SIGN_EXTEND
- && ((unsigned) constop
- <= ((1 << (BITS_PER_UNIT
- * GET_MODE_SIZE (GET_MODE (XEXP (to, 0)))))
- - 1)))
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- if (constop == ((1 << (BITS_PER_UNIT
- * GET_MODE_SIZE (GET_MODE (XEXP (to, 0)))))
- - 1))
- return gen_rtx (ZERO_EXTEND, GET_MODE (x), XEXP (to, 0));
- return gen_rtx (AND, GET_MODE (x),
- gen_rtx (SUBREG, GET_MODE (x),
- XEXP (to, 0), 0),
- XEXP (x, 1));
- }
- /* (and (and <foo> <constant>) <constant>)
- comes from two and instructions in a row. */
- if (varop == from
- && GET_CODE (to) == AND
- && GET_CODE (XEXP (to, 1)) == CONST_INT)
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- return gen_rtx (AND, GET_MODE (x),
- XEXP (to, 0),
- gen_rtx (CONST_INT, VOIDmode,
- constop
- & INTVAL (XEXP (to, 1))));
- }
- /* (and (ashiftrt (ashift FOO N) N) CONST)
- may be simplified to (and FOO CONST) if CONST masks off the bits
- changed by the two shifts. */
- if (GET_CODE (varop) == ASHIFTRT
- && GET_CODE (XEXP (varop, 1)) == CONST_INT
- && XEXP (varop, 0) == from
- && GET_CODE (to) == ASHIFT
- && GET_CODE (XEXP (to, 1)) == CONST_INT
- && INTVAL (XEXP (varop, 1)) == INTVAL (XEXP (to, 1))
- && ((unsigned) constop >> INTVAL (XEXP (varop, 1))) == 0)
- {
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- /* If CONST is a mask for the low byte,
- change this into a zero-extend instruction
- from just the low byte of FOO. */
- if (constop == (1 << BITS_PER_UNIT) - 1)
- {
- rtx temp = gen_lowpart_for_combine (QImode, XEXP (to, 0));
- if (temp)
- return gen_rtx (ZERO_EXTEND, GET_MODE (x), temp);
- }
- return gen_rtx (AND, GET_MODE (x),
- XEXP (to, 0), XEXP (x, 1));
- }
- /* No simplification applies. */
- return 0;
- }
- /* Like gen_lowpart but for use by combine. In combine it is not possible
- to create any new pseudoregs. However, it is safe to create
- invalid memory addresses, because combine will try to recognize
- them and all they will do is make the combine attempt fail.
- Also, return zero if we don't see a way to make a lowpart. */
- static rtx
- gen_lowpart_for_combine (mode, x)
- enum machine_mode mode;
- register rtx x;
- {
- if (GET_CODE (x) == SUBREG || GET_CODE (x) == REG)
- return gen_lowpart (mode, x);
- if (GET_MODE (x) == mode)
- return 0;
- if (GET_CODE (x) == VOLATILE)
- return 0;
- if (GET_CODE (x) == MEM)
- {
- register int offset = 0;
- #ifdef WORDS_BIG_ENDIAN
- offset = (max (GET_MODE_SIZE (GET_MODE (x)), UNITS_PER_WORD)
- - max (GET_MODE_SIZE (mode), UNITS_PER_WORD));
- #endif
- #ifdef BYTES_BIG_ENDIAN
- if (GET_MODE_SIZE (mode) < UNITS_PER_WORD)
- offset -= (GET_MODE_SIZE (mode)
- - min (UNITS_PER_WORD,
- GET_MODE_SIZE (GET_MODE (x))));
- #endif
- return gen_rtx (MEM, mode, plus_constant (XEXP (x, 0),
- offset));
- }
- else
- return 0;
- }
- /* After substitution, if the resulting pattern looks like
- (set (cc0) (and ...)), this function is called to simplify the
- pattern into a bit-field operation if possible. */
- static void
- simplify_set_cc0_and (insn)
- rtx insn;
- {
- register rtx value = XEXP (PATTERN (insn), 1);
- register rtx op0 = XEXP (value, 0);
- register rtx op1 = XEXP (value, 1);
- int offset = 0;
- rtx var = 0;
- rtx bitnum = 0;
- int temp;
- int unit;
- /* Look for a constant power of 2 or a shifted 1
- on either side of the AND. Set VAR to the other side.
- Set BITNUM to the shift count of the 1 (as an rtx).
- Or, if bit number is constant, set OFFSET to the bit number. */
- switch (GET_CODE (op0))
- {
- case CONST_INT:
- temp = exact_log2 (INTVAL (op0));
- if (temp < 0)
- return;
- offset = temp;
- var = op1;
- break;
- case ASHIFT:
- case LSHIFT:
- if (XEXP (op0, 0) == const1_rtx)
- {
- bitnum = XEXP (op0, 1);
- var = op1;
- }
- }
- if (var == 0)
- switch (GET_CODE (op1))
- {
- case CONST_INT:
- temp = exact_log2 (INTVAL (op1));
- if (temp < 0)
- return;
- offset = temp;
- var = op0;
- break;
- case ASHIFT:
- case LSHIFT:
- if (XEXP (op1, 0) == const1_rtx)
- {
- bitnum = XEXP (op1, 1);
- var = op0;
- }
- }
- /* If VAR is 0, we didn't find something recognizable. */
- if (var == 0)
- return;
- if (!undobuf.storage)
- undobuf.storage = (char *) oballoc (0);
- /* If the bit position is currently exactly 0,
- extract a right-shift from the variable portion. */
- if (offset == 0
- && (GET_CODE (var) == ASHIFTRT || GET_CODE (var) == LSHIFTRT))
- {
- bitnum = XEXP (var, 1);
- var = XEXP (var, 0);
- }
- #ifdef BITS_BIG_ENDIAN
- unit = GET_MODE_SIZE (GET_MODE (var)) * BITS_PER_UNIT - 1;
- if (bitnum != 0)
- bitnum = gen_rtx (MINUS, SImode,
- gen_rtx (CONST_INT, VOIDmode, unit), bitnum);
- else
- offset = unit - offset;
- #endif
- if (bitnum == 0)
- bitnum = gen_rtx (CONST_INT, VOIDmode, offset);
- if (GET_CODE (var) == SUBREG && SUBREG_WORD (var) == 0)
- var = SUBREG_REG (var);
- if (undobuf.num_undo < MAX_UNDO)
- {
- undobuf.undo[undobuf.num_undo].where = &XEXP (PATTERN (insn), 1);
- undobuf.undo[undobuf.num_undo].old_contents = value;
- XEXP (PATTERN (insn), 1)
- = gen_rtx (ZERO_EXTRACT, VOIDmode, var, const1_rtx, bitnum);
- }
- undobuf.num_undo++;
- }
- /* Update the records of when each REG was most recently set or killed
- for the things done by INSN. This is the last thing done in processing
- INSN in the combiner loop.
- We update reg_last_set, reg_last_death, and also the similar information
- mem_last_set (which insn most recently modified memory)
- and last_call_cuid (which insn was the most recent subroutine call). */
- static void
- record_dead_and_set_regs (insn)
- rtx insn;
- {
- register rtx link;
- for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
- {
- if ((enum reg_note) GET_MODE (link) == REG_DEAD)
- reg_last_death[REGNO (XEXP (link, 0))] = insn;
- else if ((enum reg_note) GET_MODE (link) == REG_INC)
- reg_last_set[REGNO (XEXP (link, 0))] = insn;
- }
- if (GET_CODE (insn) == CALL_INSN)
- last_call_cuid = mem_last_set = INSN_CUID (insn);
- if (GET_CODE (PATTERN (insn)) == PARALLEL)
- {
- register int i;
- for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
- {
- register rtx elt = XVECEXP (PATTERN (insn), 0, i);
- register enum rtx_code code = GET_CODE (elt);
- if (code == SET || code == CLOBBER)
- {
- if (GET_CODE (XEXP (elt, 0)) == REG)
- reg_last_set[REGNO (XEXP (elt, 0))] = insn;
- else if (GET_CODE (XEXP (elt, 0)) == MEM)
- mem_last_set = INSN_CUID (insn);
- }
- }
- }
- else if (GET_CODE (PATTERN (insn)) == SET
- || GET_CODE (PATTERN (insn)) == CLOBBER)
- {
- register rtx x = XEXP (PATTERN (insn), 0);
- if (GET_CODE (x) == REG)
- reg_last_set[REGNO (x)] = insn;
- else if (GET_CODE (x) == MEM)
- mem_last_set = INSN_CUID (insn);
- }
- }
- /* Return nonzero if expression X refers to a REG or to memory
- that is set in an instruction more recent than FROM_CUID. */
- static int
- use_crosses_set_p (x, from_cuid)
- register rtx x;
- int from_cuid;
- {
- register char *fmt;
- register int i;
- register enum rtx_code code = GET_CODE (x);
- if (code == REG)
- {
- register int regno = REGNO (x);
- return (reg_last_set[regno]
- && INSN_CUID (reg_last_set[regno]) > from_cuid);
- }
- if (code == MEM && mem_last_set > from_cuid)
- return 1;
- fmt = GET_RTX_FORMAT (code);
- for (i = GET_RTX_LENGTH (code); i >= 0; i--)
- {
- if (fmt[i] == 'E')
- {
- register int j;
- for (j = XVECLEN (x, i) - 1; j >= 0; j--)
- if (use_crosses_set_p (XVECEXP (x, i, j), from_cuid))
- return 1;
- }
- else if (fmt[i] == 'e'
- && use_crosses_set_p (XEXP (x, i), from_cuid))
- return 1;
- }
- return 0;
- }
- /* Return nonzero if reg REGNO is marked as dying in INSN. */
- int
- regno_dead_p (regno, insn)
- int regno;
- rtx insn;
- {
- register rtx link;
- for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
- if (REGNO (XEXP (link, 0)) == regno
- && ((enum reg_note) GET_MODE (link) == REG_DEAD
- || (enum reg_note) GET_MODE (link) == REG_INC))
- return 1;
- return 0;
- }
- /* Remove register number REGNO from the dead registers list of INSN. */
- static void
- remove_death (regno, insn)
- int regno;
- rtx insn;
- {
- register rtx link, next;
- while ((link = REG_NOTES (insn))
- && REGNO (XEXP (link, 0)) == regno
- && (enum reg_note) GET_MODE (link) == REG_DEAD)
- REG_NOTES (insn) = XEXP (link, 1);
- if (link)
- while (next = XEXP (link, 1))
- {
- if (REGNO (XEXP (next, 0)) == regno
- && (enum reg_note) GET_MODE (next) == REG_DEAD)
- XEXP (link, 1) = XEXP (next, 1);
- else
- link = next;
- }
- }
- /* Return nonzero if J is the first insn following I,
- not counting labels, line numbers, etc.
- We assume that J follows I. */
- static int
- adjacent_insns_p (i, j)
- rtx i, j;
- {
- register rtx insn;
- for (insn = NEXT_INSN (i); insn != j; insn = NEXT_INSN (insn))
- if (GET_CODE (insn) == INSN
- || GET_CODE (insn) == CALL_INSN
- || GET_CODE (insn) == JUMP_INSN)
- return 0;
- return 1;
- }
- /* Concatenate the list of logical links LINKS
- into INSN's list of logical links.
- Modifies LINKS destructively. */
- static void
- add_links (insn, links)
- rtx insn, links;
- {
- if (LOG_LINKS (insn) == 0)
- LOG_LINKS (insn) = links;
- else
- {
- register rtx next, prev = LOG_LINKS (insn);
- while (next = XEXP (prev, 1))
- prev = next;
- XEXP (prev, 1) = links;
- }
- }
- /* Concatenate the any elements of the list of reg-notes INCS
- which are of type REG_INC
- into INSN's list of reg-notes. */
- static void
- add_incs (insn, incs)
- rtx insn, incs;
- {
- register rtx tail;
- for (tail = incs; tail; tail = XEXP (tail, 1))
- if ((enum reg_note) GET_MODE (tail) == REG_INC)
- REG_NOTES (insn)
- = gen_rtx (EXPR_LIST, REG_INC, XEXP (tail, 0), REG_NOTES (insn));
- }
- /* For each register (hardware or pseudo) used within expression X,
- if its death is in an instruction with cuid
- between FROM_CUID (inclusive) and TO_INSN (exclusive),
- mark it as dead in TO_INSN instead.
- This is done when X is being merged by combination into TO_INSN. */
- static void
- move_deaths (x, from_cuid, to_insn)
- rtx x;
- int from_cuid;
- rtx to_insn;
- {
- register char *fmt;
- register int len, i;
- register enum rtx_code code = GET_CODE (x);
- if (code == REG)
- {
- register rtx where_dead = reg_last_death[REGNO (x)];
- if (where_dead && INSN_CUID (where_dead) >= from_cuid
- && INSN_CUID (where_dead) < INSN_CUID (to_insn))
- {
- remove_death (REGNO (x), reg_last_death[REGNO (x)]);
- if (! dead_or_set_p (to_insn, x))
- REG_NOTES (to_insn)
- = gen_rtx (EXPR_LIST, REG_DEAD, x, REG_NOTES (to_insn));
- }
- return;
- }
- len = GET_RTX_LENGTH (code);
- fmt = GET_RTX_FORMAT (code);
- for (i = 0; i < len; i++)
- {
- if (fmt[i] == 'E')
- {
- register int j;
- for (j = XVECLEN (x, i) - 1; j >= 0; j--)
- move_deaths (XVECEXP (x, i, j), from_cuid, to_insn);
- }
- else if (fmt[i] == 'e')
- move_deaths (XEXP (x, i), from_cuid, to_insn);
- }
- }
- dump_combine_stats (file)
- char *file;
- {
- fprintf
- (file,
- ";; Combiner statistics: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n\n"
- , combine_attempts, combine_merges, combine_extras, combine_successes);
- }
- dump_combine_total_stats (file)
- char *file;
- {
- fprintf
- (file,
- "\n;; Combiner totals: %d attempts, %d substitutions (%d requiring new space),\n;; %d successes.\n",
- total_attempts, total_merges, total_extras, total_successes);
- }
|