Searched refs:BRC (Results 1 - 25 of 33) sorted by relevance

12

/netbsd-current/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/BugReporter/
H A DBugReporterVisitors.h62 BugReporterContext &BRC,
67 virtual void finalizeVisitor(BugReporterContext &BRC,
76 virtual PathDiagnosticPieceRef getEndPath(BugReporterContext &BRC,
84 getDefaultEndPath(const BugReporterContext &BRC, const ExplodedNode *N,
160 BugReporterContext &BRC,
186 BugReporterContext &BRC,
204 BugReporterContext &BRC,
231 BugReporterContext &BRC,
235 BugReporterContext &BRC,
241 PathSensitiveBugReport &R, BugReporterContext &BRC);
[all...]
H A DBugReporter.h746 Optional<std::string> generateMessage(BugReporterContext &BRC, argument
748 std::string Msg = Cb(BRC, R);
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp262 BugReporterContext &BRC) {
265 BRC.getSourceManager(),
266 BRC.getASTContext().getLangOpts());
329 BugReporterVisitor::getDefaultEndPath(const BugReporterContext &BRC, argument
825 BugReporterContext &BRC,
834 const SourceManager &SMgr = BRC.getSourceManager();
837 std::string MacroName = std::string(getMacroName(*Loc, BRC));
839 if (!BugLoc.isMacroID() || getMacroName(BugLoc, BRC) != MacroName)
1025 BugReporterContext &BRC,
1132 PathDiagnosticLocation L(Ret, BRC
261 getMacroName(SourceLocation Loc, BugReporterContext &BRC) argument
1024 visitNodeInitial(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
1151 visitNodeMaybeUnsuppress(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
1398 VisitNode(const ExplodedNode *Succ, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
1651 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) argument
1728 VisitNode(const ExplodedNode *Succ, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
1835 constructDebugPieceForTrackedCondition(const Expr *Cond, const ExplodedNode *N, BugReporterContext &BRC) argument
1886 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
2222 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
2267 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
2279 VisitNodeImpl(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
2317 VisitTerminator( const Stmt *Term, const ExplodedNode *N, const CFGBlock *srcBlk, const CFGBlock *dstBlk, PathSensitiveBugReport &R, BugReporterContext &BRC) argument
2376 VisitTrueTest(const Expr *Cond, BugReporterContext &BRC, PathSensitiveBugReport &R, const ExplodedNode *N, bool TookTrue) argument
2444 patternMatch(const Expr *Ex, const Expr *ParentEx, raw_ostream &Out, BugReporterContext &BRC, PathSensitiveBugReport &report, const ExplodedNode *N, Optional<bool> &prunable, bool IsSameFieldName) argument
2531 VisitTrueTest( const Expr *Cond, const BinaryOperator *BExpr, BugReporterContext &BRC, PathSensitiveBugReport &R, const ExplodedNode *N, bool TookTrue, bool IsAssuming) argument
2651 VisitConditionVariable( StringRef LhsString, const Expr *CondVarExpr, BugReporterContext &BRC, PathSensitiveBugReport &report, const ExplodedNode *N, bool TookTrue) argument
2678 VisitTrueTest( const Expr *Cond, const DeclRefExpr *DRE, BugReporterContext &BRC, PathSensitiveBugReport &report, const ExplodedNode *N, bool TookTrue, bool IsAssuming) argument
2714 VisitTrueTest( const Expr *Cond, const MemberExpr *ME, BugReporterContext &BRC, PathSensitiveBugReport &report, const ExplodedNode *N, bool TookTrue, bool IsAssuming) argument
2802 finalizeVisitor( BugReporterContext &BRC, const ExplodedNode *N, PathSensitiveBugReport &BR) argument
2890 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
2946 finalizeVisitor( BugReporterContext &BRC, const ExplodedNode *EndPathNode, PathSensitiveBugReport &BR) argument
3026 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &R) argument
[all...]
H A DBugReporter.cpp227 BugReporterContext BRC, std::unique_ptr<ExplodedGraph> BugPath,
1978 BugReporterContext BRC, std::unique_ptr<ExplodedGraph> BugPath,
1981 : BugReporterContext(BRC), BugPath(std::move(BugPath)), R(r),
2745 BugReporterContext &BRC) {
2769 V->finalizeVisitor(BRC, ErrorNode, *R);
2771 if (auto Piece = V->getEndPath(BRC, ErrorNode, *R)) {
2784 auto P = V->VisitNode(NextNode, BRC, *R);
2820 BugReporterContext BRC(Reporter);
2824 generateVisitorsDiagnostics(R, ErrorNode, BRC);
2835 generateVisitorsDiagnostics(R, BugPath->ErrorNode, BRC);
1977 PathDiagnosticBuilder( BugReporterContext BRC, std::unique_ptr<ExplodedGraph> BugPath, PathSensitiveBugReport *r, const ExplodedNode *ErrorNode, std::unique_ptr<VisitorsDiagnosticsTy> VisitorsDiagnostics) argument
2743 generateVisitorsDiagnostics(PathSensitiveBugReport *R, const ExplodedNode *ErrorNode, BugReporterContext &BRC) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DDeleteWithNonVirtualDtorChecker.cpp49 BugReporterContext &BRC,
107 const ExplodedNode *N, BugReporterContext &BRC,
143 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
106 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
H A DDynamicTypeChecker.cpp51 BugReporterContext &BRC,
92 const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) {
110 const LangOptions &LangOpts = BRC.getASTContext().getLangOpts();
140 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
91 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) argument
H A DTaint.h98 BugReporterContext &BRC,
H A DObjCSuperDeallocChecker.cpp73 BugReporterContext &BRC,
248 BugReporterContext &BRC,
268 PathDiagnosticLocation::create(P, BRC.getSourceManager());
247 VisitNode(const ExplodedNode *Succ, BugReporterContext &BRC, PathSensitiveBugReport &) argument
H A DInnerPointerChecker.cpp58 VisitNode(const ExplodedNode *N, BugReporterContext &BRC,
310 const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) {
328 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
309 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) argument
H A DTestAfterDivZeroChecker.cpp73 BugReporterContext &BRC,
96 DivisionBRVisitor::VisitNode(const ExplodedNode *Succ, BugReporterContext &BRC, argument
122 PathDiagnosticLocation::create(P, BRC.getSourceManager());
H A DValistChecker.cpp80 PathDiagnosticPieceRef getEndPath(BugReporterContext &BRC,
92 BugReporterContext &BRC,
379 const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) {
398 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
378 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &) argument
H A DTaint.cpp233 BugReporterContext &BRC,
247 PathDiagnosticLocation::createBegin(S, BRC.getSourceManager(), NCtx);
232 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
H A DMoveChecker.cpp174 BugReporterContext &BRC,
276 BugReporterContext &BRC,
328 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
275 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
H A DMacOSKeychainAPIChecker.cpp146 BugReporterContext &BRC,
622 const ExplodedNode *N, BugReporterContext &BRC,
644 PathDiagnosticLocation Pos(ArgExpr, BRC.getSourceManager(),
621 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
H A DDynamicTypePropagation.cpp88 BugReporterContext &BRC,
1048 const ExplodedNode *N, BugReporterContext &BRC,
1068 const LangOptions &LangOpts = BRC.getASTContext().getLangOpts();
1097 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
1047 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
H A DNullabilityChecker.cpp147 BugReporterContext &BRC,
298 const ExplodedNode *N, BugReporterContext &BRC,
328 PathDiagnosticLocation Pos(S, BRC.getSourceManager(),
297 VisitNode( const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
/netbsd-current/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
H A DMPIBugReporter.cpp89 BugReporterContext &BRC,
107 PathDiagnosticLocation::create(P, BRC.getSourceManager());
88 VisitNode(const ExplodedNode *N, BugReporterContext &BRC, PathSensitiveBugReport &BR) argument
H A DMPIBugReporter.h93 BugReporterContext &BRC,
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZLongBranch.cpp222 case SystemZ::BRC:
396 case SystemZ::BRC:
H A DSystemZElimCompare.cpp211 if (Branch->getOpcode() != SystemZ::BRC ||
604 case SystemZ::BRC:
653 assert(CCUse >= 0 && "BRC/BCR must use CC");
H A DSystemZPostRewrite.cpp193 BuildMI(&MBB, DL, TII->get(SystemZ::BRC))
/netbsd-current/external/gpl3/binutils/dist/opcodes/
H A Dmt-opc.c563 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
575 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
581 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
587 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
593 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
629 { { MNEM, ' ', '#', OP (RBBC), ',', '#', OP (TYPE), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (ROWNUM), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
/netbsd-current/external/gpl3/gdb.old/dist/opcodes/
H A Dmt-opc.c563 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
575 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
581 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
587 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
593 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
629 { { MNEM, ' ', '#', OP (RBBC), ',', '#', OP (TYPE), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (ROWNUM), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
/netbsd-current/external/gpl3/gdb/dist/opcodes/
H A Dmt-opc.c563 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
575 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
581 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
587 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
593 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
629 { { MNEM, ' ', '#', OP (RBBC), ',', '#', OP (TYPE), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (ROWNUM), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
/netbsd-current/external/gpl3/binutils.old/dist/opcodes/
H A Dmt-opc.c563 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
575 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
581 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
587 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
593 { { MNEM, ' ', OP (FRSR1), ',', '#', OP (RBBC), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (FBDISP), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },
629 { { MNEM, ' ', '#', OP (RBBC), ',', '#', OP (TYPE), ',', '#', OP (BALL), ',', '#', OP (BRC), ',', '#', OP (ROWNUM), ',', '#', OP (RC1), ',', '#', OP (CBRB), ',', '#', OP (CELL), ',', '#', OP (DUP), ',', '#', OP (CTXDISP), 0 } },

Completed in 579 milliseconds

12