|
LLVM 24.0.0git
|
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. | |
| using | mdn_iterator = DenseMap<const MDNode*, unsigned>::iterator |
| MDNode map iterators. | |
| using | as_iterator = DenseMap<AttributeSet, unsigned>::iterator |
| AttributeSet map iterators. | |
| using | guid_iterator = DenseMap<GlobalValue::GUID, unsigned>::iterator |
| GUID map iterators. | |
Public Member Functions | |
| SlotTracker (const Module *M, bool ShouldTrackMetadataDefinitions=false) | |
| Construct from a module. | |
| SlotTracker (const Function *F) | |
| Construct from a function, starting out in incorp state. | |
| SlotTracker (const ModuleSummaryIndex *Index) | |
| Construct from a module summary index. | |
| SlotTracker (const SlotTracker &)=delete | |
| SlotTracker & | operator= (const SlotTracker &)=delete |
| ~SlotTracker () override=default | |
| void | setProcessHook (std::function< void(AbstractSlotTrackerStorage *, const Module *)>) |
| void | setProcessHook (std::function< void(AbstractSlotTrackerStorage *, const Function *)>) |
| void | createMetadataSlot (const MDNode *N) override |
| getMetadataSlot - Get the slot number of a MDNode. | |
| int | getLocalSlot (const Value *V) |
| Return the slot number of the specified value in it's type plane. | |
| int | getGlobalSlot (const GlobalValue *V) |
| getGlobalSlot - Get the slot number of a global value. | |
| int | getMetadataSlot (const MDNode *N) override |
| getMetadataSlot - Get the slot number of a MDNode. | |
| int | getAttributeGroupSlot (AttributeSet AS) |
| int | getModulePathSlot (StringRef Path) |
| int | getGUIDSlot (GlobalValue::GUID GUID) |
| int | getTypeIdSlot (StringRef Id) |
| int | getTypeIdCompatibleVtableSlot (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. | |
| const Function * | getFunction () const |
| void | purgeFunction () |
| After calling incorporateFunction, use this method to remove the most recently incorporated function from the SlotTracker. | |
| 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. | |
| int | initializeIndexIfNeeded () |
| Public Member Functions inherited from llvm::AbstractSlotTrackerStorage | |
| virtual | ~AbstractSlotTrackerStorage () |
This class provides computation of slot numbers for LLVM Assembly writing.
Definition at line 791 of file AsmWriter.cpp.
AttributeSet map iterators.
Definition at line 903 of file AsmWriter.cpp.
GUID map iterators.
Definition at line 911 of file AsmWriter.cpp.
MDNode map iterators.
Definition at line 895 of file AsmWriter.cpp.
| using llvm::SlotTracker::ValueMap = DenseMap<const Value *, unsigned> |
ValueMap - A mapping of Values to slot numbers.
Definition at line 794 of file AsmWriter.cpp.
Construct from a module.
Definition at line 1032 of file AsmWriter.cpp.
Referenced by operator=(), and SlotTracker().
Construct from a function, starting out in incorp state.
Definition at line 1038 of file AsmWriter.cpp.
References F, and getParent().
|
explicit |
Construct from a module summary index.
Definition at line 1042 of file AsmWriter.cpp.
|
delete |
References SlotTracker().
|
overridedefault |
|
inline |
Definition at line 905 of file AsmWriter.cpp.
|
inline |
Definition at line 908 of file AsmWriter.cpp.
|
inline |
Definition at line 906 of file AsmWriter.cpp.
|
inline |
Definition at line 907 of file AsmWriter.cpp.
getMetadataSlot - Get the slot number of a MDNode.
Implements llvm::AbstractSlotTrackerStorage.
Definition at line 1379 of file AsmWriter.cpp.
References N.
Referenced by ~SlotTracker().
| int SlotTracker::getAttributeGroupSlot | ( | AttributeSet | AS | ) |
Definition at line 1404 of file AsmWriter.cpp.
References initializeIfNeeded().
Referenced by ~SlotTracker().
Definition at line 887 of file AsmWriter.cpp.
| int SlotTracker::getGlobalSlot | ( | const GlobalValue * | V | ) |
getGlobalSlot - Get the slot number of a global value.
Definition at line 1359 of file AsmWriter.cpp.
References initializeIfNeeded(), and MI.
Referenced by ~SlotTracker().
| int SlotTracker::getGUIDSlot | ( | GlobalValue::GUID | GUID | ) |
Definition at line 1422 of file AsmWriter.cpp.
References I, and initializeIndexIfNeeded().
Referenced by ~SlotTracker().
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 1394 of file AsmWriter.cpp.
References assert(), initializeIfNeeded(), and llvm::isa().
Referenced by ~SlotTracker().
getMetadataSlot - Get the slot number of a MDNode.
Implements llvm::AbstractSlotTrackerStorage.
Definition at line 1382 of file AsmWriter.cpp.
References initializeIfNeeded(), llvm::isa(), and N.
Referenced by writeAsOperandInternal(), and ~SlotTracker().
| int SlotTracker::getModulePathSlot | ( | StringRef | Path | ) |
Definition at line 1413 of file AsmWriter.cpp.
References I, and initializeIndexIfNeeded().
Referenced by ~SlotTracker().
| int SlotTracker::getTypeIdCompatibleVtableSlot | ( | StringRef | Id | ) |
Definition at line 1440 of file AsmWriter.cpp.
References I, and initializeIndexIfNeeded().
Referenced by ~SlotTracker().
| int SlotTracker::getTypeIdSlot | ( | StringRef | Id | ) |
Definition at line 1431 of file AsmWriter.cpp.
References I, and initializeIndexIfNeeded().
Referenced by ~SlotTracker().
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 882 of file AsmWriter.cpp.
References F.
|
inline |
These functions do the actual initialization.
< Prevent re-processing next time we're called.
Definition at line 1046 of file AsmWriter.cpp.
Referenced by getAttributeGroupSlot(), getGlobalSlot(), getLocalSlot(), and getMetadataSlot().
| int SlotTracker::initializeIndexIfNeeded | ( | ) |
< Prevent re-processing next time we're called.
Definition at line 1056 of file AsmWriter.cpp.
Referenced by getGUIDSlot(), getModulePathSlot(), getTypeIdCompatibleVtableSlot(), and getTypeIdSlot().
|
inline |
Definition at line 897 of file AsmWriter.cpp.
|
inline |
Definition at line 900 of file AsmWriter.cpp.
|
inline |
Definition at line 898 of file AsmWriter.cpp.
|
inline |
Definition at line 899 of file AsmWriter.cpp.
|
delete |
References SlotTracker().
| 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 1350 of file AsmWriter.cpp.
References ST_DEBUG.
| void SlotTracker::setProcessHook | ( | std::function< void(AbstractSlotTrackerStorage *, const Function *)> | Fn | ) |
Definition at line 1373 of file AsmWriter.cpp.
| void SlotTracker::setProcessHook | ( | std::function< void(AbstractSlotTrackerStorage *, const Module *)> | Fn | ) |
Definition at line 1368 of file AsmWriter.cpp.
Referenced by ~SlotTracker().