Home
last modified time | relevance | path

Searched refs:InstIterator (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DInstIterator.h49 InstIterator() = default;
53 InstIterator(const InstIterator<A,B,C,D> &II) in InstIterator() function
57 InstIterator(InstIterator<A,B,C,D> &II) in InstIterator() function
60 template<class M> InstIterator(M &m) in InstIterator() function
68 template<class M> InstIterator(M &m, bool) in InstIterator() function
86 InstIterator& operator++() {
91 inline InstIterator operator++(int) {
92 InstIterator tmp = *this; ++*this; return tmp;
95 InstIterator& operator--() {
103 inline InstIterator operator--(int) {
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp158 for (InstIterator ii = m_to_instrument.begin(), in Instrument()
296 typedef InstVector::iterator InstIterator; typedef in Instrumenter
/llvm-project-15.0.7/llvm/include/llvm/
H A Dmodule.modulemap276 module IR_InstIterator { header "IR/InstIterator.h" export * }
/llvm-project-15.0.7/llvm/docs/
H A DProgrammersManual.rst2561 ``InstIterator`` should be used instead. You'll need to include
2562 ``llvm/IR/InstIterator.h`` (`doxygen
2564 ``InstIterator``\ s explicitly in your code. Here's a small example that shows
2569 #include "llvm/IR/InstIterator.h"
2575 Easy, isn't it? You can also use ``InstIterator``\ s to fill a work list with