Home | History | Annotate | Download | only in TableGen

Lines Matching defs:Mixed

225   bool Mixed; // a mixed region contains both set and unset bits
257 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
464 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
495 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
503 bool mixed)
504 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
1386 bool mixed) {
1447 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED.
1453 // (ALL_SET) ---- _ ----> (MIXED)
1454 // (ALL_UNSET) -- [01] -> (MIXED)
1456 // (MIXED) ------ . ----> (MIXED)
1502 // States: NONE, ALL_SET, MIXED
1508 // (NONE) ----- M --> (MIXED) ; and set region start
1512 // (ALL_SET) -- M --> (MIXED) ; and report an ALL_SET region
1513 // (MIXED) ---- F --> (NONE) ; and report a MIXED region
1514 // (MIXED) ---- S --> (ALL_SET) ; and report a MIXED region
1515 // (MIXED) ---- U --> (NONE) ; and report a MIXED region
1516 // (MIXED) ---- M --> (MIXED)
1595 // At the end, if we're still in ALL_SET or MIXED states, report a region
1646 // Then regions of mixed bits (both known and unitialized bit values allowed).