/freebsd/sys/contrib/openzfs/man/man1/ |
H A D | arcstat.1 | 50 Demand metadata hit percentage 52 Demand metadata I/O hit percentage 54 Demand metadata miss percentage 58 Metadata hit percentage 60 Metadata I/O hit percentage 62 Metadata miss percentage 78 Prefetch metadata hits percentage 80 Prefetch metadata I/O hits percentage 82 Prefetch metadata miss percentage 96 Demand metadata hits per second [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | AMDGPUMetadata.h | 10 /// AMDGPU metadata definitions and in-memory representations. 28 // HSA metadata. 32 /// HSA metadata major version for code object V3. 34 /// HSA metadata minor version for code object V3. 37 /// HSA metadata major version for code object V4. 39 /// HSA metadata minor version for code object V4. 42 /// HSA metadata major version for code object V5. 44 /// HSA metadata minor version for code object V5. 47 /// HSA metadata major version for code object V6. 49 /// HSA metadata minor version for code object V6. [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | DebugInfoMetadata.h | 1 //===- llvm/IR/DebugInfoMetadata.h - Debug info metadata --------*- C++ -*-===// 9 // Declarations for metadata specific to debug info. 25 #include "llvm/IR/Metadata.h" 128 /// Tagged DWARF-like metadata node. 130 /// A metadata node with a DWARF tag (i.e., a constant named \c DW_TAG_*, 134 /// Uses the SubclassData16 Metadata slot. 141 ArrayRef<Metadata *> Ops1, ArrayRef<Metadata *> Ops2 = std::nullopt) 194 static bool classof(const Metadata *MD) { in classof() 228 /// Generic tagged DWARF-like metadata node. 230 /// An un-specialized DWARF-like metadata node. The first operand is a [all …]
|
H A D | Metadata.h | 1 //===- llvm/IR/Metadata.h - Metadata definitions ----------------*- C++ -*-===// 10 /// This file contains the declarations for metadata subclasses. 11 /// They represent the different flavors of metadata that live in LLVM. 55 /// Magic number in the value profile metadata showing a target has been 59 /// Root of the metadata hierarchy. 62 class Metadata { 72 /// Storage flag for non-uniqued, otherwise unowned, metadata. 82 #include "llvm/IR/Metadata.def" 86 Metadata(unsigned ID, StorageType Storage) in Metadata() function 88 static_assert(sizeof(*this) == 8, "Metadata fields poorly packed"); in Metadata() [all …]
|
H A D | MDBuilder.h | 1 //===---- llvm/MDBuilder.h - Builder for LLVM metadata ----------*- C++ -*-===// 10 // create LLVM metadata with a consistent and simplified interface. 34 class Metadata; variable 42 /// Return the given string as metadata. 45 /// Return the given constant as metadata. 49 // FPMath metadata. 52 /// Return metadata with the given settings. The special value 0.0 58 // Prof metadata. 61 /// Return metadata containing two branch weights. 68 /// Return metadata containing two branch weights, with significant bias [all …]
|
H A D | ProfDataUtils.h | 1 //===- llvm/IR/ProfDataUtils.h - Profiling Metadata Utilities ---*- C++ -*-===// 10 /// This file contains the declarations for profiling metadata utility 20 #include "llvm/IR/Metadata.h" 24 /// Checks if an Instruction has MD_prof Metadata 27 /// Checks if an MDNode contains Branch Weight Metadata 30 /// Checks if an instructions has Branch Weight Metadata 37 /// Checks if an instructions has valid Branch Weight Metadata 44 /// Get the branch weights metadata node 47 /// \returns A pointer to I's branch weights metadata node, if it exists. 51 /// Get the valid branch weights metadata node [all …]
|
H A D | TrackingMDRef.h | 1 //===- llvm/IR/TrackingMDRef.h - Tracking Metadata references ---*- C++ -*-===// 9 // References to metadata that track RAUW. 16 #include "llvm/IR/Metadata.h" 22 /// Tracking metadata reference. 24 /// This class behaves like \a TrackingVH, but for metadata. 26 Metadata *MD = nullptr; 30 explicit TrackingMDRef(Metadata *MD) : MD(MD) { track(); } in TrackingMDRef() 57 Metadata *get() const { return MD; } in get() 58 operator Metadata *() const { return get(); } 59 Metadata *operator->() const { return get(); } [all …]
|
/freebsd/contrib/kyua/model/ |
H A D | test_case.cpp | 31 #include "model/metadata.hpp" 49 /// Metadata of the container test program. 52 /// However, because this is only intended to point to the metadata object 55 const model::metadata* md_defaults; 57 /// Test case metadata. 58 model::metadata md; 66 /// \param md_defaults_ Metadata of the container test program. 67 /// \param md_ Metadata of the test case. 71 const model::metadata* md_defaults_, in impl() 72 const model::metadata& md_, in impl() [all …]
|
H A D | test_program.cpp | 35 #include "model/metadata.hpp" 65 /// Metadata of the test program. 66 model::metadata md; 80 /// \param md_ Metadata of the test program. 84 const model::metadata& md_, const model::test_cases_map& test_cases_) : in impl() 127 /// \param md_ Metadata of the test program. 133 const model::metadata& md_, in test_program() 198 /// Gets the metadata of the test program. 200 /// \return The metadata. 201 const model::metadata& [all …]
|
H A D | test_case_test.cpp | 35 #include "model/metadata.hpp" 49 const model::metadata md = model::metadata_builder() in ATF_TEST_CASE_BODY() 68 const model::metadata exp_metadata = model::metadata_builder() in ATF_TEST_CASE_BODY() 79 const model::metadata overrides = model::metadata_builder() in ATF_TEST_CASE_BODY() 85 const model::metadata defaults = model::metadata_builder() in ATF_TEST_CASE_BODY() 93 const model::metadata expected = model::metadata_builder() in ATF_TEST_CASE_BODY() 112 const model::metadata overrides = model::metadata_builder() in ATF_TEST_CASE_BODY() 116 const model::metadata defaults = model::metadata_builder() in ATF_TEST_CASE_BODY() 124 const model::metadata expected = model::metadata_builder() in ATF_TEST_CASE_BODY() 147 const model::metadata base_metadata = model::metadata_builder() in ATF_TEST_CASE_BODY() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 35 #include "llvm/IR/Metadata.h" 245 ArrayRef<Metadata *> RawOps; 250 MDNodeOpsKey(ArrayRef<Metadata *> Ops) 277 static unsigned calculateHash(ArrayRef<Metadata *> Ops); 303 MDNodeKeyImpl(ArrayRef<Metadata *> Ops) : MDNodeOpsKey(Ops) {} 319 Metadata *Scope; 320 Metadata *InlinedAt; 323 MDNodeKeyImpl(unsigned Line, unsigned Column, Metadata *Scope, 324 Metadata *InlinedAt, bool ImplicitCode) 347 MDNodeKeyImpl(unsigned Tag, MDString *Header, ArrayRef<Metadata *> DwarfOps) [all …]
|
H A D | DebugInfoMetadata.cpp | 1 //===- DebugInfoMetadata.cpp - Implement debug info metadata --------------===// 9 // This file implements the debug info Metadata classes. 59 unsigned Column, ArrayRef<Metadata *> MDs, in DILocation() 81 unsigned Column, Metadata *Scope, in getImpl() 82 Metadata *InlinedAt, bool ImplicitCode, in getImpl() 98 SmallVector<Metadata *, 2> Ops; in getImpl() 394 ArrayRef<Metadata *> DwarfOps, in getImpl() 410 Metadata *PreOps[] = {Header}; in getImpl() 452 ArrayRef<Metadata *> Ops) in DISubrange() 464 DISubrange *DISubrange::getImpl(LLVMContext &Context, Metadata *CountNode, in getImpl() [all …]
|
/freebsd/contrib/libcbor/src/cbor/ |
H A D | maps.c | 13 return item->metadata.map_metadata.end_ptr; in cbor_map_size() 18 return item->metadata.map_metadata.allocated; in cbor_map_allocated() 28 .metadata = {.map_metadata = {.allocated = size, in cbor_new_definite_map() 44 .metadata = {.map_metadata = {.allocated = 0, in cbor_new_indefinite_map() 54 struct _cbor_map_metadata *metadata = in _cbor_map_add_key() local 55 (struct _cbor_map_metadata *)&item->metadata; in _cbor_map_add_key() 58 if (metadata->end_ptr >= metadata->allocated) { in _cbor_map_add_key() 63 data[metadata->end_ptr].key = key; in _cbor_map_add_key() 64 data[metadata in _cbor_map_add_key() [all...] |
H A D | arrays.c | 14 return item->metadata.array_metadata.end_ptr; in cbor_array_size() 19 return item->metadata.array_metadata.allocated; in cbor_array_allocated() 27 if (index == item->metadata.array_metadata.end_ptr) { in cbor_array_set() 29 } else if (index < item->metadata.array_metadata.end_ptr) { in cbor_array_set() 37 if (index >= item->metadata.array_metadata.end_ptr) return false; in cbor_array_replace() 46 struct _cbor_array_metadata *metadata = in cbor_array_push() local 47 (struct _cbor_array_metadata *)&array->metadata; in cbor_array_push() 51 if (metadata->end_ptr >= metadata->allocated) { in cbor_array_push() 54 data[metadata->end_ptr++] = pushee; in cbor_array_push() 57 if (metadata->end_ptr >= metadata->allocated) { in cbor_array_push() [all …]
|
/freebsd/contrib/kyua/store/ |
H A D | metadata_test.cpp | 29 #include "store/metadata.hpp" 52 /// without any predefined values. I.e. for our particular case, the metadata 61 db.exec("DELETE FROM metadata"); in create_database() 78 db.exec("INSERT INTO metadata (schema_version, timestamp) " in ATF_TEST_CASE_BODY() 80 db.exec("INSERT INTO metadata (schema_version, timestamp) " in ATF_TEST_CASE_BODY() 83 const store::metadata metadata = store::metadata::fetch_latest(db); in ATF_TEST_CASE_BODY() local 84 ATF_REQUIRE_EQ(5678L, metadata.timestamp()); in ATF_TEST_CASE_BODY() 85 ATF_REQUIRE_EQ(512, metadata.schema_version()); in ATF_TEST_CASE_BODY() 98 ATF_REQUIRE_THROW_RE(store::integrity_error, "metadata.*empty", in ATF_TEST_CASE_BODY() 99 store::metadata::fetch_latest(db)); in ATF_TEST_CASE_BODY() [all …]
|
H A D | metadata.cpp | 29 #include "store/metadata.hpp" 44 /// Fetches an integer column from a statement of the 'metadata' table. 64 throw store::integrity_error(F("The '%s' column in 'metadata' table " in int64_column() 73 /// Constructs a new metadata object. 77 store::metadata::metadata(const int schema_version_, const int64_t timestamp_) : in metadata() function in store::metadata 86 /// \return The timestamp in this metadata entry. 88 store::metadata::timestamp(void) const in timestamp() 96 /// \return The schema version in this metadata entry. 98 store::metadata::schema_version(void) const in schema_version() 104 /// Reads the latest metadata entry from the database. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/Utils/ |
H A D | AMDGPUPALMetadata.h | 1 //===-- AMDGPUPALMetadata.h - PAL metadata handling -------------*- C++ -*-===// 10 /// PAL metadata handling 47 // Read the amdgpu.pal.metadata supplied by the frontend, ready for 51 // Set PAL metadata from a binary blob from the applicable .note record. 53 // the Metadata. 56 // Set the rsrc1 register in the metadata for a particular shader stage. 61 // Set the rsrc2 register in the metadata for a particular shader stage. 66 // Set the SPI_PS_INPUT_ENA register in the metadata. 70 // Set the SPI_PS_INPUT_ADDR register in the metadata. 74 // Get a register from the metadata, or 0 if not currently set. [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_allocator.cpp | 83 inline void Metadata::SetAllocated(u32 stack, u64 size) { in SetAllocated() 94 inline void Metadata::SetUnallocated() { in SetUnallocated() 101 inline bool Metadata::IsAllocated() const { in IsAllocated() 105 inline u64 Metadata::GetRequestedSize() const { in GetRequestedSize() 109 inline u32 Metadata::GetAllocStackId() const { in GetAllocStackId() 113 inline u32 Metadata::GetAllocThreadId() const { in GetAllocThreadId() 123 inline void Metadata::SetLsanTag(__lsan::ChunkTag tag) { in SetLsanTag() 127 inline __lsan::ChunkTag Metadata::GetLsanTag() const { in GetLsanTag() 256 Metadata *meta = in HwasanAllocate() 257 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated)); in HwasanAllocate() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGLoopInfo.h | 1 //===---- CGLoopInfo.h - LLVM CodeGen for loop metadata -*- C++ -*---------===// 10 // metadata. 40 /// Generate llvm.loop.parallel metadata for loads and stores. 46 /// Value for llvm.loop.vectorize.enable metadata. 49 /// Value for llvm.loop.unroll.* metadata (enable, disable, or full). 52 /// Value for llvm.loop.unroll_and_jam.* metadata (enable, disable, or full). 55 /// Value for llvm.loop.vectorize.predicate metadata 58 /// Value for llvm.loop.vectorize.width metadata. 64 /// Value for llvm.loop.interleave.count metadata. 73 /// Value for llvm.loop.distribute.enable metadata. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/DXILWriter/ |
H A D | DXILValueEnumerator.h | 36 class Metadata; variable 71 std::vector<const Metadata *> MDs; 72 std::vector<const Metadata *> FunctionMDs; 74 /// Index of information about a piece of metadata. 76 unsigned F = 0; ///< The ID of the function for this metadata, if any. 77 unsigned ID = 0; ///< The implicit ID of this metadata in bitcode. 85 /// Fetch the MD this references out of the given metadata array. 86 const Metadata *get(ArrayRef<const Metadata *> MDs) const { in get() 93 using MetadataMapType = DenseMap<const Metadata *, MDIndex>; 96 /// Range of metadata IDs, as a half-open range. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Writer/ |
H A D | ValueEnumerator.h | 35 class Metadata; variable 68 std::vector<const Metadata *> MDs; 69 std::vector<const Metadata *> FunctionMDs; 71 /// Index of information about a piece of metadata. 73 unsigned F = 0; ///< The ID of the function for this metadata, if any. 74 unsigned ID = 0; ///< The implicit ID of this metadata in bitcode. 82 /// Fetch the MD this references out of the given metadata array. 83 const Metadata *get(ArrayRef<const Metadata *> MDs) const { in get() 90 using MetadataMapType = DenseMap<const Metadata *, MDIndex>; 93 /// Range of metadata IDs, as a half-open range. [all …]
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaAPINotes.cpp | 30 /// An empty version refers to unversioned metadata. 54 VersionedInfoMetadata Metadata) { in applyNullability() argument 55 if (!Metadata.IsActive) in applyNullability() 143 Sema &S, Decl *D, bool IsAddition, VersionedInfoMetadata Metadata, in handleAPINotedAttribute() argument 146 if (Metadata.IsActive) { in handleAPINotedAttribute() 152 S.Context, Metadata.Version, *Existing, /*IsReplacedByActive*/ true); in handleAPINotedAttribute() 169 S.Context, Metadata.Version, Attr, in handleAPINotedAttribute() 170 /*IsReplacedByActive*/ Metadata.IsReplacement); in handleAPINotedAttribute() 178 S.Context, Metadata.Version, AttrKindFor<A>::value, in handleAPINotedAttribute() 179 /*IsReplacedByActive*/ Metadata.IsReplacement); in handleAPINotedAttribute() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/XRay/ |
H A D | FDRRecords.cpp | 34 return "Metadata"; in kindToString() 36 return "Metadata:BufferExtents"; in kindToString() 38 return "Metadata:WallClockTime"; in kindToString() 40 return "Metadata:NewCPUId"; in kindToString() 42 return "Metadata:TSCWrap"; in kindToString() 44 return "Metadata:CustomEvent"; in kindToString() 46 return "Metadata:CustomEventV5"; in kindToString() 48 return "Metadata:CallArg"; in kindToString() 50 return "Metadata:PIDEntry"; in kindToString() 52 return "Metadata:NewBuffer"; in kindToString() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | MetadataLoader.cpp | 39 #include "llvm/IR/Metadata.h" 73 STATISTIC(NumMDRecordLoaded, "Number of Metadata records loaded"); 83 cl::desc("Force disable the lazy-loading on-demand of metadata when " 91 /// Array of metadata references. 101 /// The set of indices in MetadataPtrs above of Metadata that need to be 128 void push_back(Metadata *MD) { MetadataPtrs.emplace_back(MD); } in push_back() 130 Metadata *back() const { return MetadataPtrs.back(); } in back() 134 Metadata *operator[](unsigned i) const { in operator []() 139 Metadata *lookup(unsigned I) const { in lookup() 152 /// Return the given metadata, creating a replaceable forward reference if [all …]
|
/freebsd/contrib/kyua/integration/ |
H A D | cmd_db_exec_test.sh | 45 atf_check -s exit:0 -o save:metadata.csv -e empty \ 46 kyua db-exec "SELECT * FROM metadata" 48 grep 'schema_version,.*timestamp' metadata.csv 56 atf_check -s exit:0 -o save:metadata.csv -e empty \ 57 kyua db-exec SELECT "*" FROM metadata 59 grep 'schema_version,.*timestamp' metadata.csv 83 kyua db-exec --results-file=not-here "SELECT * FROM metadata" 95 atf_check -s exit:0 -o save:metadata.csv -e empty \ 96 kyua db-exec "SELECT * FROM metadata" 100 grep 'schema_version,.*timestamp' metadata.csv [all …]
|