Home
last modified time | relevance | path

Searched refs:ProgramPointTag (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/Analysis/
H A DProgramPoint.h38 class ProgramPointTag {
40 ProgramPointTag(void *tagKind = nullptr) : TagKind(tagKind) {} in TagKind()
41 virtual ~ProgramPointTag();
51 class SimpleProgramPointTag : public ProgramPointTag {
96 llvm::PointerIntPair<const ProgramPointTag *, 2, unsigned> Tag;
103 const ProgramPointTag *tag = nullptr)
117 const ProgramPointTag *tag = nullptr)
131 ProgramPoint withTag(const ProgramPointTag *tag) const { in withTag()
175 const ProgramPointTag *getTag() const { return Tag.getPointer(); } in getTag()
220 const ProgramPointTag *tag);
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCheckerContext.h170 const ProgramPointTag *Tag = nullptr) {
182 const ProgramPointTag *Tag = nullptr) {
190 const ProgramPointTag *Tag = nullptr) {
196 const ProgramPointTag *Tag = nullptr) {
210 const ProgramPointTag *Tag = nullptr) {
226 const ProgramPointTag *Tag = nullptr) {
240 const ProgramPointTag *Tag = nullptr) {
256 const ProgramPointTag *Tag = nullptr) {
397 const ProgramPointTag *Tag = nullptr) {
H A DCoreEngine.h368 const ProgramPointTag *Tag = nullptr) {
374 const ProgramPointTag *Tag = nullptr) {
423 const ProgramPointTag *tag = nullptr,
433 const ProgramPointTag *tag = nullptr,
H A DExprEngine.h596 static std::pair<const ProgramPointTag *, const ProgramPointTag *>
691 const ProgramPointTag *tag = nullptr,
698 const ProgramPointTag *tag = nullptr);
777 const ProgramPointTag *tag,
H A DCallEvent.h55 class ProgramPointTag; variable
353 const ProgramPointTag *Tag = nullptr) const;
/openbsd-src/gnu/llvm/clang/lib/Analysis/
H A DProgramPoint.cpp20 ProgramPointTag::~ProgramPointTag() {} in ~ProgramPointTag()
24 const ProgramPointTag *tag){ in getProgramPoint()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporter.h738 class DataTag : public ProgramPointTag {
758 DataTag(void *TagKind) : ProgramPointTag(TagKind) {} in DataTag()
778 static bool classof(const ProgramPointTag *T) { in classof()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.h353 const ProgramPointTag *Tag, CheckerContext &Ctx,
H A DRetainCountDiagnostics.cpp545 const ProgramPointTag *Tag = N->getLocation().getTag(); in VisitNode()
H A DRetainCountChecker.cpp1211 const ProgramPointTag *Tag, in handleAutoreleaseCounts()
/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3611 const ProgramPointTag *tag) { in evalStore()
3636 const ProgramPointTag *tag, in evalLoad()
3703 std::pair<const ProgramPointTag *, const ProgramPointTag*>
3732 const std::pair<const ProgramPointTag *, const ProgramPointTag*> &tags = in evalEagerlyAssumeBinOpBifurcation()
3862 if (const ProgramPointTag *Tag = OtherNode->getLocation().getTag()) in getNodeLabel()
H A DBugReporterVisitors.cpp2764 const std::pair<const ProgramPointTag *, const ProgramPointTag *> &Tags = in VisitNodeImpl()
2776 const ProgramPointTag *PreviousNodeTag = in VisitNodeImpl()
2787 const ProgramPointTag *CurrentNodeTag = PS->getTag(); in VisitNodeImpl()
H A DCallEvent.cpp289 const ProgramPointTag *Tag) const { in getProgramPoint()
/openbsd-src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h492 class CheckerBase : public ProgramPointTag {