Searched defs:SCL (Results 1 - 3 of 3) sorted by relevance

/external/clang/lib/CodeGen/
H A DSanitizerBlacklist.h32 std::unique_ptr<llvm::SpecialCaseList> SCL; member in class:clang::CodeGen::SanitizerBlacklist
35 SanitizerBlacklist(llvm::SpecialCaseList *SCL) : SCL(SCL) {} argument
/external/llvm/unittests/Support/
H A DSpecialCaseListTest.cpp27 SpecialCaseList *SCL = makeSpecialCaseList(List, Error); local
28 assert(SCL);
30 return SCL;
35 std::unique_ptr<SpecialCaseList> SCL(
42 EXPECT_TRUE(SCL->inSection("src", "hello"));
43 EXPECT_TRUE(SCL->inSection("src", "bye"));
44 EXPECT_TRUE(SCL->inSection("src", "hi", "category"));
45 EXPECT_TRUE(SCL->inSection("src", "zzzz", "category"));
46 EXPECT_FALSE(SCL->inSection("src", "hi"));
47 EXPECT_FALSE(SCL
[all...]
/external/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp135 std::unique_ptr<SpecialCaseList> SCL; member in class:__anon26251::DFSanABIList
138 DFSanABIList(SpecialCaseList *SCL) : SCL(SCL) {} argument
144 SCL->inSection("fun", F.getName(), Category);
156 return SCL->inSection("fun", GA.getName(), Category);
158 return SCL->inSection("global", GA.getName(), Category) ||
159 SCL->inSection("type", GetGlobalTypeString(GA), Category);
164 return SCL->inSection("src", M.getModuleIdentifier(), Category);

Completed in 125 milliseconds