Home | History | Annotate | Download | only in TableGen

Lines Matching refs:Modes

102   SmallDenseSet<unsigned, 4> Modes;
105 Modes.insert(M);
111 // modes in "this" that do not exist in VVT.
112 if (Modes.count(DefaultMode)) {
115 if (!Modes.count(I.first))
168 SmallVector<unsigned, 4> Modes;
169 Modes.reserve(Map.size());
172 Modes.push_back(I.first);
173 if (Modes.empty()) {
177 array_pod_sort(Modes.begin(), Modes.end());
180 for (unsigned M : Modes) {
211 SmallDenseSet<unsigned, 4> Modes;
213 Modes.insert(I.first);
215 Modes.insert(I.first);
219 for (unsigned M : Modes) {
225 for (unsigned M : Modes) {
455 std::vector<unsigned> Modes = union_modes(Small, Big);
461 for (unsigned M : Modes) {
511 for (unsigned M : Modes) {
798 // Stuff all types from all modes into the default mode.
4095 static void collectModes(std::set<unsigned> &Modes, const TreePatternNode *N) {
4098 Modes.insert(I.first);
4101 collectModes(Modes, N->getChild(i));
4137 std::set<unsigned> Modes;
4139 collectModes(Modes, SrcP.get());
4141 collectModes(Modes, DstP.get());
4145 // Since not all modes must be present in each pattern, if a mode m is
4148 // mode, except not all modes' predicates would be a part of the checking
4156 for (unsigned M : Modes) {
4170 for (unsigned M : Modes) {
4176 bool HasDefault = Modes.count(DefaultMode);