Home
last modified time | relevance | path

Searched refs:Meta (Results 1 – 25 of 48) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DSanitizerMetadata.cpp51 llvm::GlobalVariable::SanitizerMetadata Meta; in reportGlobal() local
53 Meta = GV->getSanitizerMetadata(); in reportGlobal()
55 Meta.NoAddress |= NoSanitizeAttrSet.hasOneOf(SanitizerKind::Address); in reportGlobal()
56 Meta.NoAddress |= CGM.isInNoSanitizeList( in reportGlobal()
59 Meta.NoHWAddress |= NoSanitizeAttrSet.hasOneOf(SanitizerKind::HWAddress); in reportGlobal()
60 Meta.NoHWAddress |= CGM.isInNoSanitizeList( in reportGlobal()
63 Meta.Memtag |= in reportGlobal()
65 Meta.Memtag &= !NoSanitizeAttrSet.hasOneOf(SanitizerKind::MemTag); in reportGlobal()
66 Meta.Memtag &= !CGM.isInNoSanitizeList( in reportGlobal()
69 Meta.IsDynInit = IsDynInit && !Meta.NoAddress && in reportGlobal()
[all …]
H A DCGVTables.cpp1004 llvm::GlobalValue::SanitizerMetadata Meta; in RemoveHwasanMetadata() local
1006 Meta = GV->getSanitizerMetadata(); in RemoveHwasanMetadata()
1007 Meta.NoHWAddress = true; in RemoveHwasanMetadata()
1008 GV->setSanitizerMetadata(Meta); in RemoveHwasanMetadata()
/freebsd/contrib/llvm-project/compiler-rt/lib/gwp_asan/
H A Dguarded_pool_allocator.cpp137 const AllocationMetadata &Meta = Metadata[i]; in iterate() local
138 if (Meta.Addr && !Meta.IsDeallocated && Meta.Addr >= Start && in iterate()
139 Meta.Addr < Start + Size) in iterate()
140 Cb(Meta.Addr, Meta.RequestedSize, Arg); in iterate()
242 AllocationMetadata *Meta = addrToMetadata(SlotStart); in allocate() local
263 Meta->RecordAllocation(UserPtr, Size); in allocate()
266 Meta->AllocationTrace.RecordBacktrace(Backtrace); in allocate()
333 AllocationMetadata *Meta = addrToMetadata(UPtr); in deallocate() local
337 if (Meta->HasCrashed) in deallocate()
340 if (Meta->Addr != UPtr) { in deallocate()
[all …]
H A Dcrash_handler.cpp100 const AllocationMetadata *Meta = addrToMetadata(State, Metadata, ErrorPtr); in __gwp_asan_get_metadata() local
101 if (Meta->Addr == 0) in __gwp_asan_get_metadata()
104 return Meta; in __gwp_asan_get_metadata()
/freebsd/contrib/tcsh/
H A Deight-bit.me34 Meta-<non-control-character> bindings would be undone in these cases.
116 self-insert-command, I lost the ability to use the Meta key to call the
129 Meta ~Ctrl<Key>d: string(0x1b) string(d)
136 :Meta ~Ctrl<Key>d: string(0x1b) string(d) \\n\\
137 :Meta ~Ctrl<Key>D: string(0x1b) string(D) \\n\\
138 :Meta ~Ctrl<Key>e: string(0x1b) string(e) \\n\\
139 :Meta ~Ctrl<Key>E: string(0x1b) string(E) \\n\\
140 :Meta ~Ctrl<Key>v: string(0x1b) string(v) \\n\\
141 :Meta ~Ctrl<Key>V: string(0x1b) string(V)
/freebsd/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dimg,meta-intc.txt1 * Meta External Trigger Controller Binding
4 representation of a Meta external trigger controller.
44 * Meta external trigger block
64 // Compatible with Meta hardware trigger block.
71 * An interrupt generating device that is wired to a Meta external
H A Dimg,pdc-intc.txt64 // Compatible with Meta hardware trigger block.
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64GlobalsTagging.cpp35 GlobalValue::SanitizerMetadata Meta = G.getSanitizerMetadata(); in shouldTagGlobal() local
41 Meta.Memtag = false; in shouldTagGlobal()
42 G.setSanitizerMetadata(Meta); in shouldTagGlobal()
65 Meta.Memtag = false;
66 G.setSanitizerMetadata(Meta);
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMemProf.h42 enum class Meta : uint64_t { enum
50 using MemProfSchema = llvm::SmallVector<Meta, static_cast<int>(Meta::Size)>;
65 for (const Meta Id : IncomingSchema) in PortableMemInfoBlock()
83 for (const Meta Id : IncomingSchema) { in deserialize()
86 case Meta::Name: { \ in deserialize()
106 for (const Meta Id : Schema) { in serialize()
109 case Meta::Name: { \ in serialize()
137 std::bitset<llvm::to_underlying(Meta::Size)> getSchema() const { in getSchema()
144 assert(Schema[llvm::to_underlying(Meta::Name)]); \
157 if (Schema[llvm::to_underlying(Meta::Name)] && \
[all …]
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DMemProf.cpp15 #define MIBEntryDef(NameTag, Name, Type) List.push_back(Meta::Name); in getFullSchema()
22 return {Meta::AllocCount, Meta::TotalSize, Meta::TotalLifetime, in getHotColdSchema()
23 Meta::TotalLifetimeAccessDensity}; in getHotColdSchema()
382 if (NumSchemaIds > static_cast<uint64_t>(Meta::Size)) { in readMemProfSchema()
391 if (Tag >= static_cast<uint64_t>(Meta::Size)) { in readMemProfSchema()
395 Result.push_back(static_cast<Meta>(Tag)); in readMemProfSchema()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DGlobals.cpp243 void GlobalValue::setSanitizerMetadata(SanitizerMetadata Meta) { in setSanitizerMetadata() argument
244 getContext().pImpl->GlobalValueSanitizerMetadata[this] = Meta; in setSanitizerMetadata()
256 SanitizerMetadata Meta; in setNoSanitizeMetadata() local
257 Meta.NoAddress = true; in setNoSanitizeMetadata()
258 Meta.NoHWAddress = true; in setNoSanitizeMetadata()
259 setSanitizerMetadata(Meta); in setNoSanitizeMetadata()
/freebsd/sys/contrib/openzfs/
H A DMETA1 Meta: 1
/freebsd/contrib/file/magic/Magdir/
H A Debml4 # ebml: file(1) magic for various Extensible Binary Meta Language
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DProgram.h186 void *operator new(size_t Meta, PoolAllocTy &Alloc, size_t Data) { in new() argument
187 return Alloc.Allocate(Meta + Data, alignof(void *)); in new()
/freebsd/sys/contrib/device-tree/src/arm64/amlogic/
H A Dmeson-gxbb-vega-s95-meta.dts12 model = "Tronsmart Vega S95 Meta";
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCInstrDesc.h153 Meta, enumerator
273 bool isMetaInstruction() const { return Flags & (1ULL << MCID::Meta); } in isMetaInstruction()
/freebsd/contrib/arm-optimized-routines/math/tools/
H A Dremez.jl1221 eval(Meta.parse(preliminary_command))
1224 lo = BigFloat(eval(Meta.parse(argwords[1])))
1225 hi = BigFloat(eval(Meta.parse(argwords[2])))
1228 f = eval(Meta.parse("x -> " * argwords[5]))
1246 w = eval(Meta.parse("(x,y) -> " * argwords[6]))
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DZ3CrosscheckVisitor.h83 Z3Decision interpretQueryResult(const Z3CrosscheckVisitor::Z3Result &Meta);
/freebsd/contrib/tcsh/nls/german/
H A Dset443 41 hat Meta-Taste
H A Dset76 4 \tEs hat %s Meta-Taste\n
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineOperand.h944 static MachineOperand CreateMetadata(const MDNode *Meta) { in CreateMetadata()
946 Op.Contents.MD = Meta;
940 CreateMetadata(const MDNode * Meta) CreateMetadata() argument
/freebsd/share/misc/
H A Dorganization.dot19 # Meta-categories go here
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DGlobalValue.h361 void setSanitizerMetadata(SanitizerMetadata Meta);
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h403 Meta = 0x04, enumerator
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/Directive/
H A DDirectiveBase.td167 def CA_Meta: Category<"Meta"> {}

12