| /llvm-project-15.0.7/compiler-rt/lib/gwp_asan/tests/ |
| H A D | backtrace.cpp | 69 gwp_asan::AllocationMetadata Meta; in TEST() local 70 Meta.AllocationTrace.RecordBacktrace( in TEST() 77 EXPECT_EQ(2u, __gwp_asan_get_allocation_trace(&Meta, TraceOutput, 2)); in TEST() 83 gwp_asan::AllocationMetadata Meta; in TEST() local 84 Meta.AllocationTrace.RecordBacktrace( in TEST() 96 __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST() 100 gwp_asan::AllocationMetadata Meta; in TEST() local 102 Meta.AllocationTrace.RecordBacktrace( in TEST() 111 __gwp_asan_get_allocation_trace(&Meta, &TraceOutput, 1)); in TEST() 115 gwp_asan::AllocationMetadata Meta; in TEST() local [all …]
|
| H A D | crash_handler_api.cpp | 48 void setupBacktraces(AllocationMetadata *Meta) { in setupBacktraces() argument 51 Meta->AllocationTrace.CompressedTrace, in setupBacktraces() 54 if (Meta->IsDeallocated) in setupBacktraces() 57 Meta->DeallocationTrace.CompressedTrace, in setupBacktraces() 79 const AllocationMetadata *Meta = in checkMetadata() local 81 EXPECT_NE(nullptr, Meta); in checkMetadata() 84 __gwp_asan_get_allocation_size(Meta)); in checkMetadata() 86 __gwp_asan_get_allocation_thread_id(Meta)); in checkMetadata() 88 bool IsDeallocated = __gwp_asan_is_deallocated(Meta); in checkMetadata() 90 checkBacktrace(Meta, IsDeallocated); in checkMetadata() [all …]
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | SanitizerMetadata.cpp | 51 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 …]
|
| /llvm-project-15.0.7/compiler-rt/lib/gwp_asan/ |
| H A D | guarded_pool_allocator.cpp | 127 const AllocationMetadata &Meta = Metadata[i]; in iterate() local 128 if (Meta.Addr && !Meta.IsDeallocated && Meta.Addr >= Start && in iterate() 129 Meta.Addr < Start + Size) in iterate() 130 Cb(Meta.Addr, Meta.RequestedSize, Arg); in iterate() 252 Meta->RecordAllocation(UserPtr, Size); in allocate() 255 Meta->AllocationTrace.RecordBacktrace(Backtrace); in allocate() 284 AllocationMetadata *Meta = addrToMetadata(UPtr); in deallocate() local 285 if (Meta->Addr != UPtr) { in deallocate() 295 if (Meta->IsDeallocated) { in deallocate() 302 Meta->RecordDeallocation(); in deallocate() [all …]
|
| H A D | crash_handler.cpp | 92 const AllocationMetadata *Meta = addrToMetadata(State, Metadata, ErrorPtr); in __gwp_asan_get_metadata() local 93 if (Meta->Addr == 0) in __gwp_asan_get_metadata() 96 return Meta; in __gwp_asan_get_metadata()
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.param/ |
| H A D | p11-0x.cpp | 57 template<template<int> class... Meta> struct X1tt; 58 template<template<int> class... Meta, template<int> class M> 59 struct X1tt<M, Meta...> { }; 67 template<template<int> class... Meta, template<int> class M> 68 void f1tt(X1tt<M, Meta...>);
|
| /llvm-project-15.0.7/clang/test/CXX/temp/temp.decls/temp.variadic/ |
| H A D | metafunctions.cpp | 171 template<typename T, template<class> class ...Meta> 173 typedef tuple<typename Meta<T>::type...> type; 195 template<typename T, template<class> class ...Meta> 197 typedef typename apply_each<T, Meta...>::type type; 204 template<typename T, typename ...Meta> 206 typedef typename apply_each<T, Meta::template apply...>::type type;
|
| H A D | p5.cpp | 157 template<typename T, template<class> class ...Meta> 159 …typedef tuple<typename Meta<T>::type> type; // expected-error{{declaration type contains unexpande…
|
| /llvm-project-15.0.7/llvm/lib/ProfileData/ |
| H A D | MemProf.cpp | 90 if (NumSchemaIds > static_cast<uint64_t>(Meta::Size)) { in readMemProfSchema() 98 if (Tag >= static_cast<uint64_t>(Meta::Size)) { in readMemProfSchema() 102 Result.push_back(static_cast<Meta>(Tag)); in readMemProfSchema()
|
| /llvm-project-15.0.7/llvm/include/llvm/ProfileData/ |
| H A D | MemProf.h | 18 enum class Meta : uint64_t { enum 26 using MemProfSchema = llvm::SmallVector<Meta, static_cast<int>(Meta::Size)>; 48 for (const Meta Id : Schema) { in deserialize() 51 case Meta::Name: { \ in deserialize() 69 for (const Meta Id : Schema) { in serialize() 72 case Meta::Name: { \ in serialize() 103 #define MIBEntryDef(NameTag, Name, Type) List.push_back(Meta::Name); in getSchema()
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | Program.h | 167 void *operator new(size_t Meta, PoolAllocTy &Alloc, size_t Data) { in new() argument 168 return Alloc.Allocate(Meta + Data, alignof(void *)); in new()
|
| /llvm-project-15.0.7/llvm/include/llvm/MC/ |
| H A D | MCInstrDesc.h | 152 Meta, enumerator 270 bool isMetaInstruction() const { return Flags & (1ULL << MCID::Meta); } in isMetaInstruction()
|
| /llvm-project-15.0.7/libc/AOR_v20.02/math/tools/ |
| H A D | remez.jl | 1222 eval(Meta.parse(preliminary_command)) 1225 lo = BigFloat(eval(Meta.parse(argwords[1]))) 1226 hi = BigFloat(eval(Meta.parse(argwords[2]))) 1229 f = eval(Meta.parse("x -> " * argwords[5])) 1247 w = eval(Meta.parse("(x,y) -> " * argwords[6]))
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-objdump/MachO/ |
| H A D | macho-objc-meta-data.test | 37 OBJC2_64BIT_EXE: Meta Class 99 OBJC2_64BIT_EXE: Meta Class 181 OBJC2_64BIT_OBJ: Meta Class 304 OBJC2_32BIT_EXE: Meta Class 421 OBJC2_32BIT_EXE: Meta Class 499 OBJC2_32BIT_EXE: Meta Class 600 OBJC2_32BIT_OBJ: Meta Class 652 OBJC1_32BIT_EXE: Meta Class 771 OBJC1_32BIT_EXE: Meta Class 890 OBJC1_32BIT_OBJ: Meta Class [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/dsymutil/X86/ |
| H A D | remarks-linking-fat-bundle.test | 14 CHECK: <Meta
|
| H A D | remarks-linking-bundle.test | 14 CHECK: <Meta
|
| H A D | remarks-linking-archive.text | 14 CHECK: <Meta
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | Remarks.rst | 469 <Meta BlockID=8 NumWords=13 BlockCodeSize=3> 473 </Meta> 480 <Meta BlockID=8 NumWords=3 BlockCodeSize=3> 483 </Meta> 496 <Meta BlockID=8 NumWords=15 BlockCodeSize=3> 500 </Meta>
|
| H A D | HowToReleaseLLVM.rst | 253 "[meta]" bug should be created and all regressions *blocking* that Meta. Once 254 all blockers are done, the Meta can be closed. 257 from the Meta and its priority decreased to *normal*. Debugging can continue,
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/ |
| H A D | Serialization.cpp | 474 Reader Meta(Chunks.lookup("meta")); in readRIFF() local 475 auto SeenVersion = Meta.consume32(); in readRIFF() 563 llvm::SmallString<4> Meta; in writeRIFF() local 565 llvm::raw_svector_ostream MetaOS(Meta); in writeRIFF() 568 RIFF.Chunks.push_back({riff::fourCC("meta"), Meta}); in writeRIFF()
|
| /llvm-project-15.0.7/llvm/unittests/ProfileData/ |
| H A D | MemProfTest.cpp | 34 using ::llvm::memprof::Meta; 122 #define MIBEntryDef(NameTag, Name, Type) Schema.push_back(Meta::Name); in getFullSchema()
|
| /llvm-project-15.0.7/bolt/test/runtime/ |
| H A D | meta-merge-fdata.test | 1 # Meta test using merge-fdata binary
|
| /llvm-project-15.0.7/llvm/lib/IR/ |
| H A D | Globals.cpp | 231 void GlobalValue::setSanitizerMetadata(SanitizerMetadata Meta) { in setSanitizerMetadata() argument 232 getContext().pImpl->GlobalValueSanitizerMetadata[this] = Meta; in setSanitizerMetadata()
|
| /llvm-project-15.0.7/llvm/include/llvm/CodeGen/ |
| H A D | MachineOperand.h | 907 static MachineOperand CreateMetadata(const MDNode *Meta) { in CreateMetadata() argument 909 Op.Contents.MD = Meta; in CreateMetadata()
|
| /llvm-project-15.0.7/llvm/include/llvm/IR/ |
| H A D | GlobalValue.h | 343 void setSanitizerMetadata(SanitizerMetadata Meta);
|