Home
last modified time | relevance | path

Searched refs:isBitwiseOp (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h4057 static bool isBitwiseOp(Opcode Opc) { return Opc >= BO_And && Opc <= BO_Or; } in isBitwiseOp() function
4058 bool isBitwiseOp() const { return isBitwiseOp(getOpcode()); } in isBitwiseOp() function
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp8802 unsigned DiagID = BinaryOperator::isBitwiseOp(CondOpcode) in DiagnoseConditionalPrecedence()
15255 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
15256 bool isRightBitwise = RHSBO && RHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence()
15335 if (Bop->isBitwiseOp() && Bop->getOpcode() < Opc) { in DiagnoseBitwiseOpInBitwiseOp()
15393 if (BinaryOperator::isBitwiseOp(Opc)) in DiagnoseBinOpPrecedence()
H A DSemaDeclCXX.cpp17593 BO->isBitwiseOp()); in UsefulToPrintExpr()
H A DSemaOpenMP.cpp11447 AtomicInnerBinOp->isBitwiseOp()) { in checkBinaryOperation()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DCompiler.cpp1402 bool NeedIntPromot = ElemT == PT_Bool && (E->isBitwiseOp() || E->isShiftOp()); in VisitVectorBinOp()