LLVM
15.0.0git
|
#include "InstCombineInternal.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/SmallPtrSet.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Analysis/InstructionSimplify.h"
#include "llvm/Analysis/ValueTracking.h"
#include "llvm/IR/PatternMatch.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Transforms/InstCombine/InstCombiner.h"
#include "llvm/Transforms/Utils/Local.h"
Go to the source code of this file.
Classes | |
struct | llvm::DenseMapInfo< LoweredPHIRecord > |
Namespaces | |
llvm | |
This is an optimization pass for GlobalISel generic memory operations. | |
Macros | |
#define | DEBUG_TYPE "instcombine" |
Functions | |
STATISTIC (NumPHIsOfInsertValues, "Number of phi-of-insertvalue turned into insertvalue-of-phis") | |
STATISTIC (NumPHIsOfExtractValues, "Number of phi-of-extractvalue turned into extractvalue-of-phi") | |
STATISTIC (NumPHICSEs, "Number of PHI's that got CSE'd") | |
static bool | isSafeAndProfitableToSinkLoad (LoadInst *L) |
Return true if we know that it is safe to sink the load out of the block that defines it. More... | |
static bool | isDeadPHICycle (PHINode *PN, SmallPtrSetImpl< PHINode * > &PotentiallyDeadPHIs) |
Return true if this PHI node is only used by a PHI node cycle that is dead. More... | |
static bool | PHIsEqualValue (PHINode *PN, Value *NonPhiInVal, SmallPtrSetImpl< PHINode * > &ValueEqualPHIs) |
Return true if this phi node is always equal to NonPhiInVal. More... | |
static ConstantInt * | getAnyNonZeroConstInt (PHINode &PN) |
Return an existing non-zero constant if this phi node has one, otherwise return constant 1. More... | |
static Value * | simplifyUsingControlFlow (InstCombiner &Self, PHINode &PN, const DominatorTree &DT) |
Variables | |
static cl::opt< unsigned > | MaxNumPhis ("instcombine-max-num-phis", cl::init(512), cl::desc("Maximum number phis to handle in intptr/ptrint folding")) |
#define DEBUG_TYPE "instcombine" |
Definition at line 27 of file InstCombinePHI.cpp.
|
static |
Return an existing non-zero constant if this phi node has one, otherwise return constant 1.
Definition at line 1016 of file InstCombinePHI.cpp.
References assert(), llvm::ConstantInt::get(), llvm::Value::getType(), and llvm::User::operands().
Referenced by llvm::InstCombinerImpl::visitPHINode().
|
static |
Return true if this PHI node is only used by a PHI node cycle that is dead.
Definition at line 969 of file InstCombinePHI.cpp.
References llvm::Value::hasOneUse(), llvm::SmallPtrSetImpl< PtrType >::insert(), llvm::SmallPtrSetImplBase::size(), llvm::Value::use_empty(), and llvm::Instruction::user_back().
Referenced by llvm::InstCombinerImpl::visitPHINode().
|
static |
Return true if we know that it is safe to sink the load out of the block that defines it.
This means that it must be obvious the value of the load is not changed from the point of the load to the end of the block it is in.
Finally, it is safe, but not profitable, to sink a load targeting a non-address-taken alloca. Doing so will cause us to not promote the alloca to a register.
Definition at line 614 of file InstCombinePHI.cpp.
References E, llvm::BasicBlock::end(), GEP, llvm::ilist_node_impl< OptionsT >::getIterator(), llvm::User::getOperand(), llvm::Instruction::getParent(), SI, and llvm::Value::users().
Referenced by llvm::InstCombinerImpl::foldPHIArgLoadIntoPHI().
|
static |
Return true if this phi node is always equal to NonPhiInVal.
This happens with mutually cyclic phi nodes like: z = some value; x = phi (y, z); y = phi (x, z)
Definition at line 991 of file InstCombinePHI.cpp.
References llvm::PHINode::incoming_values(), llvm::SmallPtrSetImpl< PtrType >::insert(), and llvm::SmallPtrSetImplBase::size().
Referenced by llvm::InstCombinerImpl::visitPHINode().
|
static |
Definition at line 1271 of file InstCombinePHI.cpp.
References llvm::all_of(), BB, llvm::PHINode::blocks(), llvm::InstCombiner::Builder, Cond, Context, llvm::IRBuilderBase::CreateNot(), llvm::DominatorTree::dominates(), llvm::DenseMapBase< SmallDenseMap< KeyT, ValueT, 4, DenseMapInfo< KeyT >, llvm::detail::DenseMapPair< KeyT, ValueT > >, KeyT, ValueT, DenseMapInfo< KeyT >, llvm::detail::DenseMapPair< KeyT, ValueT > >::end(), llvm::DenseMapBase< SmallDenseMap< KeyT, ValueT, 4, DenseMapInfo< KeyT >, llvm::detail::DenseMapPair< KeyT, ValueT > >, KeyT, ValueT, DenseMapInfo< KeyT >, llvm::detail::DenseMapPair< KeyT, ValueT > >::find(), llvm::DomTreeNodeBase< NodeT >::getBlock(), llvm::Value::getContext(), llvm::ConstantInt::getFalse(), llvm::DomTreeNodeBase< NodeT >::getIDom(), llvm::DominatorTreeBase< NodeT, IsPostDom >::getNode(), llvm::ConstantExpr::getNot(), llvm::Instruction::getParent(), llvm::ConstantInt::getTrue(), llvm::Value::getType(), llvm::PHINode::incoming_values(), llvm::DominatorTree::isReachableFromEntry(), llvm::User::operands(), llvm::IRBuilderBase::SetInsertPoint(), SI, and llvm::zip().
Referenced by llvm::InstCombinerImpl::visitPHINode().
STATISTIC | ( | NumPHIsOfExtractValues | , |
"Number of phi-of-extractvalue turned into extractvalue-of-phi" | |||
) |
STATISTIC | ( | NumPHIsOfInsertValues | , |
"Number of phi-of-insertvalue turned into insertvalue-of-phis" | |||
) |