Home
last modified time | relevance | path

Searched refs:IsSext (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp2062 bool IsSext = match(Op0, m_SExt(m_Value(X))); in narrowMathIfNoOverflow() local
2063 if (!IsSext && !match(Op0, m_ZExt(m_Value(X)))) in narrowMathIfNoOverflow()
2068 CastInst::CastOps CastOpc = IsSext ? Instruction::SExt : Instruction::ZExt; in narrowMathIfNoOverflow()
2090 if (!willNotOverflow(BO.getOpcode(), X, Y, BO, IsSext)) in narrowMathIfNoOverflow()
2097 if (IsSext) in narrowMathIfNoOverflow()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.cpp2546 bool IsSext = N->getOpcode() == ISD::SIGN_EXTEND; in performVectorExtendCombine() local
2549 unsigned Op = IsSext ? (IsLow ? WebAssemblyISD::EXTEND_LOW_S in performVectorExtendCombine()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp4047 bool IsSext = ConvOpts == SetccInGPROpts::SExtOrig || in getSETCCInGPR() local
4050 if (IsSext && Inputs32Bit) in getSETCCInGPR()
4054 else if (IsSext) in getSETCCInGPR()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp273 bool IsSext = Op1Sext || Op2Sext; in getArithmeticInstrCost() local
274 if (IsConstant || IsZeroExtended || IsSext) in getArithmeticInstrCost()
H A DX86ISelLowering.cpp51196 auto IsSext = [&DAG](SDValue V) { in combinePMULH() local
51203 bool IsSigned = IsSext(LHS) && IsSext(RHS); in combinePMULH()