LLVM 19.0.0git
Public Member Functions | List of all members
llvm::RecordKeeper Class Reference

#include "llvm/TableGen/Record.h"

Public Member Functions

 RecordKeeper ()
 
 ~RecordKeeper ()
 
detail::RecordKeeperImplgetImpl ()
 Return the internal implementation of the RecordKeeper.
 
const std::string getInputFilename () const
 Get the main TableGen input file's name.
 
const RecordMap & getClasses () const
 Get the map of classes.
 
const RecordMap & getDefs () const
 Get the map of records (defs).
 
const GlobalMap & getGlobals () const
 Get the map of global variables.
 
RecordgetClass (StringRef Name) const
 Get the class with the specified name.
 
RecordgetDef (StringRef Name) const
 Get the concrete record with the specified name.
 
InitgetGlobal (StringRef Name) const
 Get the Init value of the specified global variable.
 
void saveInputFilename (std::string Filename)
 
void addClass (std::unique_ptr< Record > R)
 
void addDef (std::unique_ptr< Record > R)
 
void addExtraGlobal (StringRef Name, Init *I)
 
InitgetNewAnonymousName ()
 GetNewAnonymousName - Generate a unique anonymous name that can be used as an identifier.
 
void startPhaseTiming ()
 Start phase timing; called if the –time-phases option is specified.
 
void startTimer (StringRef Name)
 Start timing a phase. Automatically stops any previous phase timer.
 
void stopTimer ()
 Stop timing a phase.
 
void startBackendTimer (StringRef Name)
 Start timing the overall backend.
 
void stopBackendTimer ()
 Stop timing the overall backend.
 
void stopPhaseTiming ()
 Stop phase timing and print the report.
 
std::vector< Record * > getAllDerivedDefinitions (StringRef ClassName) const
 Get all the concrete records that inherit from the one specified class.
 
std::vector< Record * > getAllDerivedDefinitions (ArrayRef< StringRef > ClassNames) const
 Get all the concrete records that inherit from all the specified classes.
 
std::vector< Record * > getAllDerivedDefinitionsIfDefined (StringRef ClassName) const
 Get all the concrete records that inherit from specified class, if the class is defined.
 
void dump () const
 

Detailed Description

Definition at line 1963 of file Record.h.

Constructor & Destructor Documentation

◆ RecordKeeper()

RecordKeeper::RecordKeeper ( )

Definition at line 3157 of file Record.cpp.

◆ ~RecordKeeper()

RecordKeeper::~RecordKeeper ( )
default

Member Function Documentation

◆ addClass()

void llvm::RecordKeeper::addClass ( std::unique_ptr< Record R)
inline

Definition at line 2010 of file Record.h.

References assert().

◆ addDef()

void llvm::RecordKeeper::addDef ( std::unique_ptr< Record R)
inline

Definition at line 2017 of file Record.h.

References assert().

◆ addExtraGlobal()

void llvm::RecordKeeper::addExtraGlobal ( StringRef  Name,
Init I 
)
inline

Definition at line 2024 of file Record.h.

References assert(), getDef(), I, and Name.

◆ dump()

LLVM_DUMP_METHOD void RecordKeeper::dump ( ) const

Definition at line 3162 of file Record.cpp.

References llvm::errs().

◆ getAllDerivedDefinitions() [1/2]

std::vector< Record * > RecordKeeper::getAllDerivedDefinitions ( ArrayRef< StringRef ClassNames) const

Get all the concrete records that inherit from all the specified classes.

The classes must be defined.

Definition at line 3234 of file Record.cpp.

References llvm::all_of(), assert(), getClass(), getDefs(), llvm::Value::getName(), LHS, llvm::PrintFatalError(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), RHS, llvm::ArrayRef< T >::size(), and llvm::sort().

◆ getAllDerivedDefinitions() [2/2]

std::vector< Record * > RecordKeeper::getAllDerivedDefinitions ( StringRef  ClassName) const

Get all the concrete records that inherit from the one specified class.

The class must be defined.

Definition at line 3224 of file Record.cpp.

References getAllDerivedDefinitions().

Referenced by getAllDerivedDefinitions(), getAllDerivedDefinitionsIfDefined(), llvm::DirectiveLanguage::getAssociations(), llvm::DirectiveLanguage::getClauses(), and llvm::DirectiveLanguage::getDirectives().

◆ getAllDerivedDefinitionsIfDefined()

std::vector< Record * > RecordKeeper::getAllDerivedDefinitionsIfDefined ( StringRef  ClassName) const

Get all the concrete records that inherit from specified class, if the class is defined.

Returns an empty vector if the class is not defined.

Definition at line 3262 of file Record.cpp.

References getAllDerivedDefinitions(), and getClass().

◆ getClass()

Record * llvm::RecordKeeper::getClass ( StringRef  Name) const
inline

Get the class with the specified name.

Definition at line 1987 of file Record.h.

References I, and Name.

Referenced by getAllDerivedDefinitions(), and getAllDerivedDefinitionsIfDefined().

◆ getClasses()

const RecordMap & llvm::RecordKeeper::getClasses ( ) const
inline

Get the map of classes.

Definition at line 1978 of file Record.h.

Referenced by llvm::operator<<().

◆ getDef()

Record * llvm::RecordKeeper::getDef ( StringRef  Name) const
inline

Get the concrete record with the specified name.

Definition at line 1993 of file Record.h.

References I, and Name.

Referenced by addExtraGlobal(), llvm::UnOpInit::Fold(), llvm::ExistsOpInit::Fold(), and getGlobal().

◆ getDefs()

const RecordMap & llvm::RecordKeeper::getDefs ( ) const
inline

Get the map of records (defs).

Definition at line 1981 of file Record.h.

Referenced by getAllDerivedDefinitions(), and llvm::operator<<().

◆ getGlobal()

Init * llvm::RecordKeeper::getGlobal ( StringRef  Name) const
inline

Get the Init value of the specified global variable.

Definition at line 1999 of file Record.h.

References getDef(), and Name.

◆ getGlobals()

const GlobalMap & llvm::RecordKeeper::getGlobals ( ) const
inline

Get the map of global variables.

Definition at line 1984 of file Record.h.

◆ getImpl()

detail::RecordKeeperImpl & llvm::RecordKeeper::getImpl ( )
inline

◆ getInputFilename()

const std::string llvm::RecordKeeper::getInputFilename ( ) const
inline

Get the main TableGen input file's name.

Definition at line 1975 of file Record.h.

◆ getNewAnonymousName()

Init * RecordKeeper::getNewAnonymousName ( )

GetNewAnonymousName - Generate a unique anonymous name that can be used as an identifier.

Definition at line 3178 of file Record.cpp.

References llvm::AnonymousNameInit::get(), and getImpl().

◆ saveInputFilename()

void llvm::RecordKeeper::saveInputFilename ( std::string  Filename)
inline

Definition at line 2006 of file Record.h.

◆ startBackendTimer()

void RecordKeeper::startBackendTimer ( StringRef  Name)

Start timing the overall backend.

If the backend itself starts a timer, then this timer is cleared.

Definition at line 3207 of file Record.cpp.

References Name, and startTimer().

◆ startPhaseTiming()

void llvm::RecordKeeper::startPhaseTiming ( )
inline

Start phase timing; called if the –time-phases option is specified.

Definition at line 2034 of file Record.h.

◆ startTimer()

void RecordKeeper::startTimer ( StringRef  Name)

Start timing a phase. Automatically stops any previous phase timer.

Definition at line 3185 of file Record.cpp.

References llvm::Timer::clear(), llvm::Timer::isRunning(), Name, llvm::Timer::startTimer(), and llvm::Timer::stopTimer().

Referenced by startBackendTimer().

◆ stopBackendTimer()

void RecordKeeper::stopBackendTimer ( )

Stop timing the overall backend.

Definition at line 3214 of file Record.cpp.

References stopTimer().

◆ stopPhaseTiming()

void llvm::RecordKeeper::stopPhaseTiming ( )
inline

Stop phase timing and print the report.

Definition at line 2052 of file Record.h.

◆ stopTimer()

void RecordKeeper::stopTimer ( )

Stop timing a phase.

Definition at line 3200 of file Record.cpp.

References assert(), and llvm::Timer::stopTimer().

Referenced by stopBackendTimer().


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