LLVM 22.0.0git
|
Helper class for performant LiveRange bulk updates. More...
#include "llvm/CodeGen/LiveInterval.h"
Public Member Functions | |
LiveRangeUpdater (LiveRange *lr=nullptr) | |
Create a LiveRangeUpdater for adding segments to LR. | |
~LiveRangeUpdater () | |
LLVM_ABI void | add (LiveRange::Segment) |
Add a segment to LR and coalesce when possible, just like LR.addSegment(). | |
void | add (SlotIndex Start, SlotIndex End, VNInfo *VNI) |
bool | isDirty () const |
Return true if the LR is currently in an invalid state, and flush() needs to be called. | |
LLVM_ABI void | flush () |
Flush the updater state to LR so it is valid and contains all added segments. | |
void | setDest (LiveRange *lr) |
Select a different destination live range. | |
LiveRange * | getDest () const |
Get the current destination live range. | |
LLVM_ABI void | dump () const |
LLVM_ABI void | print (raw_ostream &) const |
Helper class for performant LiveRange bulk updates.
Calling LiveRange::addSegment() repeatedly can be expensive on large live ranges because segments after the insertion point may need to be shifted. The LiveRangeUpdater class can defer the shifting when adding many segments in order.
The LiveRange will be in an invalid state until flush() is called.
Definition at line 947 of file LiveInterval.h.
|
inline |
Create a LiveRangeUpdater for adding segments to LR.
LR will temporarily be in an invalid state until flush() is called.
Definition at line 958 of file LiveInterval.h.
|
inline |
Definition at line 960 of file LiveInterval.h.
References flush().
void LiveRangeUpdater::add | ( | LiveRange::Segment | Seg | ) |
Add a segment to LR and coalesce when possible, just like LR.addSegment().
Segments should be added in increasing start order for best performance.
Definition at line 1190 of file LiveInterval.cpp.
References assert(), llvm::LiveRange::begin(), coalescable(), llvm::LiveRange::Segment::end, llvm::LiveRange::end(), llvm::LiveRange::find(), llvm::SmallVectorTemplateBase< T, bool >::push_back(), llvm::LiveRange::segments, llvm::LiveRange::segmentSet, llvm::LiveRange::Segment::start, and llvm::LiveRange::Segment::valno.
Referenced by add(), llvm::LiveRange::join(), llvm::LiveRange::MergeSegmentsInAsValue(), and llvm::LiveRange::MergeValueInAsValue().
Definition at line 967 of file LiveInterval.h.
LLVM_DUMP_METHOD void LiveRangeUpdater::dump | ( | ) | const |
Definition at line 1173 of file LiveInterval.cpp.
References llvm::errs(), and llvm::LiveRange::print().
void LiveRangeUpdater::flush | ( | ) |
Flush the updater state to LR so it is valid and contains all added segments.
Definition at line 1297 of file LiveInterval.cpp.
References assert(), llvm::LiveRange::begin(), llvm::SmallVectorImpl< T >::erase(), llvm::SmallVectorImpl< T >::insert(), llvm::LiveRange::segments, and llvm::LiveRange::verify().
Referenced by setDest(), and ~LiveRangeUpdater().
|
inline |
Get the current destination live range.
Definition at line 987 of file LiveInterval.h.
|
inline |
Return true if the LR is currently in an invalid state, and flush() needs to be called.
Definition at line 973 of file LiveInterval.h.
References llvm::SlotIndex::isValid().
Referenced by setDest().
void LiveRangeUpdater::print | ( | raw_ostream & | OS | ) | const |
Definition at line 1150 of file LiveInterval.cpp.
References assert(), llvm::LiveRange::begin(), llvm::LiveRange::end(), llvm::make_range(), and OS.
|
inline |
Select a different destination live range.
Definition at line 980 of file LiveInterval.h.