Home
last modified time | relevance | path

Searched refs:sReg (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DMemRegion.h480 SubRegion(const MemRegion *sReg, Kind k) : MemRegion(k), superRegion(sReg) { in SubRegion() argument
482 assert(sReg); in SubRegion()
543 TypedRegion(const MemRegion *sReg, Kind k) : SubRegion(sReg, k) { in TypedRegion() argument
567 TypedValueRegion(const MemRegion* sReg, Kind k) : TypedRegion(sReg, k) { in TypedValueRegion() argument
934 const MemSpaceRegion *sReg) in CompoundLiteralRegion() argument
935 : TypedValueRegion(sReg, CompoundLiteralRegionKind), CL(cl) { in CompoundLiteralRegion()
937 assert(isa<GlobalInternalSpaceRegion>(sReg) || in CompoundLiteralRegion()
938 isa<StackLocalsSpaceRegion>(sReg)); in CompoundLiteralRegion()
964 DeclRegion(const MemRegion *sReg, Kind k) : TypedValueRegion(sReg, k) { in DeclRegion() argument
983 VarRegion(const MemRegion *sReg, Kind k) : DeclRegion(sReg, k) { in VarRegion() argument
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp183 ObjCIvarRegion::ObjCIvarRegion(const ObjCIvarDecl *ivd, const SubRegion *sReg) in ObjCIvarRegion() argument
184 : DeclRegion(sReg, ObjCIvarRegionKind), IVD(ivd) { in ObjCIvarRegion()
391 const MemRegion *sReg) { in ProfileRegion() argument
396 ID.AddPointer(sReg); in ProfileRegion()
405 const MemRegion *sReg) { in ProfileRegion() argument
407 ID.AddPointer(sReg); in ProfileRegion()
417 const MemRegion *sReg) { in ProfileRegion() argument
420 ID.AddPointer(sReg); in ProfileRegion()
1066 const MemRegion *sReg = nullptr; in getVarRegion() local
1072 sReg = getGlobalsRegion(MemRegion::GlobalImmutableSpaceRegionKind); in getVarRegion()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLexHLSLRootSignature.cpp86 Result.TokKind = TokenKind::sReg; in lexToken()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseHLSLRootSignature.cpp377 ExpectedReg = TokenKind::sReg; in parseDescriptorTableClause()
434 reportDiag(diag::err_hlsl_rootsig_missing_param) << TokenKind::sReg; in parseStaticSampler()
740 if (tryConsumeExpectedToken(TokenKind::sReg)) { in parseStaticSamplerParams()
947 CurToken.TokKind == TokenKind::sReg) && in parseRegister()
963 case TokenKind::sReg: in parseRegister()
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHLSLRootSignatureTokenKinds.def79 TOK(sReg, "s register")