Home
last modified time | relevance | path

Searched refs:Restrict (Results 1 – 25 of 45) sorted by relevance

12

/llvm-project/mlir/test/Dialect/SPIRV/IR/
H A Dfunction-decorations.mlir30 …}}: !spirv.ptr<i32, PhysicalStorageBuffer> {spirv.decoration = #spirv.decoration<Restrict>}) "None"
31 …!spirv.ptr<i32, PhysicalStorageBuffer> { spirv.decoration = #spirv.decoration<Restrict> }) "None" {
51 …1 {{'spirv.func' op with physical buffer pointer must be decorated either 'Aliased' or 'Restrict'}}
65 …1 {{'spirv.func' op with physical buffer pointer must be decorated either 'Aliased' or 'Restrict'}}
73 ….ptr<i32, PhysicalStorageBuffer> { spirv.decoration = #spirv.decoration<Restrict>, random_attr = #…
/llvm-project/mlir/test/Target/SPIRV/
H A Dfunction-decorations.mlir37 …t(%{{.*}}: !spirv.ptr<i32, PhysicalStorageBuffer> {spirv.decoration = #spirv.decoration<Restrict>})
39 … %arg0 : !spirv.ptr<i32,PhysicalStorageBuffer> { spirv.decoration = #spirv.decoration<Restrict> }
81 …, %{{.*}}: !spirv.ptr<i32, PhysicalStorageBuffer> {spirv.decoration = #spirv.decoration<Restrict>})
84 … %arg1: !spirv.ptr<i32, PhysicalStorageBuffer> { spirv.decoration = #spirv.decoration<Restrict>}
/llvm-project/clang-tools-extra/clang-tidy/readability/
H A DQualifiedAutoCheck.cpp27 enum class Qualifier { Const, Volatile, Restrict }; enumerator
36 Qual == Qualifier::Restrict) && in findQualToken()
187 CheckQualifier(IsLocalRestrict, Qualifier::Restrict)) in check()
247 findQualToken(Var, Qualifier::Restrict, Result); in check()
/llvm-project/clang/include/clang/AST/
H A DPrettyPrinter.h72 Restrict(LO.C99), Alignof(LO.CPlusPlus11), UnderscoreAlignof(LO.C11), in PrintingPolicy()
231 unsigned Restrict : 1;
H A DType.h330 Restrict = 0x2,
332 CVRMask = Const | Volatile | Restrict
470 bool hasRestrict() const { return Mask & Restrict; }
471 bool hasOnlyRestrict() const { return Mask == Restrict; }
472 void removeRestrict() { Mask &= ~Restrict; }
473 void addRestrict() { Mask |= Restrict; }
1037 return (getLocalFastQualifiers() & Qualifiers::Restrict);
1168 addFastQualifiers(Qualifiers::Restrict);
1171 return withFastQualifiers(Qualifiers::Restrict);
1711 // a) Update is{Volatile,Restrict}Qualifie
[all...]
/llvm-project/llvm/test/CodeGen/SPIRV/
H A Dspirv_param_decorations.ll8 ; CHECK-SPIRV: OpDecorate %[[#PId1:]] Restrict
/llvm-project/llvm/test/CodeGen/AMDGPU/
H A Dbranch-relax-bundle.ll3 ; Restrict maximum branch to between +15 and -16 dwords
H A Dliteral-constant-like-operand-instruction-size.ll4 ; Restrict maximum branch to between +31 and -32 dwords
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypePointer.cpp141 return (Record->getOptions() & PointerOptions::Restrict) != in isRestrictedType()
/llvm-project/mlir/include/mlir/Dialect/LLVMIR/
H A DLLVMDialect.td65 // TODO Restrict the usage of this to parameter attributes once there is an
/llvm-project/llvm/test/tools/llvm-debuginfo-analyzer/
H A Dcmdline.test199 HELP-ALL: =Restrict - Restrict specifier.
/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h378 Restrict = 0x00001000, enumerator
H A DTypeRecord.h337 return !!(Attrs & uint32_t(PointerOptions::Restrict)); in isRestrict()
/llvm-project/llvm/docs/PDB/
H A DCodeViewTypes.rst114 Restrict = 0x10, // pointer is marked restrict
/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp2371 LVType *Restrict = Reader->createType(); in visitKnownRecord()
2372 Restrict->setTag(dwarf::DW_TAG_restrict_type); in visitKnownRecord()
2373 Restrict->setIsRestrict(); in visitKnownRecord()
2374 Restrict->setName("restrict"); in visitKnownRecord()
2375 LastLink->setType(Restrict); in visitKnownRecord()
2376 LastLink = Restrict; in visitKnownRecord()
2377 LVType *Restrict = Reader->createType(); visitKnownRecord() local
/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp163 if (TypeQuals & Qualifiers::Restrict) { in AppendTypeQualList()
535 Policy.Restrict); in printConstantArrayAfter()
568 AppendTypeQualList(OS, T->getIndexTypeCVRQualifiers(), Policy.Restrict); in printVariableArrayAfter()
2575 AppendTypeQualList(OS, quals, Policy.Restrict); in print()
H A DDeclCXX.cpp2690 bool Restrict = FPT->getMethodQuals().hasRestrict(); in CXXConstructorDecl()
2691 if (Restrict) in CXXConstructorDecl()
2697 if (Restrict) in CXXConstructorDecl()
2552 bool Restrict = FPT->getMethodQuals().hasRestrict(); getThisType() local
/llvm-project/clang/test/Misc/
H A Dpragma-attribute-supported-attributes-list.test179 // CHECK-NEXT: Restrict (SubjectMatchRule_function)
/llvm-project/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVStructureOps.td274 `Aliased` or `Restrict`.
297 { spirv.decoration = #spirv.decoration<Restrict> }) -> () "None" { ... }
/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalTypeDumper.cpp87 PUSH_FLAG(PointerOptions, Restrict, Options, "restrict"); in pointerOptions()
/llvm-project/llvm/lib/Target/X86/
H A DX86ScheduleBtVer2.td52 1>; // Restrict move elimination to zero regs.
65 1>; // Restrict move elimination to zero regs.
/llvm-project/mlir/lib/Target/SPIRV/Deserialization/
H A DDeserializer.cpp341 case spirv::Decoration::Restrict: in processMemberDecoration()
434 {spirv::Decoration::Aliased, spirv::Decoration::Restrict, in processFunction()
444 "more than one Aliased/Restrict decorations for " in processFunction()
/llvm-project/llvm/docs/
H A DHowToAddABuilder.rst300 Restrict what you build and test
/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp340 IO.bitSetCase(Options, "Restrict", PointerOptions::Restrict); in bitset()
/llvm-project/llvm/lib/Target/AMDGPU/
H A DVOP1Instructions.td377 // Restrict src0 to be VGPR
776 // Restrict src0 to be VGPR

12