Store indexes from R at which this live range is live into O.
Synopsis
Declared in <llvm/CodeGen/LiveInterval.h>
template<
typename Range,
typename OutputIt>
bool
findIndexesLiveAt(
Range&& R,
OutputIt O) const;
Description
R is a range of ascending sorted random access iterators to the input indexes. Indexes stored at O are ascending sorted so it can be used directly in the subsequent search (for example for subranges). Returns true if found at least one index.
Return Value
True if at least one index from R was live.
Parameters
Name |
Description |
R |
Ascending sorted range of slot indexes to test. |
O |
Output iterator that receives live indexes from R. |
Created with MrDocs