2017-01-17 03:11:41 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#ifndef RecurseGuard_h__
|
|
|
|
#define RecurseGuard_h__
|
|
|
|
|
|
|
|
#include "Utils.h"
|
|
|
|
|
|
|
|
// This class acts as a tracker for avoiding infinite recursion when traversing
|
|
|
|
// chains in CFGs etc.
|
|
|
|
//
|
|
|
|
// Constructing a RecurseGuard sets up a shared backing store which tracks the
|
|
|
|
// currently observed objects. Whenever recursing, use RecurseGuard.recurse(T)
|
|
|
|
// to construct another RecurseGuard with the same backing store.
|
|
|
|
//
|
|
|
|
// The RecurseGuard object will unregister its object when it is destroyed, and
|
|
|
|
// has a method `isRepeat()` which will return `true` if the item was already
|
|
|
|
// seen.
|
2017-10-20 20:11:50 +03:00
|
|
|
template <typename T> class RecurseGuard {
|
2017-01-17 03:11:41 +03:00
|
|
|
public:
|
|
|
|
RecurseGuard(T Thing) : Thing(Thing), Set(new DenseSet<T>()), Repeat(false) {
|
|
|
|
Set->insert(Thing);
|
|
|
|
}
|
2017-10-20 20:11:50 +03:00
|
|
|
RecurseGuard(T Thing, std::shared_ptr<DenseSet<T>> &Set)
|
|
|
|
: Thing(Thing), Set(Set), Repeat(false) {
|
2017-01-17 03:11:41 +03:00
|
|
|
Repeat = !Set->insert(Thing).second;
|
|
|
|
}
|
|
|
|
RecurseGuard(const RecurseGuard &) = delete;
|
2017-10-20 20:11:50 +03:00
|
|
|
RecurseGuard(RecurseGuard &&Other)
|
|
|
|
: Thing(Other.Thing), Set(Other.Set), Repeat(Other.Repeat) {
|
2017-01-17 03:11:41 +03:00
|
|
|
Other.Repeat = true;
|
|
|
|
}
|
|
|
|
~RecurseGuard() {
|
|
|
|
if (!Repeat) {
|
|
|
|
Set->erase(Thing);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isRepeat() { return Repeat; }
|
|
|
|
|
|
|
|
T get() { return Thing; }
|
|
|
|
|
2017-10-20 20:11:50 +03:00
|
|
|
operator T() { return Thing; }
|
2017-01-17 03:11:41 +03:00
|
|
|
|
2017-10-20 20:11:50 +03:00
|
|
|
T operator->() { return Thing; }
|
2017-01-17 03:11:41 +03:00
|
|
|
|
2017-10-20 20:11:50 +03:00
|
|
|
RecurseGuard recurse(T NewThing) { return RecurseGuard(NewThing, Set); }
|
2017-01-17 03:11:41 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
T Thing;
|
|
|
|
std::shared_ptr<DenseSet<T>> Set;
|
|
|
|
bool Repeat;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // RecurseGuard_h__
|