LLVM API Documentation

llvm::ConstantStruct Class Reference

#include <Constants.h>

Inheritance diagram for llvm::ConstantStruct:

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

Collaboration graph
[legend]

List of all members.

Public Member Functions

 DECLARE_TRANSPARENT_OPERAND_ACCESSORS (Constant)
 Transparently provide more efficient getOperand methods.
const StructTypegetType () const
virtual bool isNullValue () const
virtual void destroyConstant ()
virtual void replaceUsesOfWithOnConstant (Value *From, Value *To, Use *U)

Static Public Member Functions

static Constantget (const StructType *T, const std::vector< Constant * > &V)
static Constantget (const std::vector< Constant * > &V, bool Packed=false)
static Constantget (Constant *const *Vals, unsigned NumVals, bool Packed=false)
static bool classof (const ConstantStruct *)
 Methods for support type inquiry through isa, cast, and dyn_cast:.
static bool classof (const Value *V)

Protected Member Functions

 ConstantStruct (const StructType *T, const std::vector< Constant * > &Val)

Friends

struct ConstantCreator< ConstantStruct, StructType, std::vector< Constant * > >


Detailed Description

Definition at line 393 of file Constants.h.


Constructor & Destructor Documentation

ConstantStruct::ConstantStruct ( const StructType T,
const std::vector< Constant * > &  Val 
) [protected]


Member Function Documentation

Constant * ConstantStruct::get ( const StructType T,
const std::vector< Constant * > &  V 
) [static]

Constant * ConstantStruct::get ( const std::vector< Constant * > &  V,
bool  Packed = false 
) [static]

Definition at line 1447 of file Constants.cpp.

References llvm::StructType::get().

static Constant* llvm::ConstantStruct::get ( Constant *const *  Vals,
unsigned  NumVals,
bool  Packed = false 
) [inline, static]

Definition at line 404 of file Constants.h.

References Vals.

llvm::ConstantStruct::DECLARE_TRANSPARENT_OPERAND_ACCESSORS ( Constant   ) 

Transparently provide more efficient getOperand methods.

const StructType* llvm::ConstantStruct::getType (  )  const [inline]

getType() specialization - Reduce amount of casting...

Reimplemented from llvm::Value.

Definition at line 415 of file Constants.h.

References llvm::Intrinsic::getType().

Referenced by EvaluateFunction(), getJumpThreadDuplicationCost(), OptimizeAwayTrappingUsesOfValue(), replaceUsesOfWithOnConstant(), and WriteConstantInt().

virtual bool llvm::ConstantStruct::isNullValue (  )  const [inline, virtual]

isNullValue - Return true if this is the value that would be returned by getNullValue. This always returns false because zero structs are always created as ConstantAggregateZero objects.

Implements llvm::Constant.

Definition at line 422 of file Constants.h.

Referenced by get(), and llvm::LoopBase< BlockT >::getCanonicalInductionVariable().

void ConstantStruct::destroyConstant (  )  [virtual]

destroyConstant - Called if some element of this constant is no longer valid. At this point only other constants may be on the use_list for this constant. Any constants on our Use list must also be destroy'd. The implementation must be sure to remove the constant from the list of available cached constants. Implementations should call destroyConstantImpl as the last thing they do, to destroy all users and delete this.

Reimplemented from llvm::Constant.

Definition at line 1457 of file Constants.cpp.

References llvm::Constant::destroyConstantImpl().

Referenced by llvm::ConvertConstantType< ConstantStruct, StructType >::convert(), and replaceUsesOfWithOnConstant().

void ConstantStruct::replaceUsesOfWithOnConstant ( Value ,
Value ,
Use  
) [virtual]

replaceUsesOfWithOnConstant - This method is a special form of User::replaceUsesOfWith (which does not work on constants) that does work on constants. Basically this method goes through the trouble of building a new constant that is equivalent to the current one, with all uses of From replaced with uses of To. After this construction is completed, all of the users of 'this' are replaced to use the new constant, and then 'this' is deleted. In general, you should not call this method, instead, use Value::replaceAllUsesWith, which automatically dispatches to this method as needed.

Reimplemented from llvm::Constant.

Definition at line 2527 of file Constants.cpp.

References destroyConstant(), E, llvm::ConstantAggregateZero::get(), llvm::User::getNumOperands(), llvm::Constant::getOperand(), getType(), llvm::Constant::isNullValue(), Lookup(), llvm::User::OperandList, llvm::Constant::setOperand(), llvm::Value::uncheckedReplaceAllUsesWith(), Val, and Values.

static bool llvm::ConstantStruct::classof ( const ConstantStruct  )  [inline, static]

Methods for support type inquiry through isa, cast, and dyn_cast:.

Definition at line 430 of file Constants.h.

static bool llvm::ConstantStruct::classof ( const Value V  )  [inline, static]

Reimplemented from llvm::Constant.

Definition at line 431 of file Constants.h.

References llvm::Value::getValueID().


Friends And Related Function Documentation

friend struct ConstantCreator< ConstantStruct, StructType,std::vector< Constant * > > [friend]

Definition at line 395 of file Constants.h.


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



This web site is hosted by the Computer Science Department at the University of Illinois at Urbana-Champaign.