| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | TestAfterDivZeroChecker.cpp | 31 const StackFrameContext *SFC; member in __anona31b3e980111::ZeroState 34 ZeroState(SymbolRef S, unsigned B, const StackFrameContext *SFC) in ZeroState() argument 35 : ZeroSymbol(S), BlockID(B), SFC(SFC) {} in ZeroState() 37 const StackFrameContext *getStackFrameContext() const { return SFC; } in getStackFrameContext() 40 return BlockID == X.BlockID && SFC == X.SFC && ZeroSymbol == X.ZeroSymbol; in operator ==() 44 return std::tie(BlockID, SFC, ZeroSymbol) < in operator <() 45 std::tie(X.BlockID, X.SFC, X.ZeroSymbol); in operator <() 50 ID.AddPointer(SFC); in Profile() 58 const StackFrameContext *SFC; member in __anona31b3e980111::DivisionBRVisitor 62 DivisionBRVisitor(SymbolRef ZeroSymbol, const StackFrameContext *SFC) in DivisionBRVisitor() argument [all …]
|
| H A D | MIGChecker.cpp | 155 const StackFrameContext *SFC; in isInMIGCall() local 158 SFC = LC->getStackFrame(); in isInMIGCall() 159 LC = SFC->getParent(); in isInMIGCall() 162 const Decl *D = SFC->getDecl(); in isInMIGCall()
|
| H A D | NSErrorChecker.cpp | 200 const StackFrameContext * SFC = C.getStackFrame(); in parameterTypeFromSVal() local 206 if (StackSpace->getStackFrame() == SFC) in parameterTypeFromSVal()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | MemRegion.cpp | 1004 if (const auto *SFC = dyn_cast<StackFrameContext>(LC)) { in getStackOrCaptureRegionForDeclContext() local 1005 if (cast<DeclContext>(SFC->getDecl()) == DC) in getStackOrCaptureRegionForDeclContext() 1006 return SFC; in getStackOrCaptureRegionForDeclContext() 1046 const StackFrameContext *SFC = LC->getStackFrame(); in getVarRegion() local 1047 const Stmt *CallSite = SFC->getCallSite(); in getVarRegion() 1049 const Decl *D = SFC->getDecl(); in getVarRegion() 1053 getStackArgumentsRegion(SFC)); in getVarRegion() 1057 getStackArgumentsRegion(SFC)); in getVarRegion() 1060 getStackArgumentsRegion(SFC)); in getVarRegion() 1162 const StackFrameContext *SFC = LC->getStackFrame(); in getParamVarRegion() local [all …]
|
| H A D | ExprEngineCXX.cpp | 216 const StackFrameContext *SFC = LCtx->getStackFrame(); in computeObjectUnderConstruction() local 217 if (const LocationContext *CallerLCtx = SFC->getParent()) { in computeObjectUnderConstruction() 218 auto RTC = (*SFC->getCallSiteBlock())[SFC->getIndex()] in computeObjectUnderConstruction() 234 SFC->getCallSiteBlock(), CallerLCtx); in computeObjectUnderConstruction() 236 cast<Expr>(SFC->getCallSite()), State, &CallerBldrCtx, CallerLCtx, in computeObjectUnderConstruction() 257 SFC, RegionTy, currBldrCtx->blockCount()); in computeObjectUnderConstruction() 442 const StackFrameContext *SFC = LCtx->getStackFrame(); in updateObjectsUnderConstruction() local 443 const LocationContext *CallerLCtx = SFC->getParent(); in updateObjectsUnderConstruction() 449 auto RTC = (*SFC->getCallSiteBlock())[SFC->getIndex()] in updateObjectsUnderConstruction() 460 cast<Expr>(SFC->getCallSite()), State, CallerLCtx, in updateObjectsUnderConstruction()
|
| H A D | CallEvent.cpp | 194 const StackFrameContext *SFC = getCalleeStackFrame(BlockCount); in getParameterLocation() local 196 if (!SFC) in getParameterLocation() 201 getOriginExpr(), Index, SFC); in getParameterLocation() 971 const StackFrameContext *SFC = getLocationContext()->getStackFrame(); in getInheritingStackFrame() local 972 while (isa<CXXInheritedCtorInitExpr>(SFC->getCallSite())) in getInheritingStackFrame() 973 SFC = SFC->getParent()->getStackFrame(); in getInheritingStackFrame() 974 return SFC; in getInheritingStackFrame()
|
| H A D | SValBuilder.cpp | 315 const StackFrameContext *SFC) { in getCXXThis() argument 317 getRegionManager().getCXXThisRegion(D->getThisType(), SFC)); in getCXXThis() 322 const StackFrameContext *SFC) { in getCXXThis() argument 325 return loc::MemRegionVal(getRegionManager().getCXXThisRegion(PT, SFC)); in getCXXThis()
|
| H A D | ExprEngineCallAndReturn.cpp | 464 if (const StackFrameContext *SFC = dyn_cast<StackFrameContext>(LCtx)) { in examineStackFrames() local 465 const Decl *DI = SFC->getDecl(); in examineStackFrames()
|
| H A D | BugReporterVisitors.cpp | 2296 const StackFrameContext *SFC = LVNode->getStackFrame(); in handle() local 2312 Result.combineWith(getParentTracker().track(LVal, RR, Opts, SFC)); in handle() 2357 getParentTracker().track(V, R, Opts, SFC); in handle() 2464 const StackFrameContext *SFC = LVNode->getStackFrame(); in handle() local 2500 getParentTracker().track(RVal, L->getRegion(), Opts, SFC)); in handle()
|
| H A D | ExprEngine.cpp | 307 const StackFrameContext *SFC = InitLoc->getStackFrame(); in getInitialState() local 308 if (SFC->getParent() == nullptr) { in getInitialState() 309 loc::MemRegionVal L = svalBuilder.getCXXThis(MD, SFC); in getInitialState() 1057 const StackFrameContext *SFC = LC ? LC->getStackFrame() : nullptr; in removeDead() local 1058 SymbolReaper SymReaper(SFC, ReferenceStmt, SymMgr, getStoreManager()); in removeDead() 1073 CleanedState, SFC, SymReaper); in removeDead()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/ |
| H A D | RetainCountChecker.h | 382 inline bool isSynthesizedAccessor(const StackFrameContext *SFC) { in isSynthesizedAccessor() argument 383 auto Method = dyn_cast_or_null<ObjCMethodDecl>(SFC->getDecl()); in isSynthesizedAccessor() 387 return SFC->getAnalysisDeclContext()->isBodyAutosynthesized(); in isSynthesizedAccessor()
|
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | SValBuilder.h | 394 const StackFrameContext *SFC); 398 const StackFrameContext *SFC);
|
| H A D | MemRegion.h | 422 const StackFrameContext *SFC; variable 426 : MemSpaceRegion(mgr, k), SFC(sfc) { in StackSpaceRegion() 433 const StackFrameContext *getStackFrame() const { return SFC; } in getStackFrame()
|
| /freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
| H A D | DylibReader.cpp | 183 auto SFC = Obj->getSubFrameworkCommand(LCI); in readMachOHeader() local 184 BA.ParentUmbrella = Slice.copyString(LCI.Ptr + SFC.umbrella); in readMachOHeader()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 463 if (const auto *SFC = dyn_cast<StackFrameContext>(LC)) in getStackFrame() local 464 return SFC; in getStackFrame()
|
| H A D | PathDiagnostic.cpp | 516 getLocationForCaller(const StackFrameContext *SFC, in getLocationForCaller() argument 519 const CFGBlock &Block = *SFC->getCallSiteBlock(); in getLocationForCaller() 520 CFGElement Source = Block[SFC->getIndex()]; in getLocationForCaller()
|
| /freebsd/contrib/file/magic/Magdir/ |
| H A D | console | 1294 0 string BANDAI\040SFC-ADX 1295 >0x10 string !SFC-ADX\040BACKUP Sufami Turbo ROM image:
|
| /freebsd/share/doc/IPv6/ |
| H A D | IMPLEMENTATION | 2244 SFC: http://neo.sfc.wide.ad.jp/~mip6/ (-13 draft)
|
| /freebsd/share/misc/ |
| H A D | pci_vendors | 28992 1f3f 1000 3SFC VF 28994 1f3f 1000 3SFC VF Hyper-V
|