LLVM API Documentation

Classes | Public Member Functions | Protected Attributes
llvm::IRBuilderBase Class Reference

Common base class shared among various IRBuilders. More...

#include <IRBuilder.h>

Inheritance diagram for llvm::IRBuilderBase:
Inheritance graph
[legend]
Collaboration diagram for llvm::IRBuilderBase:
Collaboration graph
[legend]

List of all members.

Classes

class  FastMathFlagGuard
class  InsertPoint
 InsertPoint - A saved insertion point. More...
class  InsertPointGuard

Public Member Functions

 IRBuilderBase (LLVMContext &context, MDNode *FPMathTag=nullptr)
void ClearInsertionPoint ()
 Clear the insertion point: created instructions will not be inserted into a block.
BasicBlockGetInsertBlock () const
BasicBlock::iterator GetInsertPoint () const
LLVMContextgetContext () const
void SetInsertPoint (BasicBlock *TheBB)
 This specifies that created instructions should be appended to the end of the specified block.
void SetInsertPoint (Instruction *I)
 This specifies that created instructions should be inserted before the specified instruction.
void SetInsertPoint (BasicBlock *TheBB, BasicBlock::iterator IP)
 This specifies that created instructions should be inserted at the specified point.
void SetInsertPoint (Use &U)
 Find the nearest point that dominates this use, and specify that created instructions should be inserted at this point.
void SetCurrentDebugLocation (const DebugLoc &L)
 Set location information used by debugging information.
DebugLoc getCurrentDebugLocation () const
 Get location information used by debugging information.
void SetInstDebugLocation (Instruction *I) const
 If this builder has a current debug location, set it on the specified instruction.
TypegetCurrentFunctionReturnType () const
 Get the return type of the current function that we're emitting into.
InsertPoint saveIP () const
 Returns the current insert point.
InsertPoint saveAndClearIP ()
 Returns the current insert point, clearing it in the process.
void restoreIP (InsertPoint IP)
 Sets the current insert point to a previously-saved location.
MDNodegetDefaultFPMathTag () const
 Get the floating point math metadata being used.
FastMathFlags getFastMathFlags () const
 Get the flags to be applied to created floating point ops.
void clearFastMathFlags ()
 Clear the fast-math flags.
void SetDefaultFPMathTag (MDNode *FPMathTag)
 Set the floating point math metadata to be used.
void SetFastMathFlags (FastMathFlags NewFMF)
 Set the fast-math flags to be used with generated fp-math operators.
ValueCreateGlobalString (StringRef Str, const Twine &Name="")
 Make a new global variable with initializer type i8*.
ConstantIntgetInt1 (bool V)
 Get a constant value representing either true or false.
ConstantIntgetTrue ()
 Get the constant value for i1 true.
ConstantIntgetFalse ()
 Get the constant value for i1 false.
ConstantIntgetInt8 (uint8_t C)
 Get a constant 8-bit value.
ConstantIntgetInt16 (uint16_t C)
 Get a constant 16-bit value.
ConstantIntgetInt32 (uint32_t C)
 Get a constant 32-bit value.
ConstantIntgetInt64 (uint64_t C)
 Get a constant 64-bit value.
ConstantIntgetIntN (unsigned N, uint64_t C)
 Get a constant N-bit value, zero extended or truncated from a 64-bit value.
ConstantIntgetInt (const APInt &AI)
 Get a constant integer value.
IntegerTypegetInt1Ty ()
 Fetch the type representing a single bit.
IntegerTypegetInt8Ty ()
 Fetch the type representing an 8-bit integer.
IntegerTypegetInt16Ty ()
 Fetch the type representing a 16-bit integer.
IntegerTypegetInt32Ty ()
 Fetch the type representing a 32-bit integer.
IntegerTypegetInt64Ty ()
 Fetch the type representing a 64-bit integer.
IntegerTypegetIntNTy (unsigned N)
 Fetch the type representing an N-bit integer.
TypegetHalfTy ()
 Fetch the type representing a 16-bit floating point value.
TypegetFloatTy ()
 Fetch the type representing a 32-bit floating point value.
TypegetDoubleTy ()
 Fetch the type representing a 64-bit floating point value.
TypegetVoidTy ()
 Fetch the type representing void.
PointerTypegetInt8PtrTy (unsigned AddrSpace=0)
 Fetch the type representing a pointer to an 8-bit integer value.
IntegerTypegetIntPtrTy (const DataLayout *DL, unsigned AddrSpace=0)
 Fetch the type representing a pointer to an integer value.
CallInstCreateMemSet (Value *Ptr, Value *Val, uint64_t Size, unsigned Align, bool isVolatile=false, MDNode *TBAATag=nullptr, MDNode *ScopeTag=nullptr, MDNode *NoAliasTag=nullptr)
 Create and insert a memset to the specified pointer and the specified value.
CallInstCreateMemSet (Value *Ptr, Value *Val, Value *Size, unsigned Align, bool isVolatile=false, MDNode *TBAATag=nullptr, MDNode *ScopeTag=nullptr, MDNode *NoAliasTag=nullptr)
CallInstCreateMemCpy (Value *Dst, Value *Src, uint64_t Size, unsigned Align, bool isVolatile=false, MDNode *TBAATag=nullptr, MDNode *TBAAStructTag=nullptr, MDNode *ScopeTag=nullptr, MDNode *NoAliasTag=nullptr)
 Create and insert a memcpy between the specified pointers.
CallInstCreateMemCpy (Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile=false, MDNode *TBAATag=nullptr, MDNode *TBAAStructTag=nullptr, MDNode *ScopeTag=nullptr, MDNode *NoAliasTag=nullptr)
CallInstCreateMemMove (Value *Dst, Value *Src, uint64_t Size, unsigned Align, bool isVolatile=false, MDNode *TBAATag=nullptr, MDNode *ScopeTag=nullptr, MDNode *NoAliasTag=nullptr)
 Create and insert a memmove between the specified pointers.
CallInstCreateMemMove (Value *Dst, Value *Src, Value *Size, unsigned Align, bool isVolatile=false, MDNode *TBAATag=nullptr, MDNode *ScopeTag=nullptr, MDNode *NoAliasTag=nullptr)
CallInstCreateLifetimeStart (Value *Ptr, ConstantInt *Size=nullptr)
 Create a lifetime.start intrinsic.
CallInstCreateLifetimeEnd (Value *Ptr, ConstantInt *Size=nullptr)
 Create a lifetime.end intrinsic.

Protected Attributes

BasicBlockBB
BasicBlock::iterator InsertPt
LLVMContextContext
MDNodeDefaultFPMathTag
FastMathFlags FMF

Detailed Description

Common base class shared among various IRBuilders.

Definition at line 50 of file IRBuilder.h.


Constructor & Destructor Documentation

llvm::IRBuilderBase::IRBuilderBase ( LLVMContext context,
MDNode FPMathTag = nullptr 
) [inline]

Definition at line 61 of file IRBuilder.h.

References ClearInsertionPoint().


Member Function Documentation

Clear the fast-math flags.

Definition at line 183 of file IRBuilder.h.

References llvm::FastMathFlags::clear(), and FMF.

Clear the insertion point: created instructions will not be inserted into a block.

Definition at line 72 of file IRBuilder.h.

References BB, and InsertPt.

Referenced by llvm::SCEVExpander::clearInsertPoint(), IRBuilderBase(), restoreIP(), and saveAndClearIP().

Make a new global variable with initializer type i8*.

Make a new global variable with an initializer that has array of i8 type filled in with the null terminated string value specified. The new global variable will be marked mergable with any others of the same contents. If Name is specified, it is the name of the global variable created.

CreateGlobalString - Make a new global variable with an initializer that has array of i8 type filled in with the nul terminated string value specified. If Name is specified, it is the name of the global variable created.

Definition at line 26 of file IRBuilder.cpp.

References BB, Context, llvm::BasicBlock::getParent(), llvm::GlobalValue::getParent(), llvm::ConstantDataArray::getString(), llvm::Value::getType(), llvm::GlobalValue::PrivateLinkage, llvm::Value::setName(), and llvm::GlobalValue::setUnnamedAddr().

Referenced by llvm::IRBuilder< true, TargetFolder >::CreateGlobalStringPtr().

CallInst * IRBuilderBase::CreateLifetimeEnd ( Value Ptr,
ConstantInt Size = nullptr 
)

Create a lifetime.end intrinsic.

If the pointer isn't i8* it will be converted.

Definition at line 161 of file IRBuilder.cpp.

References BB, createCallHelper(), llvm::Intrinsic::getDeclaration(), getInt64(), getInt64Ty(), llvm::BasicBlock::getParent(), llvm::GlobalValue::getParent(), llvm::ConstantInt::getType(), and llvm::Value::getType().

CallInst * IRBuilderBase::CreateLifetimeStart ( Value Ptr,
ConstantInt Size = nullptr 
)

Create a lifetime.start intrinsic.

If the pointer isn't i8* it will be converted.

Definition at line 146 of file IRBuilder.cpp.

References BB, createCallHelper(), llvm::Intrinsic::getDeclaration(), getInt64(), getInt64Ty(), llvm::BasicBlock::getParent(), llvm::GlobalValue::getParent(), llvm::ConstantInt::getType(), and llvm::Value::getType().

CallInst* llvm::IRBuilderBase::CreateMemCpy ( Value Dst,
Value Src,
uint64_t  Size,
unsigned  Align,
bool  isVolatile = false,
MDNode TBAATag = nullptr,
MDNode TBAAStructTag = nullptr,
MDNode ScopeTag = nullptr,
MDNode NoAliasTag = nullptr 
) [inline]

Create and insert a memcpy between the specified pointers.

If the pointers aren't i8*, they will be converted. If a TBAA tag is specified, it will be added to the instruction. Likewise with alias.scope and noalias tags.

Definition at line 388 of file IRBuilder.h.

References getInt64().

Referenced by llvm::SimplifyFortifiedLibCalls::fold().

CallInst * IRBuilderBase::CreateMemCpy ( Value Dst,
Value Src,
Value Size,
unsigned  Align,
bool  isVolatile = false,
MDNode TBAATag = nullptr,
MDNode TBAAStructTag = nullptr,
MDNode ScopeTag = nullptr,
MDNode NoAliasTag = nullptr 
)
CallInst* llvm::IRBuilderBase::CreateMemMove ( Value Dst,
Value Src,
uint64_t  Size,
unsigned  Align,
bool  isVolatile = false,
MDNode TBAATag = nullptr,
MDNode ScopeTag = nullptr,
MDNode NoAliasTag = nullptr 
) [inline]

Create and insert a memmove between the specified pointers.

If the pointers aren't i8*, they will be converted. If a TBAA tag is specified, it will be added to the instruction. Likewise with alias.scope and noalias tags.

Definition at line 409 of file IRBuilder.h.

References getInt64().

Referenced by llvm::SimplifyFortifiedLibCalls::fold().

CallInst * IRBuilderBase::CreateMemMove ( Value Dst,
Value Src,
Value Size,
unsigned  Align,
bool  isVolatile = false,
MDNode TBAATag = nullptr,
MDNode ScopeTag = nullptr,
MDNode NoAliasTag = nullptr 
)
CallInst* llvm::IRBuilderBase::CreateMemSet ( Value Ptr,
Value Val,
uint64_t  Size,
unsigned  Align,
bool  isVolatile = false,
MDNode TBAATag = nullptr,
MDNode ScopeTag = nullptr,
MDNode NoAliasTag = nullptr 
) [inline]

Create and insert a memset to the specified pointer and the specified value.

If the pointer isn't an i8*, it will be converted. If a TBAA tag is specified, it will be added to the instruction. Likewise with alias.scope and noalias tags.

Definition at line 370 of file IRBuilder.h.

References getInt64().

Referenced by llvm::SimplifyFortifiedLibCalls::fold().

CallInst * IRBuilderBase::CreateMemSet ( Value Ptr,
Value Val,
Value Size,
unsigned  Align,
bool  isVolatile = false,
MDNode TBAATag = nullptr,
MDNode ScopeTag = nullptr,
MDNode NoAliasTag = nullptr 
)

Definition at line 79 of file IRBuilder.h.

References Context.

Referenced by foldSelectICmpAnd(), and generateUnsignedDivisionCode().

Get location information used by debugging information.

Definition at line 123 of file IRBuilder.h.

Get the return type of the current function that we're emitting into.

Definition at line 37 of file IRBuilder.cpp.

References BB, llvm::BasicBlock::getParent(), and llvm::Function::getReturnType().

Referenced by llvm::IRBuilder< true, TargetFolder >::CreateAggregateRet().

Get the floating point math metadata being used.

Definition at line 177 of file IRBuilder.h.

References DefaultFPMathTag.

Fetch the type representing a 64-bit floating point value.

Definition at line 341 of file IRBuilder.h.

References Context.

Get the constant value for i1 false.

Definition at line 261 of file IRBuilder.h.

References Context.

Referenced by llvm::UpgradeIntrinsicCall().

Get the flags to be applied to created floating point ops.

Definition at line 180 of file IRBuilder.h.

References FMF.

Fetch the type representing a 32-bit floating point value.

Definition at line 336 of file IRBuilder.h.

References Context.

Fetch the type representing a 16-bit floating point value.

Definition at line 331 of file IRBuilder.h.

References Context.

Get a constant integer value.

Definition at line 292 of file IRBuilder.h.

References Context, and llvm::ConstantInt::get().

Get a constant value representing either true or false.

Definition at line 251 of file IRBuilder.h.

References llvm::ConstantInt::get(), and getInt1Ty().

Referenced by CreateMemCpy(), CreateMemMove(), and CreateMemSet().

ConstantInt* llvm::IRBuilderBase::getInt16 ( uint16_t  C) [inline]

Get a constant 16-bit value.

Definition at line 271 of file IRBuilder.h.

References llvm::ConstantInt::get(), and getInt16Ty().

Fetch the type representing a 16-bit integer.

Definition at line 311 of file IRBuilder.h.

References Context.

Referenced by getInt16().

Fetch the type representing a single bit.

Definition at line 301 of file IRBuilder.h.

References Context.

Referenced by getInt1().

ConstantInt* llvm::IRBuilderBase::getInt32 ( uint32_t  C) [inline]
ConstantInt* llvm::IRBuilderBase::getInt64 ( uint64_t  C) [inline]

Fetch the type representing a 64-bit integer.

Definition at line 321 of file IRBuilder.h.

References Context.

Referenced by CreateLifetimeEnd(), CreateLifetimeStart(), llvm::expandDivisionUpTo64Bits(), llvm::expandRemainderUpTo64Bits(), and getInt64().

ConstantInt* llvm::IRBuilderBase::getInt8 ( uint8_t  C) [inline]

Get a constant 8-bit value.

Definition at line 266 of file IRBuilder.h.

References llvm::ConstantInt::get(), and getInt8Ty().

Referenced by llvm::UpgradeIntrinsicCall().

Fetch the type representing an 8-bit integer.

Definition at line 306 of file IRBuilder.h.

References Context.

Referenced by llvm::SimplifyFortifiedLibCalls::fold(), and getInt8().

ConstantInt* llvm::IRBuilderBase::getIntN ( unsigned  N,
uint64_t  C 
) [inline]

Get a constant N-bit value, zero extended or truncated from a 64-bit value.

Definition at line 287 of file IRBuilder.h.

References llvm::ConstantInt::get(), and getIntNTy().

Fetch the type representing an N-bit integer.

Definition at line 326 of file IRBuilder.h.

References Context.

Referenced by getIntN().

IntegerType* llvm::IRBuilderBase::getIntPtrTy ( const DataLayout DL,
unsigned  AddrSpace = 0 
) [inline]

Fetch the type representing a pointer to an integer value.

Definition at line 356 of file IRBuilder.h.

References Context, and llvm::DataLayout::getIntPtrType().

Get the constant value for i1 true.

Definition at line 256 of file IRBuilder.h.

References Context.

Referenced by generateUnsignedDivisionCode().

Fetch the type representing void.

Definition at line 346 of file IRBuilder.h.

References Context.

Returns the current insert point, clearing it in the process.

Definition at line 162 of file IRBuilder.h.

References ClearInsertionPoint(), GetInsertBlock(), and GetInsertPoint().

Returns the current insert point.

Definition at line 157 of file IRBuilder.h.

References GetInsertBlock(), and GetInsertPoint().

void llvm::IRBuilderBase::SetDefaultFPMathTag ( MDNode FPMathTag) [inline]

Set the floating point math metadata to be used.

Definition at line 186 of file IRBuilder.h.

References DefaultFPMathTag.

Set the fast-math flags to be used with generated fp-math operators.

Definition at line 189 of file IRBuilder.h.

References FMF.

void llvm::IRBuilderBase::SetInsertPoint ( BasicBlock TheBB) [inline]

This specifies that created instructions should be inserted before the specified instruction.

Definition at line 90 of file IRBuilder.h.

References BB, llvm::BasicBlock::end(), llvm::Instruction::getDebugLoc(), llvm::Instruction::getParent(), I, InsertPt, and SetCurrentDebugLocation().

This specifies that created instructions should be inserted at the specified point.

Definition at line 99 of file IRBuilder.h.

References BB, and InsertPt.

void llvm::IRBuilderBase::SetInsertPoint ( Use U) [inline]

Find the nearest point that dominates this use, and specify that created instructions should be inserted at this point.

Definition at line 106 of file IRBuilder.h.

References llvm::BasicBlock::getTerminator(), llvm::Use::getUser(), and SetInsertPoint().

If this builder has a current debug location, set it on the specified instruction.

Definition at line 127 of file IRBuilder.h.

References llvm::DebugLoc::isUnknown(), and llvm::Instruction::setDebugLoc().

Referenced by createCallHelper(), and llvm::IRBuilder< true, TargetFolder >::Insert().


Member Data Documentation


The documentation for this class was generated from the following files: