/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonMCChecker.cpp | 69 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 &, unsigned, unsigned &PredReg, bool &isTrue);
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | CFG.cpp | 411 bool isTrue() const { return X == 1; } in isTrue() function in __anonef2f84bd0211::TryResult 426 return TryResult(R1.isTrue() && R2.isTrue()); in bothKnownTrue() 1191 AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); in checkIncorrectLogicOperator() 1192 AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); in checkIncorrectLogicOperator() 1194 AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1195 AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1198 LHSAlwaysTrue &= Res1.isTrue(); in checkIncorrectLogicOperator() 1200 RHSAlwaysTrue &= Res2.isTrue(); in checkIncorrectLogicOperator() 1306 if (LHS.isTrue() == (Bop->getOpcode() == BO_LOr)) in evaluateAsBooleanConditionNoCache() 1307 return LHS.isTrue(); in evaluateAsBooleanConditionNoCache() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SelectOptimize.cpp | 533 getTrueOrFalseValue(SelectOptimizeImpl::SelectLike SI, bool isTrue, in getTrueOrFalseValue() argument 541 V = (isTrue ? DefSI->getTrueValue() : DefSI->getFalseValue()); in getTrueOrFalseValue() 543 V = (!isTrue ? DefSI->getTrueValue() : DefSI->getFalseValue()); in getTrueOrFalseValue() 550 if (isTrue) in getTrueOrFalseValue()
|
H A D | CodeGenPrepare.cpp | 7027 getTrueOrFalseValue(SelectInst *SI, bool isTrue, in getTrueOrFalseValue() argument 7035 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 | 100 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() 2218 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 | 1955 const bool isTrue = in coverIfConstexpr() local 1985 if (isTrue) { in coverIfConstexpr()
|
/freebsd/contrib/llvm-project/clang/include/clang/AST/ |
H A D | Expr.h | 4610 void setIsConditionTrue(bool isTrue) { CondIsTrue = isTrue; } in setIsConditionTrue() argument
|
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 113864 int isTrue; /* IS TRUE or IS NOT TRUE */ 113868 isTrue = sqlite3ExprTruthValue(pExpr->pRight); 113870 testcase( isTrue && bNormal); 113871 testcase( !isTrue && bNormal); 113872 sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal); 114698 int isTrue; /* IS TRUE or IS NOT TRUE */ 114701 isTrue = sqlite3ExprTruthValue(pExpr->pRight); 114702 testcase( isTrue && isNot ); 114703 testcase( !isTrue && isNot ); 114704 if( isTrue ^ isNot ){ [all …]
|