class ListRecTy
Declaration
class ListRecTy : public RecTy { /* full declaration omitted */ };
Description
'list <Ty >' - Represent a list of values, all of which must be of the specified type.
Declared at: llvm/include/llvm/TableGen/Record.h:195
Inherits from: RecTy
Method Overview
- public static bool classof(const llvm::RecTy * RT)
- public static llvm::ListRecTy * get(llvm::RecTy * T)
- public std::string getAsString() const
- public llvm::RecTy * getElementType() const
- public bool typeIsA(const llvm::RecTy * RHS) const
- public bool typeIsConvertibleTo(const llvm::RecTy * RHS) const
Inherited from RecTy:
- public dump
- public getAsString
- public getListTy
- public getRecTyKind
- public print
- public typeIsA
- public typeIsConvertibleTo
Methods
¶static bool classof(const llvm::RecTy* RT)
static bool classof(const llvm::RecTy* RT)
Declared at: llvm/include/llvm/TableGen/Record.h:203
Parameters
- const llvm::RecTy* RT
¶static llvm::ListRecTy* get(llvm::RecTy* T)
static llvm::ListRecTy* get(llvm::RecTy* T)
Declared at: llvm/include/llvm/TableGen/Record.h:207
Parameters
- llvm::RecTy* T
¶std::string getAsString() const
std::string getAsString() const
Declared at: llvm/include/llvm/TableGen/Record.h:210
¶llvm::RecTy* getElementType() const
llvm::RecTy* getElementType() const
Declared at: llvm/include/llvm/TableGen/Record.h:208
¶bool typeIsA(const llvm::RecTy* RHS) const
bool typeIsA(const llvm::RecTy* RHS) const
Description
Return true if 'this' type is equal to or a subtype of RHS. For example, a bit set is not an int, but they are convertible.
Declared at: llvm/include/llvm/TableGen/Record.h:214
Parameters
- const llvm::RecTy* RHS
¶bool typeIsConvertibleTo(
const llvm::RecTy* RHS) const
bool typeIsConvertibleTo(
const llvm::RecTy* RHS) const
Description
Return true if all values of 'this' type can be converted to the specified type.
Declared at: llvm/include/llvm/TableGen/Record.h:212
Parameters
- const llvm::RecTy* RHS