Home
last modified time | relevance | path

Searched refs:SExtInst (Results 1 – 25 of 52) sorted by relevance

123

/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptimizeSZextends.cpp78 if (isa<SExtInst>(U)) { in runOnFunction()
80 SExtInst* SI = new SExtInst(&Arg, Use->getType()); in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DBDCE.cpp117 if (SExtInst *SE = dyn_cast<SExtInst>(&I)) { in bitTrackingDCE()
H A DLoopFlatten.cpp241 (isa<SExtInst>(MatchedItCount) || isa<ZExtInst>(MatchedItCount))) { in matchLinearIVUser()
244 MatchedItCount = isa<SExtInst>(MatchedItCount) in matchLinearIVUser()
245 ? dyn_cast<SExtInst>(MatchedItCount)->getOperand(0) in matchLinearIVUser()
266 (isa<SExtInst>(InnerTripCount) || isa<ZExtInst>(InnerTripCount))) in checkInnerInductionPhiUsers()
378 if ((!isa<ZExtInst>(TripCountInst) && !isa<SExtInst>(TripCountInst)) || in verifyTripCount()
H A DLowerExpectIntrinsic.cpp153 if (SExtInst *SExt = dyn_cast<SExtInst>(V)) { in handlePhiDef()
H A DSeparateConstOffsetFromGEP.cpp638 } else if (isa<SExtInst>(V)) { in find()
704 (isa<SExtInst>(Cast) || isa<ZExtInst>(Cast) || isa<TruncInst>(Cast)) && in distributeExtsAndCloneChain()
1238 new SExtInst(Dom, I->getType(), "", I->getIterator()); in reuniteExts()
1251 new SExtInst(Dom, I->getType(), "", I->getIterator()); in reuniteExts()
H A DNaryReassociate.cpp364 if (SExtInst *SExt = dyn_cast<SExtInst>(IndexToSplit)) { in tryReassociateGEPAtIndex()
H A DCorrelatedValuePropagation.cpp1091 static bool processSExt(SExtInst *SDI, LazyValueInfo *LVI) { in processSExt()
1245 BBChanged |= processSExt(cast<SExtInst>(&II), LVI); in runImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMParallelDSP.cpp105 if (auto *SExt = dyn_cast<SExtInst>(V)) { in InsertMuls()
325 if (auto *SExt = dyn_cast<SExtInst>(V)) { in IsNarrowSequence()
353 !Ld->hasOneUse() || !isa<SExtInst>(Ld->user_back())) in RecordMemoryOps()
736 Instruction *BaseSExt = dyn_cast<SExtInst>(Base->user_back()); in CreateWideLoad()
737 Instruction *OffsetSExt = dyn_cast<SExtInst>(Offset->user_back()); in CreateWideLoad()
H A DMVELaneInterleavingPass.cpp366 bool Sext = isa<SExtInst>(I); in tryInterleave()
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBPFCheckAndAdjustIR.cpp181 SExtInst *SExt;
199 } else if (auto *SExt = dyn_cast<SExtInst>(V)) { in sinkMinMaxInBB()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp14 // 2. Supported leaves: ZExtInst, SExtInst, TruncInst and Constant value.
279 bool IsExtInst = (isa<ZExtInst>(I) || isa<SExtInst>(I)); in getBestTruncatedType()
520 assert((isa<SExtInst>(I.first) || isa<ZExtInst>(I.first)) && in ReduceExpressionGraph()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h139 void visitSExtInst(SExtInst &I);
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstVisitor.h178 RetTy visitSExtInst(SExtInst &I) { DELEGATE(CastInst);} in visitSExtInst()
H A DInstruction.def186 HANDLE_CAST_INST(40, SExt , SExtInst ) // Sign extend integers
H A DPatternMatch.h2039 inline CastInst_match<OpTy, SExtInst> m_SExt(const OpTy &Op) { in m_SExt()
2040 return CastInst_match<OpTy, SExtInst>(Op); in m_SExt()
2061 inline match_combine_or<CastInst_match<OpTy, SExtInst>, OpTy>
2068 inline match_combine_or<CastInst_match<OpTy, SExtInst>, NNegZExt_match<OpTy>>
2075 CastInst_match<OpTy, SExtInst>>
2082 CastInst_match<OpTy, SExtInst>>,
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineShifts.cpp1691 return new SExtInst(X, Ty); in visitAShr()
1730 return new SExtInst(NewSh, Ty); in visitAShr()
1736 return new SExtInst(Builder.CreateIsNotNull(X), Ty); in visitAShr()
1741 return new SExtInst(Builder.CreateICmpSLT(X, Y), Ty); in visitAShr()
H A DInstCombineInternal.h138 Instruction *visitSExt(SExtInst &Sext);
310 Instruction *transformSExtICmp(ICmpInst *Cmp, SExtInst &Sext);
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp78 if (isa<SExtInst>(LHS)) in matchVPDPBUSDPattern()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.cpp1084 else if (isa<SExtInst>(UserI)) in isFoldableLoad()
1186 (isa<TruncInst>(OtherOp) || isa<SExtInst>(OtherOp) || in getMemoryOpCost()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DVectorUtils.cpp619 if (TTI && (isa<ZExtInst>(&I) || isa<SExtInst>(&I)) && in computeMinimumValueSizes()
664 if (isa<SExtInst>(I) || isa<ZExtInst>(I) || isa<LoadInst>(I) || in computeMinimumValueSizes()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp1198 if (!isa<SExtInst>(OpA) && !isa<ZExtInst>(OpA)) in getConstantOffsetComplexAddrs()
1201 bool Signed = isa<SExtInst>(OpA); in getConstantOffsetComplexAddrs()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp301 assert((isa<ZExtInst>(I) || isa<SExtInst>(I)) && in isIntExtFree()
760 } else if (const auto *SE = dyn_cast<SExtInst>(I)) { in computeAddress()
842 } else if (const auto *SE = dyn_cast<SExtInst>(I)) { in computeAddress()
899 } else if (const auto *SE = dyn_cast<SExtInst>(U)) { in computeAddress()
1983 } else if (const auto *SE = dyn_cast<SExtInst>(I->use_begin()->getUser())) { in selectLoad()
4568 assert((isa<ZExtInst>(I) || isa<SExtInst>(I)) && in selectIntExt()
4683 } else if (const auto *SExt = dyn_cast<SExtInst>(Src0)) { in selectMul()
4747 } else if (const auto *SExt = dyn_cast<SExtInst>(Op0)) { in selectShift()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp2979 case SExt: return new SExtInst (S, Ty, Name, InsertBefore); in Create()
3361 SExtInst::SExtInst(Value *S, Type *Ty, const Twine &Name, in SExtInst() function in SExtInst
4266 SExtInst *SExtInst::cloneImpl() const { in cloneImpl()
4267 return new SExtInst(getOperand(0), getType()); in cloneImpl()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4520 if (IsSExt && isa<SExtInst>(Inst)) in canGetThrough()
4597 else if ((IsSExt && isa<SExtInst>(Opnd)) || (!IsSExt && isa<ZExtInst>(Opnd))) in canGetThrough()
4610 assert((isa<SExtInst>(Ext) || isa<ZExtInst>(Ext)) && in getAction()
4614 bool IsSExt = isa<SExtInst>(Ext); in getAction()
4629 if (isa<SExtInst>(ExtOpnd) || isa<TruncInst>(ExtOpnd) || in getAction()
6034 bool IsSExt = isa<SExtInst>(FirstUser); in hasSameExtUse()
6038 if ((IsSExt && !isa<SExtInst>(UI)) || (!IsSExt && !isa<ZExtInst>(UI))) in hasSameExtUse()
6189 if (RemovedInsts.count(Inst) || !isa<SExtInst>(Inst) || in mergeSExts()
8340 if (isa<ZExtInst>(I) || isa<SExtInst>(I)) { in optimizeInst()
/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp581 return PT->push_back(new SExtInst(V, DestTy, "Se", BB->getTerminator())); in Act()

123