Searched refs:inSection (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Basic/
H A DXRayLists.cpp33 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName,
35 AttrList->inSection("always", "fun", FunctionName, "arg1"))
37 if (AlwaysInstrument->inSection("xray_always_instrument", "fun",
39 AttrList->inSection("always", "fun", FunctionName))
42 if (NeverInstrument->inSection("xray_never_instrument", "fun",
44 AttrList->inSection("never", "fun", FunctionName))
53 if (AlwaysInstrument->inSection("xray_always_instrument", "src", Filename,
55 AttrList->inSection("always", "src", Filename, Category))
57 if (NeverInstrument->inSection("xray_never_instrument", "src", Filename,
59 AttrList->inSection("neve
[all...]
H A DSanitizerBlacklist.cpp26 return SSCL->inSection(Mask, "global", GlobalName, Category);
32 return SSCL->inSection(Mask, "type", MangledTypeName, Category);
37 return SSCL->inSection(Mask, "fun", FunctionName);
43 return SSCL->inSection(Mask, "src", FileName, Category);
H A DSanitizerSpecialCaseList.cpp56 bool SanitizerSpecialCaseList::inSection(SanitizerMask Mask, StringRef Prefix, function in class:SanitizerSpecialCaseList
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DFile.h43 const Section *inSection) {
44 assert(sectionOffset+contentSize <= inSection->content.size());
45 ArrayRef<uint8_t> content = inSection->content.slice(sectionOffset,
53 inSection->alignment,
54 sectionOffset % inSection->alignment);
58 addAtomForSection(inSection, atom, sectionOffset);
65 bool copyRefs, const Section *inSection) {
66 assert(sectionOffset+contentSize <= inSection->content.size());
67 ArrayRef<uint8_t> content = inSection->content.slice(sectionOffset,
76 inSection
39 addDefinedAtom(StringRef name, Atom::Scope scope, DefinedAtom::ContentType type, DefinedAtom::Merge merge, uint64_t sectionOffset, uint64_t contentSize, bool thumb, bool noDeadStrip, bool copyRefs, const Section *inSection) argument
61 addDefinedAtomInCustomSection(StringRef name, Atom::Scope scope, DefinedAtom::ContentType type, DefinedAtom::Merge merge, bool thumb, bool noDeadStrip, uint64_t sectionOffset, uint64_t contentSize, StringRef sectionName, bool copyRefs, const Section *inSection) argument
86 addZeroFillDefinedAtom(StringRef name, Atom::Scope scope, uint64_t sectionOffset, uint64_t size, bool noDeadStrip, bool copyRefs, const Section *inSection) argument
255 addAtomForSection(const Section *inSection, MachODefinedAtom* atom, uint64_t sectionOffset) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerSpecialCaseList.h36 bool inSection(SanitizerMask Mask, StringRef Prefix, StringRef Query,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp39 return Whitelist.inSection("llvmcov", "whitelist_fun", Function.Name);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h90 bool inSection(StringRef Section, StringRef Prefix, StringRef Query,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp204 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix, function in class:llvm::SpecialCaseList
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp190 SCL->inSection("dataflow", "fun", F.getName(), Category);
202 return SCL->inSection("dataflow", "fun", GA.getName(), Category);
204 return SCL->inSection("dataflow", "global", GA.getName(), Category) ||
205 SCL->inSection("dataflow", "type", GetGlobalTypeString(GA),
211 return SCL->inSection("dataflow", "src", M.getModuleIdentifier(), Category);

Completed in 186 milliseconds