reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/TableGen/CodeGenDAGPatterns.h
   62   static unsigned constexpr NumWords = Capacity/WordWidth;
   63   static_assert(NumWords*WordWidth == Capacity,
   91     return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1;
   91     return (Words[T.SimpleTy / WordWidth] >> (T.SimpleTy % WordWidth)) & 1;
   95     Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth);
   95     Words[T.SimpleTy / WordWidth] |= WordType(1) << (T.SimpleTy % WordWidth);
  105     Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth));
  105     Words[T.SimpleTy / WordWidth] &= ~(WordType(1) << (T.SimpleTy % WordWidth));
  144       unsigned SkipWords = P / WordWidth;
  145       unsigned SkipBits = P % WordWidth;
  146       unsigned Count = SkipWords * WordWidth;
  152         W &= maskLeadingOnes<WordType>(WordWidth-SkipBits);
  155         Count += WordWidth;
  163         Count += WordWidth;