| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | Builtins.h | 73 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 …]
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 180 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(*this, 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 …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86InstrFMA3Info.h | 30 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()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | Attributes.cpp | 17 class Attributes { class 19 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anon8cbd0cb90111::Attributes 32 void Attributes::emitTargetIndependentNames(raw_ostream &OS) { in emitTargetIndependentNames() 75 void Attributes::emitFnAttrCompatCheck(raw_ostream &OS, bool IsStringAttr) { in emitFnAttrCompatCheck() 110 void Attributes::emitAttributeProperties(raw_ostream &OS) { in emitAttributeProperties() 126 void Attributes::emit(raw_ostream &OS) { in emit() 135 Attributes(RK).emit(OS); in EmitAttributes()
|
| /openbsd-src/gnu/llvm/llvm/lib/Object/ |
| H A D | ELFObjectFile.cpp | 162 ARMAttributeParser Attributes; in getARMFeatures() local 163 if (Error E = getBuildAttributes(Attributes)) { in getARMFeatures() 171 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch); in getARMFeatures() 175 Attr = Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch_profile); in getARMFeatures() 194 Attr = Attributes.getAttributeValue(ARMBuildAttrs::THUMB_ISA_use); in getARMFeatures() 209 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch); in getARMFeatures() 233 Attr = Attributes.getAttributeValue(ARMBuildAttrs::Advanced_SIMD_arch); in getARMFeatures() 252 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch); in getARMFeatures() 271 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use); in getARMFeatures() 298 RISCVAttributeParser Attributes; in getRISCVFeatures() local [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUPropagateAttributes.cpp | 74 Attributes[I] = F.getFnAttribute(AttributeNames[I]); in FnProperties() 81 if (Attributes[I] != Other.Attributes[I]) in operator ==() 89 New.Attributes[I] = CallerProps.Attributes[I]; in adjustToCaller() 94 std::optional<Attribute> Attributes[NumAttr]; member in __anonceddf6120111::AMDGPUPropagateAttributes::FnProperties 277 setAttributes(F, NewProps.Attributes); in process() 320 setAttributes(*NewF, NewProps.Attributes); in cloneWithProperties()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCPseudoProbe.h | 111 uint8_t Attributes; variable 120 : Guid(G), Index(I), Attributes(At), Type(T) {} in MCPseudoProbeBase() 128 uint8_t getAttributes() const { return Attributes; } in getAttributes() 146 void setAttributes(uint8_t Attr) { Attributes = Attr; } in setAttributes() 158 uint64_t Attributes) in MCPseudoProbe() argument 159 : MCPseudoProbeBase(Guid, Index, Attributes, Type), Label(Label) { in MCPseudoProbe() 161 assert(Attributes <= 0xFF && in MCPseudoProbe()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | Builtins.cpp | 68 (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() 161 const char *WidthPos = ::strchr(getRecord(ID).Attributes, 'V'); in getRequiredVectorWidth() 184 const char *Like = ::strpbrk(getRecord(ID).Attributes, Fmt); in isLike() 211 const char *CalleePos = ::strchr(getRecord(ID).Attributes, 'C'); in performsCallback()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.jason/ |
| H A D | synth10.C | 32 class Attributes 48 Attributes(AH mo) in Attributes() function
|
| /openbsd-src/gnu/llvm/clang/include/clang/ExtractAPI/ |
| H A D | API.h | 278 AttributeKind Attributes; member 287 DeclarationFragments SubHeading, AttributeKind Attributes, in ObjCPropertyRecord() 293 Attributes(Attributes), GetterName(GetterName), SetterName(SetterName), in ObjCPropertyRecord() 296 bool isReadOnly() const { return Attributes & ReadOnly; } in isReadOnly() 297 bool isDynamic() const { return Attributes & Dynamic; } in isDynamic() 308 AttributeKind Attributes, StringRef GetterName, in ObjCInstancePropertyRecord() 313 SubHeading, Attributes, GetterName, SetterName, in ObjCInstancePropertyRecord() 330 AttributeKind Attributes, StringRef GetterName, in ObjCClassPropertyRecord() 335 SubHeading, Attributes, GetterName, SetterName, in ObjCClassPropertyRecord() 721 ObjCPropertyRecord::AttributeKind Attributes,
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ |
| H A D | module.install.modulemap | 11 textual header "IR/Attributes.gen" 12 textual header "IR/Attributes.inc"
|
| /openbsd-src/gnu/llvm/llvm/utils/gn/secondary/llvm/include/llvm/IR/ |
| H A D | BUILD.gn | 3 tablegen("Attributes") { 106 # IR's public headers include Attributes.inc. 107 ":Attributes",
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | CMakeLists.txt | 1 set(LLVM_TARGET_DEFINITIONS Attributes.td) 2 tablegen(LLVM Attributes.inc -gen-attrs)
|
| /openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
| H A D | ModuleMap.h | 236 struct Attributes { struct 250 Attributes() in Attributes() argument 261 Attributes Attrs; 384 Attributes Attrs, Module *Parent);
|
| /openbsd-src/gnu/llvm/llvm/docs/PDB/ |
| H A D | CodeViewTypes.rst | 67 | Attributes | 69 | Member Ptr Info | Only present if |Attributes| indicates this is a member pointer. 72 Attributes is a bitfield with the following layout: 122 The ``Size`` field of the Attributes bitmask is a 1-byte value indicating the
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| H A D | SampleProf.h | 511 SampleContext() : State(UnknownContext), Attributes(ContextNone) {} 514 : Name(Name), State(UnknownContext), Attributes(ContextNone) {} 518 : Attributes(ContextNone) { 529 : Attributes(ContextNone) { 588 bool hasAttribute(ContextAttributeMask A) { return Attributes & (uint32_t)A; } 589 void setAttribute(ContextAttributeMask A) { Attributes |= (uint32_t)A; } 590 uint32_t getAllAttributes() { return Attributes; } 591 void setAllAttributes(uint32_t A) { Attributes = A; } 696 uint32_t Attributes;
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | ModuleSummaryIndex.cpp | 373 struct Attributes { struct 391 void Attributes::add(const Twine &Name, const Twine &Value, in add() 401 void Attributes::addComment(const Twine &Comment) { in addComment() 411 std::string Attributes::getAsString() const { in getAsString() 600 Attributes A; in exportToDot()
|
| /openbsd-src/gnu/llvm/llvm/bindings/python/llvm/ |
| H A D | enumerations.py | 32 Attributes = [ variable
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.h | 274 std::vector<AttributeEncoding> Attributes; ///< List of index attributes. member 277 std::vector<AttributeEncoding> Attributes) in Abbrev() 278 : Code(Code), Tag(Tag), Attributes(std::move(Attributes)) {} in Abbrev()
|
| /openbsd-src/gnu/usr.bin/clang/include/llvm/IR/ |
| H A D | Makefile | 7 DEFS= Attributes.inc \ 35 Attributes.inc: ${LLVM_SRCS}/include/llvm/IR/Attributes.td
|
| /openbsd-src/sys/stand/efi/include/ |
| H A D | efiapi.h | 233 OUT UINT32 *Attributes OPTIONAL, 252 IN UINT32 Attributes, 569 IN UINT32 Attributes 584 UINT32 Attributes; member
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFAcceleratorTable.cpp | 417 for (const auto &Attr : Attributes) in dump() 533 Values.reserve(Abbr.Attributes.size()); in Entry() 534 for (const auto &Attr : Abbr.Attributes) in Entry() 540 assert(Abbr->Attributes.size() == Values.size()); in lookup() 541 for (auto Tuple : zip_first(Abbr->Attributes, Values)) { in lookup() 574 assert(Abbr->Attributes.size() == Values.size()); in dump() 575 for (auto Tuple : zip_first(Abbr->Attributes, Values)) { in dump()
|
| /openbsd-src/gnu/llvm/clang/docs/HLSL/ |
| H A D | HLSLIRReference.rst | 23 Function Attributes
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/ |
| H A D | SampleProfReader.cpp | 181 uint32_t &Attributes) { in parseMetadata() argument 189 return !Attrib.getAsInteger(10, Attributes); in parseMetadata() 217 uint64_t &FunctionHash, uint32_t &Attributes) { in ParseLine() argument 225 return parseMetadata(Input.substr(Depth), FunctionHash, Attributes); in ParseLine() 370 uint32_t Attributes = 0; in readImpl() local 373 Attributes)) { in readImpl() 423 FProfile.getContext().setAllAttributes(Attributes); in readImpl() 424 if (Attributes & (uint32_t)ContextShouldBeInlined) in readImpl() 1173 auto Attributes = readNumber<uint32_t>(); in readFuncMetadata() local 1174 if (std::error_code EC = Attributes.getError()) in readFuncMetadata() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/ExtractAPI/ |
| H A D | DeclarationFragments.cpp | 624 const auto Attributes = Property->getPropertyAttributes(); in getFragmentsForObjCProperty() local 626 if (Attributes != ObjCPropertyAttribute::kind_noattr) { in getFragmentsForObjCProperty() 637 if ((Attributes & Kind) && !Spelling.empty()) { in getFragmentsForObjCProperty() 674 if (Attributes & ObjCPropertyAttribute::kind_nullability) { in getFragmentsForObjCProperty() 681 (Attributes & ObjCPropertyAttribute::kind_null_resettable)) in getFragmentsForObjCProperty()
|