59#define DEBUG_TYPE "mem2reg"
61STATISTIC(NumLocalPromoted,
"Number of alloca's promoted within one block");
62STATISTIC(NumSingleStore,
"Number of alloca's promoted with a single store");
63STATISTIC(NumDeadAlloca,
"Number of dead alloca's removed");
64STATISTIC(NumPHIInsert,
"Number of PHI nodes inserted");
69 if (
const LoadInst *LI = dyn_cast<LoadInst>(U)) {
74 }
else if (
const StoreInst *SI = dyn_cast<StoreInst>(U)) {
75 if (SI->getValueOperand() == AI ||
83 if (!
II->isLifetimeStartOrEnd() && !
II->isDroppable() &&
84 II->getIntrinsicID() != Intrinsic::fake_use)
86 }
else if (
const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) {
90 if (!GEPI->hasAllZeroIndices())
122 DIB.insertDbgValueIntrinsic(NewValue, Variable,
Expression, DI, InsertBefore);
126class AssignmentTrackingInfo {
148 void updateForDeletedStore(
164 auto InsertValueForAssign = [&](
auto *DbgAssign,
auto *&AssignList) {
166 AssignList->insert(DbgAssign);
167 createDebugValue(DIB, DbgAssign->getValue(), DbgAssign->getVariable(),
168 DbgAssign->getExpression(), DbgAssign->getDebugLoc(),
172 InsertValueForAssign(Assign, DbgAssignsToDelete);
174 InsertValueForAssign(Assign, DVRAssignsToDelete);
184 auto ConvertUnlinkedAssignToValue = [&](
auto *
Assign) {
189 for_each(DbgAssigns, ConvertUnlinkedAssignToValue);
190 for_each(DVRAssigns, ConvertUnlinkedAssignToValue);
199 for (
auto *DAI : DbgAssigns)
201 for (
auto *DVR : DVRAssigns)
209 bool empty() {
return DbgAssigns.empty() && DVRAssigns.
empty(); }
221 bool OnlyUsedInOneBlock;
227 AssignmentTrackingInfo AssignmentTracking;
230 DefiningBlocks.
clear();
234 OnlyUsedInOneBlock =
true;
237 AssignmentTracking.clear();
262 if (OnlyUsedInOneBlock) {
264 OnlyBlock =
User->getParent();
265 else if (OnlyBlock !=
User->getParent())
266 OnlyUsedInOneBlock =
false;
269 DbgUserVec AllDbgUsers;
272 std::copy_if(AllDbgUsers.begin(), AllDbgUsers.end(),
274 return !isa<DbgAssignIntrinsic>(DII);
276 std::copy_if(AllDPUsers.
begin(), AllDPUsers.
end(),
277 std::back_inserter(DPUsers),
279 AssignmentTracking.init(AI);
284struct RenamePassData {
285 using ValVector = std::vector<Value *>;
286 using LocationVector = std::vector<DebugLoc>;
302class LargeBlockInfo {
313 static bool isInterestingInstruction(
const Instruction *
I) {
314 return (isa<LoadInst>(
I) && isa<AllocaInst>(
I->getOperand(0))) ||
315 (isa<StoreInst>(
I) && isa<AllocaInst>(
I->getOperand(1)));
320 assert(isInterestingInstruction(
I) &&
321 "Not a load/store to/from an alloca?");
325 if (It != InstNumbers.
end())
334 if (isInterestingInstruction(&BBI))
335 InstNumbers[&BBI] = InstNo++;
336 It = InstNumbers.
find(
I);
338 assert(It != InstNumbers.
end() &&
"Didn't insert instruction?");
344 void clear() { InstNumbers.
clear(); }
347struct PromoteMem2Reg {
349 std::vector<AllocaInst *> Allocas;
400 : Allocas(Allocas.
begin(), Allocas.
end()), DT(DT),
402 AC(AC), SQ(DT.
getRoot()->getDataLayout(),
408 void RemoveFromAllocasList(
unsigned &AllocaIdx) {
409 Allocas[AllocaIdx] = Allocas.back();
416 unsigned &NP = BBNumPreds[BB->
getNumber()];
426 RenamePassData::ValVector &IncVals,
427 RenamePassData::LocationVector &IncLocs,
428 std::vector<RenamePassData> &Worklist);
429 bool QueuePhiNode(
BasicBlock *BB,
unsigned AllocaIdx,
unsigned &Version);
432 void cleanUpDbgAssigns() {
433 for (
auto *DAI : DbgAssignsToDelete)
434 DAI->eraseFromParent();
435 DbgAssignsToDelete.clear();
436 for (
auto *DVR : DVRAssignsToDelete)
437 DVR->eraseFromParent();
438 DVRAssignsToDelete.clear();
459 if (isa<UndefValue>(Val) && LI->
hasMetadata(LLVMContext::MD_noundef)) {
472 if (AC && LI->
getMetadata(LLVMContext::MD_nonnull) &&
484 if (isa<LoadInst>(
I) || isa<StoreInst>(
I))
488 if (
I->isDroppable()) {
489 I->dropDroppableUse(U);
493 if (!
I->getType()->isVoidTy()) {
498 Instruction *Inst = cast<Instruction>(UU.getUser());
508 I->eraseFromParent();
532 bool RequireDominatingStore =
538 Info.UsingBlocks.clear();
542 if (UserInst == OnlyStore)
544 LoadInst *LI = cast<LoadInst>(UserInst);
550 if (RequireDominatingStore) {
555 if (StoreIndex == -1)
556 StoreIndex = LBI.getInstructionIndex(OnlyStore);
558 if (
unsigned(StoreIndex) > LBI.getInstructionIndex(LI)) {
560 Info.UsingBlocks.push_back(StoreBB);
585 if (!
Info.UsingBlocks.empty())
590 Info.AssignmentTracking.updateForDeletedStore(
591 Info.OnlyStore, DIB, DbgAssignsToDelete, DVRAssignsToDelete);
595 auto ConvertDebugInfoForStore = [&](
auto &Container) {
596 for (
auto *DbgItem : Container) {
597 if (DbgItem->isAddressOfVariable()) {
599 DbgItem->eraseFromParent();
600 }
else if (DbgItem->isValueOfVariable() &&
601 DbgItem->getExpression()->startsWithDeref()) {
603 DbgItem->eraseFromParent();
604 }
else if (DbgItem->getExpression()->startsWithDeref()) {
605 DbgItem->eraseFromParent();
609 ConvertDebugInfoForStore(
Info.DbgUsers);
610 ConvertDebugInfoForStore(
Info.DPUsers);
616 Info.OnlyStore->eraseFromParent();
617 LBI.deleteValue(
Info.OnlyStore);
652 StoresByIndexTy StoresByIndex;
655 if (
StoreInst *SI = dyn_cast<StoreInst>(U))
656 StoresByIndex.
push_back(std::make_pair(LBI.getInstructionIndex(SI), SI));
665 LoadInst *LI = dyn_cast<LoadInst>(U);
669 unsigned LoadIdx = LBI.getInstructionIndex(LI);
674 std::make_pair(LoadIdx,
static_cast<StoreInst *
>(
nullptr)),
677 if (
I == StoresByIndex.begin()) {
678 if (StoresByIndex.empty())
688 ReplVal = std::prev(
I)->second->getOperand(0);
708 Info.AssignmentTracking.updateForDeletedStore(SI, DIB, DbgAssignsToDelete,
711 auto DbgUpdateForStore = [&](
auto &Container) {
712 for (
auto *DbgItem : Container) {
713 if (DbgItem->isAddressOfVariable()) {
718 DbgUpdateForStore(
Info.DbgUsers);
719 DbgUpdateForStore(
Info.DPUsers);
721 SI->eraseFromParent();
730 auto DbgUpdateForAlloca = [&](
auto &Container) {
731 for (
auto *DbgItem : Container)
732 if (DbgItem->isAddressOfVariable() ||
733 DbgItem->getExpression()->startsWithDeref())
734 DbgItem->eraseFromParent();
736 DbgUpdateForAlloca(
Info.DbgUsers);
737 DbgUpdateForAlloca(
Info.DPUsers);
743void PromoteMem2Reg::run() {
746 AllocaDbgUsers.
resize(Allocas.size());
747 AllocaATInfo.
resize(Allocas.size());
748 AllocaDPUsers.
resize(Allocas.size());
754 NoSignedZeros =
F.getFnAttribute(
"no-signed-zeros-fp-math").getValueAsBool();
756 for (
unsigned AllocaNum = 0; AllocaNum != Allocas.size(); ++AllocaNum) {
761 "All allocas should be in the same function, which is same as DF!");
770 RemoveFromAllocasList(AllocaNum);
777 Info.AnalyzeAlloca(AI);
781 if (
Info.DefiningBlocks.size() == 1) {
783 &DbgAssignsToDelete, &DVRAssignsToDelete)) {
785 RemoveFromAllocasList(AllocaNum);
793 if (
Info.OnlyUsedInOneBlock &&
795 &DbgAssignsToDelete, &DVRAssignsToDelete)) {
797 RemoveFromAllocasList(AllocaNum);
802 if (BBNumPreds.
empty())
803 BBNumPreds.
resize(
F.getMaxBlockNumber());
806 if (!
Info.DbgUsers.empty())
807 AllocaDbgUsers[AllocaNum] =
Info.DbgUsers;
808 if (!
Info.AssignmentTracking.empty())
809 AllocaATInfo[AllocaNum] =
Info.AssignmentTracking;
810 if (!
Info.DPUsers.empty())
811 AllocaDPUsers[AllocaNum] =
Info.DPUsers;
814 AllocaLookup[Allocas[AllocaNum]] = AllocaNum;
818 Info.DefiningBlocks.end());
829 IDF.setLiveInBlocks(LiveInBlocks);
830 IDF.setDefiningBlocks(DefBlocks);
832 IDF.calculate(PHIBlocks);
834 return A->getNumber() <
B->getNumber();
839 QueuePhiNode(BB, AllocaNum, CurrentVersion);
842 if (Allocas.empty()) {
851 RenamePassData::ValVector Values(Allocas.size());
852 for (
unsigned i = 0, e = Allocas.size(); i != e; ++i)
857 RenamePassData::LocationVector
Locations(Allocas.size());
860 Visited.
resize(
F.getMaxBlockNumber());
864 std::vector<RenamePassData> RenamePassWorkList;
865 RenamePassWorkList.emplace_back(&
F.front(),
nullptr, std::move(Values),
866 std::move(Locations));
868 RenamePassData RPD = std::move(RenamePassWorkList.back());
869 RenamePassWorkList.pop_back();
871 RenamePass(RPD.BB, RPD.Pred, RPD.Values, RPD.Locations, RenamePassWorkList);
872 }
while (!RenamePassWorkList.empty());
883 A->eraseFromParent();
887 auto RemoveDbgDeclares = [&](
auto &Container) {
888 for (
auto &DbgUsers : Container) {
889 for (
auto *DbgItem : DbgUsers)
890 if (DbgItem->isAddressOfVariable() ||
891 DbgItem->getExpression()->startsWithDeref())
892 DbgItem->eraseFromParent();
895 RemoveDbgDeclares(AllocaDbgUsers);
896 RemoveDbgDeclares(AllocaDPUsers);
902 bool EliminatedAPHI =
true;
903 while (EliminatedAPHI) {
904 EliminatedAPHI =
false;
912 E = NewPhiNodes.
end();
921 EliminatedAPHI =
true;
935 E = NewPhiNodes.
end();
941 if (&BB->
front() != SomePHI)
957 return A->getNumber() <
B->getNumber();
968 "PHI node has entry for a block which is not a predecessor!");
980 while ((SomePHI = dyn_cast<PHINode>(BBI++)) &&
997void PromoteMem2Reg::ComputeLiveInBlocks(
1005 Info.UsingBlocks.end());
1010 for (
unsigned i = 0, e = LiveInBlockWorklist.size(); i != e; ++i) {
1012 if (!DefBlocks.
count(BB))
1018 if (
StoreInst *SI = dyn_cast<StoreInst>(
I)) {
1019 if (
SI->getOperand(1) != AI)
1024 LiveInBlockWorklist[i] = LiveInBlockWorklist.
back();
1025 LiveInBlockWorklist.pop_back();
1031 if (
LoadInst *LI = dyn_cast<LoadInst>(
I))
1041 while (!LiveInBlockWorklist.empty()) {
1042 BasicBlock *BB = LiveInBlockWorklist.pop_back_val();
1046 if (!LiveInBlocks.
insert(BB).second)
1058 LiveInBlockWorklist.push_back(
P);
1066bool PromoteMem2Reg::QueuePhiNode(
BasicBlock *BB,
unsigned AllocaNo,
1067 unsigned &Version) {
1077 PN =
PHINode::Create(Allocas[AllocaNo]->getAllocatedType(), getNumPreds(BB),
1078 Allocas[AllocaNo]->
getName() +
"." +
Twine(Version++));
1081 PhiToAllocaMap[PN] = AllocaNo;
1088 bool ApplyMergedLoc) {
1101 RenamePassData::ValVector &IncomingVals,
1102 RenamePassData::LocationVector &IncomingLocs,
1103 std::vector<RenamePassData> &Worklist) {
1110 if (PhiToAllocaMap.
count(APN)) {
1117 unsigned NewPHINumOperands = APN->getNumOperands();
1120 assert(NumEdges &&
"Must be at least one edge from Pred to BB!");
1125 unsigned AllocaNo = PhiToAllocaMap[APN];
1129 APN->getNumIncomingValues() > 0);
1132 for (
unsigned i = 0; i != NumEdges; ++i)
1133 APN->addIncoming(IncomingVals[AllocaNo], Pred);
1140 if (isa<FPMathOperator>(APN) && NoSignedZeros)
1141 APN->setHasNoSignedZeros(
true);
1144 IncomingVals[AllocaNo] = APN;
1145 AllocaATInfo[AllocaNo].updateForNewPhi(APN, DIB);
1146 auto ConvertDbgDeclares = [&](
auto &Container) {
1147 for (
auto *DbgItem : Container)
1148 if (DbgItem->isAddressOfVariable())
1151 ConvertDbgDeclares(AllocaDbgUsers[AllocaNo]);
1152 ConvertDbgDeclares(AllocaDPUsers[AllocaNo]);
1156 APN = dyn_cast<PHINode>(PNI);
1162 }
while (APN->getNumOperands() == NewPHINumOperands);
1174 if (
LoadInst *LI = dyn_cast<LoadInst>(
I)) {
1180 if (AI == AllocaLookup.
end())
1183 Value *
V = IncomingVals[AI->second];
1189 }
else if (
StoreInst *SI = dyn_cast<StoreInst>(
I)) {
1192 AllocaInst *Dest = dyn_cast<AllocaInst>(
SI->getPointerOperand());
1197 if (ai == AllocaLookup.
end())
1201 unsigned AllocaNo = ai->second;
1202 IncomingVals[AllocaNo] =
SI->getOperand(0);
1205 IncomingLocs[AllocaNo] =
SI->getDebugLoc();
1206 AllocaATInfo[AllocaNo].updateForDeletedStore(SI, DIB, &DbgAssignsToDelete,
1207 &DVRAssignsToDelete);
1208 auto ConvertDbgDeclares = [&](
auto &Container) {
1209 for (
auto *DbgItem : Container)
1210 if (DbgItem->isAddressOfVariable())
1213 ConvertDbgDeclares(AllocaDbgUsers[ai->second]);
1214 ConvertDbgDeclares(AllocaDPUsers[ai->second]);
1215 SI->eraseFromParent();
1234 if (VisitedSuccs.
insert(*I).second)
1235 Worklist.emplace_back(*
I, Pred, IncomingVals, IncomingLocs);
1243 if (Allocas.
empty())
1246 PromoteMem2Reg(Allocas, DT, AC).run();
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static const Function * getParent(const Value *V)
This file implements the BitVector class.
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
Analysis containing CSE Info
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static DeltaTreeNode * getRoot(void *Root)
This file defines the DenseMap class.
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
uint64_t IntrinsicInst * II
static StringRef getName(Value *V)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static void ComputeLiveInBlocks(const SmallPtrSetImpl< BasicBlock * > &UsingBlocks, const SmallPtrSetImpl< BasicBlock * > &DefBlocks, SmallPtrSetImpl< BasicBlock * > &LiveInBlocks, PredIteratorCache &PredCache)
Given sets of UsingBlocks and DefBlocks, compute the set of LiveInBlocks.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
This class represents a conversion between pointers from one address space to another.
an instruction to allocate memory on the stack
Type * getAllocatedType() const
Return the type that is being allocated by the instruction.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
bool empty() const
empty - Check if the array is empty.
A cache of @llvm.assume calls within a function.
void registerAssumption(AssumeInst *CI)
Add an @llvm.assume intrinsic to this function's cache.
LLVM Basic Block Representation.
unsigned getNumber() const
iterator begin()
Instruction iterator methods.
const Instruction & front() const
const Function * getParent() const
Return the enclosing method, or null if none.
InstListType::iterator iterator
Instruction iterators...
const Instruction & back() const
This class represents a no-op cast from one type to another.
bool test(unsigned Idx) const
void resize(unsigned N, bool t=false)
resize - Grow or shrink the bitvector.
This class represents a function call, abstracting a target machine's calling convention.
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static ConstantInt * getTrue(LLVMContext &Context)
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
This represents the llvm.dbg.assign instruction.
This is the common base class for debug info intrinsics for variables.
Record of a variable value-assignment, aka a non instruction representation of the dbg....
static DbgVariableRecord * createDbgVariableRecord(Value *Location, DILocalVariable *DV, DIExpression *Expr, const DILocation *DI)
Identifies a unique instance of a whole variable (discards/ignores fragment information).
Identifies a unique instance of a variable.
iterator find(const_arg_type_t< KeyT > Val)
bool erase(const KeyT &Val)
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
Class representing an expression and its matching format.
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.
void insertBefore(Instruction *InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified instruction.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
bool hasMetadata() const
Return true if this instruction has any metadata attached to it.
InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
Instruction * user_back()
Specialize the methods defined in Value, as we know that an instruction can only be used by other ins...
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
void applyMergedLocation(DILocation *LocA, DILocation *LocB)
Merge 2 debug locations and apply it to the Instruction.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
void insertAfter(Instruction *InsertPos)
Insert an unlinked instruction into a basic block immediately after the specified instruction.
A wrapper class for inspecting calls to intrinsic functions.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Value * getPointerOperand()
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
unsigned getNumIncomingValues() const
Return the number of incoming edges.
static PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
SmallSet - This maintains a set of unique values, optimizing for the case when the set is small (less...
bool contains(const T &V) const
Check if the SmallSet contains the given element.
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
typename SuperClass::iterator iterator
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
static UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
A Use represents the edge between a Value definition and its users.
Value * getOperand(unsigned i) const
bool isDroppable() const
A droppable user is a user for which uses can be dropped without affecting correctness and should be ...
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
iterator_range< user_iterator > users()
static void dropDroppableUse(Use &U)
Remove the droppable use U.
LLVMContext & getContext() const
All values hold a context through their type.
iterator_range< use_iterator > uses()
const ParentTy * getParent() const
self_iterator getIterator()
Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > Tys={})
Look up the Function declaration of the intrinsic id in the Module M.
AssignmentMarkerRange getAssignmentMarkers(DIAssignID *ID)
Return a range of dbg.assign intrinsics which use \ID as an operand.
SmallVector< DbgVariableRecord * > getDVRAssignmentMarkers(const Instruction *Inst)
void deleteAssignmentMarkers(const Instruction *Inst)
Delete the llvm.dbg.assign intrinsics linked to Inst.
initializer< Ty > init(const Ty &Val)
PointerTypeMap run(const Module &M)
Compute the PointerTypeMap for the module M.
const_iterator begin(StringRef path, Style style=Style::native)
Get begin iterator over path.
const_iterator end(StringRef path)
Get end iterator over path.
This is an optimization pass for GlobalISel generic memory operations.
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
void PromoteMemToReg(ArrayRef< AllocaInst * > Allocas, DominatorTree &DT, AssumptionCache *AC=nullptr)
Promote the specified list of alloca instructions into scalar registers, inserting PHI nodes as appro...
void findDbgUsers(SmallVectorImpl< DbgVariableIntrinsic * > &DbgInsts, Value *V, SmallVectorImpl< DbgVariableRecord * > *DbgVariableRecords=nullptr)
Finds the debug info intrinsics describing a value.
auto successors(const MachineBasicBlock *BB)
bool onlyUsedByLifetimeMarkersOrDroppableInsts(const Value *V)
Return true if the only users of this pointer are lifetime markers or droppable instructions.
void InsertDebugValueAtStoreLoc(DbgVariableRecord *DVR, StoreInst *SI, DIBuilder &Builder)
===------------------------------------------------------------------—===// Dbg Intrinsic utilities
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
auto pred_size(const MachineBasicBlock *BB)
bool isAllocaPromotable(const AllocaInst *AI)
Return true if this alloca is legal for promotion.
Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
void sort(IteratorTy Start, IteratorTy End)
void ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII, StoreInst *SI, DIBuilder &Builder)
Inserts a llvm.dbg.value intrinsic before a store to an alloca'd value that has an associated llvm....
bool isKnownNonZero(const Value *V, const SimplifyQuery &Q, unsigned Depth=0)
Return true if the given value is known to be non-zero when defined.
RNSuccIterator< NodeRef, BlockT, RegionT > succ_begin(NodeRef Node)
bool onlyUsedByLifetimeMarkers(const Value *V)
Return true if the only users of this pointer are lifetime markers.
RNSuccIterator< NodeRef, BlockT, RegionT > succ_end(NodeRef Node)
auto lower_bound(R &&Range, T &&Value)
Provide wrappers to std::lower_bound which take ranges instead of having to pass begin/end explicitly...
auto count(R &&Range, const E &Element)
Wrapper function around std::count to count the number of times an element Element occurs in the give...
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
auto predecessors(const MachineBasicBlock *BB)
bool isGuaranteedNotToBePoison(const Value *V, AssumptionCache *AC=nullptr, const Instruction *CtxI=nullptr, const DominatorTree *DT=nullptr, unsigned Depth=0)
Returns true if V cannot be poison, but may be undef.
Implement std::hash so that hash_code can be used in STL containers.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Function object to check whether the first component of a container supported by std::get (like std::...