Home
last modified time | relevance | path

Searched refs:isInteresting (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DIVUsers.cpp56 static bool isInteresting(const SCEV *S, const Instruction *I, const Loop *L, in isInteresting() function
69 return isInteresting(AR->getStart(), I, L, SE, LI) && in isInteresting()
70 !isInteresting(AR->getStepRecurrence(*SE), I, L, SE, LI); in isInteresting()
77 if (isInteresting(Op, I, L, SE, LI)) { in isInteresting()
170 if (!isInteresting(ISE, I, L, SE, LI)) in AddUsersIfInteresting()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrModeling.cpp397 !BR.isInteresting(ThisRegion)) in evalCall()
414 !BR.isInteresting(ThisRegion)) in evalCall()
617 !BR.isInteresting(ThisRegion)) in handleReset()
653 !BR.isInteresting(ThisRegion)) in handleRelease()
696 if (BR.isInteresting(FirstThisRegion) && in handleSwap()
697 !BR.isInteresting(SecondThisRegion)) { in handleSwap()
701 if (BR.isInteresting(SecondThisRegion) && in handleSwap()
702 !BR.isInteresting(FirstThisRegion)) { in handleSwap()
758 !BR.isInteresting(ThisRegion)) in handleAssignOp()
798 if (BR.isInteresting(OtherSmartPtrRegion)) { in updateMovedSmartPointers()
[all …]
H A DStringChecker.cpp81 return BR.isInteresting(*Param) ? "Assuming the pointer is not null." in checkPreCall()
H A DDebugContainerModeling.cpp96 if (BR.isInteresting(Field)) { in analyzerContainerDataField()
H A DCXXDeleteChecker.cpp208 if (!BR.isInteresting(M)) in VisitNode()
H A DSetgidSetuidOrderChecker.cpp130 if (!BR.isInteresting(RetSym) || &BR.getBugType() != &this->BT) in processSetuid()
H A DErrnoModeling.cpp231 if (ErrnoR && BR.isInteresting(ErrnoR)) { in getErrnoNoteTag()
H A DStreamChecker.cpp287 if (!BR.isInteresting(StreamSym) || in constructSetEofNoteTag()
300 if (!BR.isInteresting(StreamSym) || in constructSetErrorNoteTag()
313 if (!BR.isInteresting(StreamSym)) in constructSetEofOrErrorNoteTag()
597 if (BR.isInteresting(StreamSym) && &BR.getBugType() == &BT_ResourceLeak) in constructLeakNoteTag()
H A DGenericTaintChecker.cpp159 if (!BR.isInteresting(CallLocation) || in taintOriginTrackerTag()
196 if (BR.isInteresting(Sym)) { in taintPropagationExplainerTag()
H A DArrayBoundCheckerV2.cpp539 if (BR.isInteresting(PartSym)) in providesInformationAboutInteresting()
H A DStdLibraryFunctionsChecker.cpp1354 if (BR.isInteresting(ArgSVal)) in checkPreCall()
1424 if (BR.isInteresting(RV) && Node->succ_size() > 1) in checkPostCall()
1444 BR.isInteresting(ErrnoLoc->getAsRegion()); in checkPostCall()
1451 if (BR.isInteresting(RV)) in checkPostCall()
H A DContainerModeling.cpp716 if (!BR.isInteresting(ContReg)) in getChangeTag()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DX86InstrMappingEmitter.cpp163 static bool isInteresting(const Record *Rec) { in isInteresting() function
185 if (!isInteresting(Rec)) in emitCompressEVEXTable()
275 if (!isInteresting(Rec)) in emitNFTransformTable()
318 if (!isInteresting(Rec) || NoCompressSet.find(Name) != NoCompressSet.end()) in emitND2NonNDTable()
352 if (!isInteresting(Rec)) in emitSSE2AVXTable()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/cert/
H A DInvalidPtrChecker.cpp140 if (BR.isInteresting(MainRegion)) { in REGISTER_SET_WITH_PROGRAMSTATE()
146 if (BR.isInteresting(MR)) { in REGISTER_SET_WITH_PROGRAMSTATE()
195 if (!BR.isInteresting(PrevReg) || &BR.getBugType() != &InvalidPtrBugType) in postPreviousReturnInvalidatingCall()
225 if (!BR.isInteresting(MR) || &BR.getBugType() != &InvalidPtrBugType) in postPreviousReturnInvalidatingCall()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h451 bool isInteresting(SymbolRef sym) const;
452 bool isInteresting(const MemRegion *R) const;
453 bool isInteresting(SVal V) const;
454 bool isInteresting(const LocationContext *LC) const;
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp453 R->isInteresting(C.getLocationContextFor(&call.path)))) in removeUnneededCalls()
2377 bool PathSensitiveBugReport::isInteresting(SVal V) const { in isInteresting() function in PathSensitiveBugReport
2381 bool PathSensitiveBugReport::isInteresting(SymbolRef sym) const { in isInteresting() function in PathSensitiveBugReport
2385 bool PathSensitiveBugReport::isInteresting(const MemRegion *R) const { in isInteresting() function in PathSensitiveBugReport
2389 bool PathSensitiveBugReport::isInteresting(const LocationContext *LC) const { in isInteresting() function in PathSensitiveBugReport
H A DBugReporterVisitors.cpp2992 if (report.isInteresting(R)) in patternMatch()
2997 if (report.isInteresting(V)) in patternMatch()
/freebsd/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp371 bool isInteresting(Any IR, StringRef PassID, StringRef PassName) { in isInteresting() function
400 if (!isInteresting(IR, PassID, PassName)) in saveIRBeforePass()
418 } else if (!isInteresting(IR, PassID, PassName)) { in handleIRAfterPass()
2507 if (!isInteresting(IR, PassID, PIC.getPassNameForClassName(PassID))) { in registerCallbacks()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp940 auto isInteresting = [](Value *V) { in shouldConvertOrWithNoCommonBitsToAdd() local
948 if (any_of(Or->operands(), isInteresting)) in shouldConvertOrWithNoCommonBitsToAdd()
952 if (Or->hasOneUse() && isInteresting(VB)) in shouldConvertOrWithNoCommonBitsToAdd()