Home
last modified time | relevance | path

Searched refs:CInt (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/libucl/haskell/
H A Dhucl.hs18 type UCLEmitterType = CInt
22 foreign import ccall "ucl_parser_new" ucl_parser_new :: CInt -> ParserHandle
32 foreign import ccall "ucl_object_toint" ucl_object_toint :: UCLObjectHandle -> CInt
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp130 ConstantInt *CInt = dyn_cast<ConstantInt>(BinOp->getOperand(1)); in handlePhiDef() local
131 if (!CInt) in handlePhiDef()
/freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp342 auto CInt = dyn_cast<ConstantInt>(Arg1); in simplifyX86immShift() local
343 if (!CAZ && !CDV && !CInt) in simplifyX86immShift()
363 else if (CInt) in simplifyX86immShift()
364 Count = CInt->getValue(); in simplifyX86immShift()
565 if (!CInt) in simplifyX86pack()
568 APInt Val = CInt->getValue(); in simplifyX86pack()
724 auto *CInt = dyn_cast<ConstantInt>(COp); in simplifyX86movmsk() local
726 if (!CInt && !CFp) in simplifyX86movmsk()
729 if ((CInt && CInt->isNegative()) || (CFp && CFp->isNegative())) in simplifyX86movmsk()
759 if (!CInt) in simplifyX86insertps()
[all …]
H A DInstructionCombining.cpp594 const APInt *CInt; in tryFactorization() local
597 if (match(V, m_APInt(CInt)) && !CInt->isMinSignedValue()) in tryFactorization()
/freebsd-12.1/contrib/llvm/lib/Target/ARM/
H A DARMParallelDSP.cpp230 ConstantInt *CInt; in IsNarrowSequence() local
232 if (match(V, m_ConstantInt(CInt))) { in IsNarrowSequence()
H A DARMISelLowering.cpp7335 const APInt &CInt = C->getAPIntValue(); in SkipExtensionForVMULL() local
7338 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32)); in SkipExtensionForVMULL()
/freebsd-12.1/contrib/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1789 const APInt &CInt = C->getAPIntValue(); in getPowerOf2Factor() local
1790 if (CInt.getBoolValue()) in getPowerOf2Factor()
1791 MaxFactor = CInt.countTrailingZeros(); in getPowerOf2Factor()
/freebsd-12.1/contrib/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp2264 ConstantInt *CInt = dyn_cast<ConstantInt>(I->getOperand(1)); in getEntryCost() local
2265 if (!CInt) { in getEntryCost()
2271 !CInt->getValue().isPowerOf2()) in getEntryCost()
2274 CInt0 = CInt; in getEntryCost()
2277 if (CInt0 != CInt) in getEntryCost()
H A DLoopVectorize.cpp3874 auto *CInt = dyn_cast<ConstantInt>(Divisor); in mayDivideByZero() local
3875 return !CInt || CInt->isZero(); in mayDivideByZero()
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1911 if (ConstantInt *CInt = dyn_cast<ConstantInt>(CI->getArgOperand(2))) { in optimizeStrtol() local
1912 return convertStrToNumber(CI, Str, CInt->getSExtValue()); in optimizeStrtol()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp2582 const APInt &CInt = C->getAPIntValue(); in skipExtensionForVectorMULL() local
2585 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32)); in skipExtensionForVectorMULL()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5796 if (auto *CInt = dyn_cast<ConstantInt>(Cst)) { in getTargetConstantBitsFromNode() local
5797 Mask = CInt->getValue(); in getTargetConstantBitsFromNode()