Home
last modified time | relevance | path

Searched refs:IsROV (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDXILResource.h250 bool IsROV; member
252 bool operator==(const UAVInfo &RHS) const { return IsROV == RHS.IsROV; }
254 bool operator<(const UAVInfo &RHS) const { return IsROV < RHS.IsROV; }
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDXILResource.cpp260 bool IsWriteable, bool IsROV, in formatTypeName() argument
265 DestStream << (IsROV ? "RasterizerOrdered" : "RW"); in formatTypeName()
594 OS << " IsROV: " << UAVFlags.IsROV << "\n"; in print()
660 MDVals.push_back(getBoolMD(UAVFlags.IsROV)); in getAsMetadata()
699 bool IsROV = IsUAV && UAVFlags.IsROV; in getAnnotateProps() local
713 Word0 |= (IsROV & 1) << 13; in getAnnotateProps()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DHLSLBuiltinTypeDeclBuilder.h75 addHandleMember(ResourceClass RC, bool IsROV, bool RawBuffer,
H A DHLSLExternalSemaSource.cpp130 ResourceClass RC, bool IsROV, in setupBufferType() argument
133 .addHandleMember(RC, IsROV, RawBuffer) in setupBufferType()
H A DHLSLBuiltinTypeDeclBuilder.cpp613 ResourceClass RC, bool IsROV, bool RawBuffer, AccessSpecifier Access) { in addHandleMember() argument
624 IsROV ? HLSLROVAttr::CreateImplicit(Ctx) : nullptr, in addHandleMember()
H A DSemaHLSL.cpp1642 if (ResAttrs.IsROV) { in CreateHLSLAttributedResourceType()
1646 ResAttrs.IsROV = true; in CreateHLSLAttributedResourceType()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/
H A DDirectX.cpp61 /*IsROV*/ ResAttrs.IsROV}; in getHLSLType()
H A DSPIR.cpp485 assert(!ResAttrs.IsROV && in getHLSLType()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h6319 uint8_t IsROV : 1;
6324 Attributes(llvm::dxil::ResourceClass ResourceClass, bool IsROV = false,
6326 : ResourceClass(ResourceClass), IsROV(IsROV), RawBuffer(RawBuffer) {}
6331 return std::tie(LHS.ResourceClass, LHS.IsROV, LHS.RawBuffer) ==
6332 std::tie(RHS.ResourceClass, RHS.IsROV, RHS.RawBuffer);
6371 ID.AddBoolean(Attrs.IsROV);
H A DTypeProperties.td691 let Read = [{ node->getAttrs().IsROV }];
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp2149 if (Attrs.IsROV) in printHLSLAttributedResourceAfter()
H A DItaniumMangle.cpp4688 if (Attrs.IsROV) in mangleType()