Lines Matching refs:STC

847 MemRegionManager::getStackLocalsRegion(const StackFrameContext *STC) {  in getStackLocalsRegion()  argument
848 assert(STC); in getStackLocalsRegion()
849 StackLocalsSpaceRegion *&R = StackLocalsSpaceRegions[STC]; in getStackLocalsRegion()
855 new (R) StackLocalsSpaceRegion(*this, STC); in getStackLocalsRegion()
860 MemRegionManager::getStackArgumentsRegion(const StackFrameContext *STC) { in getStackArgumentsRegion() argument
861 assert(STC); in getStackArgumentsRegion()
862 StackArgumentsSpaceRegion *&R = StackArgumentsSpaceRegions[STC]; in getStackArgumentsRegion()
868 new (R) StackArgumentsSpaceRegion(*this, STC); in getStackArgumentsRegion()
1001 const auto *STC = V.get<const StackFrameContext *>(); in getVarRegion() local
1003 if (!STC) { in getVarRegion()
1011 ? static_cast<const MemRegion *>(getStackArgumentsRegion(STC)) in getVarRegion()
1012 : static_cast<const MemRegion *>(getStackLocalsRegion(STC)); in getVarRegion()
1016 const Decl *STCD = STC->getDecl(); in getVarRegion()
1038 STC->getAnalysisDeclContext()); in getVarRegion()
1082 const StackFrameContext *STC = LC->getStackFrame(); in getBlockDataRegion() local
1083 assert(STC); in getBlockDataRegion()
1084 sReg = getStackLocalsRegion(STC); in getBlockDataRegion()
1110 const StackFrameContext *STC = LC->getStackFrame(); in getCompoundLiteralRegion() local
1111 assert(STC); in getCompoundLiteralRegion()
1112 sReg = getStackLocalsRegion(STC); in getCompoundLiteralRegion()
1248 const StackFrameContext *STC = LC->getStackFrame(); in getCXXThisRegion() local
1249 assert(STC); in getCXXThisRegion()
1250 return getSubRegion<CXXThisRegion>(PT, getStackArgumentsRegion(STC)); in getCXXThisRegion()
1256 const StackFrameContext *STC = LC->getStackFrame(); in getAllocaRegion() local
1257 assert(STC); in getAllocaRegion()
1258 return getSubRegion<AllocaRegion>(E, cnt, getStackLocalsRegion(STC)); in getAllocaRegion()