Home
last modified time | relevance | path

Searched refs:Attributes (Results 1 – 25 of 131) sorted by relevance

123456

/src/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td88 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
95 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
102 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
109 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
116 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
123 let Attributes = [FunctionWithBuiltinPrefix, NoThrow,
130 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, Const];
136 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, Const];
142 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, ConstIgnoringErrnoAndExceptions];
148 let Attributes = [FunctionWithBuiltinPrefix, NoThrow, ConstIgnoringErrnoAndExceptions];
[all …]
H A DBuiltins.h73 const char *Type, *Attributes; member
117 return strchr(getRecord(ID).Attributes, 'U') != nullptr; in isPure()
123 return strchr(getRecord(ID).Attributes, 'c') != nullptr; in isConst()
128 return strchr(getRecord(ID).Attributes, 'n') != nullptr; in isNoThrow()
133 return strchr(getRecord(ID).Attributes, 'r') != nullptr; in isNoReturn()
138 return strchr(getRecord(ID).Attributes, 'j') != nullptr; in isReturnsTwice()
144 return strchr(getRecord(ID).Attributes, 'u') != nullptr; in isUnevaluated()
150 return strchr(getRecord(ID).Attributes, 'F') != nullptr; in isLibFunction()
161 return strchr(getRecord(ID).Attributes, 'f') != nullptr; in isPredefinedLibFunction()
168 return strchr(getRecord(ID).Attributes, 'h') != nullptr; in isHeaderDependentFunction()
[all …]
H A DBuiltinsBPF.td14 let Attributes = [CustomTypeChecking];
21 let Attributes = [CustomTypeChecking];
28 let Attributes = [CustomTypeChecking];
35 let Attributes = [CustomTypeChecking];
H A DBuiltinsBase.td9 // Attributes
20 // Standard Attributes
24 // Attributes from the gnu:: namespace
68 // Other Attributes
81 list<Attribute> Attributes = [];
H A DBuiltinsRISCV.td21 let Attributes = [NoThrow, Const] in {
140 } // Attributes = [Const, NoThrow]
145 let Features = "zihintntl", Attributes = [CustomTypeChecking] in {
148 } // Features = "zihintntl", Attributes = [CustomTypeChecking]
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty() local
181 FD.D.setObjCWeakProperty((Attributes & ObjCPropertyAttribute::kind_weak) != in ActOnProperty()
185 if (!getOwnershipRule(Attributes)) { in ActOnProperty()
186 Attributes |= deducePropertyOwnershipFromType(SemaRef, T); in ActOnProperty()
188 bool isReadWrite = ((Attributes & ObjCPropertyAttribute::kind_readwrite) || in ActOnProperty()
190 !(Attributes & ObjCPropertyAttribute::kind_readonly)); in ActOnProperty()
201 isReadWrite, Attributes, in ActOnProperty()
212 ODS.getSetterNameLoc(), isReadWrite, Attributes, in ActOnProperty()
220 CheckObjCPropertyAttributes(Res, AtLoc, Attributes, in ActOnProperty()
272 makePropertyAttributesAsWritten(unsigned Attributes) { in makePropertyAttributesAsWritten() argument
[all …]
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DAttributes.cpp18 class Attributes { class
20 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anonfd8aaaf70111::Attributes
33 void Attributes::emitTargetIndependentNames(raw_ostream &OS) { in emitTargetIndependentNames()
80 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) { in emitFnAttrCompatCheck()
119 void Attributes::emitAttributeProperties(raw_ostream &OS) { in emitAttributeProperties()
136 void Attributes::run(raw_ostream &OS) { in run()
142 static TableGen::Emitter::OptClass<Attributes> X("gen-attrs",
/src/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstrFMA3Info.h30 uint16_t Attributes; member
70 bool isIntrinsic() const { return (Attributes & Intrinsic) != 0; } in isIntrinsic()
74 return (Attributes & KMergeMasked) != 0; in isKMergeMasked()
78 bool isKZeroMasked() const { return (Attributes &KZeroMasked) != 0; } in isKZeroMasked()
82 return (Attributes & (KMergeMasked | KZeroMasked)) != 0; in isKMasked()
/src/contrib/llvm-project/clang/lib/Basic/
H A DBuiltins.cpp68 (bool)strchr(BuiltinInfo[i].Attributes, 'z') == InStdNamespace) in isBuiltinFunc()
69 return strchr(BuiltinInfo[i].Attributes, 'f') != nullptr; in isBuiltinFunc()
79 if (LangOpts.NoBuiltin && strchr(BuiltinInfo.Attributes, 'f') != nullptr) in builtinIsSupported()
123 if (!LangOpts.CPlusPlus20 && strchr(BuiltinInfo.Attributes, 'G') != nullptr) in builtinIsSupported()
164 const char *WidthPos = ::strchr(getRecord(ID).Attributes, 'V'); in getRequiredVectorWidth()
187 const char *Like = ::strpbrk(getRecord(ID).Attributes, Fmt); in isLike()
214 const char *CalleePos = ::strchr(getRecord(ID).Attributes, 'C'); in performsCallback()
/src/contrib/llvm-project/llvm/lib/Object/
H A DELFObjectFile.cpp163 ARMAttributeParser Attributes; in getARMFeatures() local
164 if (Error E = getBuildAttributes(Attributes)) { in getARMFeatures()
172 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch); in getARMFeatures()
176 Attr = Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch_profile); in getARMFeatures()
195 Attr = Attributes.getAttributeValue(ARMBuildAttrs::THUMB_ISA_use); in getARMFeatures()
210 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch); in getARMFeatures()
234 Attr = Attributes.getAttributeValue(ARMBuildAttrs::Advanced_SIMD_arch); in getARMFeatures()
253 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch); in getARMFeatures()
272 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use); in getARMFeatures()
374 RISCVAttributeParser Attributes; in getRISCVFeatures() local
[all …]
/src/sys/contrib/edk2/Include/Pi/
H A DPiFirmwareFile.h122 EFI_FFS_FILE_ATTRIBUTES Attributes; member
154 EFI_FFS_FILE_ATTRIBUTES Attributes; member
178 …(((((EFI_FFS_FILE_HEADER *) (UINTN) FfsFileHeaderPtr)->Attributes) & FFS_ATTRIB_LARGE_FILE) == FFS…
377 UINT16 Attributes; member
396 UINT16 Attributes; member
/src/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCPseudoProbe.h115 uint8_t Attributes; variable
124 : Guid(G), Index(I), Discriminator(D), Attributes(At), Type(T) {} in MCPseudoProbeBase()
134 uint8_t getAttributes() const { return Attributes; } in getAttributes()
152 void setAttributes(uint8_t Attr) { Attributes = Attr; } in setAttributes()
164 uint64_t Attributes, uint32_t Discriminator) in MCPseudoProbe() argument
165 : MCPseudoProbeBase(Guid, Index, Attributes, Type, Discriminator), in MCPseudoProbe()
168 assert(Attributes <= 0xFF && in MCPseudoProbe()
/src/stand/efi/include/
H A Defipciio.h360 IN UINT64 Attributes
447 IN UINT64 Attributes,
510 IN UINT64 Attributes,
536 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
/src/sys/contrib/edk2/Include/Protocol/
H A DPciIo.h354 IN UINT64 Attributes
441 IN UINT64 Attributes,
503 IN UINT64 Attributes,
529 EFI_PCI_IO_PROTOCOL_ATTRIBUTES Attributes; member
H A DPciRootBridgeIo.h287 IN UINT64 Attributes
350 OUT UINT64 *Attributes
378 IN UINT64 Attributes,
H A DFirmwareVolumeBlock.h49 OUT EFI_FVB_ATTRIBUTES_2 *Attributes
78 IN OUT EFI_FVB_ATTRIBUTES_2 *Attributes
H A DSimpleFileSystem.h120 IN UINT64 Attributes
433 IN UINT64 Attributes,
/src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/translators/
H A Dtst.TestTransStability1.ksh.out4 Minimum Probe Description Attributes
9 Minimum Statement Attributes
H A Dtst.TestTransStability2.ksh.out4 Minimum Probe Description Attributes
9 Minimum Statement Attributes
/src/contrib/llvm-project/llvm/include/
H A Dmodule.install.modulemap15 textual header "llvm/IR/Attributes.gen"
16 textual header "llvm/IR/Attributes.inc"
/src/sys/contrib/edk2/Include/Uefi/
H A DUefiSpec.h709 OUT UINT32 *Attributes OPTIONAL,
794 IN UINT32 Attributes,
1393 IN UINT32 Attributes
1432 UINT32 Attributes; member
1832 IN UINT32 Attributes,
2140 UINT32 Attributes; member
/src/contrib/llvm-project/clang/include/clang/Lex/
H A DModuleMap.h233 struct Attributes { struct
251 Attributes() in Attributes() function
263 Attributes Attrs;
385 Module *inferFrameworkModule(DirectoryEntryRef FrameworkDir, Attributes Attrs,
/src/sys/ufs/ufs/
H A DREADME.extattr2 UFS Extended Attributes Copyright
4 The UFS Extended Attributes implementation is copyright Robert Watson, and
7 About UFS Extended Attributes
24 Using UFS Extended Attributes
/src/crypto/heimdal/lib/asn1/
H A Dpkcs12.asn156 PKCS12-Attributes ::= SET OF PKCS12-Attribute
61 bagAttributes PKCS12-Attributes OPTIONAL
/src/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DSampleProf.h525 SampleContext() : State(UnknownContext), Attributes(ContextNone) {}
528 : Func(Name), State(UnknownContext), Attributes(ContextNone) {
533 : Func(Func), State(UnknownContext), Attributes(ContextNone) {}
537 : Attributes(ContextNone) {
548 : Attributes(ContextNone) {
608 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; }
609 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; }
610 uint32_t getAllAttributes() { return Attributes; }
611 void setAllAttributes(uint32_t A) { Attributes = A; }
718 uint32_t Attributes;

123456