Chris Lattner 73225fdc51 Teach the grouper some simple tricks about looking contradictory
predicates.  For example if we have:

Scope:
  CheckType i32
    ABC
  CheckType f32
    DEF
  CheckType i32
    GHI

Then we know that we can transform this into:
Scope:
  CheckType i32
    Scope
      ABC
      GHI
  CheckType f32
    DEF

This reorders the check for the 'GHI' predicate above
the check for the 'DEF' predidate.  However it is safe to do this
in this situation because we know that a node cannot have both an
i32 and f32 type.

We're now doing more factoring that the old isel did.

llvm-svn: 97312
2010-02-27 07:49:13 +00:00
..
2009-09-24 06:23:57 +00:00
2009-12-19 20:56:53 +00:00
2007-12-29 20:37:13 +00:00
2009-02-20 23:44:54 +00:00
2009-09-24 06:23:57 +00:00
2010-02-26 21:45:37 +00:00
2007-12-29 20:37:13 +00:00
2007-12-29 20:37:13 +00:00
2009-12-19 20:56:53 +00:00
2009-08-24 03:44:02 +00:00
2009-09-24 06:23:57 +00:00
2007-07-03 21:57:50 +00:00