| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Builtins.h | 60 const char *Name, *Type, *Attributes, *HeaderName; member 105 return strchr(getRecord(ID).Attributes, 'U') != nullptr; in isPure() 111 return strchr(getRecord(ID).Attributes, 'c') != nullptr; in isConst() 116 return strchr(getRecord(ID).Attributes, 'n') != nullptr; in isNoThrow() 121 return strchr(getRecord(ID).Attributes, 'r') != nullptr; in isNoReturn() 126 return strchr(getRecord(ID).Attributes, 'j') != nullptr; in isReturnsTwice() 132 return strchr(getRecord(ID).Attributes, 'u') != nullptr; in isUnevaluated() 138 return strchr(getRecord(ID).Attributes, 'F') != nullptr; in isLibFunction() 149 return strchr(getRecord(ID).Attributes, 'f') != nullptr; in isPredefinedLibFunction() 156 return strchr(getRecord(ID).Attributes, 'h') != nullptr; in isHeaderDependentFunction() [all …]
|
| /llvm-project-15.0.7/clang/unittests/Format/ |
| H A D | MacroExpanderTest.cpp | 49 if (I >= Attributes.size()) in expectAttributes() 121 std::vector<MacroAttributes> Attributes = { in TEST_F() local 134 EXPECT_ATTRIBUTES(Result, Attributes); in TEST_F() 141 Attributes = { in TEST_F() 149 EXPECT_ATTRIBUTES(Result, Attributes); in TEST_F() 168 std::vector<MacroAttributes> Attributes = { in TEST_F() local 171 EXPECT_ATTRIBUTES(AResult, Attributes); in TEST_F() 179 std::vector<MacroAttributes> Attributes = { in TEST_F() local 184 EXPECT_ATTRIBUTES(Result, Attributes); in TEST_F() 192 std::vector<MacroAttributes> Attributes = { in TEST_F() local [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfutil/ELF/X86/ |
| H A D | gc-unit-overlapping-address-ranges.test | 41 Attributes: 54 Attributes: 65 Attributes: 70 Attributes: 77 Attributes: 84 Attributes: 91 Attributes: 96 Attributes: 102 Attributes: 115 Attributes: [all …]
|
| H A D | odr-fwd-declaration.test | 118 Attributes: 131 Attributes: 136 Attributes: 143 Attributes: 150 Attributes: 157 Attributes: 162 Attributes: 167 Attributes: 172 Attributes: 182 Attributes: [all …]
|
| H A D | gc-class.test | 140 Attributes: 153 Attributes: 158 Attributes: 165 Attributes: 172 Attributes: 179 Attributes: 184 Attributes: 189 Attributes: 194 Attributes: 204 Attributes: [all …]
|
| H A D | gc-maxpc.test | 42 Attributes: 55 Attributes: 66 Attributes: 71 Attributes: 78 Attributes: 85 Attributes: 92 Attributes: 97 Attributes:
|
| H A D | gc-no-garbage.test | 42 Attributes: 55 Attributes: 66 Attributes: 71 Attributes: 78 Attributes: 85 Attributes: 92 Attributes: 97 Attributes:
|
| H A D | gc-bfd.test | 42 Attributes: 55 Attributes: 66 Attributes: 71 Attributes: 78 Attributes: 85 Attributes: 92 Attributes: 97 Attributes:
|
| H A D | gc-exec.test | 42 Attributes: 55 Attributes: 66 Attributes: 71 Attributes: 78 Attributes: 85 Attributes: 92 Attributes: 97 Attributes:
|
| H A D | verify.test | 37 Attributes: 50 Attributes: 61 Attributes: 66 Attributes: 73 Attributes: 80 Attributes: 87 Attributes: 92 Attributes:
|
| H A D | gc-default.test | 54 Attributes: 67 Attributes: 78 Attributes: 83 Attributes: 90 Attributes: 97 Attributes: 104 Attributes: 109 Attributes:
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfutil/ELF/X86/Inputs/ |
| H A D | common.yaml | 18 Attributes: 31 Attributes: 36 Attributes: 43 Attributes: 50 Attributes: 57 Attributes: 62 Attributes: 67 Attributes: 72 Attributes: 81 Attributes:
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaObjCProperty.cpp | 180 unsigned Attributes = ODS.getPropertyAttributes(); in ActOnProperty() local 185 if (!getOwnershipRule(Attributes)) { in ActOnProperty() 220 CheckObjCPropertyAttributes(Res, AtLoc, Attributes, in ActOnProperty() 288 if (Attributes & ObjCPropertyAttribute::kind_weak) in makePropertyAttributesAsWritten() 290 if (Attributes & ObjCPropertyAttribute::kind_copy) in makePropertyAttributesAsWritten() 298 if (Attributes & ObjCPropertyAttribute::kind_class) in makePropertyAttributesAsWritten() 496 Attributes = (Attributes & ~OwnershipMask) | ExistingOwnership; in HandlePropertyInClassExtension() 668 if (Attributes & ObjCPropertyAttribute::kind_weak) in CreatePropertyDecl() 671 if (Attributes & ObjCPropertyAttribute::kind_copy) in CreatePropertyDecl() 2656 if ((Attributes & in CheckObjCPropertyAttributes() [all …]
|
| /llvm-project-15.0.7/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()
|
| /llvm-project-15.0.7/llvm/utils/TableGen/ |
| H A D | Attributes.cpp | 17 class Attributes { class 19 Attributes(RecordKeeper &R) : Records(R) {} in Attributes() function in __anonf8ddbc720111::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()
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/module_cache/debug_index/ |
| H A D | exe.yaml | 49 Attributes: 73 Attributes: 89 Attributes: 99 Attributes: 115 Attributes: 123 Attributes: 137 Attributes: 153 Attributes: 165 Attributes: 171 Attributes: [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-dwarfdump/X86/ |
| H A D | locstats-for-absctract-origin-vars.yaml | 140 Attributes: 146 Attributes: 156 Attributes: 164 Attributes: 172 Attributes: 180 Attributes: 192 Attributes: 208 Attributes: 214 Attributes: 222 Attributes: [all …]
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-profdata/Inputs/ |
| H A D | cs-sample-preinline.proftext | 7 !Attributes: 2 16 !Attributes: 2 35 !Attributes: 2 40 !Attributes: 2
|
| H A D | cs-sample-preinline-probe.proftext | 8 !Attributes: 2 18 !Attributes: 2 42 !Attributes: 2 48 !Attributes: 2
|
| /llvm-project-15.0.7/llvm/test/Verifier/ |
| H A D | writeonly.ll | 4 ; CHECK: Attributes {{.*}} are incompatible 7 ; CHECK: Attributes {{.*}} are incompatible 10 ; CHECK: Attributes {{.*}} are incompatible 13 ; CHECK: Attributes {{.*}} are incompatible
|
| H A D | inalloca1.ll | 4 ; CHECK: Attributes {{.*}} are incompatible 7 ; CHECK: Attributes {{.*}} are incompatible 10 ; CHECK: Attributes {{.*}} are incompatible 13 ; CHECK: Attributes {{.*}} are incompatible 16 ; CHECK: Attributes {{.*}} are incompatible
|
| /llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/ |
| H A D | Target.h | 30 class Attributes { 32 Attributes(unsigned short alignment = 0, bool byval = false, 56 using Attributes = details::Attributes; 57 using Marshalling = std::vector<std::tuple<mlir::Type, Attributes>>;
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-profdata/ |
| H A D | cs-sample-nested-profile.test | 30 ; CHECK-NEXT: !Attributes: 2 31 ; CHECK-NEXT: !Attributes: 2 43 ; CHECK-NEXT: !Attributes: 2 44 ; CHECK-NEXT: !Attributes: 2 64 ; RECOUNT-NEXT: !Attributes: 6 86 ; RECOUNT-NEXT: !Attributes: 2 97 ; RECOUNT-NEXT: !Attributes: 2 126 ; PROBE-NEXT: !Attributes: 2 128 ; PROBE-NEXT: !Attributes: 2 141 ; PROBE-NEXT: !Attributes: 2 [all …]
|
| /llvm-project-15.0.7/llvm/lib/Object/ |
| H A D | ELFObjectFile.cpp | 160 ARMAttributeParser Attributes; in getARMFeatures() local 161 if (Error E = getBuildAttributes(Attributes)) { in getARMFeatures() 169 Attributes.getAttributeValue(ARMBuildAttrs::CPU_arch); in getARMFeatures() 207 Attr = Attributes.getAttributeValue(ARMBuildAttrs::FP_arch); in getARMFeatures() 250 Attr = Attributes.getAttributeValue(ARMBuildAttrs::MVE_arch); in getARMFeatures() 269 Attr = Attributes.getAttributeValue(ARMBuildAttrs::DIV_use); in getARMFeatures() 298 RISCVAttributeParser Attributes; in getRISCVFeatures() local 299 if (Error E = getBuildAttributes(Attributes)) { in getRISCVFeatures() 510 ARMAttributeParser Attributes; in setARMSubArch() local 511 if (Error E = getBuildAttributes(Attributes)) { in setARMSubArch() [all …]
|
| /llvm-project-15.0.7/utils/bazel/llvm-project-overlay/mlir/python/ |
| H A D | BUILD.bazel | 94 "//mlir:include/mlir/Bindings/Python/Attributes.td", 138 "//mlir:include/mlir/Bindings/Python/Attributes.td", 205 "//mlir:include/mlir/Bindings/Python/Attributes.td", 248 "//mlir:include/mlir/Bindings/Python/Attributes.td", 292 "//mlir:include/mlir/Bindings/Python/Attributes.td", 334 "//mlir:include/mlir/Bindings/Python/Attributes.td", 375 "//mlir:include/mlir/Bindings/Python/Attributes.td", 417 "//mlir:include/mlir/Bindings/Python/Attributes.td", 460 "//mlir:include/mlir/Bindings/Python/Attributes.td", 503 "//mlir:include/mlir/Bindings/Python/Attributes.td", [all …]
|