Home
last modified time | relevance | path

Searched refs:NoSanitizeList (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DNoSanitizeList.cpp22 NoSanitizeList::NoSanitizeList(const std::vector<std::string> &NoSanitizePaths, in NoSanitizeList() function in NoSanitizeList
28 NoSanitizeList::~NoSanitizeList() = default;
30 bool NoSanitizeList::containsPrefix(SanitizerMask Mask, StringRef Prefix, in containsPrefix()
45 bool NoSanitizeList::containsGlobal(SanitizerMask Mask, StringRef GlobalName, in containsGlobal()
50 bool NoSanitizeList::containsType(SanitizerMask Mask, StringRef MangledTypeName, in containsType()
55 bool NoSanitizeList::containsFunction(SanitizerMask Mask, in containsFunction()
60 bool NoSanitizeList::containsFile(SanitizerMask Mask, StringRef FileName, in containsFile()
65 bool NoSanitizeList::containsMainFile(SanitizerMask Mask, StringRef FileName, in containsMainFile()
70 bool NoSanitizeList::containsLocation(SanitizerMask Mask, SourceLocation Loc, in containsLocation()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DNoSanitizeList.h29 class NoSanitizeList {
36 NoSanitizeList(const std::vector<std::string> &NoSanitizeListPaths,
38 ~NoSanitizeList();
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h84 class NoSanitizeList; variable
692 std::unique_ptr<NoSanitizeList> NoSanitizeL;
896 const NoSanitizeList &getNoSanitizeList() const { return *NoSanitizeL; } in getNoSanitizeList()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp5248 const auto &NoSanitizeList = Context.getNoSanitizeList(); in mayInsertExtraPadding() local
5264 else if (NoSanitizeList.containsLocation(EnabledAsanMask, getLocation(), in mayInsertExtraPadding()
5267 else if (NoSanitizeList.containsType( in mayInsertExtraPadding()
H A DASTContext.cpp947 NoSanitizeL(new NoSanitizeList(LangOpts.NoSanitizeFiles, SM)), in ASTContext()
/freebsd/lib/clang/libclang/
H A DMakefile218 SRCS_MIN+= Basic/NoSanitizeList.cpp