Home
last modified time | relevance | path

Searched refs:getOpcodeStr (Results 1 – 12 of 12) sorted by relevance

/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
DUndefResultChecker.cpp77 << BinaryOperator::getOpcodeStr(B->getOpcode()) in checkPostStmt()
83 << BinaryOperator::getOpcodeStr(B->getOpcode()) in checkPostStmt()
DIdempotentOperationChecker.cpp393 os << "Both operands to '" << B->getOpcodeStr() in checkEndAnalysis()
398 os << "The left operand to '" << B->getOpcodeStr() << "' is always 1"; in checkEndAnalysis()
402 os << "The right operand to '" << B->getOpcodeStr() << "' is always 1"; in checkEndAnalysis()
406 os << "The left operand to '" << B->getOpcodeStr() << "' is always 0"; in checkEndAnalysis()
410 os << "The right operand to '" << B->getOpcodeStr() << "' is always 0"; in checkEndAnalysis()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
DSymbolManager.cpp34 << BinaryOperator::getOpcodeStr(getOpcode()) << ' ' in dumpToStream()
45 << BinaryOperator::getOpcodeStr(getOpcode()) in dumpToStream()
55 << BinaryOperator::getOpcodeStr(getOpcode()) in dumpToStream()
DBugReporterVisitors.cpp1399 Out << BinaryOperator::getOpcodeStr(Op) << ' '; in VisitTrueTest()
/freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/
DStmtPrinter.cpp873 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); in VisitUnaryOperator()
894 OS << UnaryOperator::getOpcodeStr(Node->getOpcode()); in VisitUnaryOperator()
1051 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; in VisitBinaryOperator()
1056 OS << " " << BinaryOperator::getOpcodeStr(Node->getOpcode()) << " "; in VisitCompoundAssignOperator()
DASTDumper.cpp1711 << " '" << UnaryOperator::getOpcodeStr(Node->getOpcode()) << "'"; in VisitUnaryOperator()
1745 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) << "'"; in VisitBinaryOperator()
1751 OS << " '" << BinaryOperator::getOpcodeStr(Node->getOpcode()) in VisitCompoundAssignOperator()
DExpr.cpp1036 StringRef UnaryOperator::getOpcodeStr(Opcode Op) { in getOpcodeStr() function in UnaryOperator
1735 StringRef BinaryOperator::getOpcodeStr(Opcode Op) { in getOpcodeStr() function in BinaryOperator
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/AST/
DExpr.h1712 static StringRef getOpcodeStr(Opcode Op);
2948 static StringRef getOpcodeStr(Opcode Op);
2950 StringRef getOpcodeStr() const { return getOpcodeStr(getOpcode()); } in getOpcodeStr() function
/freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/
DSemaOverload.cpp10575 << UnaryOperator::getOpcodeStr(Opc) in CreateOverloadedUnaryOp()
10579 UnaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedUnaryOp()
10585 << UnaryOperator::getOpcodeStr(Opc) in CreateOverloadedUnaryOp()
10589 UnaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedUnaryOp()
10825 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp()
10848 BinaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedBinOp()
10854 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp()
10858 BinaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedBinOp()
10875 << BinaryOperator::getOpcodeStr(Opc) in CreateOverloadedBinOp()
10880 BinaryOperator::getOpcodeStr(Opc), OpLoc); in CreateOverloadedBinOp()
DSemaExpr.cpp5883 << BinaryOperator::getOpcodeStr(CondOpcode); in DiagnoseConditionalPrecedence()
5887 << BinaryOperator::getOpcodeStr(CondOpcode), in DiagnoseConditionalPrecedence()
9259 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence()
9265 << DiagRange << BinaryOperator::getOpcodeStr(Opc) << OpStr; in DiagnoseBitwisePrecedence()
9271 << BinaryOperator::getOpcodeStr(Opc), in DiagnoseBitwisePrecedence()
9286 << Bop->getOpcodeStr(), in EmitDiagnosticForBitwiseAndInBitwiseOr()
9301 << Bop->getOpcodeStr(), in EmitDiagnosticForLogicalAndInLogicalOr()
9371 StringRef Op = Bop->getOpcodeStr(); in DiagnoseAdditionInShift()
9432 StringRef Shift = BinaryOperator::getOpcodeStr(Opc); in DiagnoseBinOpPrecedence()
DAnalysisBasedWarnings.cpp575 Str = BO->getOpcodeStr(); in DiagUninitUse()
/freebsd-9-stable/contrib/llvm/tools/clang/include/clang/ASTMatchers/
DASTMatchers.h2442 return Name == Node.getOpcodeStr(Node.getOpcode()); in AST_POLYMORPHIC_MATCHER_P()