Searched refs:LHSBO (Results 1 – 4 of 4) sorted by relevance
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 5554 const BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHS); in isImpliedCondition() local 5555 if (LHSBO && RHSCmp) { in isImpliedCondition() 5556 if ((LHSBO->getOpcode() == Instruction::And || in isImpliedCondition() 5557 LHSBO->getOpcode() == Instruction::Or)) in isImpliedCondition() 5558 return isImpliedCondAndOr(LHSBO, RHSCmp, DL, LHSIsTrue, Depth); in isImpliedCondition()
|
/external/llvm-project/llvm/lib/Analysis/ |
D | ValueTracking.cpp | 6223 const BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHS); in isImpliedCondition() local 6224 if (LHSBO) { in isImpliedCondition() 6225 if ((LHSBO->getOpcode() == Instruction::And || in isImpliedCondition() 6226 LHSBO->getOpcode() == Instruction::Or)) in isImpliedCondition() 6227 return isImpliedCondAndOr(LHSBO, RHSPred, RHSOp0, RHSOp1, DL, LHSIsTrue, in isImpliedCondition()
|
/external/clang/lib/Sema/ |
D | SemaExpr.cpp | 10992 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); in DiagnoseBitwisePrecedence() local 10996 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); in DiagnoseBitwisePrecedence() 11003 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence() 11011 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence() 11013 SourceRange(LHSBO->getRHS()->getLocStart(), RHSExpr->getLocEnd()) in DiagnoseBitwisePrecedence()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaExpr.cpp | 14115 BinaryOperator *LHSBO = dyn_cast<BinaryOperator>(LHSExpr); in DiagnoseBitwisePrecedence() local 14119 bool isLeftComp = LHSBO && LHSBO->isComparisonOp(); in DiagnoseBitwisePrecedence() 14126 bool isLeftBitwise = LHSBO && LHSBO->isBitwiseOp(); in DiagnoseBitwisePrecedence() 14134 StringRef OpStr = isLeftComp ? LHSBO->getOpcodeStr() : RHSBO->getOpcodeStr(); in DiagnoseBitwisePrecedence() 14137 ? SourceRange(LHSBO->getRHS()->getBeginLoc(), RHSExpr->getEndLoc()) in DiagnoseBitwisePrecedence()
|