source: src/Common/utility.h@ 6180274

ADT ast-experimental enum forall-pointer-decay pthread-emulation qualifiedEnum
Last change on this file since 6180274 was 490fb92e, checked in by Fangren Yu <f37yu@…>, 5 years ago

move FixInit to new ast

  • Property mode set to 100644
File size: 15.2 KB
RevLine 
[51587aa]1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
[60089f4]7// utility.h --
[51587aa]8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
[9dc31c10]11// Last Modified By : Peter A. Buhr
[8abca06]12// Last Modified On : Tue Feb 11 13:00:36 2020
13// Update Count : 50
[51587aa]14//
[01aeade]15
[6b0b624]16#pragma once
[51b73452]17
[234b1cb]18#include <cassert>
[e491159]19#include <cctype>
[940bba3]20#include <algorithm>
[2e30d47]21#include <functional>
[51b73452]22#include <iostream>
23#include <iterator>
24#include <list>
[e491159]25#include <memory>
26#include <sstream>
27#include <string>
[55a68c3]28#include <type_traits>
[fbecee5]29#include <utility>
[234b1cb]30#include <vector>
[8abca06]31#include <cstring> // memcmp
[be9288a]32
[50377a4]33#include "Common/Indenter.h"
34
[5cbacf1]35class Expression;
36
[c1ed2ee]37/// bring std::move into global scope
38using std::move;
39
40/// partner to move that copies any copyable type
41template<typename T>
42T copy( const T & x ) { return x; }
43
[51b73452]44template< typename T >
[01aeade]45static inline T * maybeClone( const T *orig ) {
46 if ( orig ) {
47 return orig->clone();
48 } else {
49 return 0;
50 } // if
[51b73452]51}
52
[a7741435]53template< typename T, typename U >
[e04ef3a]54struct maybeBuild_t {
55 static T * doit( const U *orig ) {
56 if ( orig ) {
57 return orig->build();
58 } else {
59 return 0;
60 } // if
61 }
62};
63
[51b73452]64template< typename T, typename U >
[01aeade]65static inline T * maybeBuild( const U *orig ) {
[e04ef3a]66 return maybeBuild_t<T,U>::doit(orig);
[51b73452]67}
68
[7ecbb7e]69template< typename T, typename U >
70static inline T * maybeMoveBuild( const U *orig ) {
71 T* ret = maybeBuild<T>(orig);
72 delete orig;
73 return ret;
74}
75
[51b73452]76template< typename Input_iterator >
[01aeade]77void printEnums( Input_iterator begin, Input_iterator end, const char * const *name_array, std::ostream &os ) {
78 for ( Input_iterator i = begin; i != end; ++i ) {
79 os << name_array[ *i ] << ' ';
80 } // for
[51b73452]81}
82
83template< typename Container >
[8abee136]84void deleteAll( const Container &container ) {
85 for ( const auto &i : container ) {
86 delete i;
[01aeade]87 } // for
[51b73452]88}
89
90template< typename Container >
[50377a4]91void printAll( const Container &container, std::ostream &os, Indenter indent = {} ) {
[01aeade]92 for ( typename Container::const_iterator i = container.begin(); i != container.end(); ++i ) {
93 if ( *i ) {
[50377a4]94 os << indent;
95 (*i)->print( os, indent );
[60089f4]96 // need an endl after each element because it's not easy to know when each individual item should end
[01aeade]97 os << std::endl;
98 } // if
99 } // for
[51b73452]100}
101
102template< typename SrcContainer, typename DestContainer >
[01aeade]103void cloneAll( const SrcContainer &src, DestContainer &dest ) {
104 typename SrcContainer::const_iterator in = src.begin();
105 std::back_insert_iterator< DestContainer > out( dest );
106 while ( in != src.end() ) {
107 *out++ = (*in++)->clone();
108 } // while
[51b73452]109}
110
[54c9000]111template< typename SrcContainer, typename DestContainer, typename Predicate >
112void cloneAll_if( const SrcContainer &src, DestContainer &dest, Predicate pred ) {
113 std::back_insert_iterator< DestContainer > out( dest );
114 for ( auto x : src ) {
115 if ( pred(x) ) {
116 *out++ = x->clone();
117 }
118 } // while
119}
120
[51b73452]121template< typename Container >
[01aeade]122void assertAll( const Container &container ) {
123 int count = 0;
124 for ( typename Container::const_iterator i = container.begin(); i != container.end(); ++i ) {
125 if ( !(*i) ) {
126 std::cerr << count << " is null" << std::endl;
127 } // if
128 } // for
129}
130
[51b73452]131template < typename T >
[01aeade]132std::list<T> tail( std::list<T> l ) {
133 if ( ! l.empty() ) {
134 std::list<T> ret(++(l.begin()), l.end());
135 return ret;
136 } // if
[51b73452]137}
138
139template < typename T >
140std::list<T> flatten( std::list < std::list<T> > l) {
[01aeade]141 typedef std::list <T> Ts;
[51b73452]142
[01aeade]143 Ts ret;
[51b73452]144
[a08ba92]145 switch ( l.size() ) {
[01aeade]146 case 0:
147 return ret;
148 case 1:
149 return l.front();
150 default:
151 ret = flatten(tail(l));
152 ret.insert(ret.begin(), l.front().begin(), l.front().end());
153 return ret;
154 } // switch
[51b73452]155}
156
[234b1cb]157/// Splice src onto the end of dst, clearing src
158template< typename T >
159void splice( std::vector< T > & dst, std::vector< T > & src ) {
160 dst.reserve( dst.size() + src.size() );
161 for ( T & x : src ) { dst.emplace_back( std::move( x ) ); }
162 src.clear();
163}
164
165/// Splice src onto the begining of dst, clearing src
166template< typename T >
167void spliceBegin( std::vector< T > & dst, std::vector< T > & src ) {
168 splice( src, dst );
169 dst.swap( src );
170}
171
[60089f4]172template < typename T >
[2298f728]173void toString_single( std::ostream & os, const T & value ) {
[79970ed]174 os << value;
175}
176
177template < typename T, typename... Params >
[2298f728]178void toString_single( std::ostream & os, const T & value, const Params & ... params ) {
[79970ed]179 os << value;
180 toString_single( os, params ... );
181}
182
183template < typename ... Params >
[2298f728]184std::string toString( const Params & ... params ) {
[5f2f2d7]185 std::ostringstream os;
[79970ed]186 toString_single( os, params... );
[5f2f2d7]187 return os.str();
[51b73452]188}
189
[babeeda]190#define toCString( ... ) toString( __VA_ARGS__ ).c_str()
191
[3c13c03]192// replace element of list with all elements of another list
[51b73452]193template< typename T >
194void replace( std::list< T > &org, typename std::list< T >::iterator pos, std::list< T > &with ) {
[01aeade]195 typename std::list< T >::iterator next = pos; advance( next, 1 );
[51b73452]196
[01aeade]197 //if ( next != org.end() ) {
[a08ba92]198 org.erase( pos );
199 org.splice( next, with );
200 //}
[51b73452]201
[01aeade]202 return;
[51b73452]203}
204
[3c13c03]205// replace range of a list with a single element
206template< typename T >
207void replace( std::list< T > &org, typename std::list< T >::iterator begin, typename std::list< T >::iterator end, const T & with ) {
208 org.insert( begin, with );
209 org.erase( begin, end );
210}
211
[940bba3]212template< typename... Args >
213auto filter(Args&&... args) -> decltype(std::copy_if(std::forward<Args>(args)...)) {
214 return std::copy_if(std::forward<Args>(args)...);
[51b73452]215}
216
[2bf9c37]217template <typename E, typename UnaryPredicate, template< typename, typename...> class Container, typename... Args >
218void filter( Container< E *, Args... > & container, UnaryPredicate pred, bool doDelete ) {
219 auto i = begin( container );
220 while ( i != end( container ) ) {
221 auto it = next( i );
222 if ( pred( *i ) ) {
223 if ( doDelete ) {
224 delete *i;
225 } // if
226 container.erase( i );
227 } // if
228 i = it;
229 } // while
230}
231
[940bba3]232template< typename... Args >
233auto zip(Args&&... args) -> decltype(zipWith(std::forward<Args>(args)..., std::make_pair)) {
234 return zipWith(std::forward<Args>(args)..., std::make_pair);
[51b73452]235}
236
237template< class InputIterator1, class InputIterator2, class OutputIterator, class BinFunction >
238void zipWith( InputIterator1 b1, InputIterator1 e1, InputIterator2 b2, InputIterator2 e2, OutputIterator out, BinFunction func ) {
[01aeade]239 while ( b1 != e1 && b2 != e2 )
240 *out++ = func(*b1++, *b2++);
[51b73452]241}
242
[d939274]243// it's nice to actually be able to increment iterators by an arbitrary amount
[940bba3]244template< class InputIt, class Distance >
245InputIt operator+( InputIt it, Distance n ) {
246 advance(it, n);
247 return it;
[d939274]248}
249
[79970ed]250template< typename T >
251void warn_single( const T & arg ) {
252 std::cerr << arg << std::endl;
253}
254
255template< typename T, typename... Params >
256void warn_single(const T & arg, const Params & ... params ) {
257 std::cerr << arg;
258 warn_single( params... );
259}
260
261template< typename... Params >
262void warn( const Params & ... params ) {
263 std::cerr << "Warning: ";
264 warn_single( params... );
265}
266
[8abca06]267// determines if pref is a prefix of str
268static inline bool isPrefix( const std::string & str, const std::string & pref, unsigned int start = 0 ) {
[bc3127d]269 if ( pref.size() > str.size() ) return false;
[8abca06]270 return 0 == memcmp( str.c_str() + start, pref.c_str(), pref.size() );
271 // return prefix == full.substr(0, prefix.size()); // for future, requires c++17
[bc3127d]272}
273
[940bba3]274// -----------------------------------------------------------------------------
275// Ref Counted Singleton class
276// Objects that inherit from this class will have at most one reference to it
277// but if all references die, the object will be deleted.
278
[e491159]279template< typename ThisType >
280class RefCountSingleton {
281 public:
282 static std::shared_ptr<ThisType> get() {
283 if( global_instance.expired() ) {
284 std::shared_ptr<ThisType> new_instance = std::make_shared<ThisType>();
285 global_instance = new_instance;
286 return std::move(new_instance);
287 }
288 return global_instance.lock();
289 }
290 private:
291 static std::weak_ptr<ThisType> global_instance;
292};
293
[1f75e2d]294template< typename ThisType >
295std::weak_ptr<ThisType> RefCountSingleton<ThisType>::global_instance;
296
[940bba3]297// -----------------------------------------------------------------------------
[c8dfcd3]298// RAII object to regulate "save and restore" behaviour, e.g.
299// void Foo::bar() {
300// ValueGuard<int> guard(var); // var is a member of type Foo
301// var = ...;
302// } // var's original value is restored
303template< typename T >
304struct ValueGuard {
305 T old;
306 T& ref;
307
308 ValueGuard(T& inRef) : old(inRef), ref(inRef) {}
309 ~ValueGuard() { ref = old; }
310};
311
[134322e]312template< typename T >
313struct ValueGuardPtr {
314 T old;
315 T* ref;
316
317 ValueGuardPtr(T * inRef) : old( inRef ? *inRef : T() ), ref(inRef) {}
318 ~ValueGuardPtr() { if( ref ) *ref = old; }
319};
320
[234223f]321template< typename aT >
322struct FuncGuard {
323 aT m_after;
324
325 template< typename bT >
326 FuncGuard( bT before, aT after ) : m_after( after ) {
327 before();
328 }
329
330 ~FuncGuard() {
331 m_after();
332 }
333};
334
335template< typename bT, typename aT >
336FuncGuard<aT> makeFuncGuard( bT && before, aT && after ) {
337 return FuncGuard<aT>( std::forward<bT>(before), std::forward<aT>(after) );
338}
339
[134322e]340template< typename T >
341struct ValueGuardPtr< std::list< T > > {
342 std::list< T > old;
343 std::list< T >* ref;
344
345 ValueGuardPtr( std::list< T > * inRef) : old(), ref(inRef) {
346 if( ref ) { swap( *ref, old ); }
347 }
348 ~ValueGuardPtr() { if( ref ) { swap( *ref, old ); } }
349};
350
[940bba3]351// -----------------------------------------------------------------------------
352// Helper struct and function to support
353// for ( val : reverseIterate( container ) ) {}
354// syntax to have a for each that iterates backwards
355
[44f6341]356template< typename T >
[4a9ccc3]357struct reverse_iterate_t {
[44f6341]358 T& ref;
359
[4a9ccc3]360 reverse_iterate_t( T & ref ) : ref(ref) {}
[44f6341]361
[490fb92e]362 // this does NOT work on const T!!!
363 // typedef typename T::reverse_iterator iterator;
364 auto begin() { return ref.rbegin(); }
365 auto end() { return ref.rend(); }
[44f6341]366};
367
368template< typename T >
[4a9ccc3]369reverse_iterate_t< T > reverseIterate( T & ref ) {
370 return reverse_iterate_t< T >( ref );
[44f6341]371}
372
[3ad7978]373template< typename OutType, typename Range, typename Functor >
374OutType map_range( const Range& range, Functor&& functor ) {
375 OutType out;
376
377 std::transform(
378 begin( range ),
379 end( range ),
380 std::back_inserter( out ),
381 std::forward< Functor >( functor )
382 );
383
384 return out;
385}
386
[4a9ccc3]387// -----------------------------------------------------------------------------
388// Helper struct and function to support
389// for ( val : group_iterate( container1, container2, ... ) ) {}
390// syntax to have a for each that iterates multiple containers of the same length
[55a68c3]391// TODO: update to use variadic arguments
[4a9ccc3]392
393template< typename T1, typename T2 >
394struct group_iterate_t {
[50377a4]395private:
396 std::tuple<T1, T2> args;
397public:
[6d267ca]398 group_iterate_t( bool skipBoundsCheck, const T1 & v1, const T2 & v2 ) : args(v1, v2) {
[3c09d47]399 assertf(skipBoundsCheck || v1.size() == v2.size(), "group iteration requires containers of the same size: <%zd, %zd>.", v1.size(), v2.size());
[4a9ccc3]400 };
401
[50377a4]402 typedef std::tuple<decltype(*std::get<0>(args).begin()), decltype(*std::get<1>(args).begin())> value_type;
403 typedef decltype(std::get<0>(args).begin()) T1Iter;
404 typedef decltype(std::get<1>(args).begin()) T2Iter;
405
[4a9ccc3]406 struct iterator {
407 typedef std::tuple<T1Iter, T2Iter> IterTuple;
408 IterTuple it;
409 iterator( T1Iter i1, T2Iter i2 ) : it( i1, i2 ) {}
410 iterator operator++() {
411 return iterator( ++std::get<0>(it), ++std::get<1>(it) );
412 }
413 bool operator!=( const iterator &other ) const { return it != other.it; }
[55a68c3]414 value_type operator*() const { return std::tie( *std::get<0>(it), *std::get<1>(it) ); }
[4a9ccc3]415 };
[50377a4]416
[4a9ccc3]417 iterator begin() { return iterator( std::get<0>(args).begin(), std::get<1>(args).begin() ); }
418 iterator end() { return iterator( std::get<0>(args).end(), std::get<1>(args).end() ); }
419};
420
[6d267ca]421/// performs bounds check to ensure that all arguments are of the same length.
[4a9ccc3]422template< typename... Args >
[55a68c3]423group_iterate_t<Args...> group_iterate( Args &&... args ) {
[6d267ca]424 return group_iterate_t<Args...>(false, std::forward<Args>( args )...);
425}
426
427/// does not perform a bounds check - requires user to ensure that iteration terminates when appropriate.
428template< typename... Args >
429group_iterate_t<Args...> unsafe_group_iterate( Args &&... args ) {
430 return group_iterate_t<Args...>(true, std::forward<Args>( args )...);
[4a9ccc3]431}
[294647b]432
[108f3cdb]433// -----------------------------------------------------------------------------
434// Helper struct and function to support
435// for ( val : lazy_map( container1, f ) ) {}
436// syntax to have a for each that iterates a container, mapping each element by applying f
437template< typename T, typename Func >
438struct lambda_iterate_t {
[4639b0d]439 const T & ref;
440 std::function<Func> f;
[108f3cdb]441
442 struct iterator {
443 typedef decltype(begin(ref)) Iter;
444 Iter it;
[4639b0d]445 std::function<Func> f;
446 iterator( Iter it, std::function<Func> f ) : it(it), f(f) {}
[108f3cdb]447 iterator & operator++() {
448 ++it; return *this;
449 }
450 bool operator!=( const iterator &other ) const { return it != other.it; }
451 auto operator*() const -> decltype(f(*it)) { return f(*it); }
452 };
453
[4639b0d]454 lambda_iterate_t( const T & ref, std::function<Func> f ) : ref(ref), f(f) {}
[108f3cdb]455
456 auto begin() const -> decltype(iterator(std::begin(ref), f)) { return iterator(std::begin(ref), f); }
457 auto end() const -> decltype(iterator(std::end(ref), f)) { return iterator(std::end(ref), f); }
458};
459
460template< typename... Args >
[4639b0d]461lambda_iterate_t<Args...> lazy_map( const Args &... args ) {
462 return lambda_iterate_t<Args...>( args...);
[108f3cdb]463}
464
[9dc31c10]465// -----------------------------------------------------------------------------
[f14d956]466// O(1) polymorphic integer ilog2, using clz, which returns the number of leading 0-bits, starting at the most
[9dc31c10]467// significant bit (single instruction on x86)
468
469template<typename T>
[d28a03e]470inline
[b6d7f44]471#if defined(__GNUC__) && __GNUC__ > 4
[d28a03e]472constexpr
473#endif
474T ilog2(const T & t) {
475 if(std::is_integral<T>::value) {
[9dc31c10]476 const constexpr int r = sizeof(t) * __CHAR_BIT__ - 1;
[d28a03e]477 if( sizeof(T) == sizeof(unsigned int) ) return r - __builtin_clz ( t );
478 if( sizeof(T) == sizeof(unsigned long) ) return r - __builtin_clzl ( t );
479 if( sizeof(T) == sizeof(unsigned long long) ) return r - __builtin_clzll( t );
480 }
481 assert(false);
[9dc31c10]482 return -1;
[01b8ccf1]483} // ilog2
[108f3cdb]484
[5cbacf1]485// -----------------------------------------------------------------------------
486/// evaluates expr as a long long int. If second is false, expr could not be evaluated
[77d2432]487std::pair<long long int, bool> eval(const Expression * expr);
[108f3cdb]488
[87701b6]489namespace ast {
490 class Expr;
491}
492
493std::pair<long long int, bool> eval(const ast::Expr * expr);
494
[fbecee5]495// -----------------------------------------------------------------------------
[87701b6]496/// Reorders the input range in-place so that the minimal-value elements according to the
497/// comparator are in front;
[fbecee5]498/// returns the iterator after the last minimal-value element.
499template<typename Iter, typename Compare>
500Iter sort_mins( Iter begin, Iter end, Compare& lt ) {
501 if ( begin == end ) return end;
[87701b6]502
[fbecee5]503 Iter min_pos = begin;
504 for ( Iter i = begin + 1; i != end; ++i ) {
505 if ( lt( *i, *min_pos ) ) {
506 // new minimum cost; swap into first position
507 min_pos = begin;
508 std::iter_swap( min_pos, i );
509 } else if ( ! lt( *min_pos, *i ) ) {
510 // duplicate minimum cost; swap into next minimum position
511 ++min_pos;
512 std::iter_swap( min_pos, i );
513 }
514 }
515 return ++min_pos;
516}
517
518template<typename Iter, typename Compare>
519inline Iter sort_mins( Iter begin, Iter end, Compare&& lt ) {
520 return sort_mins( begin, end, lt );
521}
522
523/// sort_mins defaulted to use std::less
524template<typename Iter>
525inline Iter sort_mins( Iter begin, Iter end ) {
526 return sort_mins( begin, end, std::less<typename std::iterator_traits<Iter>::value_type>{} );
527}
528
[51587aa]529// Local Variables: //
530// tab-width: 4 //
531// mode: c++ //
532// compile-command: "make install" //
533// End: //
Note: See TracBrowser for help on using the repository browser.