LLVM  4.0.0
Macros | Functions
InstCombineCasts.cpp File Reference
#include "InstCombineInternal.h"
#include "llvm/ADT/SetVector.h"
#include "llvm/Analysis/ConstantFolding.h"
#include "llvm/IR/DataLayout.h"
#include "llvm/IR/PatternMatch.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
Include dependency graph for InstCombineCasts.cpp:

Go to the source code of this file.

Macros

#define DEBUG_TYPE   "instcombine"
 

Functions

static ValuedecomposeSimpleLinearExpr (Value *Val, unsigned &Scale, uint64_t &Offset)
 Analyze 'Val', seeing if it is a simple linear expression. More...
 
static bool canEvaluateTruncated (Value *V, Type *Ty, InstCombiner &IC, Instruction *CxtI)
 Return true if we can evaluate the specified expression tree as type Ty instead of its larger type, and arrive with the same value. More...
 
static InstructionfoldVecTruncToExtElt (TruncInst &Trunc, InstCombiner &IC, const DataLayout &DL)
 Given a vector that is bitcast to an integer, optionally logically right-shifted, and truncated, convert it to an extractelement. More...
 
static bool canEvaluateZExtd (Value *V, Type *Ty, unsigned &BitsToClear, InstCombiner &IC, Instruction *CxtI)
 Determine if the specified value can be computed in the specified wider type and produce the same low bits. More...
 
static bool canEvaluateSExtd (Value *V, Type *Ty)
 Return true if we can take the specified value and return it as type Ty without inserting any new casts and without changing the value of the common low bits. More...
 
static ConstantfitsInFPType (ConstantFP *CFP, const fltSemantics &Sem)
 Return a Constant* for the specified floating-point constant if it fits in the specified FP type without changing its value. More...
 
static ValuelookThroughFPExtensions (Value *V)
 If this is a floating-point extension instruction, look through it until we get the source value. More...
 
static InstructionoptimizeVectorResize (Value *InVal, VectorType *DestTy, InstCombiner &IC)
 This input value (which is known to have vector type) is being zero extended or truncated to the specified vector type. More...
 
static bool isMultipleOfTypeSize (unsigned Value, Type *Ty)
 
static unsigned getTypeSizeIndex (unsigned Value, Type *Ty)
 
static bool collectInsertionElements (Value *V, unsigned Shift, SmallVectorImpl< Value * > &Elements, Type *VecEltTy, bool isBigEndian)
 V is a value which is inserted into a vector of VecEltTy. More...
 
static ValueoptimizeIntegerToVectorInsertions (BitCastInst &CI, InstCombiner &IC)
 If the input is an 'or' instruction, we may be doing shifts and ors to assemble the elements of the vector manually. More...
 
static InstructioncanonicalizeBitCastExtElt (BitCastInst &BitCast, InstCombiner &IC, const DataLayout &DL)
 Canonicalize scalar bitcasts of extracted elements into a bitcast of the vector followed by extract element. More...
 
static InstructionfoldBitCastBitwiseLogic (BitCastInst &BitCast, InstCombiner::BuilderTy &Builder)
 Change the type of a bitwise logic operation if we can eliminate a bitcast. More...
 
static InstructionfoldBitCastSelect (BitCastInst &BitCast, InstCombiner::BuilderTy &Builder)
 Change the type of a select if we can eliminate a bitcast. More...
 
static bool hasStoreUsersOnly (CastInst &CI)
 Check if all users of CI are StoreInsts. More...
 

Macro Definition Documentation

#define DEBUG_TYPE   "instcombine"

Definition at line 23 of file InstCombineCasts.cpp.

Function Documentation

static bool canEvaluateSExtd ( Value V,
Type Ty 
)
static

Return true if we can take the specified value and return it as type Ty without inserting any new casts and without changing the value of the common low bits.

This is used by code that tries to promote integer operations to a wider types will allow us to eliminate the extension.

This function works on both vectors and scalars.

Definition at line 1061 of file InstCombineCasts.cpp.

References llvm::MCID::Add, llvm::APIntOps::And(), assert(), llvm::dyn_cast(), llvm::Instruction::getOpcode(), llvm::User::getOperand(), llvm::Type::getScalarSizeInBits(), llvm::Value::getType(), llvm::Value::hasOneUse(), I, llvm::PHINode::incoming_values(), llvm::APIntOps::Or(), llvm::MCID::Select, and llvm::APIntOps::Xor().

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

static bool canEvaluateTruncated ( Value V,
Type Ty,
InstCombiner IC,
Instruction CxtI 
)
static

Return true if we can evaluate the specified expression tree as type Ty instead of its larger type, and arrive with the same value.

This is used by code that tries to eliminate truncates.

Ty will always be a type smaller than V. We should return true if trunc(V) can be computed by computing V in the smaller type. If V is an instruction, then trunc(inst(x,y)) can be computed as inst(trunc(x),trunc(y)), which only makes sense if x and y can be efficiently truncated.

This function works on both vectors and scalars.

Definition at line 300 of file InstCombineCasts.cpp.

References llvm::MCID::Add, llvm::APIntOps::And(), llvm::dyn_cast(), llvm::SelectInst::getFalseValue(), llvm::APInt::getHighBitsSet(), llvm::Instruction::getOpcode(), llvm::User::getOperand(), llvm::Type::getScalarSizeInBits(), llvm::SelectInst::getTrueValue(), llvm::Value::getType(), llvm::Value::hasOneUse(), I, llvm::PHINode::incoming_values(), llvm::BitmaskEnumDetail::Mask(), llvm::APIntOps::Or(), llvm::MCID::Select, SI, and llvm::APIntOps::Xor().

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

static bool canEvaluateZExtd ( Value V,
Type Ty,
unsigned BitsToClear,
InstCombiner IC,
Instruction CxtI 
)
static

Determine if the specified value can be computed in the specified wider type and produce the same low bits.

If not, return false.

If this function returns true, it can also return a non-zero number of bits (in BitsToClear) which indicates that the value it computes is correct for the zero extend, but that the additional BitsToClear bits need to be zero'd out. For example, to promote something like:

B = trunc i64 A to i32 C = lshr i32 B, 8 E = zext i32 C to i64

CanEvaluateZExtd for the 'lshr' will return true, and BitsToClear will be set to 8 to indicate that the promoted value needs to have bits 24-31 cleared in addition to bits 32-63. Since an 'and' will be generated to clear the top bits anyway, doing this has no extra cost.

This function works on both vectors and scalars.

Definition at line 725 of file InstCombineCasts.cpp.

References llvm::MCID::Add, llvm::APIntOps::And(), llvm::dyn_cast(), llvm::APInt::getHighBitsSet(), llvm::PHINode::getIncomingValue(), llvm::PHINode::getNumIncomingValues(), llvm::Instruction::getOpcode(), llvm::User::getOperand(), llvm::Type::getScalarSizeInBits(), llvm::Value::getType(), llvm::Value::hasOneUse(), I, i, llvm::Instruction::isBitwiseLogicOp(), llvm::APIntOps::Or(), llvm::MCID::Select, and llvm::APIntOps::Xor().

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

static Instruction* canonicalizeBitCastExtElt ( BitCastInst BitCast,
InstCombiner IC,
const DataLayout DL 
)
static

Canonicalize scalar bitcasts of extracted elements into a bitcast of the vector followed by extract element.

The backend tends to handle bitcasts of vectors better than bitcasts of scalars because vector registers are usually not type-specific like scalar integer or scalar floating-point.

Definition at line 1772 of file InstCombineCasts.cpp.

References llvm::InstCombiner::Builder, llvm::ExtractElementInst::Create(), llvm::IRBuilder< T, Inserter >::CreateBitCast(), llvm::dyn_cast(), llvm::VectorType::get(), llvm::User::getOperand(), llvm::Value::getType(), and llvm::VectorType::isValidElementType().

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

static bool collectInsertionElements ( Value V,
unsigned  Shift,
SmallVectorImpl< Value * > &  Elements,
Type VecEltTy,
bool  isBigEndian 
)
static

V is a value which is inserted into a vector of VecEltTy.

Look through the value to see if we can decompose it into insertions into the vector. See the example in the comment for OptimizeIntegerToVectorInsertions for the pattern this handles. The type of V is always a non-zero multiple of VecEltTy's size. Shift is the number of bits between the lsb of V and the lsb of the vector.

This returns false if the pattern can't be matched or true if it can, filling in Elements with the elements found here.

Definition at line 1634 of file InstCombineCasts.cpp.

References assert(), llvm::dyn_cast(), llvm::IntegerType::get(), llvm::ConstantInt::get(), llvm::ConstantExpr::getBitCast(), llvm::Value::getContext(), llvm::ConstantExpr::getLShr(), llvm::Instruction::getOpcode(), llvm::User::getOperand(), llvm::Type::getPrimitiveSizeInBits(), llvm::ConstantExpr::getTrunc(), llvm::Value::getType(), getTypeSizeIndex(), llvm::ConstantInt::getZExtValue(), llvm::Value::hasOneUse(), i, isMultipleOfTypeSize(), llvm::Constant::isNullValue(), llvm::APIntOps::Or(), and llvm::SmallVectorTemplateCommon< T, typename >::size().

Referenced by optimizeIntegerToVectorInsertions().

static Value* decomposeSimpleLinearExpr ( Value Val,
unsigned Scale,
uint64_t &  Offset 
)
static

Analyze 'Val', seeing if it is a simple linear expression.

If so, decompose it, returning some value X, such that Val is X*Scale+Offset.

Definition at line 29 of file InstCombineCasts.cpp.

References llvm::MCID::Add, llvm::dyn_cast(), llvm::ConstantInt::get(), llvm::Value::getType(), llvm::OverflowingBinaryOperator::hasNoSignedWrap(), llvm::OverflowingBinaryOperator::hasNoUnsignedWrap(), I, and Offset.

static Constant* fitsInFPType ( ConstantFP CFP,
const fltSemantics Sem 
)
static

Return a Constant* for the specified floating-point constant if it fits in the specified FP type without changing its value.

Definition at line 1219 of file InstCombineCasts.cpp.

References llvm::APFloat::convert(), F, llvm::ConstantFP::get(), llvm::Value::getContext(), llvm::ConstantFP::getValueAPF(), and llvm::APFloatBase::rmNearestTiesToEven.

Referenced by lookThroughFPExtensions().

static Instruction* foldBitCastBitwiseLogic ( BitCastInst BitCast,
InstCombiner::BuilderTy Builder 
)
static
static Instruction* foldBitCastSelect ( BitCastInst BitCast,
InstCombiner::BuilderTy Builder 
)
static
static Instruction* foldVecTruncToExtElt ( TruncInst Trunc,
InstCombiner IC,
const DataLayout DL 
)
static
static unsigned getTypeSizeIndex ( unsigned  Value,
Type Ty 
)
static

Definition at line 1620 of file InstCombineCasts.cpp.

References llvm::Type::getPrimitiveSizeInBits().

Referenced by collectInsertionElements().

static bool hasStoreUsersOnly ( CastInst CI)
static

Check if all users of CI are StoreInsts.

Definition at line 1872 of file InstCombineCasts.cpp.

References llvm::Value::users().

static bool isMultipleOfTypeSize ( unsigned  Value,
Type Ty 
)
static

Definition at line 1616 of file InstCombineCasts.cpp.

References llvm::Type::getPrimitiveSizeInBits().

Referenced by collectInsertionElements().

static Value* lookThroughFPExtensions ( Value V)
static
static Value* optimizeIntegerToVectorInsertions ( BitCastInst CI,
InstCombiner IC 
)
static

If the input is an 'or' instruction, we may be doing shifts and ors to assemble the elements of the vector manually.

Try to rip the code out and replace it with insertelements. This is to optimize code like this:

tmp37 = bitcast float inc to i32 tmp38 = zext i32 tmp37 to i64 tmp31 = bitcast float inc5 to i32 tmp32 = zext i32 tmp31 to i64 tmp33 = shl i64 tmp32, 32 ins35 = or i64 tmp33, tmp38 tmp43 = bitcast i64 ins35 to <2 x float>

Into two insertelements that do "buildvector{%inc, %inc5}".

Definition at line 1743 of file InstCombineCasts.cpp.

References llvm::InstCombiner::Builder, collectInsertionElements(), llvm::IRBuilder< T, Inserter >::CreateInsertElement(), llvm::InstCombiner::getDataLayout(), llvm::SequentialType::getElementType(), llvm::IRBuilderBase::getInt32(), llvm::Constant::getNullValue(), llvm::SequentialType::getNumElements(), llvm::User::getOperand(), llvm::Value::getType(), i, and llvm::DataLayout::isBigEndian().

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

static Instruction* optimizeVectorResize ( Value InVal,
VectorType DestTy,
InstCombiner IC 
)
static

This input value (which is known to have vector type) is being zero extended or truncated to the specified vector type.

Try to replace it with a shuffle (and vector/vector bitcast) if possible.

The source and destination vector types may have different element types.

Definition at line 1564 of file InstCombineCasts.cpp.

References llvm::InstCombiner::Builder, llvm::IRBuilder< T, Inserter >::CreateBitCast(), llvm::VectorType::get(), llvm::ConstantDataVector::get(), llvm::UndefValue::get(), llvm::Value::getContext(), llvm::SequentialType::getElementType(), llvm::Constant::getNullValue(), llvm::SequentialType::getNumElements(), llvm::Type::getPrimitiveSizeInBits(), llvm::Value::getType(), i, llvm::SmallVectorTemplateBase< T, isPodLike >::push_back(), and llvm::NVPTX::PTXLdStInstCode::V2.

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