LLVM 20.0.0git
|
This iterator provides a convenient way to iterate over the elements of an llvm.global_ctors/llvm.global_dtors instance. More...
#include "llvm/ExecutionEngine/Orc/ExecutionUtils.h"
Classes | |
struct | Element |
Accessor for an element of the global_ctors/global_dtors array. More... | |
Public Member Functions | |
CtorDtorIterator (const GlobalVariable *GV, bool End) | |
Construct an iterator instance. | |
bool | operator== (const CtorDtorIterator &Other) const |
Test iterators for equality. | |
bool | operator!= (const CtorDtorIterator &Other) const |
Test iterators for inequality. | |
CtorDtorIterator & | operator++ () |
Pre-increment iterator. | |
CtorDtorIterator | operator++ (int) |
Post-increment iterator. | |
Element | operator* () const |
Dereference iterator. | |
This iterator provides a convenient way to iterate over the elements of an llvm.global_ctors/llvm.global_dtors instance.
The easiest way to get hold of instances of this class is to use the getConstructors/getDestructors functions.
Definition at line 51 of file ExecutionUtils.h.
llvm::orc::CtorDtorIterator::CtorDtorIterator | ( | const GlobalVariable * | GV, |
bool | End | ||
) |
Construct an iterator instance.
If End is true then this iterator acts as the end of the range, otherwise it is the beginning.
Definition at line 28 of file ExecutionUtils.cpp.
bool llvm::orc::CtorDtorIterator::operator!= | ( | const CtorDtorIterator & | Other | ) | const |
Test iterators for inequality.
Definition at line 39 of file ExecutionUtils.cpp.
References llvm::Other.
CtorDtorIterator::Element llvm::orc::CtorDtorIterator::operator* | ( | ) | const |
Dereference iterator.
The resulting value provides a read-only view of this element of the global_ctors/global_dtors list.
Definition at line 54 of file ExecutionUtils.cpp.
References assert(), llvm::Data, F, llvm::User::getNumOperands(), and llvm::User::getOperand().
CtorDtorIterator & llvm::orc::CtorDtorIterator::operator++ | ( | ) |
Pre-increment iterator.
Definition at line 43 of file ExecutionUtils.cpp.
CtorDtorIterator llvm::orc::CtorDtorIterator::operator++ | ( | int | ) |
Post-increment iterator.
Definition at line 48 of file ExecutionUtils.cpp.
bool llvm::orc::CtorDtorIterator::operator== | ( | const CtorDtorIterator & | Other | ) | const |
Test iterators for equality.
Definition at line 34 of file ExecutionUtils.cpp.
References assert(), and llvm::Other.