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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DXRayLists.cpp39 if (AlwaysInstrument->inSection("xray_always_instrument", "fun", FunctionName,
41 AttrList->inSection("always", "fun", FunctionName, "arg1"))
43 if (AlwaysInstrument->inSection("xray_always_instrument", "fun",
45 AttrList->inSection("always", "fun", FunctionName))
48 if (NeverInstrument->inSection("xray_never_instrument", "fun",
50 AttrList->inSection("never", "fun", FunctionName))
59 if (AlwaysInstrument->inSection("xray_always_instrument", "src", Filename,
61 AttrList->inSection("always", "src", Filename, Category))
63 if (NeverInstrument->inSection("xray_never_instrument", "src", Filename,
65 AttrList->inSection("neve
[all...]
H A DSanitizerBlacklist.cpp33 return SSCL->inSection(Mask, "global", GlobalName, Category);
39 return SSCL->inSection(Mask, "type", MangledTypeName, Category);
44 return SSCL->inSection(Mask, "fun", FunctionName);
50 return SSCL->inSection(Mask, "src", FileName, Category);
H A DSanitizerSpecialCaseList.cpp56 bool SanitizerSpecialCaseList::inSection(SanitizerMask Mask, StringRef Prefix, function in class:SanitizerSpecialCaseList
/freebsd-13-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DFile.h45 const Section *inSection) {
46 assert(sectionOffset+contentSize <= inSection->content.size());
47 ArrayRef<uint8_t> content = inSection->content.slice(sectionOffset,
55 inSection->alignment,
56 sectionOffset % inSection->alignment);
60 addAtomForSection(inSection, atom, sectionOffset);
67 bool copyRefs, const Section *inSection) {
68 assert(sectionOffset+contentSize <= inSection->content.size());
69 ArrayRef<uint8_t> content = inSection->content.slice(sectionOffset,
78 inSection
41 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
63 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
88 addZeroFillDefinedAtom(StringRef name, Atom::Scope scope, uint64_t sectionOffset, uint64_t size, bool noDeadStrip, bool copyRefs, const Section *inSection) argument
257 addAtomForSection(const Section *inSection, MachODefinedAtom* atom, uint64_t sectionOffset) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSanitizerSpecialCaseList.h43 bool inSection(SanitizerMask Mask, StringRef Prefix, StringRef Query,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp40 return Whitelist.inSection("llvmcov", "whitelist_fun", Function.Name);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h92 bool inSection(StringRef Section, StringRef Prefix, StringRef Query,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp204 bool SpecialCaseList::inSection(StringRef Section, StringRef Prefix, function in class:llvm::SpecialCaseList
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DSanitizerCoverage.cpp399 !Allowlist->inSection("coverage", "src", M.getSourceFileName()))
402 Blocklist->inSection("coverage", "src", M.getSourceFileName()))
636 if (Allowlist && !Allowlist->inSection("coverage", "fun", F.getName()))
638 if (Blocklist && Blocklist->inSection("coverage", "fun", F.getName()))
H A DDataFlowSanitizer.cpp204 SCL->inSection("dataflow", "fun", F.getName(), Category);
216 return SCL->inSection("dataflow", "fun", GA.getName(), Category);
218 return SCL->inSection("dataflow", "global", GA.getName(), Category) ||
219 SCL->inSection("dataflow", "type", GetGlobalTypeString(GA),
225 return SCL->inSection("dataflow", "src", M.getModuleIdentifier(), Category);

Completed in 89 milliseconds