Searched refs:IsInc (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULegalizerInfo.h | 178 bool IsInc) const;
|
| H A D | AMDGPULegalizerInfo.cpp | 3870 bool IsInc) const { in legalizeAtomicIncDec() 3871 unsigned Opc = IsInc ? AMDGPU::G_AMDGPU_ATOMIC_INC : in legalizeAtomicIncDec()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonISelDAGToDAGHVX.cpp | 1953 bool IsInc = I == E-1 || SwapElems[I] < SwapElems[I+1]; in perfect() local 1956 while (++I < E-1 && IsInc == (SwapElems[I] < SwapElems[I+1])) in perfect() 1967 Res.Opc = IsInc ? Hexagon::V6_vshuffvdd : Hexagon::V6_vdealvdd; in perfect()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGExprScalar.cpp | 602 bool IsInc); 2392 llvm::Value *InVal, bool IsInc, in createBinOpInfoFromIncDec() argument 2398 BinOp.Opcode = IsInc ? BO_Add : BO_Sub; in createBinOpInfoFromIncDec() 2405 const UnaryOperator *E, llvm::Value *InVal, bool IsInc) { in EmitIncDecConsiderOverflowBehavior() argument 2407 llvm::ConstantInt::get(InVal->getType(), IsInc ? 1 : -1, true); in EmitIncDecConsiderOverflowBehavior() 2408 StringRef Name = IsInc ? "inc" : "dec"; in EmitIncDecConsiderOverflowBehavior() 2420 E, InVal, IsInc, E->getFPFeaturesInEffect(CGF.getLangOpts()))); in EmitIncDecConsiderOverflowBehavior()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | AArch64ISelLowering.h | 1052 ISD::MemIndexedMode &AM, bool &IsInc,
|
| H A D | AArch64ISelLowering.cpp | 16457 bool &IsInc, in getIndexedAddressParts() argument 16471 IsInc = (Op->getOpcode() == ISD::ADD); in getIndexedAddressParts() 16493 bool IsInc; in getPreIndexedAddressParts() local 16494 if (!getIndexedAddressParts(Ptr.getNode(), Base, Offset, AM, IsInc, DAG)) in getPreIndexedAddressParts() 16496 AM = IsInc ? ISD::PRE_INC : ISD::PRE_DEC; in getPreIndexedAddressParts() 16514 bool IsInc; in getPostIndexedAddressParts() local 16515 if (!getIndexedAddressParts(Op, Base, Offset, AM, IsInc, DAG)) in getPostIndexedAddressParts() 16521 AM = IsInc ? ISD::POST_INC : ISD::POST_DEC; in getPostIndexedAddressParts()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 13245 bool IsInc, bool IsPrefix) { in CheckIncrementDecrementOperand() argument 13260 if (!IsInc) { in CheckIncrementDecrementOperand() 13270 S.Diag(OpLoc, diag::err_increment_decrement_enum) << IsInc << ResType; in CheckIncrementDecrementOperand() 13292 IsInc, IsPrefix); in CheckIncrementDecrementOperand() 13304 << ResType << int(IsInc) << Op->getSourceRange(); in CheckIncrementDecrementOperand() 13315 << IsInc << ResType; in CheckIncrementDecrementOperand()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 22805 static SDValue incDecVectorConstant(SDValue V, SelectionDAG &DAG, bool IsInc) { in incDecVectorConstant() argument 22822 if ((IsInc && EltC.isMaxValue()) || (!IsInc && EltC.isNullValue())) in incDecVectorConstant() 22825 NewVecC.push_back(DAG.getConstant(EltC + (IsInc ? 1 : -1), DL, EltVT)); in incDecVectorConstant()
|