LLVM 24.0.0git
InstCombineInternal.h
Go to the documentation of this file.
1//===- InstCombineInternal.h - InstCombine pass internals -------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9/// \file
10///
11/// This file provides internal interfaces used to implement the InstCombine.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
16#define LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
17
19#include "llvm/ADT/Statistic.h"
23#include "llvm/IR/IRBuilder.h"
24#include "llvm/IR/InstVisitor.h"
27#include "llvm/IR/Value.h"
28#include "llvm/Support/Debug.h"
33#include <cassert>
34
35#define DEBUG_TYPE "instcombine"
37
38// As a default, let's assume that we want to be aggressive,
39// and attempt to traverse with no limits in attempt to sink negation.
40static constexpr unsigned NegatorDefaultMaxDepth = ~0U;
41
42// Let's guesstimate that most often we will end up visiting/producing
43// fairly small number of new instructions.
44static constexpr unsigned NegatorMaxNodesSSO = 16;
45
46namespace llvm {
47
48class AAResults;
49class APInt;
50class AssumptionCache;
51class BlockFrequencyInfo;
52class DataLayout;
53class DominatorTree;
54class GEPOperator;
55class GlobalVariable;
56class OptimizationRemarkEmitter;
57class ProfileSummaryInfo;
58class TargetLibraryInfo;
59class User;
60
61/// Enum to specify how shift operations should be evaluated in
62/// canEvaluateShifted.
63/// Lossy: Allows lossy transformations
64/// Signed: Requires lossless transformation, using ashr to restore for shl,
65/// or represents ashr handling for right shifts
66/// Unsigned: Requires lossless transformation, using lshr to restore for shl,
67/// or represents lshr handling for right shifts
69
71 : public InstCombiner,
72 public InstVisitor<InstCombinerImpl, Instruction *> {
73public:
83
84 ~InstCombinerImpl() override = default;
85
86 /// Perform early cleanup and prepare the InstCombine worklist.
88
89 /// Run the combiner over the entire worklist until it is empty.
90 ///
91 /// \returns true if the IR is changed.
92 bool run();
93
94 // Visitation implementation - Implement instruction combining for different
95 // instruction types. The semantics are as follows:
96 // Return Value:
97 // null - No change was made
98 // I - Change was made, I is still valid, I may be dead though
99 // otherwise - Change was made, replace I with returned instruction
100 //
105 Value *LHS, Value *RHS, Type *Ty, bool isNUW);
122 Value *simplifyRangeCheck(CmpPredicate PredL, Value *LHS0, Value *LHS1,
123 CmpPredicate PredR, Value *RHS0, Value *RHS1,
124 Instruction *CxtI, bool Inverted);
133 BinaryOperator *Sh0, const SimplifyQuery &SQ,
134 bool AnalyzeForSignBitExtraction = false);
138 BinaryOperator &OldAShr);
162 template <typename FPToIntTy> Instruction *foldItoFPtoI(FPToIntTy &FI);
169
176 Instruction *visitFree(CallInst &FI, Value *FreedOp);
197 bool freezeOtherUses(FreezeInst &FI);
200
201 /// Specify what to return for unhandled instructions.
203
204 /// True when DB dominates all uses of DI except UI.
205 /// UI must be in the same block as DI.
206 /// The routine checks that the DI parent and DB are different.
207 bool dominatesAllUses(const Instruction *DI, const Instruction *UI,
208 const BasicBlock *DB) const;
209
210 /// Try to replace select with select operand SIOpd in SI-ICmp sequence.
211 bool replacedSelectWithOperand(SelectInst *SI, const ICmpInst *Icmp,
212 const unsigned SIOpd);
213
214 LoadInst *combineLoadToNewType(LoadInst &LI, Type *NewTy,
215 const Twine &Suffix = "");
216
217 /// Check if fmul \p MulVal, +0.0 will yield +0.0 (or signed zero is
218 /// ignorable).
220 const Instruction *CtxI) const;
221
222 std::optional<std::pair<Intrinsic::ID, SmallVector<Value *, 3>>>
224
225private:
226 bool annotateAnyAllocSite(CallBase &Call, const TargetLibraryInfo *TLI);
227 bool isDesirableIntType(unsigned BitWidth) const;
228 bool shouldChangeType(unsigned FromBitWidth, unsigned ToBitWidth) const;
229 bool shouldChangeType(Type *From, Type *To) const;
230 Value *dyn_castNegVal(Value *V) const;
231
232 /// Classify whether a cast is worth optimizing.
233 ///
234 /// This is a helper to decide whether the simplification of
235 /// logic(cast(A), cast(B)) to cast(logic(A, B)) should be performed.
236 ///
237 /// \param CI The cast we are interested in.
238 ///
239 /// \return true if this cast actually results in any code being generated and
240 /// if it cannot already be eliminated by some other transformation.
241 bool shouldOptimizeCast(CastInst *CI);
242
243 /// Try to optimize a sequence of instructions checking if an operation
244 /// on LHS and RHS overflows.
245 ///
246 /// If this overflow check is done via one of the overflow check intrinsics,
247 /// then CtxI has to be the call instruction calling that intrinsic. If this
248 /// overflow check is done by arithmetic followed by a compare, then CtxI has
249 /// to be the arithmetic instruction.
250 ///
251 /// If a simplification is possible, stores the simplified result of the
252 /// operation in OperationResult and result of the overflow check in
253 /// OverflowResult, and return true. If no simplification is possible,
254 /// returns false.
255 bool OptimizeOverflowCheck(Instruction::BinaryOps BinaryOp, bool IsSigned,
256 Value *LHS, Value *RHS,
257 Instruction &CtxI, Value *&OperationResult,
259
260 Instruction *visitCallBase(CallBase &Call);
261 Instruction *tryOptimizeCall(CallInst *CI);
262 bool transformConstExprCastCall(CallBase &Call);
263 Instruction *transformCallThroughTrampoline(CallBase &Call,
264 IntrinsicInst &Tramp);
265
266 /// Try to optimize a call to the result of a ptrauth intrinsic, potentially
267 /// into the ptrauth call bundle:
268 /// - call(ptrauth.resign(p)), ["ptrauth"()] -> call p, ["ptrauth"()]
269 /// - call(ptrauth.sign(p)), ["ptrauth"()] -> call p
270 /// as long as the key/discriminator are the same in sign and auth-bundle,
271 /// and we don't change the key in the bundle (to a potentially-invalid key.)
272 Instruction *foldPtrAuthIntrinsicCallee(CallBase &Call);
273
274 /// Try to optimize a call to a ptrauth constant, into its ptrauth bundle:
275 /// call(ptrauth(f)), ["ptrauth"()] -> call f
276 /// as long as the key/discriminator are the same in constant and bundle.
277 Instruction *foldPtrAuthConstantCallee(CallBase &Call);
278
279 // Return (a, b) if (LHS, RHS) is known to be (a, b) or (b, a).
280 // Otherwise, return std::nullopt
281 // Currently it matches:
282 // - LHS = (select c, a, b), RHS = (select c, b, a)
283 // - LHS = (phi [a, BB0], [b, BB1]), RHS = (phi [b, BB0], [a, BB1])
284 // - LHS = min(a, b), RHS = max(a, b)
285 std::optional<std::pair<Value *, Value *>> matchSymmetricPair(Value *LHS,
286 Value *RHS);
287
288 Value *simplifyMaskedLoad(IntrinsicInst &II);
289 Instruction *simplifyMaskedStore(IntrinsicInst &II);
290 Instruction *simplifyMaskedGather(IntrinsicInst &II);
291 Instruction *simplifyMaskedScatter(IntrinsicInst &II);
292
293 /// Transform (zext icmp) to bitwise / integer operations in order to
294 /// eliminate it.
295 ///
296 /// \param ICI The icmp of the (zext icmp) pair we are interested in.
297 /// \parem CI The zext of the (zext icmp) pair we are interested in.
298 ///
299 /// \return null if the transformation cannot be performed. If the
300 /// transformation can be performed the new instruction that replaces the
301 /// (zext icmp) pair will be returned.
302 Instruction *transformZExtICmp(ICmpInst *Cmp, ZExtInst &Zext);
303
304 Instruction *transformSExtICmp(ICmpInst *Cmp, SExtInst &Sext);
305
306 bool willNotOverflowSignedAdd(const WithCache<const Value *> &LHS,
308 const Instruction &CxtI) const {
309 return computeOverflowForSignedAdd(LHS, RHS, &CxtI) ==
311 }
312
313 bool willNotOverflowUnsignedAdd(const WithCache<const Value *> &LHS,
315 const Instruction &CxtI) const {
316 return computeOverflowForUnsignedAdd(LHS, RHS, &CxtI) ==
318 }
319
320 bool willNotOverflowAdd(const Value *LHS, const Value *RHS,
321 const Instruction &CxtI, bool IsSigned) const {
322 return IsSigned ? willNotOverflowSignedAdd(LHS, RHS, CxtI)
323 : willNotOverflowUnsignedAdd(LHS, RHS, CxtI);
324 }
325
326 bool willNotOverflowSignedSub(const Value *LHS, const Value *RHS,
327 const Instruction &CxtI) const {
328 return computeOverflowForSignedSub(LHS, RHS, &CxtI) ==
329 OverflowResult::NeverOverflows;
330 }
331
332 bool willNotOverflowUnsignedSub(const Value *LHS, const Value *RHS,
333 const Instruction &CxtI) const {
334 return computeOverflowForUnsignedSub(LHS, RHS, &CxtI) ==
335 OverflowResult::NeverOverflows;
336 }
337
338 bool willNotOverflowSub(const Value *LHS, const Value *RHS,
339 const Instruction &CxtI, bool IsSigned) const {
340 return IsSigned ? willNotOverflowSignedSub(LHS, RHS, CxtI)
341 : willNotOverflowUnsignedSub(LHS, RHS, CxtI);
342 }
343
344 bool willNotOverflowSignedMul(const Value *LHS, const Value *RHS,
345 const Instruction &CxtI) const {
346 return computeOverflowForSignedMul(LHS, RHS, &CxtI) ==
347 OverflowResult::NeverOverflows;
348 }
349
350 bool willNotOverflowUnsignedMul(const Value *LHS, const Value *RHS,
351 const Instruction &CxtI,
352 bool IsNSW = false) const {
353 return computeOverflowForUnsignedMul(LHS, RHS, &CxtI, IsNSW) ==
354 OverflowResult::NeverOverflows;
355 }
356
357 bool willNotOverflowMul(const Value *LHS, const Value *RHS,
358 const Instruction &CxtI, bool IsSigned) const {
359 return IsSigned ? willNotOverflowSignedMul(LHS, RHS, CxtI)
360 : willNotOverflowUnsignedMul(LHS, RHS, CxtI);
361 }
362
363 bool willNotOverflow(BinaryOperator::BinaryOps Opcode, const Value *LHS,
364 const Value *RHS, const Instruction &CxtI,
365 bool IsSigned) const {
366 switch (Opcode) {
367 case Instruction::Add: return willNotOverflowAdd(LHS, RHS, CxtI, IsSigned);
368 case Instruction::Sub: return willNotOverflowSub(LHS, RHS, CxtI, IsSigned);
369 case Instruction::Mul: return willNotOverflowMul(LHS, RHS, CxtI, IsSigned);
370 default: llvm_unreachable("Unexpected opcode for overflow query");
371 }
372 }
373
374 Value *EmitGEPOffset(GEPOperator *GEP, bool RewriteGEP = false);
375 /// Emit sum of multiple GEP offsets. The GEPs are processed in reverse
376 /// order.
377 Value *EmitGEPOffsets(ArrayRef<GEPOperator *> GEPs, GEPNoWrapFlags NW,
378 Type *IdxTy, bool RewriteGEPs);
379 Instruction *scalarizePHI(ExtractElementInst &EI, PHINode *PN);
380 Instruction *foldBitcastExtElt(ExtractElementInst &ExtElt);
381 Instruction *foldCastedBitwiseLogic(BinaryOperator &I);
382 Instruction *foldFBinOpOfIntCasts(BinaryOperator &I);
383 // Should only be called by `foldFBinOpOfIntCasts`.
384 Instruction *foldFBinOpOfIntCastsFromSign(
385 BinaryOperator &BO, bool OpsFromSigned, std::array<Value *, 2> IntOps,
386 Constant *Op1FpC, SmallVectorImpl<WithCache<const Value *>> &OpsKnown);
387 Instruction *foldBinopOfSextBoolToSelect(BinaryOperator &I);
388 Instruction *narrowBinOp(TruncInst &Trunc);
389 Instruction *narrowMaskedBinOp(BinaryOperator &And);
390 Instruction *narrowMathIfNoOverflow(BinaryOperator &I);
391 Instruction *narrowFunnelShift(TruncInst &Trunc);
392 Instruction *optimizeBitCastFromPhi(CastInst &CI, PHINode *PN);
393 Instruction *matchSAddSubSat(IntrinsicInst &MinMax1);
394 Instruction *foldNot(BinaryOperator &I);
395 Instruction *foldBinOpOfDisplacedShifts(BinaryOperator &I);
396
397 /// Determine if a pair of casts can be replaced by a single cast.
398 ///
399 /// \param CI1 The first of a pair of casts.
400 /// \param CI2 The second of a pair of casts.
401 ///
402 /// \return 0 if the cast pair cannot be eliminated, otherwise returns an
403 /// Instruction::CastOps value for a cast that can replace the pair, casting
404 /// CI1->getSrcTy() to CI2->getDstTy().
405 ///
406 /// \see CastInst::isEliminableCastPair
407 Instruction::CastOps isEliminableCastPair(const CastInst *CI1,
408 const CastInst *CI2);
409 Value *simplifyIntToPtrRoundTripCast(Value *Val);
410
411 Value *foldAndOrOfICmps(Value *LHS, Value *RHS, Instruction &I, bool IsAnd,
412 bool IsLogical = false);
413 Value *foldXorOfICmps(ICmpInst *LHS, ICmpInst *RHS, BinaryOperator &Xor);
414
415 Value *foldEqOfParts(Value *Cmp0, Value *Cmp1, bool IsAnd);
416
417 Value *foldAndOrOfICmpsUsingRanges(CmpPredicate PredL, Value *LHS0,
418 Value *LHS1, bool LHSOneUse,
419 CmpPredicate PredR, Value *RHS0,
420 Value *RHS1, bool RHSOneUse, bool IsAnd);
421
422 /// Optimize (fcmp)&(fcmp) or (fcmp)|(fcmp).
423 /// NOTE: Unlike most of instcombine, this returns a Value which should
424 /// already be inserted into the function.
425 Value *foldLogicOfFCmps(FCmpInst *LHS, FCmpInst *RHS, bool IsAnd,
426 bool IsLogicalSelect = false);
427
428 Instruction *foldLogicOfIsFPClass(BinaryOperator &Operator, Value *LHS,
429 Value *RHS);
430
431 Value *foldBooleanAndOr(Value *LHS, Value *RHS, Instruction &I, bool IsAnd,
432 bool IsLogical);
433
434 Value *reassociateBooleanAndOr(Value *LHS, Value *X, Value *Y, Instruction &I,
435 bool IsAnd, bool RHSIsLogical);
436
437 Value *foldDisjointOr(Value *LHS, Value *RHS);
438
439 Value *reassociateDisjointOr(Value *LHS, Value *RHS);
440
442 canonicalizeConditionalNegationViaMathToSelect(BinaryOperator &i);
443
444 Value *matchSelectFromAndOr(Value *A, Value *B, Value *C, Value *D,
445 bool InvertFalseVal = false);
446 Value *getSelectCondition(Value *A, Value *B, bool ABIsTheSame);
447
448 bool canEvaluateShifted(Value *V, unsigned NumBits, bool IsLeftShift,
449 ShiftSemantics Semantics, Instruction *CxtI);
450 Value *getShiftedValue(Value *V, unsigned NumBits, bool IsLeftShift,
451 ShiftSemantics Semantics);
452
453 Instruction *foldLShrOverflowBit(BinaryOperator &I);
454 Instruction *foldExtractOfOverflowIntrinsic(ExtractValueInst &EV);
455 Instruction *foldIntrinsicWithOverflowCommon(IntrinsicInst *II);
456 Instruction *foldIntrinsicIsFPClass(IntrinsicInst &II);
457 Instruction *foldFPSignBitOps(BinaryOperator &I);
458 Instruction *foldFDivConstantDivisor(BinaryOperator &I);
459
460 // Optimize one of these forms:
461 // and i1 Op, SI / select i1 Op, i1 SI, i1 false (if IsAnd = true)
462 // or i1 Op, SI / select i1 Op, i1 true, i1 SI (if IsAnd = false)
463 // into simplier select instruction using isImpliedCondition.
464 Instruction *foldAndOrOfSelectUsingImpliedCond(Value *Op, SelectInst &SI,
465 bool IsAnd);
466
467 Instruction *hoistFNegAboveFMulFDiv(Value *FNegOp, Instruction &FMFSource);
468
469 /// Simplify \p V given that it is known to be non-null.
470 /// Returns the simplified value if possible, otherwise returns nullptr.
471 /// If \p HasDereferenceable is true, the simplification will not perform
472 /// same object checks.
473 Value *simplifyNonNullOperand(Value *V, bool HasDereferenceable,
474 unsigned Depth = 0);
475
476 /// Create `select C, S1, S2`. Use only when the profile cannot be calculated
477 /// from existing profile metadata: if the Function has profiles, this will
478 /// set the profile of this select to "unknown".
479 SelectInst *
480 createSelectInstWithUnknownProfile(Value *C, Value *S1, Value *S2,
481 const Twine &NameStr = "",
482 InsertPosition InsertBefore = nullptr) {
483 auto *Sel = SelectInst::Create(C, S1, S2, NameStr, InsertBefore, nullptr);
485 return Sel;
486 }
487
488public:
489 /// Create and insert the idiom we use to indicate a block is unreachable
490 /// without having to rewrite the CFG from within InstCombine.
492 auto &Ctx = InsertAt->getContext();
493 auto *SI = new StoreInst(ConstantInt::getTrue(Ctx),
495 /*isVolatile*/ false, Align(1));
496 InsertNewInstWith(SI, InsertAt->getIterator());
497 }
498
499 /// Combiner aware instruction erasure.
500 ///
501 /// When dealing with an instruction that has side effects or produces a void
502 /// value, we can't rely on DCE to delete the instruction. Instead, visit
503 /// methods should return the value returned by this function.
505 LLVM_DEBUG(dbgs() << "IC: ERASE " << I << '\n');
506 assert(I.use_empty() && "Cannot erase instruction that is used!");
508
509 // Make sure that we reprocess all operands now that we reduced their
510 // use counts.
511 SmallVector<Value *> Ops(I.operands());
512 Worklist.remove(&I);
513 DC.removeValue(&I);
514 I.eraseFromParent();
515 for (Value *Op : Ops)
516 Worklist.handleUseCountDecrement(Op);
517 MadeIRChange = true;
518 return nullptr; // Don't do anything with FI
519 }
520
521 OverflowResult computeOverflow(
522 Instruction::BinaryOps BinaryOp, bool IsSigned,
523 Value *LHS, Value *RHS, Instruction *CxtI) const;
524
525 /// Performs a few simplifications for operators which are associative
526 /// or commutative.
527 bool SimplifyAssociativeOrCommutative(BinaryOperator &I);
528
529 /// Tries to simplify binary operations which some other binary
530 /// operation distributes over.
531 ///
532 /// It does this by either by factorizing out common terms (eg "(A*B)+(A*C)"
533 /// -> "A*(B+C)") or expanding out if this results in simplifications (eg: "A
534 /// & (B | C) -> (A&B) | (A&C)" if this is a win). Returns the simplified
535 /// value, or null if it didn't simplify.
536 Value *foldUsingDistributiveLaws(BinaryOperator &I);
537
538 /// Tries to simplify add operations using the definition of remainder.
539 ///
540 /// The definition of remainder is X % C = X - (X / C ) * C. The add
541 /// expression X % C0 + (( X / C0 ) % C1) * C0 can be simplified to
542 /// X % (C0 * C1)
543 Value *SimplifyAddWithRemainder(BinaryOperator &I);
544
545 // Binary Op helper for select operations where the expression can be
546 // efficiently reorganized.
547 Value *SimplifySelectsFeedingBinaryOp(BinaryOperator &I, Value *LHS,
548 Value *RHS);
549
550 // If `I` has operand `(ctpop (not x))`, fold `I` with `(sub nuw nsw
551 // BitWidth(x), (ctpop x))`.
552 Instruction *tryFoldInstWithCtpopWithNot(Instruction *I);
553
554 // (Binop1 (Binop2 (logic_shift X, C), C1), (logic_shift Y, C))
555 // -> (logic_shift (Binop1 (Binop2 X, inv_logic_shift(C1, C)), Y), C)
556 // (Binop1 (Binop2 (logic_shift X, Amt), Mask), (logic_shift Y, Amt))
557 // -> (BinOp (logic_shift (BinOp X, Y)), Mask)
558 Instruction *foldBinOpShiftWithShift(BinaryOperator &I);
559
560 /// Tries to simplify binops of select and cast of the select condition.
561 ///
562 /// (Binop (cast C), (select C, T, F))
563 /// -> (select C, C0, C1)
564 Instruction *foldBinOpOfSelectAndCastOfSelectCondition(BinaryOperator &I);
565 /// Fold both forms of the div_ceil idiom:
566 /// (add (udiv X, Y), (zext (icmp ne (urem X, Y), 0)))
567 /// -> (udiv (add nuw X, Y-1), Y)
568 /// (add (zext (udiv X, Y)), (zext (icmp ne (urem X, Y), 0)))
569 /// -> (zext (udiv (add nuw X, Y-1), Y))
570 Instruction *foldDivCeil(BinaryOperator &I);
571
572 /// This tries to simplify binary operations by factorizing out common terms
573 /// (e. g. "(A*B)+(A*C)" -> "A*(B+C)").
574 Value *tryFactorizationFolds(BinaryOperator &I);
575
576 /// Match a select chain which produces one of three values based on whether
577 /// the LHS is less than, equal to, or greater than RHS respectively.
578 /// Return true if we matched a three way compare idiom. The LHS, RHS, Less,
579 /// Equal and Greater values are saved in the matching process and returned to
580 /// the caller.
581 bool matchThreeWayIntCompare(SelectInst *SI, Value *&LHS, Value *&RHS,
582 ConstantInt *&Less, ConstantInt *&Equal,
583 ConstantInt *&Greater);
584
585 /// Attempts to replace I with a simpler value based on the demanded
586 /// bits.
587 Value *SimplifyDemandedUseBits(Instruction *I, const APInt &DemandedMask,
588 KnownBits &Known, const SimplifyQuery &Q,
589 unsigned Depth = 0);
591 bool SimplifyDemandedBits(Instruction *I, unsigned Op,
592 const APInt &DemandedMask, KnownBits &Known,
593 const SimplifyQuery &Q,
594 unsigned Depth = 0) override;
595
596 /// Helper routine of SimplifyDemandedUseBits. It computes KnownZero/KnownOne
597 /// bits. It also tries to handle simplifications that can be done based on
598 /// DemandedMask, but without modifying the Instruction.
599 Value *SimplifyMultipleUseDemandedBits(Instruction *I,
600 const APInt &DemandedMask,
602 const SimplifyQuery &Q,
603 unsigned Depth = 0);
604
605 /// Helper routine of SimplifyDemandedUseBits. It tries to simplify demanded
606 /// bit for "r1 = shr x, c1; r2 = shl r1, c2" instruction sequence.
607 Value *simplifyShrShlDemandedBits(
608 Instruction *Shr, const APInt &ShrOp1, Instruction *Shl,
609 const APInt &ShlOp1, const APInt &DemandedMask, KnownBits &Known);
610
611 /// Tries to simplify operands to an integer instruction based on its
612 /// demanded bits.
613 bool SimplifyDemandedInstructionBits(Instruction &Inst);
614 bool SimplifyDemandedInstructionBits(Instruction &Inst, KnownBits &Known);
615
616 Value *SimplifyDemandedVectorElts(Value *V, APInt DemandedElts,
617 APInt &PoisonElts, unsigned Depth = 0,
618 bool AllowMultipleUsers = false) override;
619
620 /// Attempts to replace V with a simpler value based on the demanded
621 /// floating-point classes
622 Value *SimplifyDemandedUseFPClass(Instruction *I, FPClassTest DemandedMask,
624 unsigned Depth = 0);
625 Value *SimplifyMultipleUseDemandedFPClass(Instruction *I,
626 FPClassTest DemandedMask,
628 const SimplifyQuery &Q,
629 unsigned Depth);
630
631 bool SimplifyDemandedFPClass(Instruction *I, unsigned Op,
632 FPClassTest DemandedMask, KnownFPClass &Known,
633 const SimplifyQuery &Q, unsigned Depth = 0);
634
635 bool SimplifyDemandedInstructionFPClass(Instruction &Inst);
636
637 /// Common transforms for add / disjoint or
638 Instruction *foldAddLikeCommutative(Value *LHS, Value *RHS, bool NSW,
639 bool NUW);
640
641 /// Canonicalize the position of binops relative to shufflevector.
642 Instruction *foldVectorBinop(BinaryOperator &Inst);
646 VectorType *NewCTy);
647
648 /// Given a binary operator, cast instruction, or select which has a PHI node
649 /// as operand #0, see if we can fold the instruction into the PHI (which is
650 /// only possible if all operands to the PHI are constants).
652 bool AllowMultipleUses = false);
653
654 /// Try to fold binary operators whose operands are simple interleaved
655 /// recurrences to a single recurrence. This is a common pattern in reduction
656 /// operations.
657 /// Example:
658 /// %phi1 = phi [init1, %BB1], [%op1, %BB2]
659 /// %phi2 = phi [init2, %BB1], [%op2, %BB2]
660 /// %op1 = binop %phi1, constant1
661 /// %op2 = binop %phi2, constant2
662 /// %rdx = binop %op1, %op2
663 /// -->
664 /// %phi_combined = phi [init_combined, %BB1], [%op_combined, %BB2]
665 /// %rdx_combined = binop %phi_combined, constant_combined
667
668 /// For a binary operator with 2 phi operands, try to hoist the binary
669 /// operation before the phi. This can result in fewer instructions in
670 /// patterns where at least one set of phi operands simplifies.
671 /// Example:
672 /// BB3: binop (phi [X, BB1], [C1, BB2]), (phi [Y, BB1], [C2, BB2])
673 /// -->
674 /// BB1: BO = binop X, Y
675 /// BB3: phi [BO, BB1], [(binop C1, C2), BB2]
677
678 /// Given an instruction with a select as one operand and a constant as the
679 /// other operand, try to fold the binary operator into the select arguments.
680 /// This also works for Cast instructions, which obviously do not have a
681 /// second operand.
683 bool FoldWithMultiUse = false,
684 bool SimplifyBothArms = false);
685
687
688 /// This is a convenience wrapper function for the above two functions.
690
692
695
696 /// Try to rotate an operation below a PHI node, using PHI nodes for
697 /// its operands.
706
707 /// If the phi is within a phi web, which is formed by the def-use chain
708 /// of phis and all the phis in the web are only used in the other phis.
709 /// In this case, these phis are dead and we will remove all of them.
710 bool foldDeadPhiWeb(PHINode &PN);
711
712 /// If an integer typed PHI has only one use which is an IntToPtr operation,
713 /// replace the PHI with an existing pointer typed PHI if it exists. Otherwise
714 /// insert a new pointer typed PHI and replace the original one.
716
717 /// Helper function for FoldPHIArgXIntoPHI() to set debug location for the
718 /// folded operation.
720
723 Instruction &I);
725 const ICmpInst &I);
726 bool foldAllocaCmp(AllocaInst *Alloca);
729 CmpInst &ICI,
730 ConstantInt *AndCst = nullptr);
732 Constant *RHSC);
737
746 const APInt &C);
749 Value *Z, CmpPredicate Pred);
755
757
759 const APInt &C);
761 ConstantInt *C);
763 const APInt &C);
765 const SimplifyQuery &Q);
767 const APInt &C);
769 const APInt &C);
771 const APInt &C);
773 const APInt &C);
775 const APInt &C);
777 const APInt &C);
779 const APInt &C);
781 const APInt &C);
783 const APInt &C);
785 const APInt &C);
787 const APInt &C);
789 const APInt &C1);
791 const APInt &C1, const APInt &C2);
793 const APInt &C);
795 const APInt &C2);
797 const APInt &C2);
798
800 BinaryOperator *BO,
801 const APInt &C);
803 BinaryOperator *BO,
804 const APInt &C);
806 const APInt &C);
808 const APInt &C);
812 ICmpInst &CxtI);
813
814 // Helpers of visitSelectInst().
823 Value *A, Value *B, Instruction &Outer,
827 Value *FalseVal);
829
831
833 unsigned Depth = 0);
834
835 Value *insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi,
836 bool isSigned, bool Inside);
838
839 /// Given an initial instruction, check to see if it is the root of a
840 /// bswap/bitreverse idiom. If so, return the equivalent bswap/bitreverse
841 /// intrinsic.
843 bool MatchBitReversals);
844
847
849
850 bool tryToSinkInstruction(Instruction *I, BasicBlock *DestBlock);
852 Instruction *I, BasicBlock::iterator InsertPos, BasicBlock *SrcBlock,
854
856 void addDeadEdge(BasicBlock *From, BasicBlock *To,
862 void freelyInvertAllUsersOf(Value *V, Value *IgnoredUser = nullptr);
863
864 /// Take the exact integer log2 of the value. If DoFold is true, create the
865 /// actual instructions, otherwise return a non-null dummy value. Return
866 /// nullptr on failure. Note, if DoFold is true the caller must ensure that
867 /// takeLog2 will succeed, otherwise it may create stray instructions.
868 Value *takeLog2(Value *Op, unsigned Depth, bool AssumeNonZero, bool DoFold);
869
870 Value *tryGetLog2(Value *Op, bool AssumeNonZero) {
871 if (takeLog2(Op, /*Depth=*/0, AssumeNonZero, /*DoFold=*/false))
872 return takeLog2(Op, /*Depth=*/0, AssumeNonZero, /*DoFold=*/true);
873 return nullptr;
874 }
875};
876
877class Negator final {
878 /// Top-to-bottom, def-to-use negated instruction tree we produced.
880
882 BuilderTy Builder;
883
884 const DominatorTree &DT;
885
886 const bool IsTrulyNegation;
887
888 SmallDenseMap<Value *, Value *> NegationsCache;
889
890 Negator(LLVMContext &C, const DataLayout &DL, const DominatorTree &DT,
891 bool IsTrulyNegation);
892
893#if LLVM_ENABLE_STATS
894 unsigned NumValuesVisitedInThisNegator = 0;
895 ~Negator();
896#endif
897
898 using Result = std::pair<ArrayRef<Instruction *> /*NewInstructions*/,
899 Value * /*NegatedRoot*/>;
900
901 std::array<Value *, 2> getSortedOperandsOfBinOp(Instruction *I);
902
903 [[nodiscard]] Value *visitImpl(Value *V, bool IsNSW, unsigned Depth);
904
905 [[nodiscard]] Value *negate(Value *V, bool IsNSW, unsigned Depth);
906
907 /// Recurse depth-first and attempt to sink the negation.
908 /// FIXME: use worklist?
909 [[nodiscard]] std::optional<Result> run(Value *Root, bool IsNSW);
910
911 Negator(const Negator &) = delete;
912 Negator(Negator &&) = delete;
913 Negator &operator=(const Negator &) = delete;
914 Negator &operator=(Negator &&) = delete;
915
916public:
917 /// Attempt to negate \p Root. Retuns nullptr if negation can't be performed,
918 /// otherwise returns negated value.
919 [[nodiscard]] static Value *Negate(bool LHSIsZero, bool IsNSW, Value *Root,
920 InstCombinerImpl &IC);
921};
922
924 /// Common base pointer.
925 Value *Ptr = nullptr;
926 /// LHS GEPs until common base.
928 /// RHS GEPs until common base.
930 /// LHS GEP NoWrapFlags until common base.
932 /// RHS GEP NoWrapFlags until common base.
934
936
937 /// Whether expanding the GEP chains is expensive.
938 bool isExpensive() const;
939};
940
941} // end namespace llvm
942
943#undef DEBUG_TYPE
944
945#endif // LLVM_LIB_TRANSFORMS_INSTCOMBINE_INSTCOMBINEINTERNAL_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
constexpr LLT S1
AMDGPU Register Bank Select
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
#define X(NUM, ENUM, NAME)
Definition ELF.h:857
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static bool foldICmpWithDominatingICmp(CmpInst *Cmp, const TargetLowering &TLI)
For pattern like:
#define LLVM_LIBRARY_VISIBILITY
Definition Compiler.h:137
static bool willNotOverflow(BinaryOpIntrinsic *BO, LazyValueInfo *LVI)
static bool isSigned(unsigned Opcode)
#define DEBUG_TYPE
Hexagon Common GEP
IRTranslator LLVM IR MI
static constexpr unsigned NegatorMaxNodesSSO
static constexpr unsigned NegatorDefaultMaxDepth
This file provides the interface for the instcombine pass implementation.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
uint64_t IntrinsicInst * II
StandardInstrumentations SI(Mod->getContext(), Debug, VerifyEach)
This file builds on the ADT/GraphTraits.h file to build a generic graph post order iterator.
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define LLVM_DEBUG(...)
Definition Debug.h:119
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
static OverflowResult computeOverflowForSignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const AddOperator *Add, const SimplifyQuery &SQ)
Value * RHS
Value * LHS
static const uint32_t IV[8]
Definition blake3_impl.h:83
Class for arbitrary precision integers.
Definition APInt.h:78
This class represents a conversion between pointers from one address space to another.
an instruction to allocate memory on the stack
This class represents any memset intrinsic.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
A cache of @llvm.assume calls within a function.
an instruction that atomically reads a memory location, combines it with another value,...
LLVM Basic Block Representation.
Definition BasicBlock.h:62
InstListType::iterator iterator
Instruction iterators...
Definition BasicBlock.h:170
This class represents a no-op cast from one type to another.
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Analysis providing branch probability information.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
This class represents a function call, abstracting a target machine's calling convention.
This is the base class for all instructions that perform data casts.
Definition InstrTypes.h:512
This class is the base class for the comparison instructions.
Definition InstrTypes.h:728
An abstraction over a floating-point predicate, and a pack of an integer predicate with samesign info...
Conditional Branch instruction.
This is the shared class of boolean and integer constants.
Definition Constants.h:87
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
This is an important base class in LLVM.
Definition Constant.h:43
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:122
This instruction extracts a single (scalar) element from a VectorType value.
This instruction extracts a struct member or array element value from an aggregate value.
This instruction compares its operands according to the predicate given to the constructor.
This class represents a cast from floating point to signed integer.
This class represents a cast from floating point to unsigned integer.
This class represents a truncation of floating point types.
Convenience struct for specifying and reasoning about fast-math flags.
Definition FMF.h:23
An instruction for ordering other memory operations.
This class represents a freeze function that returns random concrete value if an operand is either a ...
Represents flags for the getelementptr instruction/expression.
static GEPNoWrapFlags all()
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
This instruction compares its operands according to the predicate given to the constructor.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition IRBuilder.h:2908
This instruction inserts a single (scalar) element into a VectorType value.
This instruction inserts a struct field of array element value into an aggregate value.
Instruction * visitMul(BinaryOperator &I)
Instruction * foldICmpShrConstant(ICmpInst &Cmp, BinaryOperator *Shr, const APInt &C)
Fold icmp ({al}shr X, Y), C.
Instruction * foldICmpWithZextOrSext(ICmpInst &ICmp)
Instruction * foldICmpSelectConstant(ICmpInst &Cmp, SelectInst *Select, ConstantInt *C)
Instruction * foldICmpSRemConstant(ICmpInst &Cmp, BinaryOperator *UDiv, const APInt &C)
Instruction * foldSelectToCmp(SelectInst &SI)
Instruction * visitAdd(BinaryOperator &I)
Instruction * visitCondBrInst(CondBrInst &BI)
bool fmulByZeroIsZero(Value *MulVal, FastMathFlags FMF, const Instruction *CtxI) const
Check if fmul MulVal, +0.0 will yield +0.0 (or signed zero is ignorable).
Instruction * foldICmpBinOpWithConstant(ICmpInst &Cmp, BinaryOperator *BO, const APInt &C)
Fold an icmp with BinaryOp and constant operand: icmp Pred BO, C.
Instruction * foldICmpOrConstant(ICmpInst &Cmp, BinaryOperator *Or, const APInt &C)
Fold icmp (or X, Y), C.
Instruction * canonicalizeCondSignextOfHighBitExtractToSignextHighBitExtract(BinaryOperator &I)
Instruction * foldICmpTruncWithTruncOrExt(ICmpInst &Cmp, const SimplifyQuery &Q)
Fold icmp (trunc nuw/nsw X), (trunc nuw/nsw Y).
Instruction * visitLShr(BinaryOperator &I)
Instruction * foldBinOpIntoSelectOrPhi(BinaryOperator &I)
This is a convenience wrapper function for the above two functions.
Instruction * visitUDiv(BinaryOperator &I)
Instruction * visitOr(BinaryOperator &I)
Instruction * foldSignBitTest(ICmpInst &I)
Fold equality-comparison between zero and any (maybe truncated) right-shift by one-less-than-bitwidth...
Instruction * foldSelectEqualityTest(SelectInst &SI)
Instruction * visitZExt(ZExtInst &Zext)
Instruction * visitGEPOfGEP(GetElementPtrInst &GEP, GEPOperator *Src)
Instruction * foldSelectValueEquivalence(SelectInst &SI, CmpInst &CI)
Instruction * visitAddrSpaceCast(AddrSpaceCastInst &CI)
Instruction * foldExtractionOfVectorDeinterleave(ZExtInst &RootZExt)
Instruction * foldPHIArgInsertValueInstructionIntoPHI(PHINode &PN)
If we have something like phi [insertvalue(a,b,0), insertvalue(c,d,0)], turn this into a phi[a,...
~InstCombinerImpl() override=default
Instruction * visitSExt(SExtInst &Sext)
Instruction * visitUnreachableInst(UnreachableInst &I)
Instruction * visitURem(BinaryOperator &I)
Instruction * foldSquareSumInt(BinaryOperator &I)
Instruction * foldOpIntoPhi(Instruction &I, PHINode *PN, bool AllowMultipleUses=false)
Given a binary operator, cast instruction, or select which has a PHI node as operand #0,...
Value * insertRangeTest(Value *V, const APInt &Lo, const APInt &Hi, bool isSigned, bool Inside)
Emit a computation of: (V >= Lo && V < Hi) if Inside is true, otherwise (V < Lo || V >= Hi).
void handleUnreachableFrom(Instruction *I, SmallVectorImpl< BasicBlock * > &Worklist)
Instruction * foldICmpBinOp(ICmpInst &Cmp, const SimplifyQuery &SQ)
Try to fold icmp (binop), X or icmp X, (binop).
Instruction * foldVectorSelect(SelectInst &Sel)
Instruction * foldCmpLoadFromIndexedGlobal(LoadInst *LI, GetElementPtrInst *GEP, CmpInst &ICI, ConstantInt *AndCst=nullptr)
This is called when we see this pattern: cmp pred (load (gep GV, ...)), cmpcst where GV is a global v...
Instruction * visitFreeze(FreezeInst &I)
Instruction * foldICmpSubConstant(ICmpInst &Cmp, BinaryOperator *Sub, const APInt &C)
Fold icmp (sub X, Y), C.
Instruction * foldSelectShuffle(ShuffleVectorInst &Shuf)
Try to fold shuffles that are the equivalent of a vector select.
Instruction * visitLoadInst(LoadInst &LI)
Value * takeLog2(Value *Op, unsigned Depth, bool AssumeNonZero, bool DoFold)
Take the exact integer log2 of the value.
Instruction * visitFPToSI(FPToSIInst &FI)
Instruction * foldICmpWithClamp(ICmpInst &Cmp, Value *X, MinMaxIntrinsic *Min)
Match and fold patterns like: icmp eq/ne X, min(max(X, Lo), Hi) which represents a range check and ca...
Instruction * foldICmpInstWithConstantNotInt(ICmpInst &Cmp)
Handle icmp with constant (but not simple integer constant) RHS.
Instruction * visitAtomicRMWInst(AtomicRMWInst &SI)
Instruction * visitSRem(BinaryOperator &I)
Instruction * foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1, Value *A, Value *B, Instruction &Outer, SelectPatternFlavor SPF2, Value *C)
Instruction * visitTrunc(TruncInst &CI)
Instruction * foldBinOpSelectBinOp(BinaryOperator &Op)
In some cases it is beneficial to fold a select into a binary operator.
Instruction * foldICmpShlConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1, const APInt &C2)
Handle "(icmp eq/ne (shl AP2, A), AP1)" -> (icmp eq/ne A, TrailingZeros(AP1) - TrailingZeros(AP2)).
Instruction * foldSquareSumFP(BinaryOperator &I)
Value * reassociateShiftAmtsOfTwoSameDirectionShifts(BinaryOperator *Sh0, const SimplifyQuery &SQ, bool AnalyzeForSignBitExtraction=false)
Instruction * foldSelectOpOp(SelectInst &SI, Instruction *TI, Instruction *FI)
We have (select c, TI, FI), and we know that TI and FI have the same opcode.
Instruction * visitUIToFP(CastInst &CI)
Instruction * foldPHIArgBinOpIntoPHI(PHINode &PN)
If we have something like phi [add (a,b), add(a,c)] and if a/b/c and the adds all have a single user,...
void handlePotentiallyDeadBlocks(SmallVectorImpl< BasicBlock * > &Worklist)
bool sinkNotIntoLogicalOp(Instruction &I)
Instruction * foldICmpEqIntrinsicWithConstant(ICmpInst &ICI, IntrinsicInst *II, const APInt &C)
Fold an equality icmp with LLVM intrinsic and constant operand.
Instruction * visitPtrToInt(PtrToIntInst &CI)
bool prepareWorklist(Function &F)
Perform early cleanup and prepare the InstCombine worklist.
Instruction * foldSelectIntrinsic(SelectInst &SI)
This transforms patterns of the form: select cond, intrinsic(x, ...), intrinsic(y,...
std::optional< std::pair< Intrinsic::ID, SmallVector< Value *, 3 > > > convertOrOfShiftsToFunnelShift(Instruction &Or)
Instruction * visitFDiv(BinaryOperator &I)
Instruction * FoldOpIntoSelect(Instruction &Op, SelectInst *SI, bool FoldWithMultiUse=false, bool SimplifyBothArms=false)
Given an instruction with a select as one operand and a constant as the other operand,...
Instruction * SimplifyAnyMemSet(AnyMemSetInst *MI)
bool simplifyDivRemOfSelectWithZeroOp(BinaryOperator &I)
Fold a divide or remainder with a select instruction divisor when one of the select operands is zero.
Instruction * foldItoFPtoI(FPToIntTy &FI)
fpto{s/u}i.sat --> X or zext(X) or sext(X) or trunc(X) This is safe if the intermediate type has enou...
Instruction * visitSIToFP(CastInst &CI)
Instruction * visitSub(BinaryOperator &I)
Value * simplifyRangeCheck(CmpPredicate PredL, Value *LHS0, Value *LHS1, CmpPredicate PredR, Value *RHS0, Value *RHS1, Instruction *CxtI, bool Inverted)
Try to fold a signed range checked with lower bound 0 to an unsigned icmp.
Instruction * visitAShr(BinaryOperator &I)
bool replaceInInstruction(Value *V, Value *Old, Value *New, unsigned Depth=0)
Instruction * visitFree(CallInst &FI, Value *FreedOp)
Instruction * visitInsertValueInst(InsertValueInst &IV)
Try to find redundant insertvalue instructions, like the following ones: %0 = insertvalue { i8,...
Instruction * visitAnd(BinaryOperator &I)
Value * foldMultiplicationOverflowCheck(ICmpInst &Cmp)
Fold (-1 u/ x) u< y ((x * y) ?
Instruction * visitCallBrInst(CallBrInst &CBI)
Instruction * visitExtractValueInst(ExtractValueInst &EV)
Instruction * visitInsertElementInst(InsertElementInst &IE)
void handlePotentiallyDeadSuccessors(BasicBlock *BB, BasicBlock *LiveSucc)
Instruction * commonCastTransforms(CastInst &CI)
Implement the transforms common to all CastInst visitors.
Instruction * foldICmpWithConstant(ICmpInst &Cmp)
Fold icmp Pred X, C.
CmpInst * canonicalizeICmpPredicate(CmpInst &I)
If we have a comparison with a non-canonical predicate, if we can update all the users,...
Instruction * foldBinopWithRecurrence(BinaryOperator &BO)
Try to fold binary operators whose operands are simple interleaved recurrences to a single recurrence...
Instruction * eraseInstFromFunction(Instruction &I) override
Combiner aware instruction erasure.
Instruction * foldICmpWithZero(ICmpInst &Cmp)
Instruction * visitExtractElementInst(ExtractElementInst &EI)
Instruction * commonIDivRemTransforms(BinaryOperator &I)
Common integer divide/remainder transforms.
Value * foldReversedIntrinsicOperands(IntrinsicInst *II)
If all arguments of the intrinsic are reverses, try to pull the reverse after the intrinsic.
Instruction * visitPHINode(PHINode &PN)
Instruction * foldICmpCommutative(CmpPredicate Pred, Value *Op0, Value *Op1, ICmpInst &CxtI)
Instruction * foldICmpBinOpEqualityWithConstant(ICmpInst &Cmp, BinaryOperator *BO, const APInt &C)
Fold an icmp equality instruction with binary operator LHS and constant RHS: icmp eq/ne BO,...
Instruction * foldPHIArgOpIntoPHI(PHINode &PN)
Try to rotate an operation below a PHI node, using PHI nodes for its operands.
Instruction * visitLandingPadInst(LandingPadInst &LI)
Instruction * foldICmpUsingBoolRange(ICmpInst &I)
If one operand of an icmp is effectively a bool (value range of {0,1}), then try to reduce patterns b...
Instruction * foldICmpWithTrunc(ICmpInst &Cmp)
Instruction * foldCmpSelectOfConstants(CmpInst &I)
Fold fcmp/icmp pred (select C1, TV1, FV1), (select C2, TV2, FV2) where all true/false values are cons...
Instruction * foldICmpIntrinsicWithConstant(ICmpInst &ICI, IntrinsicInst *II, const APInt &C)
Fold an icmp with LLVM intrinsic and constant operand: icmp Pred II, C.
Instruction * visitFPTrunc(FPTruncInst &CI)
Instruction * visitStoreInst(StoreInst &SI)
Value * tryGetLog2(Value *Op, bool AssumeNonZero)
Instruction * foldPHIArgZextsIntoPHI(PHINode &PN)
TODO: This function could handle other cast types, but then it might require special-casing a cast fr...
Instruction * foldSelectInstWithICmp(SelectInst &SI, ICmpInst *ICI)
Instruction * visitFenceInst(FenceInst &FI)
Value * foldPtrToIntOrAddrOfGEP(Type *IntTy, Value *Ptr)
Instruction * visitFCmpInst(FCmpInst &I)
Value * OptimizePointerDifference(Value *LHS, Value *RHS, Type *Ty, bool isNUW)
Optimize pointer differences into the same array into a size.
Instruction * visitBitCast(BitCastInst &CI)
Instruction * visitReturnInst(ReturnInst &RI)
bool sinkNotIntoOtherHandOfLogicalOp(Instruction &I)
Instruction * commonIDivTransforms(BinaryOperator &I)
This function implements the transforms common to both integer division instructions (udiv and sdiv).
Instruction * foldICmpUsingKnownBits(ICmpInst &Cmp)
Try to fold the comparison based on range information we can get by checking whether bits are known t...
Instruction * foldICmpDivConstant(ICmpInst &Cmp, BinaryOperator *Div, const APInt &C)
Fold icmp ({su}div X, Y), C.
Instruction * foldIRemByPowerOfTwoToBitTest(ICmpInst &I)
If we have: icmp eq/ne (urem/srem x, y), 0 iff y is a power-of-two, we can replace this with a bit te...
Instruction * foldFCmpIntToFPConst(FCmpInst &I, Instruction *LHSI, Constant *RHSC)
Fold fcmp ([us]itofp x, cst) if possible.
Instruction * visitShl(BinaryOperator &I)
Instruction * visitSwitchInst(SwitchInst &SI)
Instruction * foldICmpUDivConstant(ICmpInst &Cmp, BinaryOperator *UDiv, const APInt &C)
Fold icmp (udiv X, Y), C.
Instruction * visitFAdd(BinaryOperator &I)
Instruction * foldBinopWithPhiOperands(BinaryOperator &BO)
For a binary operator with 2 phi operands, try to hoist the binary operation before the phi.
Instruction * visitIntToPtr(IntToPtrInst &CI)
Instruction * foldICmpAddOpConst(Value *X, const APInt &C, CmpPredicate Pred)
Fold "icmp pred (X+C), X".
Instruction * foldICmpWithCastOp(ICmpInst &ICmp)
Handle icmp (cast x), (cast or constant).
Instruction * visitFPToUI(FPToUIInst &FI)
Instruction * foldICmpTruncConstant(ICmpInst &Cmp, TruncInst *Trunc, const APInt &C)
Fold icmp (trunc X), C.
bool mergeStoreIntoSuccessor(StoreInst &SI)
Try to transform: if () { *P = v1; } else { *P = v2 } or: *P = v1; if () { *P = v2; }...
Instruction * visitPtrToAddr(PtrToAddrInst &CI)
Instruction * visitInstruction(Instruction &I)
Specify what to return for unhandled instructions.
Instruction * foldSelectIntoOp(SelectInst &SI, Value *, Value *)
Try to fold the select into one of the operands to allow further optimization.
Instruction * foldShuffledIntrinsicOperands(IntrinsicInst *II)
If all arguments of the intrinsic are unary shuffles with the same mask, try to shuffle after the int...
Instruction * foldICmpAddConstant(ICmpInst &Cmp, BinaryOperator *Add, const APInt &C)
Fold icmp (add X, Y), C.
Instruction * foldICmpMulConstant(ICmpInst &Cmp, BinaryOperator *Mul, const APInt &C)
Fold icmp (mul X, Y), C.
InstCombinerImpl(InstructionWorklist &Worklist, Function &F, AAResults *AA, AssumptionCache &AC, TargetLibraryInfo &TLI, TargetTransformInfo &TTI, DominatorTree &DT, OptimizationRemarkEmitter &ORE, BlockFrequencyInfo *BFI, BranchProbabilityInfo *BPI, ProfileSummaryInfo *PSI, const DataLayout &DL, ReversePostOrderTraversal< BasicBlock * > &RPOT)
Instruction * visitInvokeInst(InvokeInst &II)
Instruction * foldVariableSignZeroExtensionOfVariableHighBitExtract(BinaryOperator &OldAShr)
Instruction * visitUncondBrInst(UncondBrInst &BI)
Instruction * commonShiftTransforms(BinaryOperator &I)
Instruction * visitFRem(BinaryOperator &I)
Instruction * foldPHIArgLoadIntoPHI(PHINode &PN)
Instruction * foldICmpXorConstant(ICmpInst &Cmp, BinaryOperator *Xor, const APInt &C)
Fold icmp (xor X, Y), C.
Instruction * FoldOrOfLogicalAnds(Value *Op0, Value *Op1)
Instruction * foldSelectICmp(CmpPredicate Pred, SelectInst *SI, Value *RHS, const ICmpInst &I)
bool foldIntegerTypedPHI(PHINode &PN)
If an integer typed PHI has only one use which is an IntToPtr operation, replace the PHI with an exis...
Instruction * foldICmpInstWithConstantAllowPoison(ICmpInst &Cmp, const APInt &C)
Try to fold integer comparisons with a constant operand: icmp Pred X, C where X is some kind of instr...
bool foldDeadPhiWeb(PHINode &PN)
If the phi is within a phi web, which is formed by the def-use chain of phis and all the phis in the ...
Instruction * foldIsMultipleOfAPowerOfTwo(ICmpInst &Cmp)
Fold icmp eq (num + mask) & ~mask, num to icmp eq (and num, mask), 0 Where mask is a low bit mask.
Instruction * visitXor(BinaryOperator &I)
Value * foldSelectWithConstOpToBinOp(ICmpInst *Cmp, Value *TrueVal, Value *FalseVal)
Value * EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned)
Given an expression that CanEvaluateTruncated or CanEvaluateSExtd returns true for,...
Instruction * simplifyBinOpSplats(ShuffleVectorInst &SVI)
void CreateNonTerminatorUnreachable(Instruction *InsertAt)
Create and insert the idiom we use to indicate a block is unreachable without having to rewrite the C...
Instruction * foldICmpAndShift(ICmpInst &Cmp, BinaryOperator *And, const APInt &C1, const APInt &C2)
Fold icmp (and (sh X, Y), C2), C1.
Value * pushFreezeToPreventPoisonFromPropagating(FreezeInst &FI)
Instruction * foldICmpBinOpWithConstantViaTruthTable(ICmpInst &Cmp, BinaryOperator *BO, const APInt &C)
Instruction * foldICmpInstWithConstant(ICmpInst &Cmp)
Try to fold integer comparisons with a constant operand: icmp Pred X, C where X is some kind of instr...
Instruction * visitSelectInst(SelectInst &SI)
Instruction * foldICmpXorShiftConst(ICmpInst &Cmp, BinaryOperator *Xor, const APInt &C)
For power-of-2 C: ((X s>> ShiftC) ^ X) u< C --> (X + C) u< (C << 1) ((X s>> ShiftC) ^ X) u> (C - 1) -...
Instruction * foldPHIArgIntToPtrToPHI(PHINode &PN)
Instruction * visitFPExt(CastInst &CI)
Instruction * foldICmpShlConstant(ICmpInst &Cmp, BinaryOperator *Shl, const APInt &C)
Fold icmp (shl X, Y), C.
Instruction * visitFMul(BinaryOperator &I)
Instruction * foldSelectOfBools(SelectInst &SI)
Instruction * foldSelectExtConst(SelectInst &Sel)
Instruction * foldAddWithConstant(BinaryOperator &Add)
Instruction * foldICmpAndConstant(ICmpInst &Cmp, BinaryOperator *And, const APInt &C)
Fold icmp (and X, Y), C.
bool run()
Run the combiner over the entire worklist until it is empty.
Instruction * foldFMulReassoc(BinaryOperator &I)
Instruction * SliceUpIllegalIntegerPHI(PHINode &PN)
This is an integer PHI and we know that it has an illegal type: see if it is only used by trunc or tr...
Instruction * foldAggregateConstructionIntoAggregateReuse(InsertValueInst &OrigIVI)
Look for chain of insertvalue's that fully define an aggregate, and trace back the values inserted,...
Instruction * foldICmpEquality(ICmpInst &Cmp)
bool removeInstructionsBeforeUnreachable(Instruction &I)
Instruction * foldPHIArgGEPIntoPHI(PHINode &PN)
Instruction * foldICmpWithMinMax(Instruction &I, MinMaxIntrinsic *MinMax, Value *Z, CmpPredicate Pred)
Fold icmp Pred min|max(X, Y), Z.
Instruction * visitShuffleVectorInst(ShuffleVectorInst &SVI)
Instruction * FoldShiftByConstant(Value *Op0, Constant *Op1, BinaryOperator &I)
void tryToSinkInstructionDbgVariableRecords(Instruction *I, BasicBlock::iterator InsertPos, BasicBlock *SrcBlock, BasicBlock *DestBlock, SmallVectorImpl< DbgVariableRecord * > &DPUsers)
bool foldAllocaCmp(AllocaInst *Alloca)
void addDeadEdge(BasicBlock *From, BasicBlock *To, SmallVectorImpl< BasicBlock * > &Worklist)
void PHIArgMergedDebugLoc(Instruction *Inst, PHINode &PN)
Helper function for FoldPHIArgXIntoPHI() to set debug location for the folded operation.
Instruction * visitVAEndInst(VAEndInst &I)
Instruction * matchBSwapOrBitReverse(Instruction &I, bool MatchBSwaps, bool MatchBitReversals)
Given an initial instruction, check to see if it is the root of a bswap/bitreverse idiom.
Constant * unshuffleConstant(ArrayRef< int > ShMask, Constant *C, VectorType *NewCTy)
Find a constant NewC that has property: shuffle(NewC, poison, ShMask) = C for lanes that select NewC.
Instruction * visitAllocSite(Instruction &FI)
Instruction * visitICmpInst(ICmpInst &I)
Instruction * SimplifyAnyMemTransfer(AnyMemTransferInst *MI)
Instruction * visitGetElementPtrInst(GetElementPtrInst &GEP)
Instruction * foldPowiReassoc(BinaryOperator &I)
Instruction * foldFreezeIntoRecurrence(FreezeInst &I, PHINode *PN)
Instruction * visitSDiv(BinaryOperator &I)
bool tryToSinkInstruction(Instruction *I, BasicBlock *DestBlock)
Try to move the specified instruction from its current block into the beginning of DestBlock,...
Instruction * foldPHIArgExtractValueInstructionIntoPHI(PHINode &PN)
If we have something like phi [extractvalue(a,0), extractvalue(b,0)], turn this into a phi[a,...
Instruction * foldICmpShrConstConst(ICmpInst &I, Value *ShAmt, const APInt &C1, const APInt &C2)
Handle "(icmp eq/ne (ashr/lshr AP2, A), AP1)" -> (icmp eq/ne A, Log2(AP2/AP1)) -> (icmp eq/ne A,...
bool freezeOtherUses(FreezeInst &FI)
Instruction * visitFNeg(UnaryOperator &I)
void freelyInvertAllUsersOf(Value *V, Value *IgnoredUser=nullptr)
Freely adapt every user of V as-if V was changed to !V.
Instruction * commonIRemTransforms(BinaryOperator &I)
This function implements the transforms common to both integer remainder instructions (urem and srem)...
Instruction * visitAllocaInst(AllocaInst &AI)
Instruction * visitCallInst(CallInst &CI)
CallInst simplification.
Instruction * foldICmpAndConstConst(ICmpInst &Cmp, BinaryOperator *And, const APInt &C1)
Fold icmp (and X, C2), C1.
Instruction * visitFSub(BinaryOperator &I)
Instruction * foldICmpBitCast(ICmpInst &Cmp)
Instruction * foldGEPICmp(GEPOperator *GEPLHS, Value *RHS, CmpPredicate Cond, Instruction &I)
Fold comparisons between a GEP instruction and something else.
SimplifyQuery SQ
BlockFrequencyInfo * BFI
TargetLibraryInfo & TLI
InstructionWorklist & Worklist
A worklist of the instructions that need to be simplified.
Instruction * InsertNewInstWith(Instruction *New, BasicBlock::iterator Old)
Same as InsertNewInstBefore, but also sets the debug loc.
BranchProbabilityInfo * BPI
InstCombiner(InstructionWorklist &Worklist, Function &F, AAResults *AA, AssumptionCache &AC, TargetLibraryInfo &TLI, TargetTransformInfo &TTI, DominatorTree &DT, OptimizationRemarkEmitter &ORE, BlockFrequencyInfo *BFI, BranchProbabilityInfo *BPI, ProfileSummaryInfo *PSI, const DataLayout &DL, ReversePostOrderTraversal< BasicBlock * > &RPOT)
virtual bool SimplifyDemandedBits(Instruction *I, unsigned OpNo, const APInt &DemandedMask, KnownBits &Known, const SimplifyQuery &Q, unsigned Depth=0)=0
ReversePostOrderTraversal< BasicBlock * > & RPOT
const DataLayout & DL
DomConditionCache DC
AssumptionCache & AC
DominatorTree & DT
ProfileSummaryInfo * PSI
OptimizationRemarkEmitter & ORE
Base class for instruction visitors.
Definition InstVisitor.h:78
InstructionWorklist - This is the worklist management logic for InstCombine and other simplification ...
This class represents a cast from an integer to a pointer.
A wrapper class for inspecting calls to intrinsic functions.
Invoke instruction.
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
The landingpad instruction holds all of the information necessary to generate correct exception handl...
An instruction for reading from memory.
This class represents min/max intrinsics.
static Value * Negate(bool LHSIsZero, bool IsNSW, Value *Root, InstCombinerImpl &IC)
Attempt to negate Root.
The optimization diagnostic interface.
static PointerType * getUnqual(LLVMContext &C)
This constructs an opaque pointer to an object in the default address space (address space zero).
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Analysis providing profile information.
This class represents a cast from a pointer to an address (non-capturing ptrtoint).
This class represents a cast from a pointer to an integer.
Return a value (possibly void), from a function.
This class represents a sign extension of integer types.
This class represents the LLVM 'select' instruction.
This instruction constructs a fixed permutation of two input vectors.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Multiway switch.
Provides information about what library functions are available for the current target.
This pass provides access to the codegen interfaces that are needed for IR-level transformations.
This class represents a truncation of integer types.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
Definition Twine.h:82
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
Unconditional Branch instruction.
This function has undefined behavior.
This represents the llvm.va_end intrinsic.
LLVM Value Representation.
Definition Value.h:75
LLVMContext & getContext() const
All values hold a context through their type.
Definition Value.h:260
Base class of all SIMD vector types.
This class represents zero extension of integer types.
self_iterator getIterator()
Definition ilist_node.h:123
CallInst * Call
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
friend class Instruction
Iterator for Instructions in a `BasicBlock.
Definition BasicBlock.h:73
This is an optimization pass for GlobalISel generic memory operations.
ShiftSemantics
Enum to specify how shift operations should be evaluated in canEvaluateShifted.
@ NeverOverflows
Never overflows.
@ Known
Known to have no common set bits.
LLVM_ABI void setExplicitlyUnknownBranchWeightsIfProfiled(Instruction &I, StringRef PassName, const Function *F=nullptr)
Like setExplicitlyUnknownBranchWeights(...), but only sets unknown branch weights in the new instruct...
LLVM_ABI void salvageDebugInfo(const MachineRegisterInfo &MRI, MachineInstr &MI)
Assuming the instruction MI is going to be deleted, attempt to salvage debug users of MI by writing t...
Definition Utils.cpp:1675
@ BinaryOp
One of the operands is a binary op.
LLVM_ABI OverflowResult computeOverflowForUnsignedMul(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ, bool IsNSW=false)
LLVM_ABI OverflowResult computeOverflowForSignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
SelectPatternFlavor
Specific patterns of select instructions we can match.
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition Debug.cpp:209
LLVM_ABI OverflowResult computeOverflowForSignedMul(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
TargetTransformInfo TTI
@ Mul
Product of integers.
@ Xor
Bitwise or logical XOR of integers.
@ Sub
Subtraction of integers.
@ Add
Sum of integers.
DWARFExpression::Operation Op
constexpr unsigned BitWidth
LLVM_ABI OverflowResult computeOverflowForUnsignedSub(const Value *LHS, const Value *RHS, const SimplifyQuery &SQ)
LLVM_ABI OverflowResult computeOverflowForUnsignedAdd(const WithCache< const Value * > &LHS, const WithCache< const Value * > &RHS, const SimplifyQuery &SQ)
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39
Value * Ptr
Common base pointer.
SmallVector< GEPOperator * > RHSGEPs
RHS GEPs until common base.
GEPNoWrapFlags LHSNW
LHS GEP NoWrapFlags until common base.
GEPNoWrapFlags RHSNW
RHS GEP NoWrapFlags until common base.
SmallVector< GEPOperator * > LHSGEPs
LHS GEPs until common base.
bool isExpensive() const
Whether expanding the GEP chains is expensive.
static CommonPointerBase compute(Value *LHS, Value *RHS)
Matching combinators.