LLVM  8.0.1
Public Types | Public Member Functions | List of all members
llvm::SlotTracker Class Reference

This class provides computation of slot numbers for LLVM Assembly writing. More...

Public Types

using ValueMap = DenseMap< const Value *, unsigned >
 ValueMap - A mapping of Values to slot numbers. More...
 
using mdn_iterator = DenseMap< const MDNode *, unsigned >::iterator
 MDNode map iterators. More...
 
using as_iterator = DenseMap< AttributeSet, unsigned >::iterator
 AttributeSet map iterators. More...
 
using guid_iterator = DenseMap< GlobalValue::GUID, unsigned >::iterator
 GUID map iterators. More...
 

Public Member Functions

 SlotTracker (const Module *M, bool ShouldInitializeAllMetadata=false)
 Construct from a module. More...
 
 SlotTracker (const Function *F, bool ShouldInitializeAllMetadata=false)
 Construct from a function, starting out in incorp state. More...
 
 SlotTracker (const ModuleSummaryIndex *Index)
 Construct from a module summary index. More...
 
 SlotTracker (const SlotTracker &)=delete
 
SlotTrackeroperator= (const SlotTracker &)=delete
 
int getLocalSlot (const Value *V)
 Return the slot number of the specified value in it's type plane. More...
 
int getGlobalSlot (const GlobalValue *V)
 getGlobalSlot - Get the slot number of a global value. More...
 
int getMetadataSlot (const MDNode *N)
 getMetadataSlot - Get the slot number of a MDNode. More...
 
int getAttributeGroupSlot (AttributeSet AS)
 
int getModulePathSlot (StringRef Path)
 
int getGUIDSlot (GlobalValue::GUID GUID)
 
int getTypeIdSlot (StringRef Id)
 
void incorporateFunction (const Function *F)
 If you'd like to deal with a function instead of just a module, use this method to get its data into the SlotTracker. More...
 
const FunctiongetFunction () const
 
void purgeFunction ()
 After calling incorporateFunction, use this method to remove the most recently incorporated function from the SlotTracker. More...
 
mdn_iterator mdn_begin ()
 
mdn_iterator mdn_end ()
 
unsigned mdn_size () const
 
bool mdn_empty () const
 
as_iterator as_begin ()
 
as_iterator as_end ()
 
unsigned as_size () const
 
bool as_empty () const
 
void initializeIfNeeded ()
 These functions do the actual initialization. More...
 
void initializeIndexIfNeeded ()
 

Detailed Description

This class provides computation of slot numbers for LLVM Assembly writing.

Definition at line 666 of file AsmWriter.cpp.

Member Typedef Documentation

◆ as_iterator

AttributeSet map iterators.

Definition at line 767 of file AsmWriter.cpp.

◆ guid_iterator

GUID map iterators.

Definition at line 775 of file AsmWriter.cpp.

◆ mdn_iterator

MDNode map iterators.

Definition at line 759 of file AsmWriter.cpp.

◆ ValueMap

ValueMap - A mapping of Values to slot numbers.

Definition at line 669 of file AsmWriter.cpp.

Constructor & Destructor Documentation

◆ SlotTracker() [1/4]

SlotTracker::SlotTracker ( const Module M,
bool  ShouldInitializeAllMetadata = false 
)
explicit

Construct from a module.

If ShouldInitializeAllMetadata, initializes all metadata in all functions, giving correct numbering for metadata referenced only from within a function (even if no functions have been initialized).

Definition at line 894 of file AsmWriter.cpp.

◆ SlotTracker() [2/4]

SlotTracker::SlotTracker ( const Function F,
bool  ShouldInitializeAllMetadata = false 
)
explicit

Construct from a function, starting out in incorp state.

If ShouldInitializeAllMetadata, initializes all metadata in all functions, giving correct numbering for metadata referenced only from within a function (even if no functions have been initialized).

Definition at line 899 of file AsmWriter.cpp.

◆ SlotTracker() [3/4]

SlotTracker::SlotTracker ( const ModuleSummaryIndex Index)
explicit

Construct from a module summary index.

Definition at line 903 of file AsmWriter.cpp.

◆ SlotTracker() [4/4]

llvm::SlotTracker::SlotTracker ( const SlotTracker )
delete

Member Function Documentation

◆ as_begin()

as_iterator llvm::SlotTracker::as_begin ( )
inline

Definition at line 769 of file AsmWriter.cpp.

◆ as_empty()

bool llvm::SlotTracker::as_empty ( ) const
inline

Definition at line 772 of file AsmWriter.cpp.

◆ as_end()

as_iterator llvm::SlotTracker::as_end ( )
inline

Definition at line 770 of file AsmWriter.cpp.

◆ as_size()

unsigned llvm::SlotTracker::as_size ( ) const
inline

Definition at line 771 of file AsmWriter.cpp.

◆ getAttributeGroupSlot()

int SlotTracker::getAttributeGroupSlot ( AttributeSet  AS)

Definition at line 1118 of file AsmWriter.cpp.

◆ getFunction()

const Function* llvm::SlotTracker::getFunction ( ) const
inline

Definition at line 751 of file AsmWriter.cpp.

◆ getGlobalSlot()

int SlotTracker::getGlobalSlot ( const GlobalValue V)

getGlobalSlot - Get the slot number of a global value.

Definition at line 1088 of file AsmWriter.cpp.

References MI.

◆ getGUIDSlot()

int SlotTracker::getGUIDSlot ( GlobalValue::GUID  GUID)

Definition at line 1136 of file AsmWriter.cpp.

◆ getLocalSlot()

int SlotTracker::getLocalSlot ( const Value V)

Return the slot number of the specified value in it's type plane.

getLocalSlot - Get the slot number for a value that is local to a function.

If something is not in the SlotTracker, return -1.

Definition at line 1108 of file AsmWriter.cpp.

References assert().

◆ getMetadataSlot()

int SlotTracker::getMetadataSlot ( const MDNode N)

getMetadataSlot - Get the slot number of a MDNode.

Definition at line 1098 of file AsmWriter.cpp.

References MI.

Referenced by WriteAsOperandInternal().

◆ getModulePathSlot()

int SlotTracker::getModulePathSlot ( StringRef  Path)

Definition at line 1127 of file AsmWriter.cpp.

◆ getTypeIdSlot()

int SlotTracker::getTypeIdSlot ( StringRef  Id)

Definition at line 1145 of file AsmWriter.cpp.

◆ incorporateFunction()

void llvm::SlotTracker::incorporateFunction ( const Function F)
inline

If you'd like to deal with a function instead of just a module, use this method to get its data into the SlotTracker.

Definition at line 746 of file AsmWriter.cpp.

◆ initializeIfNeeded()

void SlotTracker::initializeIfNeeded ( )
inline

These functions do the actual initialization.

< Prevent re-processing next time we're called.

Definition at line 906 of file AsmWriter.cpp.

◆ initializeIndexIfNeeded()

void SlotTracker::initializeIndexIfNeeded ( )

◆ mdn_begin()

mdn_iterator llvm::SlotTracker::mdn_begin ( )
inline

Definition at line 761 of file AsmWriter.cpp.

◆ mdn_empty()

bool llvm::SlotTracker::mdn_empty ( ) const
inline

Definition at line 764 of file AsmWriter.cpp.

◆ mdn_end()

mdn_iterator llvm::SlotTracker::mdn_end ( )
inline

Definition at line 762 of file AsmWriter.cpp.

◆ mdn_size()

unsigned llvm::SlotTracker::mdn_size ( ) const
inline

Definition at line 763 of file AsmWriter.cpp.

◆ operator=()

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

◆ purgeFunction()

void SlotTracker::purgeFunction ( )

After calling incorporateFunction, use this method to remove the most recently incorporated function from the SlotTracker.

Clean up after incorporating a function.

This will reset the state of the machine back to just the module contents.

This is the only way to get out of the function incorporation state that affects get*Slot/Create*Slot. Function incorporation state is indicated by TheFunction != 0.

Definition at line 1079 of file AsmWriter.cpp.

References ST_DEBUG.


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