Home | History | Annotate | Download | only in TableGen

Lines Matching refs: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) {
1381 bool mixed) {
1442 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED.
1448 // (ALL_SET) ---- _ ----> (MIXED)
1449 // (ALL_UNSET) -- [01] -> (MIXED)
1451 // (MIXED) ------ . ----> (MIXED)
1497 // States: NONE, ALL_SET, MIXED
1503 // (NONE) ----- M --> (MIXED) ; and set region start
1507 // (ALL_SET) -- M --> (MIXED) ; and report an ALL_SET region
1508 // (MIXED) ---- F --> (NONE) ; and report a MIXED region
1509 // (MIXED) ---- S --> (ALL_SET) ; and report a MIXED region
1510 // (MIXED) ---- U --> (NONE) ; and report a MIXED region
1511 // (MIXED) ---- M --> (MIXED)
1590 // At the end, if we're still in ALL_SET or MIXED states, report a region
1641 // Then regions of mixed bits (both known and unitialized bit values allowed).