LLVM
8.0.1
|
This is the common super-class of types that have a specific, explicit, type. More...
#include "llvm/TableGen/Record.h"
Public Member Functions | |
TypedInit (const TypedInit &)=delete | |
TypedInit & | operator= (const TypedInit &)=delete |
RecTy * | getType () const |
Init * | getCastTo (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... | |
Init * | convertInitializerTo (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... | |
Init * | convertInitializerBitRange (ArrayRef< unsigned > Bits) const override |
This method is used to implement the bitrange selection operator. More... | |
Init * | convertInitListSlice (ArrayRef< unsigned > Elements) const override |
This method is used to implement the list slice selection operator. More... | |
RecTy * | getFieldType (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 | |
Init & | operator= (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 Init * | resolveReferences (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 Init * | getBit (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 |
This is the common super-class of types that have a specific, explicit, type.
Definition at line 436 of file Record.h.
References llvm::Init::getKind().
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().
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().
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().
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().
|
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().
|
inline |
Definition at line 441 of file Record.h.
References llvm::tgtok::Bits.
Referenced by llvm::UnOpInit::Fold(), llvm::RecordVal::print(), and QualifiedNameOfImplicitName().