/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | LoopUnrolling.cpp | 285 auto CondOp = Matches[0].getNodeAs<BinaryOperator>("conditionOperator"); in shouldCompletelyUnroll() local 291 if (CondOp->getOpcode() == BO_GE || CondOp->getOpcode() == BO_LE) in shouldCompletelyUnroll()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CodeGenFunction.cpp | 1958 if (const ConditionalOperator *CondOp = dyn_cast<ConditionalOperator>(Cond)) { in EmitBranchOnBoolExpr() local 1966 EmitBranchOnBoolExpr(CondOp->getCond(), LHSBlock, RHSBlock, in EmitBranchOnBoolExpr() 1967 getProfileCount(CondOp), Stmt::LH_None); in EmitBranchOnBoolExpr() 1977 getProfileCount(CondOp) / (double)getCurrentProfileCount(); in EmitBranchOnBoolExpr() 1983 incrementProfileCounter(CondOp); in EmitBranchOnBoolExpr() 1986 EmitBranchOnBoolExpr(CondOp->getLHS(), TrueBlock, FalseBlock, in EmitBranchOnBoolExpr() 1987 LHSScaledTrueCount, LH, CondOp); in EmitBranchOnBoolExpr() 1993 EmitBranchOnBoolExpr(CondOp->getRHS(), TrueBlock, FalseBlock, in EmitBranchOnBoolExpr() 1994 TrueCount - LHSScaledTrueCount, LH, CondOp); in EmitBranchOnBoolExpr()
|
H A D | CGExpr.cpp | 211 if (const auto *CondOp = dyn_cast<AbstractConditionalOperator>( in EmitIgnoredExpr() local 213 if (CondOp->getObjectKind() == OK_BitField) in EmitIgnoredExpr() 214 return EmitIgnoredConditionalOperator(CondOp); in EmitIgnoredExpr()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlan.h | 2183 VPValue *CondOp, bool IsOrdered) in VPReductionRecipe() argument 2185 if (CondOp) { in VPReductionRecipe() 2187 addOperand(CondOp); in VPReductionRecipe() 2193 VPValue *ChainOp, VPValue *VecOp, VPValue *CondOp, in VPReductionRecipe() argument 2196 ArrayRef<VPValue *>({ChainOp, VecOp}), CondOp, in VPReductionRecipe() 2249 VPReductionEVLRecipe(VPReductionRecipe *R, VPValue *EVL, VPValue *CondOp) in VPReductionEVLRecipe() argument 2253 ArrayRef<VPValue *>({R->getChainOp(), R->getVecOp(), EVL}), CondOp, in VPReductionEVLRecipe()
|
H A D | VPlanRecipes.cpp | 1770 if (VPValue *CondOp = getCondOp()) in execute() local 1771 Mask = State.get(CondOp, 0); in execute()
|
H A D | LoopVectorize.cpp | 8916 VPValue *CondOp = nullptr; in adjustRecipesForReductions() local 8918 CondOp = RecipeBuilder.getBlockInMask(BB); in adjustRecipesForReductions() 8922 CondOp, CM.useOrderedReductions(RdxDesc)); in adjustRecipesForReductions()
|
/freebsd/contrib/llvm-project/clang/lib/Parse/ |
H A D | ParseExpr.cpp | 669 ExprResult CondOp = Actions.ActOnConditionalOp( in ParseRHSOfBinaryExpression() local 672 if (CondOp.isInvalid()) { in ParseRHSOfBinaryExpression() 679 CondOp = Actions.CreateRecoveryExpr(LHS.get()->getBeginLoc(), in ParseRHSOfBinaryExpression() 683 LHS = CondOp; in ParseRHSOfBinaryExpression()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/LoongArch/ |
H A D | LoongArchInstrInfo.td | 1436 class BccPat<PatFrag CondOp, LAInst Inst> 1437 : Pat<(brcond (GRLenVT (CondOp GPR:$rj, GPR:$rd)), bb:$imm16), 1447 class BccSwapPat<PatFrag CondOp, LAInst InstBcc> 1448 : Pat<(brcond (GRLenVT (CondOp GPR:$rd, GPR:$rj)), bb:$imm16),
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUInstructionSelector.cpp | 2828 MachineOperand &CondOp = I.getOperand(0); in selectG_BRCOND() local 2829 Register CondReg = CondOp.getReg(); in selectG_BRCOND()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaOpenMP.cpp | 9850 ExprResult CondOp = SemaRef.ActOnConditionalOp( in checkOpenMPLoop() local 9854 CondOp.get()); in checkOpenMPLoop() 10095 ExprResult CondOp = SemaRef.ActOnConditionalOp( in checkOpenMPLoop() local 10098 CondOp.get()); in checkOpenMPLoop()
|