Lines Matching full:special
17 // This class extends GVNFlagSet with additional "special" dynamic side effects,
19 // the GVNFlags of an HInstruction. These special side effects are tracked by a
33 bool ContainsSpecial(int special) const {
34 return (bits_ & MaskSpecial(special)) != 0;
38 void AddSpecial(int special) { bits_ |= MaskSpecial(special); }
47 uint64_t MaskSpecial(int special) const {
48 DCHECK(special >= 0);
49 DCHECK(special < kNumberOfSpecials);
51 special + kNumberOfFlags);
61 // fashion, and represents them using the "special" dynamic side effects of the