public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
* Understanding tree_swap_operands_p wrt SSA name versions
@ 2018-06-19 18:55 Michael Ploujnikov
  2018-06-20  7:50 ` Jeff Law
  0 siblings, 1 reply; 12+ messages in thread
From: Michael Ploujnikov @ 2018-06-19 18:55 UTC (permalink / raw)
  To: gcc


[-- Attachment #1.1: Type: text/plain, Size: 1167 bytes --]

Hi everyone,

(I hope this is the right place to ask, if not my apologies; please
point me in the right direction)

I'm trying to get a better understanding of the following part in
tree_swap_operands_p():

  /* It is preferable to swap two SSA_NAME to ensure a canonical form
     for commutative and comparison operators.  Ensuring a canonical
     form allows the optimizers to find additional redundancies without
     having to explicitly check for both orderings.  */
  if (TREE_CODE (arg0) == SSA_NAME
      && TREE_CODE (arg1) == SSA_NAME
      && SSA_NAME_VERSION (arg0) > SSA_NAME_VERSION (arg1))
    return 1;

My questions in no particular order: It looks like this was added in
2004. I couldn't find any info other than what's in the corresponding
commit (cc0bdf913) so I'm wondering if the canonical form/order still
relevant/needed today? Does the ordering have to be done based on the
name versions specifically? Or can it be based on something more
intrinsic to the input source code rather than a GCC internal value, eg:
would alphabetic sort order of the variable names be a reasonable
replacement?

Thanks,
- Michael


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2018-07-17  9:51 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-19 18:55 Understanding tree_swap_operands_p wrt SSA name versions Michael Ploujnikov
2018-06-20  7:50 ` Jeff Law
2018-06-20 11:35   ` Richard Biener
2018-07-03 14:57     ` Michael Ploujnikov
2018-07-03 16:46       ` Richard Biener
2018-07-03 17:55         ` Michael Ploujnikov
2018-07-03 19:09           ` Jeff Law
2018-07-04  8:53             ` Richard Biener
2018-07-15 22:19               ` Michael Ploujnikov
2018-07-16  8:31                 ` Richard Biener
2018-07-17  3:20                   ` Michael Ploujnikov
2018-07-17  9:51                     ` Richard Biener

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).