/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | MemProf.cpp | 27 const MemProfSchema &Schema) { in serializedSizeV0() argument 34 Size += PortableMemInfoBlock::serializedSize(Schema); in serializedSizeV0() 39 const MemProfSchema &Schema) { in serializedSizeV2() argument 44 Size += PortableMemInfoBlock::serializedSize(Schema); in serializedSizeV2() 49 const MemProfSchema &Schema) { in serializedSizeV3() argument 54 Size += PortableMemInfoBlock::serializedSize(Schema); in serializedSizeV3() 58 size_t IndexedAllocationInfo::serializedSize(const MemProfSchema &Schema, in serializedSize() argument 63 return serializedSizeV0(*this, Schema); in serializedSize() 65 return serializedSizeV2(*this, Schema); in serializedSize() 67 return serializedSizeV3(*this, Schema); in serializedSize() [all …]
|
H A D | InstrProfWriter.cpp | 444 const memprof::MemProfSchema &Schema) { in writeMemProfSchema() argument 445 OS.write(static_cast<uint64_t>(Schema.size())); in writeMemProfSchema() 446 for (const auto Id : Schema) in writeMemProfSchema() 455 memprof::MemProfSchema *Schema, memprof::IndexedVersion Version, in writeMemProfRecords() argument 458 memprof::RecordWriterTrait RecordWriter(Schema, Version, in writeMemProfRecords() 604 auto Schema = memprof::getFullSchema(); in writeMemProfV0() local 605 writeMemProfSchema(OS, Schema); in writeMemProfV0() 608 writeMemProfRecords(OS, MemProfData.Records, &Schema, memprof::Version0); in writeMemProfV0() 639 auto Schema = memprof::getFullSchema(); in writeMemProfV1() local 640 writeMemProfSchema(OS, Schema); in writeMemProfV1() [all …]
|
H A D | InstrProfReader.cpp | 1233 Schema = SchemaOr.get(); in deserializeV012() 1239 /*Base=*/Start, memprof::RecordLookupTrait(Version, Schema))); in deserializeV012() 1273 Schema = SchemaOr.get(); in deserializeV3() 1282 /*Base=*/Start, memprof::RecordLookupTrait(memprof::Version3, Schema))); in deserializeV3()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGPointerAuth.cpp | 27 const PointerAuthSchema &Schema, GlobalDecl Decl, QualType Type) { in getPointerAuthOtherDiscriminator() argument 28 switch (Schema.getOtherDiscrimination()) { in getPointerAuthOtherDiscriminator() 44 return llvm::ConstantInt::get(IntPtrTy, Schema.getConstantDiscrimination()); in getPointerAuthOtherDiscriminator() 75 const auto &Schema = getCodeGenOpts().PointerAuth.FunctionPointers; in getFunctionPointerAuthInfo() local 76 if (!Schema) in getFunctionPointerAuthInfo() 79 assert(!Schema.isAddressDiscriminated() && in getFunctionPointerAuthInfo() 86 Discriminator = getPointerAuthOtherDiscriminator(Schema, GlobalDecl(), T); in getFunctionPointerAuthInfo() 88 return CGPointerAuthInfo(Schema.getKey(), Schema.getAuthenticationMode(), in getFunctionPointerAuthInfo() 104 const PointerAuthSchema &Schema, llvm::Value *StorageAddress, in EmitPointerAuthInfo() argument 106 if (!Schema) in EmitPointerAuthInfo() [all …]
|
H A D | ConstantInitBuilder.cpp | 303 llvm::Constant *Pointer, const PointerAuthSchema &Schema, in addSignedPointer() argument 305 if (!Schema || !Builder.CGM.shouldSignPointer(Schema)) in addSignedPointer() 309 if (Schema.isAddressDiscriminated()) { in addSignedPointer() 314 Pointer, Schema, StorageAddress, CalleeDecl, CalleeType); in addSignedPointer()
|
H A D | CGVTT.cpp | 93 if (const auto &Schema = in EmitVTTDefinition() local 95 Init = CGM.getConstantSignedPointer(Init, Schema, nullptr, GlobalDecl(), in EmitVTTDefinition()
|
H A D | CGCXX.cpp | 268 if (auto &Schema = in BuildAppleKextVirtualCall() local 272 PointerAuth = CGF.EmitPointerAuthInfo(Schema, VFuncPtr, OrigMD, QualType()); in BuildAppleKextVirtualCall()
|
H A D | ItaniumCXXABI.cpp | 846 if (const auto &Schema = in EmitLoadOfMemberFunctionPointer() local 853 assert(Schema.getKey() == AuthInfo.getKey() && in EmitLoadOfMemberFunctionPointer() 858 Schema.getKey(), Schema.getAuthenticationMode(), Schema.isIsaPointer(), in EmitLoadOfMemberFunctionPointer() 859 Schema.authenticatesNullValues(), DiscriminatorPHI); in EmitLoadOfMemberFunctionPointer() 1173 const auto &Schema = in BuildMemberPointer() local 1175 if (Schema) in BuildMemberPointer() 1183 CGM.PtrDiffTy, 2 * ThisAdjustment.getQuantity() + !Schema); in BuildMemberPointer() 2131 if (auto &Schema = CGF.CGM.getCodeGenOpts().PointerAuth.CXXVTTVTablePointers) { in getVTableAddressPointInStructorWithVTT() local 2132 CGPointerAuthInfo PointerAuth = CGF.EmitPointerAuthInfo(Schema, VTT, in getVTableAddressPointInStructorWithVTT() 2191 auto &Schema = CGM.getCodeGenOpts().PointerAuth.CXXVirtualFunctionPointers; in getVirtualFunctionPointer() local [all …]
|
H A D | CGExprConstant.cpp | 1841 PointerAuthQualifier Schema) { in tryEmitConstantSignedPointer() argument 1842 assert(Schema && "applying trivial ptrauth schema"); in tryEmitConstantSignedPointer() 1844 if (Schema.hasKeyNone()) in tryEmitConstantSignedPointer() 1847 unsigned Key = Schema.getKey(); in tryEmitConstantSignedPointer() 1851 if (Schema.isAddressDiscriminated()) { in tryEmitConstantSignedPointer() 1860 llvm::ConstantInt::get(CGM.IntPtrTy, Schema.getExtraDiscriminator()); in tryEmitConstantSignedPointer() 1865 if (Schema.isAddressDiscriminated()) in tryEmitConstantSignedPointer()
|
H A D | CodeGenModule.h | 991 bool shouldSignPointer(const PointerAuthSchema &Schema); 993 const PointerAuthSchema &Schema, 1004 getPointerAuthOtherDiscriminator(const PointerAuthSchema &Schema,
|
H A D | CGVTables.cpp | 869 if (const auto &Schema = in addVTableComponent() local 871 return builder.addSignedPointer(fnPtr, Schema, GD, QualType()); in addVTableComponent()
|
H A D | CodeGenFunction.h | 4437 CGPointerAuthInfo EmitPointerAuthInfo(const PointerAuthSchema &Schema,
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | MemProf.h | 66 Schema.set(llvm::to_underlying(Id)); in PortableMemInfoBlock() 72 PortableMemInfoBlock(const MemProfSchema &Schema, const unsigned char *Ptr) { in PortableMemInfoBlock() 73 deserialize(Schema, Ptr); in PortableMemInfoBlock() 82 Schema.reset(); in deserialize() 96 Schema.set(llvm::to_underlying(Id)); in deserialize() 102 void serialize(const MemProfSchema &Schema, raw_ostream &OS) const { in serialize() 106 for (const Meta Id : Schema) { in serialize() 138 return Schema; in getSchema() 144 assert(Schema[llvm::to_underlying(Meta::Name)]); \ 153 if (Other.Schema != Schema) [all …]
|
H A D | InstrProfReader.h | 655 memprof::MemProfSchema Schema; variable
|
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | SPIRVObjectWriter.cpp | 22 constexpr uint32_t Schema = 0; in writeHeader() local 28 W.write<uint32_t>(Schema); in writeHeader()
|
/freebsd/sys/contrib/device-tree/Bindings/ |
H A D | writing-schema.rst | 6 Devicetree bindings are written using json-schema vocabulary. Schema files are 13 Schema Contents 65 For more details on properties sections, see 'Property Schema' section. 102 Property Schema 200 `JSON-Schema Specifications <http://json-schema.org/>`_ 202 `Using JSON Schema Book <http://usingjsonschema.com/>`_ 206 Annotated Example Schema
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | cad | 415 # Schema: https://www.web3d.org/specifications/x3d-3.2.dtd 422 # Schema: http://www.collada.org/2005/11/COLLADASchema 428 # Schema: http://schemas.microsoft.com/3dmanufacturing/core/2015/02
|
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/ |
H A D | ConstantInitBuilder.h | 207 const PointerAuthSchema &Schema, GlobalDecl CalleeDecl,
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 15349 typedef struct Schema Schema; typedef 16426 SQLITE_PRIVATE int sqlite3SchemaMutexHeld(sqlite3*,int,Schema*); 17419 Schema *pSchema; /* Pointer to database schema (possibly shared) */ 17439 struct Schema { struct 18428 Schema *pSchema; /* Schema that contains this table */ 18740 Schema *pSchema; /* Schema containing this index */ 19263 Schema *pSchema; /* Schema to which this item is fixed */ 20007 Schema *pSchema; /* Schema containing the trigger */ 20008 Schema *pTabSchema; /* Schema containing the table */ 20316 Schema *pSchema; /* Fix items to this schema */ [all …]
|
/freebsd/contrib/googletest/docs/ |
H A D | advanced.md | 2180 The report format conforms to the following JSON Schema:
|
/freebsd/contrib/sendmail/cf/ |
H A D | README | 2268 LDAP Schema for Intranet Mail Routing
|