Home
last modified time | relevance | path

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

/freebsd-head/contrib/llvm-project/clang/lib/Basic/
HDNoSanitizeList.cpp22 NoSanitizeList::NoSanitizeList(const std::vector<std::string> &NoSanitizePaths, in NoSanitizeList() function in NoSanitizeList
28 NoSanitizeList::~NoSanitizeList() = default;
30 bool NoSanitizeList::containsGlobal(SanitizerMask Mask, StringRef GlobalName, in containsGlobal()
35 bool NoSanitizeList::containsType(SanitizerMask Mask, StringRef MangledTypeName, in containsType()
40 bool NoSanitizeList::containsFunction(SanitizerMask Mask, in containsFunction()
45 bool NoSanitizeList::containsFile(SanitizerMask Mask, StringRef FileName, in containsFile()
50 bool NoSanitizeList::containsMainFile(SanitizerMask Mask, StringRef FileName, in containsMainFile()
55 bool NoSanitizeList::containsLocation(SanitizerMask Mask, SourceLocation Loc, in containsLocation()
/freebsd-head/contrib/llvm-project/clang/include/clang/Basic/
HDNoSanitizeList.h29 class NoSanitizeList {
34 NoSanitizeList(const std::vector<std::string> &NoSanitizeListPaths,
36 ~NoSanitizeList();
/freebsd-head/contrib/llvm-project/clang/include/clang/AST/
HDASTContext.h82 class NoSanitizeList; variable
619 std::unique_ptr<NoSanitizeList> NoSanitizeL;
806 const NoSanitizeList &getNoSanitizeList() const { return *NoSanitizeL; } in getNoSanitizeList()
/freebsd-head/contrib/llvm-project/clang/lib/AST/
HDDecl.cpp5141 const auto &NoSanitizeList = Context.getNoSanitizeList(); in mayInsertExtraPadding() local
5157 else if (NoSanitizeList.containsLocation(EnabledAsanMask, getLocation(), in mayInsertExtraPadding()
5160 else if (NoSanitizeList.containsType( in mayInsertExtraPadding()
HDASTContext.cpp886 NoSanitizeL(new NoSanitizeList(LangOpts.NoSanitizeFiles, SM)), in ASTContext()
/freebsd-head/lib/clang/libclang/
HDMakefile227 SRCS_MIN+= Basic/NoSanitizeList.cpp