Home | History | Annotate | Download | only in TableGen

Lines Matching refs:mixed

224   bool Mixed; // a mixed region contains both set and unset bits
256 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
460 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
491 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed),
499 bool mixed)
500 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) {
1403 bool mixed) {
1463 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED.
1469 // (ALL_SET) ---- _ ----> (MIXED)
1470 // (ALL_UNSET) -- [01] -> (MIXED)
1472 // (MIXED) ------ . ----> (MIXED)
1518 // States: NONE, ALL_SET, MIXED
1524 // (NONE) ----- M --> (MIXED) ; and set region start
1528 // (ALL_SET) -- M --> (MIXED) ; and report an ALL_SET region
1529 // (MIXED) ---- F --> (NONE) ; and report a MIXED region
1530 // (MIXED) ---- S --> (ALL_SET) ; and report a MIXED region
1531 // (MIXED) ---- U --> (NONE) ; and report a MIXED region
1532 // (MIXED) ---- M --> (MIXED)
1611 // At the end, if we're still in ALL_SET or MIXED states, report a region
1662 // Then regions of mixed bits (both known and unitialized bit values allowed).