LLVM API Documentation

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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.

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, bool IsOffset=false)
 
static MemTransferInstisOnlyCopiedFromConstantGlobal (AllocaInst *AI, SmallVectorImpl< Instruction * > &ToDelete)
 
static InstructionInstCombineLoadCast (InstCombiner &IC, LoadInst &LI, const DataLayout *TD)
 InstCombineLoadCast - Fold 'load (cast P)' -> cast (load P)' when possible. More...
 
static InstructionInstCombineStoreToCast (InstCombiner &IC, StoreInst &SI)
 
static bool equivalentAddressValues (Value *A, Value *B)
 

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 545 of file InstCombineLoadStoreAlloca.cpp.

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

static Instruction* InstCombineLoadCast ( InstCombiner IC,
LoadInst LI,
const DataLayout TD 
)
static
static Instruction* InstCombineStoreToCast ( InstCombiner IC,
StoreInst SI 
)
static
static bool isOnlyCopiedFromConstantGlobal ( Value V,
MemTransferInst *&  TheCopy,
SmallVectorImpl< Instruction * > &  ToDelete,
bool  IsOffset = false 
)
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 47 of file InstCombineLoadStoreAlloca.cpp.

References llvm::dyn_cast(), llvm::MemTransferInst::getSource(), llvm::MemIntrinsic::isVolatile(), LI, llvm::Intrinsic::lifetime_end, llvm::Intrinsic::lifetime_start, llvm::A64CC::MI, pointsToConstantGlobal(), llvm::SmallVectorTemplateBase< T, isPodLike< T >::value >::push_back(), llvm::Value::use_begin(), and llvm::Value::use_end().

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 145 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 29 of file InstCombineLoadStoreAlloca.cpp.

Referenced by isOnlyCopiedFromConstantGlobal().

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