| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
| H A D | HexagonMCChecker.cpp | 69 MCRegister &PredReg, bool &isTrue) { in initReg() argument 74 isTrue = HexagonMCInstrInfo::isPredicatedTrue(MCII, MCI); in initReg() 95 bool isTrue = false; in init() local 100 initReg(MCI, MCI.getOperand(i).getReg(), PredReg, isTrue); in init() 102 initReg(MCI, ImpUse, PredReg, isTrue); in init() 131 Defs[R].insert(PredSense(PredReg, isTrue)); in init() 182 Defs[*SRI].insert(PredSense(PredReg, isTrue)); in init()
|
| H A D | HexagonMCChecker.h | 80 void initReg(MCInst const &, MCRegister, MCRegister &PredReg, bool &isTrue);
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | CFG.cpp | 410 bool isTrue() const { return X == 1; } in isTrue() function in __anonef2f84bd0211::TryResult 425 return TryResult(R1.isTrue() && R2.isTrue()); in bothKnownTrue() 1206 const bool Combine = IsAnd ? (Res1.isTrue() && Res2.isTrue()) in checkIncorrectLogicOperator() 1207 : (Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1212 LHSAlwaysTrue &= Res1.isTrue(); in checkIncorrectLogicOperator() 1214 RHSAlwaysTrue &= Res2.isTrue(); in checkIncorrectLogicOperator() 1394 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) in evaluateAsBooleanConditionNoCache() 1395 return LHS.isTrue(); in evaluateAsBooleanConditionNoCache() 1400 return LHS.isTrue() || RHS.isTrue(); in evaluateAsBooleanConditionNoCache() 1402 return LHS.isTrue() && RHS.isTrue(); in evaluateAsBooleanConditionNoCache() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | SelectOptimize.cpp | 480 SelectOptimizeImpl::SelectLike &SI, bool isTrue, in getTrueOrFalseValue() argument 483 Value *V = isTrue ? SI.getTrueValue() : SI.getFalseValue(); in getTrueOrFalseValue() 487 return isTrue ? It->second.first : It->second.second; in getTrueOrFalseValue() 511 CBO->setOperand(OtherIdx, isTrue ? It->second.first : It->second.second); in getTrueOrFalseValue()
|
| H A D | CodeGenPrepare.cpp | 7423 getTrueOrFalseValue(SelectInst *SI, bool isTrue, in getTrueOrFalseValue() argument 7431 V = (isTrue ? DefSI->getTrueValue() : DefSI->getFalseValue()); in getTrueOrFalseValue()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | InclusionRewriter.cpp | 487 bool isTrue = IsIfAtLocationTrue(RawToken.getLocation()); in Process() local 511 OS << (elif ? "#elif " : "#if ") << (isTrue ? "1" : "0") in Process()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonVectorCombine.cpp | 101 bool isTrue(const Value *Val) const; 723 if (!HVC.isTrue(Predicate) && HvxHasPredLoad) { in createLoad() 733 if (HVC.isTrue(Mask)) in createLoad() 764 if (HVC.isTrue(Predicate)) in createPredicatedLoad() 784 if (HVC.isTrue(Predicate)) in createStore() 789 if (HVC.isTrue(Mask)) { in createStore() 834 if (HVC.isTrue(Predicate)) in createPredicatedStore() 2219 auto HexagonVectorCombine::isTrue(const Value *Val) const -> bool { in isTrue() function in HexagonVectorCombine
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CoverageMappingGen.cpp | 2002 const bool isTrue = in coverIfConstexpr() local 2032 if (isTrue) { in coverIfConstexpr()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | Expr.h | 4804 void setIsConditionTrue(bool isTrue) { ChooseExprBits.CondIsTrue = isTrue; } in setIsConditionTrue() argument
|
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 117934 int isTrue; /* IS TRUE or IS NOT TRUE */ local 117938 isTrue = sqlite3ExprTruthValue(pExpr->pRight); 117940 testcase( isTrue && bNormal); 117941 testcase( !isTrue && bNormal); 117942 sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal); 118796 int isTrue; /* IS TRUE or IS NOT TRUE */ local 118799 isTrue = sqlite3ExprTruthValue(pExpr->pRight); 118800 testcase( isTrue && isNot ); 118801 testcase( !isTrue && isNot ); 118802 if( isTrue ^ isNot ){ [all …]
|