Home
last modified time | relevance | path

Searched refs:IsInc (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp625 bool IsInc);
2734 llvm::Value *InVal, bool IsInc, in createBinOpInfoFromIncDec() argument
2740 BinOp.Opcode = IsInc ? BO_Add : BO_Sub; in createBinOpInfoFromIncDec()
2747 const UnaryOperator *E, llvm::Value *InVal, bool IsInc) { in EmitIncDecConsiderOverflowBehavior() argument
2749 llvm::ConstantInt::get(InVal->getType(), IsInc ? 1 : -1, true); in EmitIncDecConsiderOverflowBehavior()
2750 StringRef Name = IsInc ? "inc" : "dec"; in EmitIncDecConsiderOverflowBehavior()
2764 E, InVal, IsInc, E->getFPFeaturesInEffect(CGF.getLangOpts()))); in EmitIncDecConsiderOverflowBehavior()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp2482 bool IsInc = I == E - 1 || SwapElems[I] < SwapElems[I + 1]; in perfect()
2485 while (++I < E - 1 && IsInc == (SwapElems[I] < SwapElems[I + 1])) in perfect()
2495 Res.Opc = IsInc ? Hexagon::V6_vshuffvdd : Hexagon::V6_vdealvdd; in perfect()
2484 bool IsInc = I == E - 1 || SwapElems[I] < SwapElems[I + 1]; perfect() local
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp13788 SourceLocation OpLoc, bool IsInc, in CheckIncrementDecrementOperand() argument
13801 if (!IsInc) { in CheckIncrementDecrementOperand()
13811 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; in CheckIncrementDecrementOperand()
13829 << IsInc << Op->getSourceRange(); in CheckIncrementDecrementOperand()
13834 IsInc, IsPrefix); in CheckIncrementDecrementOperand()
13846 << ResType << int(IsInc) << Op->getSourceRange(); in CheckIncrementDecrementOperand()
13857 << IsInc << ResType; in CheckIncrementDecrementOperand()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp23157 static SDValue incDecVectorConstant(SDValue V, SelectionDAG &DAG, bool IsInc, in incDecVectorConstant() argument
23175 if ((IsInc && EltC.isMaxValue()) || (!IsInc && EltC.isZero())) in incDecVectorConstant()
23177 if (NSW && ((IsInc && EltC.isMaxSignedValue()) || in incDecVectorConstant()
23178 (!IsInc && EltC.isMinSignedValue()))) in incDecVectorConstant()
23181 NewVecC.push_back(DAG.getConstant(EltC + (IsInc ? 1 : -1), DL, EltVT)); in incDecVectorConstant()