Searched refs:CheckName (Results 1 - 18 of 18) sorted by relevance

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugType.h33 const CheckName Check;
40 BugType(class CheckName check, StringRef name, StringRef cat)
65 BuiltinBug(class CheckName check, const char *name, const char *description)
H A DBugReporter.h474 void EmitBasicReport(const Decl *DeclWithIssue, CheckName CheckName,
484 BugType *getBugTypeForName(CheckName CheckName, StringRef name,
H A DPathDiagnostic.h717 std::string CheckName; member in class:clang::ento::PathDiagnostic
738 PathDiagnostic(StringRef CheckName, const Decl *DeclWithIssue,
796 StringRef getCheckName() const { return CheckName; }
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DChecker.cpp24 CheckName CheckerBase::getCheckName() const { return Name; }
H A DCheckerRegistry.cpp112 checkerMgr.setCurrentCheckName(CheckName((*i)->FullName));
H A DPathDiagnostic.cpp108 PathDiagnostic::PathDiagnostic(StringRef CheckName, const Decl *declWithIssue, argument
113 : CheckName(CheckName),
H A DBugReporter.cpp3455 CheckName CheckName,
3461 BugType *BT = getBugTypeForName(CheckName, name, category);
3470 BugType *BugReporter::getBugTypeForName(CheckName CheckName, StringRef name, argument
3473 llvm::raw_svector_ostream(fullDesc) << CheckName.getName() << ":" << name
3477 BT = new BugType(CheckName, name, category);
3454 EmitBasicReport(const Decl *DeclWithIssue, CheckName CheckName, StringRef name, StringRef category, StringRef str, PathDiagnosticLocation Loc, ArrayRef<SourceRange> Ranges) argument
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp51 CheckName checkName_gets;
52 CheckName checkName_getpw;
53 CheckName checkName_mktemp;
54 CheckName checkName_mkstemp;
55 CheckName checkName_strcpy;
56 CheckName checkName_rand;
57 CheckName checkName_vfork;
58 CheckName checkName_FloatLoopCounter;
59 CheckName checkName_UncheckedReturn;
H A DIvarInvalidationChecker.cpp53 CheckName checkName_MissingInvalidationMethod;
54 CheckName checkName_InstanceVariableInvalidation;
206 void reportNoInvalidationMethod(CheckName CheckName,
532 CheckName CheckName, const ObjCIvarDecl *FirstIvarDecl,
549 BR.EmitBasicReport(FirstIvarDecl, CheckName, "Incomplete invalidation",
531 reportNoInvalidationMethod( CheckName CheckName, const ObjCIvarDecl *FirstIvarDecl, const IvarToPropMapTy &IvarToPopertyMap, const ObjCInterfaceDecl *InterfaceD, bool MissingDeclaration) const argument
H A DNullabilityChecker.cpp131 CheckName CheckNameNullPassedToNonnull;
132 CheckName CheckNameNullReturnedFromNonnull;
133 CheckName CheckNameNullableDereferenced;
134 CheckName CheckNameNullablePassedToNonnull;
135 CheckName CheckNameNullableReturnedFromNonnull;
1053 checker->Filter.CheckName##name = mgr.getCurrentCheckName(); \
H A DCallAndMessageChecker.cpp35 CheckName CheckName_CallAndMessageUnInitRefArg;
36 CheckName CheckName_CallAndMessageChecker;
H A DCStringChecker.cpp52 CheckName CheckNameCStringNullArg;
53 CheckName CheckNameCStringOutOfBounds;
54 CheckName CheckNameCStringBufferOverlap;
55 CheckName CheckNameCStringNotNullTerm;
2155 checker->Filter.CheckName##name = mgr.getCurrentCheckName(); \
H A DMallocChecker.cpp197 CheckName CheckNames[CK_NumCheckKinds];
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/
H A DCheckerManager.h86 class CheckName { class in namespace:clang::ento
89 explicit CheckName(StringRef Name) : Name(Name) {} function in class:clang::ento::CheckName
92 CheckName() = default;
105 CheckName CurrentCheckName;
115 void setCurrentCheckName(CheckName name) { CurrentCheckName = name; }
116 CheckName getCurrentCheckName() const { return CurrentCheckName; }
H A DChecker.h467 CheckName Name;
472 CheckName getCheckName() const;
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExpr.cpp2401 StringRef CheckName,
2407 std::string FnName = ("__ubsan_handle_" + CheckName +
2434 StringRef CheckName, ArrayRef<llvm::Constant *> StaticArgs,
2477 llvm::BasicBlock *Handlers = createBasicBlock("handler." + CheckName);
2515 emitCheckHandlerCall(*this, FnType, Args, CheckName, RecoverKind,
2521 createBasicBlock("non_fatal." + CheckName);
2522 llvm::BasicBlock *FatalHandlerBB = createBasicBlock("fatal." + CheckName);
2525 emitCheckHandlerCall(*this, FnType, Args, CheckName, RecoverKind, true,
2528 emitCheckHandlerCall(*this, FnType, Args, CheckName, RecoverKind, false,
2398 emitCheckHandlerCall(CodeGenFunction &CGF, llvm::FunctionType *FnType, ArrayRef<llvm::Value *> FnArgs, StringRef CheckName, CheckRecoverableKind RecoverKind, bool IsFatal, llvm::BasicBlock *ContBB) argument
2432 EmitCheck( ArrayRef<std::pair<llvm::Value *, SanitizerMask>> Checked, StringRef CheckName, ArrayRef<llvm::Constant *> StaticArgs, ArrayRef<llvm::Value *> DynamicArgs) argument
H A DCGExprScalar.cpp930 StringRef CheckName; local
941 CheckName = "negate_overflow";
947 CheckName = "shift_out_of_bounds";
955 CheckName = "divrem_overflow";
960 case BO_Add: CheckName = "add_overflow"; break;
961 case BO_Sub: CheckName = "sub_overflow"; break;
962 case BO_Mul: CheckName = "mul_overflow"; break;
971 CGF.EmitCheck(Checks, CheckName, StaticData, DynamicData);
H A DCodeGenFunction.h3011 StringRef CheckName, ArrayRef<llvm::Constant *> StaticArgs,

Completed in 209 milliseconds