LLVM  8.0.1
Public Member Functions | Static Public Member Functions | Protected Member Functions | List of all members
llvm::TypedInit Class Reference

This is the common super-class of types that have a specific, explicit, type. More...

#include "llvm/TableGen/Record.h"

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

Public Member Functions

 TypedInit (const TypedInit &)=delete
 
TypedInitoperator= (const TypedInit &)=delete
 
RecTygetType () const
 
InitgetCastTo (RecTy *Ty) const override
 If this initializer is convertible to Ty, return an initializer whose type is-a Ty, generating a !cast operation if required. More...
 
InitconvertInitializerTo (RecTy *Ty) const override
 Convert to an initializer whose type is-a Ty, or return nullptr if this is not possible (this can happen if the initializer's type is convertible to Ty, but there are unresolved references). More...
 
InitconvertInitializerBitRange (ArrayRef< unsigned > Bits) const override
 This method is used to implement the bitrange selection operator. More...
 
InitconvertInitListSlice (ArrayRef< unsigned > Elements) const override
 This method is used to implement the list slice selection operator. More...
 
RecTygetFieldType (StringInit *FieldName) const override
 This method is used to implement the FieldInit class. More...
 
- Public Member Functions inherited from llvm::Init
InitKind getKind () const
 
 Init (const Init &)=delete
 
Initoperator= (const Init &)=delete
 
virtual ~Init ()=default
 
virtual bool isComplete () const
 This virtual method should be overridden by values that may not be completely specified yet. More...
 
virtual bool isConcrete () const
 Is this a concrete and fully resolved value without any references or stuck operations? Unset values are concrete. More...
 
void print (raw_ostream &OS) const
 Print out this value. More...
 
virtual std::string getAsString () const =0
 Convert this value to a string form. More...
 
virtual std::string getAsUnquotedString () const
 Convert this value to a string form, without adding quote markers. More...
 
void dump () const
 Debugging method that may be called through a debugger, just invokes print on stderr. More...
 
virtual InitresolveReferences (Resolver &R) const
 This method is used by classes that refer to other variables which may not be defined at the time the expression is formed. More...
 
virtual InitgetBit (unsigned Bit) const =0
 This method is used to return the initializer for the specified bit. More...
 

Static Public Member Functions

static bool classof (const Init *I)
 

Protected Member Functions

 TypedInit (InitKind K, RecTy *T, uint8_t Opc=0)
 
- Protected Member Functions inherited from llvm::Init
 Init (InitKind K, uint8_t Opc=0)
 

Additional Inherited Members

- Protected Types inherited from llvm::Init
enum  InitKind : uint8_t {
  IK_First, IK_FirstTypedInit, IK_BitInit, IK_BitsInit,
  IK_CodeInit, IK_DagInit, IK_DefInit, IK_FieldInit,
  IK_IntInit, IK_ListInit, IK_FirstOpInit, IK_BinOpInit,
  IK_TernOpInit, IK_UnOpInit, IK_LastOpInit, IK_FoldOpInit,
  IK_IsAOpInit, IK_StringInit, IK_VarInit, IK_VarListElementInit,
  IK_VarBitInit, IK_VarDefInit, IK_LastTypedInit, IK_UnsetInit
}
 Discriminator enum (for isa<>, dyn_cast<>, et al.) More...
 
- Protected Attributes inherited from llvm::Init
uint8_t Opc
 

Detailed Description

This is the common super-class of types that have a specific, explicit, type.

Definition at line 425 of file Record.h.

Constructor & Destructor Documentation

◆ TypedInit() [1/2]

llvm::TypedInit::TypedInit ( InitKind  K,
RecTy T,
uint8_t  Opc = 0 
)
inlineexplicitprotected

Definition at line 429 of file Record.h.

◆ TypedInit() [2/2]

llvm::TypedInit::TypedInit ( const TypedInit )
delete

Member Function Documentation

◆ classof()

static bool llvm::TypedInit::classof ( const Init I)
inlinestatic

Definition at line 436 of file Record.h.

References llvm::Init::getKind().

◆ convertInitializerBitRange()

Init * TypedInit::convertInitializerBitRange ( ArrayRef< unsigned Bits) const
overridevirtual

This method is used to implement the bitrange selection operator.

Given an initializer, it selects the specified bits out, returning them as a new init of bits type. If it is not legal to use the bit subscript operator on this initializer, return null.

Reimplemented from llvm::Init.

Reimplemented in llvm::IntInit, and llvm::BitsInit.

Definition at line 1367 of file Record.cpp.

References llvm::tgtok::Bit, llvm::dyn_cast(), llvm::BitsInit::get(), llvm::VarBitInit::get(), llvm::BitsRecTy::getNumBits(), getType(), llvm::SmallVectorTemplateBase< T >::push_back(), llvm::SmallVectorImpl< T >::reserve(), and llvm::ArrayRef< T >::size().

◆ convertInitializerTo()

Init * TypedInit::convertInitializerTo ( RecTy Ty) const
overridevirtual

Convert to an initializer whose type is-a Ty, or return nullptr if this is not possible (this can happen if the initializer's type is convertible to Ty, but there are unresolved references).

Implements llvm::Init.

Reimplemented in llvm::DefInit, llvm::ListInit, llvm::CodeInit, llvm::StringInit, llvm::IntInit, llvm::BitsInit, and llvm::BitInit.

Definition at line 1356 of file Record.cpp.

References llvm::BitsInit::get(), getType(), and llvm::RecTy::typeIsA().

◆ convertInitListSlice()

Init * TypedInit::convertInitListSlice ( ArrayRef< unsigned Elements) const
overridevirtual

This method is used to implement the list slice selection operator.

Given an initializer, it selects the specified list elements, returning them as a new init of list type. If it is not legal to take a slice of this, return null.

Reimplemented from llvm::Init.

Reimplemented in llvm::ListInit.

Definition at line 1401 of file Record.cpp.

References llvm::dyn_cast(), llvm::ListInit::get(), llvm::VarListElementInit::get(), llvm::ListRecTy::getElementType(), getType(), llvm::SmallVectorTemplateBase< T >::push_back(), llvm::SmallVectorImpl< T >::reserve(), and llvm::ArrayRef< T >::size().

◆ getCastTo()

Init * TypedInit::getCastTo ( RecTy Ty) const
overridevirtual

If this initializer is convertible to Ty, return an initializer whose type is-a Ty, generating a !cast operation if required.

Otherwise, return nullptr.

Implements llvm::Init.

Definition at line 1383 of file Record.cpp.

References assert(), llvm::UnOpInit::CAST, llvm::UnOpInit::Fold(), llvm::UnOpInit::get(), getType(), llvm::RecTy::typeIsA(), and llvm::RecTy::typeIsConvertibleTo().

◆ getFieldType()

RecTy * TypedInit::getFieldType ( StringInit FieldName) const
overridevirtual

This method is used to implement the FieldInit class.

Implementors of this method should return the type of the named field if they are of record type.

Reimplemented from llvm::Init.

Reimplemented in llvm::DefInit.

Definition at line 1345 of file Record.cpp.

References llvm::tgtok::Field, and getType().

◆ getType()

RecTy* llvm::TypedInit::getType ( ) const
inline

◆ operator=()

TypedInit& llvm::TypedInit::operator= ( const TypedInit )
delete

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