[llvm-commits] CVS: llvm/include/llvm/Support/InstIterator.h
Chris Lattner
lattner at cs.uiuc.edu
Tue Apr 27 10:12:02 PDT 2004
Changes in directory llvm/include/llvm/Support:
InstIterator.h updated: 1.9 -> 1.10
---
Log message:
Changes to fix up the inst_iterator to pass to boost iterator checks. This
patch was graciously contributed by Vladimir Prus.
---
Diffs of the changes: (+18 -15)
Index: llvm/include/llvm/Support/InstIterator.h
diff -u llvm/include/llvm/Support/InstIterator.h:1.9 llvm/include/llvm/Support/InstIterator.h:1.10
--- llvm/include/llvm/Support/InstIterator.h:1.9 Tue Nov 11 16:41:31 2003
+++ llvm/include/llvm/Support/InstIterator.h Tue Apr 27 10:11:58 2004
@@ -33,15 +33,18 @@
typedef _BB_i_t BBIty;
typedef _BI_t BIty;
typedef _II_t IIty;
- _BB_t &BBs; // BasicBlocksType
+ _BB_t *BBs; // BasicBlocksType
_BB_i_t BB; // BasicBlocksType::iterator
_BI_t BI; // BasicBlock::iterator
public:
typedef std::bidirectional_iterator_tag iterator_category;
typedef IIty value_type;
- typedef unsigned difference_type;
- typedef BIty pointer;
- typedef IIty reference;
+ typedef signed difference_type;
+ typedef IIty* pointer;
+ typedef IIty& reference;
+
+ // Default constructor
+ InstIterator() {}
// Copy constructor...
template<typename A, typename B, typename C, typename D>
@@ -53,26 +56,26 @@
: BBs(II.BBs), BB(II.BB), BI(II.BI) {}
template<class M> InstIterator(M &m)
- : BBs(m.getBasicBlockList()), BB(BBs.begin()) { // begin ctor
- if (BB != BBs.end()) {
+ : BBs(&m.getBasicBlockList()), BB(BBs->begin()) { // begin ctor
+ if (BB != BBs->end()) {
BI = BB->begin();
advanceToNextBB();
}
}
template<class M> InstIterator(M &m, bool)
- : BBs(m.getBasicBlockList()), BB(BBs.end()) { // end ctor
+ : BBs(&m.getBasicBlockList()), BB(BBs->end()) { // end ctor
}
// Accessors to get at the underlying iterators...
inline BBIty &getBasicBlockIterator() { return BB; }
inline BIty &getInstructionIterator() { return BI; }
- inline IIty operator*() const { return BI; }
- inline IIty operator->() const { return operator*(); }
+ inline reference operator*() const { return *BI; }
+ inline pointer operator->() const { return &operator*(); }
inline bool operator==(const InstIterator &y) const {
- return BB == y.BB && (BB == BBs.end() || BI == y.BI);
+ return BB == y.BB && (BB == BBs->end() || BI == y.BI);
}
inline bool operator!=(const InstIterator& y) const {
return !operator==(y);
@@ -88,7 +91,7 @@
}
InstIterator& operator--() {
- while (BB == BBs.end() || BI == BB->begin()) {
+ while (BB == BBs->end() || BI == BB->begin()) {
--BB;
BI = BB->end();
}
@@ -99,7 +102,7 @@
InstIterator tmp = *this; --*this; return tmp;
}
- inline bool atEnd() const { return BB == BBs.end(); }
+ inline bool atEnd() const { return BB == BBs->end(); }
private:
inline void advanceToNextBB() {
@@ -107,7 +110,7 @@
// the end() of the current BasicBlock and there are successor BBs.
while (BI == BB->end()) {
++BB;
- if (BB == BBs.end()) break;
+ if (BB == BBs->end()) break;
BI = BB->begin();
}
}
@@ -116,11 +119,11 @@
typedef InstIterator<iplist<BasicBlock>,
Function::iterator, BasicBlock::iterator,
- Instruction*> inst_iterator;
+ Instruction> inst_iterator;
typedef InstIterator<const iplist<BasicBlock>,
Function::const_iterator,
BasicBlock::const_iterator,
- const Instruction*> const_inst_iterator;
+ const Instruction> const_inst_iterator;
inline inst_iterator inst_begin(Function *F) { return inst_iterator(*F); }
inline inst_iterator inst_end(Function *F) { return inst_iterator(*F, true); }
More information about the llvm-commits
mailing list