Home | History | Annotate | Download | only in Driver

Lines Matching refs:Kinds

40   unsigned AllAdd = 0;  // All kinds of sanitizers that were turned on
45 unsigned DiagnosedKinds = 0; // All Kinds we have diagnosed up to now.
208 unsigned SanitizerArgs::expandGroups(unsigned Kinds) {
210 #define SANITIZER_GROUP(NAME, ID, ALIAS) if (Kinds & ID##Group) Kinds |= ID;
212 return Kinds;
215 void SanitizerArgs::filterUnsupportedMask(const ToolChain &TC, unsigned &Kinds,
221 unsigned MaskedKinds = Kinds & Mask;
224 Kinds &= ~Mask;
225 // Do we have new kinds to diagnose?
227 // Only diagnose the new kinds.
237 unsigned Kinds,
246 filterUnsupportedMask(TC, Kinds, Thread | Memory | DataFlow, Args, A,
250 filterUnsupportedMask(TC, Kinds, Function, Args, A, DiagnoseErrors,
253 return Kinds;