blob: 0168bf2624475ae5d50f24b14f57d21087fb7ffe [file] [log] [blame]
Chris Lattner57dbb3a2001-07-23 17:46:59 +00001//===-- STLExtras.h - Useful functions when working with the STL -*- C++ -*--=//
Chris Lattner18d64ed2001-06-21 05:25:51 +00002//
3// This file contains some templates that are useful if you are working with the
4// STL at all.
5//
6// No library is required when using these functinons.
7//
8//===----------------------------------------------------------------------===//
9
Chris Lattner57dbb3a2001-07-23 17:46:59 +000010#ifndef LLVM_SUPPORT_STL_EXTRAS_H
11#define LLVM_SUPPORT_STL_EXTRAS_H
Chris Lattner18d64ed2001-06-21 05:25:51 +000012
13#include <functional>
14
15//===----------------------------------------------------------------------===//
Chris Lattner42e018c2001-06-27 23:32:12 +000016// Extra additions to <functional>
17//===----------------------------------------------------------------------===//
18
19// bind_obj - Often times you want to apply the member function of an object
20// as a unary functor. This macro is shorthand that makes it happen less
21// verbosely.
22//
23// Example:
24// struct Summer { void accumulate(int x); }
25// vector<int> Numbers;
26// Summer MyS;
27// for_each(Numbers.begin(), Numbers.end(),
28// bind_obj(&MyS, &Summer::accumulate));
29//
30// TODO: When I get lots of extra time, convert this from an evil macro
31//
32#define bind_obj(OBJ, METHOD) std::bind1st(std::mem_fun(METHOD), OBJ)
33
34
35// bitwise_or - This is a simple functor that applys operator| on its two
36// arguments to get a boolean result.
37//
38template<class Ty>
Chris Lattner697954c2002-01-20 22:54:45 +000039struct bitwise_or : public std::binary_function<Ty, Ty, bool> {
Chris Lattner42e018c2001-06-27 23:32:12 +000040 bool operator()(const Ty& left, const Ty& right) const {
41 return left | right;
42 }
43};
44
45
Chris Lattner577b15f2001-07-02 01:09:41 +000046// deleter - Very very very simple method that is used to invoke operator
47// delete on something. It is used like this:
48//
49// for_each(V.begin(), B.end(), deleter<cfg::Interval>);
50//
51template <class T>
52static inline void deleter(T *Ptr) {
53 delete Ptr;
54}
55
56
57
Chris Lattner42e018c2001-06-27 23:32:12 +000058//===----------------------------------------------------------------------===//
Chris Lattner18d64ed2001-06-21 05:25:51 +000059// Extra additions to <iterator>
60//===----------------------------------------------------------------------===//
61
62// mapped_iterator - This is a simple iterator adapter that causes a function to
63// be dereferenced whenever operator* is invoked on the iterator.
64//
65// It turns out that this is disturbingly similar to boost::transform_iterator
66//
67#if 1
68template <class RootIt, class UnaryFunc>
69class mapped_iterator {
70 RootIt current;
Chris Lattner643afb32001-09-07 16:30:28 +000071 UnaryFunc Fn;
Chris Lattner18d64ed2001-06-21 05:25:51 +000072public:
Chris Lattner697954c2002-01-20 22:54:45 +000073 typedef typename std::iterator_traits<RootIt>::iterator_category
Chris Lattner18d64ed2001-06-21 05:25:51 +000074 iterator_category;
Chris Lattner697954c2002-01-20 22:54:45 +000075 typedef typename std::iterator_traits<RootIt>::difference_type
Chris Lattner18d64ed2001-06-21 05:25:51 +000076 difference_type;
77 typedef typename UnaryFunc::result_type value_type;
78 typedef typename UnaryFunc::result_type *pointer;
79 typedef void reference; // Can't modify value returned by fn
80
81 typedef RootIt iterator_type;
82 typedef mapped_iterator<RootIt, UnaryFunc> _Self;
83
84 inline RootIt &getCurrent() const { return current; }
85
Chris Lattner643afb32001-09-07 16:30:28 +000086 inline explicit mapped_iterator(const RootIt &I, UnaryFunc F)
87 : current(I), Fn(F) {}
88 inline mapped_iterator(const mapped_iterator &It)
89 : current(It.current), Fn(It.Fn) {}
Chris Lattner18d64ed2001-06-21 05:25:51 +000090
91 inline value_type operator*() const { // All this work to do this
Chris Lattner643afb32001-09-07 16:30:28 +000092 return Fn(*current); // little change
Chris Lattner18d64ed2001-06-21 05:25:51 +000093 }
94
95 _Self& operator++() { ++current; return *this; }
96 _Self& operator--() { --current; return *this; }
97 _Self operator++(int) { _Self __tmp = *this; ++current; return __tmp; }
98 _Self operator--(int) { _Self __tmp = *this; --current; return __tmp; }
99 _Self operator+ (difference_type n) const { return _Self(current + n); }
100 _Self& operator+= (difference_type n) { current += n; return *this; }
101 _Self operator- (difference_type n) const { return _Self(current - n); }
102 _Self& operator-= (difference_type n) { current -= n; return *this; }
103 reference operator[](difference_type n) const { return *(*this + n); }
104
Chris Lattner697954c2002-01-20 22:54:45 +0000105 inline bool operator!=(const _Self &X) const { return !operator==(X); }
Chris Lattner18d64ed2001-06-21 05:25:51 +0000106 inline bool operator==(const _Self &X) const { return current == X.current; }
107 inline bool operator< (const _Self &X) const { return current < X.current; }
108
109 inline difference_type operator-(const _Self &X) const {
110 return current - X.current;
111 }
112};
113
114template <class _Iterator, class Func>
115inline mapped_iterator<_Iterator, Func>
116operator+(typename mapped_iterator<_Iterator, Func>::difference_type N,
117 const mapped_iterator<_Iterator, Func>& X) {
118 return mapped_iterator<_Iterator, Func>(X.getCurrent() - N);
119}
120
121#else
122
123// This fails to work, because some iterators are not classes, for example
124// vector iterators are commonly value_type **'s
125template <class RootIt, class UnaryFunc>
126class mapped_iterator : public RootIt {
Chris Lattner643afb32001-09-07 16:30:28 +0000127 UnaryFunc Fn;
Chris Lattner18d64ed2001-06-21 05:25:51 +0000128public:
129 typedef typename UnaryFunc::result_type value_type;
130 typedef typename UnaryFunc::result_type *pointer;
131 typedef void reference; // Can't modify value returned by fn
132
133 typedef mapped_iterator<RootIt, UnaryFunc> _Self;
134 typedef RootIt super;
135 inline explicit mapped_iterator(const RootIt &I) : super(I) {}
136 inline mapped_iterator(const super &It) : super(It) {}
137
138 inline value_type operator*() const { // All this work to do
Chris Lattner643afb32001-09-07 16:30:28 +0000139 return Fn(super::operator*()); // this little thing
Chris Lattner18d64ed2001-06-21 05:25:51 +0000140 }
141};
142#endif
143
144// map_iterator - Provide a convenient way to create mapped_iterators, just like
145// make_pair is useful for creating pairs...
146//
147template <class ItTy, class FuncTy>
148inline mapped_iterator<ItTy, FuncTy> map_iterator(const ItTy &I, FuncTy F) {
Chris Lattner643afb32001-09-07 16:30:28 +0000149 return mapped_iterator<ItTy, FuncTy>(I, F);
Chris Lattner18d64ed2001-06-21 05:25:51 +0000150}
151
152
Chris Lattner18d64ed2001-06-21 05:25:51 +0000153//===----------------------------------------------------------------------===//
154// Extra additions to <algorithm>
155//===----------------------------------------------------------------------===//
156
Chris Lattner42e018c2001-06-27 23:32:12 +0000157// apply_until - Apply a functor to a sequence continually, unless the
158// functor returns true. Return true if the functor returned true, return false
159// if the functor never returned true.
160//
161template <class InputIt, class Function>
162bool apply_until(InputIt First, InputIt Last, Function Func) {
163 for ( ; First != Last; ++First)
164 if (Func(*First)) return true;
165 return false;
166}
167
168
Chris Lattner18d64ed2001-06-21 05:25:51 +0000169// reduce - Reduce a sequence values into a single value, given an initial
170// value and an operator.
171//
172template <class InputIt, class Function, class ValueType>
173ValueType reduce(InputIt First, InputIt Last, Function Func, ValueType Value) {
174 for ( ; First != Last; ++First)
175 Value = Func(*First, Value);
176 return Value;
177}
178
179#if 1 // This is likely to be more efficient
180
181// reduce_apply - Reduce the result of applying a function to each value in a
182// sequence, given an initial value, an operator, a function, and a sequence.
183//
184template <class InputIt, class Function, class ValueType, class TransFunc>
Chris Lattner42e018c2001-06-27 23:32:12 +0000185inline ValueType reduce_apply(InputIt First, InputIt Last, Function Func,
186 ValueType Value, TransFunc XForm) {
Chris Lattner18d64ed2001-06-21 05:25:51 +0000187 for ( ; First != Last; ++First)
188 Value = Func(XForm(*First), Value);
189 return Value;
190}
191
192#else // This is arguably more elegant
193
194// reduce_apply - Reduce the result of applying a function to each value in a
195// sequence, given an initial value, an operator, a function, and a sequence.
196//
197template <class InputIt, class Function, class ValueType, class TransFunc>
Chris Lattner42e018c2001-06-27 23:32:12 +0000198inline ValueType reduce_apply2(InputIt First, InputIt Last, Function Func,
199 ValueType Value, TransFunc XForm) {
200 return reduce(map_iterator(First, XForm), map_iterator(Last, XForm),
Chris Lattner18d64ed2001-06-21 05:25:51 +0000201 Func, Value);
202}
203#endif
204
205
Chris Lattner42e018c2001-06-27 23:32:12 +0000206// reduce_apply_bool - Reduce the result of applying a (bool returning) function
207// to each value in a sequence. All of the bools returned by the mapped
208// function are bitwise or'd together, and the result is returned.
Chris Lattner3704c8c2001-06-25 03:54:32 +0000209//
Chris Lattner42e018c2001-06-27 23:32:12 +0000210template <class InputIt, class Function>
211inline bool reduce_apply_bool(InputIt First, InputIt Last, Function Func) {
212 return reduce_apply(First, Last, bitwise_or<bool>(), false, Func);
213}
Chris Lattner18d64ed2001-06-21 05:25:51 +0000214
Chris Lattner643afb32001-09-07 16:30:28 +0000215
216// map - This function maps the specified input sequence into the specified
217// output iterator, applying a unary function in between.
218//
219template <class InIt, class OutIt, class Functor>
220inline OutIt mapto(InIt Begin, InIt End, OutIt Dest, Functor F) {
221 return copy(map_iterator(Begin, F), map_iterator(End, F), Dest);
222}
Chris Lattner18d64ed2001-06-21 05:25:51 +0000223#endif