LLVM API Documentation

Defines | Functions
InstCombineLoadStoreAlloca.cpp File Reference
#include "InstCombine.h"
#include "llvm/ADT/Statistic.h"
#include "llvm/Analysis/Loads.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/IntrinsicInst.h"
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
#include "llvm/Transforms/Utils/Local.h"
Include dependency graph for InstCombineLoadStoreAlloca.cpp:

Go to the source code of this file.

Defines

#define DEBUG_TYPE   "instcombine"

Functions

 STATISTIC (NumDeadStore,"Number of dead stores eliminated")
 STATISTIC (NumGlobalCopies,"Number of allocas copied from constant global")
static bool pointsToConstantGlobal (Value *V)
static bool isOnlyCopiedFromConstantGlobal (Value *V, MemTransferInst *&TheCopy, SmallVectorImpl< Instruction * > &ToDelete)
static MemTransferInstisOnlyCopiedFromConstantGlobal (AllocaInst *AI, SmallVectorImpl< Instruction * > &ToDelete)
static InstructionInstCombineLoadCast (InstCombiner &IC, LoadInst &LI, const DataLayout *DL)
 InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible.
static InstructionInstCombineStoreToCast (InstCombiner &IC, StoreInst &SI)
static bool equivalentAddressValues (Value *A, Value *B)

Define Documentation

#define DEBUG_TYPE   "instcombine"

Definition at line 23 of file InstCombineLoadStoreAlloca.cpp.


Function Documentation

static bool equivalentAddressValues ( Value A,
Value B 
) [static]

equivalentAddressValues - Test if A and B will obviously have the same value. This includes recognizing that t0 and t1 will have the same value in code like this: t0 = getelementptr @a, 0, 3 store i32 0, i32* t0 t1 = getelementptr @a, 0, 3 t2 = load i32* t1

Definition at line 577 of file InstCombineLoadStoreAlloca.cpp.

Referenced by llvm::InstCombiner::visitStoreInst().

static Instruction* InstCombineLoadCast ( InstCombiner IC,
LoadInst LI,
const DataLayout DL 
) [static]
static Instruction* InstCombineStoreToCast ( InstCombiner IC,
StoreInst SI 
) [static]
static bool isOnlyCopiedFromConstantGlobal ( Value V,
MemTransferInst *&  TheCopy,
SmallVectorImpl< Instruction * > &  ToDelete 
) [static]

isOnlyCopiedFromConstantGlobal - Recursively walk the uses of a (derived) pointer to an alloca. Ignore any reads of the pointer, return false if we see any stores or other unknown uses. If we see pointer arithmetic, keep track of whether it moves the pointer (with IsOffset) but otherwise traverse the uses. If we see a memcpy/memmove that targets an unoffseted pointer to the alloca, and if the source pointer is a pointer to a constant global, we can optimize this.

Definition at line 52 of file InstCombineLoadStoreAlloca.cpp.

References llvm::dyn_cast(), llvm::SmallVectorBase::empty(), llvm::MemTransferInst::getSource(), I, llvm::MemIntrinsic::isVolatile(), LI, llvm::AArch64CC::MI, pointsToConstantGlobal(), llvm::SmallVectorImpl< T >::pop_back_val(), llvm::SmallVectorTemplateBase< T, isPodLike< T >::value >::push_back(), and llvm::SmallVectorTemplateBase< T, isPodLike >::push_back().

Referenced by isOnlyCopiedFromConstantGlobal(), and llvm::InstCombiner::visitAllocaInst().

static MemTransferInst* isOnlyCopiedFromConstantGlobal ( AllocaInst AI,
SmallVectorImpl< Instruction * > &  ToDelete 
) [static]

isOnlyCopiedFromConstantGlobal - Return true if the specified alloca is only modified by a copy from a constant global. If we can prove this, we can replace any uses of the alloca with uses of the global directly.

Definition at line 157 of file InstCombineLoadStoreAlloca.cpp.

References isOnlyCopiedFromConstantGlobal().

static bool pointsToConstantGlobal ( Value V) [static]

pointsToConstantGlobal - Return true if V (possibly indirectly) points to some part of a constant global variable. This intentionally only accepts constant expressions because we can't rewrite arbitrary instructions.

Definition at line 31 of file InstCombineLoadStoreAlloca.cpp.

References llvm::AddrSpaceCast, and llvm::WinEH::CE.

Referenced by isOnlyCopiedFromConstantGlobal().

STATISTIC ( NumDeadStore  ,
"Number of dead stores eliminated"   
)
STATISTIC ( NumGlobalCopies  ,
"Number of allocas copied from constant global"   
)