enumerable_thread_specific.h 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  1. /*
  2. Copyright 2005-2013 Intel Corporation. All Rights Reserved.
  3. This file is part of Threading Building Blocks.
  4. Threading Building Blocks is free software; you can redistribute it
  5. and/or modify it under the terms of the GNU General Public License
  6. version 2 as published by the Free Software Foundation.
  7. Threading Building Blocks is distributed in the hope that it will be
  8. useful, but WITHOUT ANY WARRANTY; without even the implied warranty
  9. of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with Threading Building Blocks; if not, write to the Free Software
  13. Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  14. As a special exception, you may use this file as part of a free software
  15. library without restriction. Specifically, if other files instantiate
  16. templates or use macros or inline functions from this file, or you compile
  17. this file and link it with other files to produce an executable, this
  18. file does not by itself cause the resulting executable to be covered by
  19. the GNU General Public License. This exception does not however
  20. invalidate any other reasons why the executable file might be covered by
  21. the GNU General Public License.
  22. */
  23. #ifndef __TBB_enumerable_thread_specific_H
  24. #define __TBB_enumerable_thread_specific_H
  25. #include "concurrent_vector.h"
  26. #include "tbb_thread.h"
  27. #include "tbb_allocator.h"
  28. #include "cache_aligned_allocator.h"
  29. #include "aligned_space.h"
  30. #include <string.h> // for memcpy
  31. #if _WIN32||_WIN64
  32. #include "machine/windows_api.h"
  33. #else
  34. #include <pthread.h>
  35. #endif
  36. namespace tbb {
  37. //! enum for selecting between single key and key-per-instance versions
  38. enum ets_key_usage_type { ets_key_per_instance, ets_no_key };
  39. namespace interface6 {
  40. //! @cond
  41. namespace internal {
  42. template<ets_key_usage_type ETS_key_type>
  43. class ets_base: tbb::internal::no_copy {
  44. protected:
  45. #if _WIN32||_WIN64
  46. typedef DWORD key_type;
  47. #else
  48. typedef pthread_t key_type;
  49. #endif
  50. #if __TBB_PROTECTED_NESTED_CLASS_BROKEN
  51. public:
  52. #endif
  53. struct slot;
  54. struct array {
  55. array* next;
  56. size_t lg_size;
  57. slot& at( size_t k ) {
  58. return ((slot*)(void*)(this+1))[k];
  59. }
  60. size_t size() const {return (size_t)1<<lg_size;}
  61. size_t mask() const {return size()-1;}
  62. size_t start( size_t h ) const {
  63. return h>>(8*sizeof(size_t)-lg_size);
  64. }
  65. };
  66. struct slot {
  67. key_type key;
  68. void* ptr;
  69. bool empty() const {return !key;}
  70. bool match( key_type k ) const {return key==k;}
  71. bool claim( key_type k ) {
  72. __TBB_ASSERT(sizeof(tbb::atomic<key_type>)==sizeof(key_type), NULL);
  73. return tbb::internal::punned_cast<tbb::atomic<key_type>*>(&key)->compare_and_swap(k,0)==0;
  74. }
  75. };
  76. #if __TBB_PROTECTED_NESTED_CLASS_BROKEN
  77. protected:
  78. #endif
  79. static key_type key_of_current_thread() {
  80. tbb::tbb_thread::id id = tbb::this_tbb_thread::get_id();
  81. key_type k;
  82. memcpy( &k, &id, sizeof(k) );
  83. return k;
  84. }
  85. //! Root of linked list of arrays of decreasing size.
  86. /** NULL if and only if my_count==0.
  87. Each array in the list is half the size of its predecessor. */
  88. atomic<array*> my_root;
  89. atomic<size_t> my_count;
  90. virtual void* create_local() = 0;
  91. virtual void* create_array(size_t _size) = 0; // _size in bytes
  92. virtual void free_array(void* ptr, size_t _size) = 0; // _size in bytes
  93. array* allocate( size_t lg_size ) {
  94. size_t n = 1<<lg_size;
  95. array* a = static_cast<array*>(create_array( sizeof(array)+n*sizeof(slot) ));
  96. a->lg_size = lg_size;
  97. std::memset( a+1, 0, n*sizeof(slot) );
  98. return a;
  99. }
  100. void free(array* a) {
  101. size_t n = 1<<(a->lg_size);
  102. free_array( (void *)a, size_t(sizeof(array)+n*sizeof(slot)) );
  103. }
  104. static size_t hash( key_type k ) {
  105. // Multiplicative hashing. Client should use *upper* bits.
  106. // casts required for Mac gcc4.* compiler
  107. return uintptr_t(k)*tbb::internal::select_size_t_constant<0x9E3779B9,0x9E3779B97F4A7C15ULL>::value;
  108. }
  109. ets_base() {my_root=NULL; my_count=0;}
  110. virtual ~ets_base(); // g++ complains if this is not virtual...
  111. void* table_lookup( bool& exists );
  112. void table_clear();
  113. slot& table_find( key_type k ) {
  114. size_t h = hash(k);
  115. array* r = my_root;
  116. size_t mask = r->mask();
  117. for(size_t i = r->start(h);;i=(i+1)&mask) {
  118. slot& s = r->at(i);
  119. if( s.empty() || s.match(k) )
  120. return s;
  121. }
  122. }
  123. void table_reserve_for_copy( const ets_base& other ) {
  124. __TBB_ASSERT(!my_root,NULL);
  125. __TBB_ASSERT(!my_count,NULL);
  126. if( other.my_root ) {
  127. array* a = allocate(other.my_root->lg_size);
  128. a->next = NULL;
  129. my_root = a;
  130. my_count = other.my_count;
  131. }
  132. }
  133. };
  134. template<ets_key_usage_type ETS_key_type>
  135. ets_base<ETS_key_type>::~ets_base() {
  136. __TBB_ASSERT(!my_root, NULL);
  137. }
  138. template<ets_key_usage_type ETS_key_type>
  139. void ets_base<ETS_key_type>::table_clear() {
  140. while( array* r = my_root ) {
  141. my_root = r->next;
  142. free(r);
  143. }
  144. my_count = 0;
  145. }
  146. template<ets_key_usage_type ETS_key_type>
  147. void* ets_base<ETS_key_type>::table_lookup( bool& exists ) {
  148. const key_type k = key_of_current_thread();
  149. __TBB_ASSERT(k!=0,NULL);
  150. void* found;
  151. size_t h = hash(k);
  152. for( array* r=my_root; r; r=r->next ) {
  153. size_t mask=r->mask();
  154. for(size_t i = r->start(h); ;i=(i+1)&mask) {
  155. slot& s = r->at(i);
  156. if( s.empty() ) break;
  157. if( s.match(k) ) {
  158. if( r==my_root ) {
  159. // Success at top level
  160. exists = true;
  161. return s.ptr;
  162. } else {
  163. // Success at some other level. Need to insert at top level.
  164. exists = true;
  165. found = s.ptr;
  166. goto insert;
  167. }
  168. }
  169. }
  170. }
  171. // Key does not yet exist
  172. exists = false;
  173. found = create_local();
  174. {
  175. size_t c = ++my_count;
  176. array* r = my_root;
  177. if( !r || c>r->size()/2 ) {
  178. size_t s = r ? r->lg_size : 2;
  179. while( c>size_t(1)<<(s-1) ) ++s;
  180. array* a = allocate(s);
  181. for(;;) {
  182. a->next = my_root;
  183. array* new_r = my_root.compare_and_swap(a,r);
  184. if( new_r==r ) break;
  185. if( new_r->lg_size>=s ) {
  186. // Another thread inserted an equal or bigger array, so our array is superfluous.
  187. free(a);
  188. break;
  189. }
  190. r = new_r;
  191. }
  192. }
  193. }
  194. insert:
  195. // Guaranteed to be room for it, and it is not present, so search for empty slot and grab it.
  196. array* ir = my_root;
  197. size_t mask = ir->mask();
  198. for(size_t i = ir->start(h);;i=(i+1)&mask) {
  199. slot& s = ir->at(i);
  200. if( s.empty() ) {
  201. if( s.claim(k) ) {
  202. s.ptr = found;
  203. return found;
  204. }
  205. }
  206. }
  207. }
  208. //! Specialization that exploits native TLS
  209. template <>
  210. class ets_base<ets_key_per_instance>: protected ets_base<ets_no_key> {
  211. typedef ets_base<ets_no_key> super;
  212. #if _WIN32||_WIN64
  213. #if __TBB_WIN8UI_SUPPORT
  214. typedef DWORD tls_key_t;
  215. void create_key() { my_key = FlsAlloc(NULL); }
  216. void destroy_key() { FlsFree(my_key); }
  217. void set_tls(void * value) { FlsSetValue(my_key, (LPVOID)value); }
  218. void* get_tls() { return (void *)FlsGetValue(my_key); }
  219. #else
  220. typedef DWORD tls_key_t;
  221. void create_key() { my_key = TlsAlloc(); }
  222. void destroy_key() { TlsFree(my_key); }
  223. void set_tls(void * value) { TlsSetValue(my_key, (LPVOID)value); }
  224. void* get_tls() { return (void *)TlsGetValue(my_key); }
  225. #endif
  226. #else
  227. typedef pthread_key_t tls_key_t;
  228. void create_key() { pthread_key_create(&my_key, NULL); }
  229. void destroy_key() { pthread_key_delete(my_key); }
  230. void set_tls( void * value ) const { pthread_setspecific(my_key, value); }
  231. void* get_tls() const { return pthread_getspecific(my_key); }
  232. #endif
  233. tls_key_t my_key;
  234. virtual void* create_local() = 0;
  235. virtual void* create_array(size_t _size) = 0; // _size in bytes
  236. virtual void free_array(void* ptr, size_t _size) = 0; // size in bytes
  237. public:
  238. ets_base() {create_key();}
  239. ~ets_base() {destroy_key();}
  240. void* table_lookup( bool& exists ) {
  241. void* found = get_tls();
  242. if( found ) {
  243. exists=true;
  244. } else {
  245. found = super::table_lookup(exists);
  246. set_tls(found);
  247. }
  248. return found;
  249. }
  250. void table_clear() {
  251. destroy_key();
  252. create_key();
  253. super::table_clear();
  254. }
  255. };
  256. //! Random access iterator for traversing the thread local copies.
  257. template< typename Container, typename Value >
  258. class enumerable_thread_specific_iterator
  259. #if defined(_WIN64) && defined(_MSC_VER)
  260. // Ensure that Microsoft's internal template function _Val_type works correctly.
  261. : public std::iterator<std::random_access_iterator_tag,Value>
  262. #endif /* defined(_WIN64) && defined(_MSC_VER) */
  263. {
  264. //! current position in the concurrent_vector
  265. Container *my_container;
  266. typename Container::size_type my_index;
  267. mutable Value *my_value;
  268. template<typename C, typename T>
  269. friend enumerable_thread_specific_iterator<C,T> operator+( ptrdiff_t offset,
  270. const enumerable_thread_specific_iterator<C,T>& v );
  271. template<typename C, typename T, typename U>
  272. friend bool operator==( const enumerable_thread_specific_iterator<C,T>& i,
  273. const enumerable_thread_specific_iterator<C,U>& j );
  274. template<typename C, typename T, typename U>
  275. friend bool operator<( const enumerable_thread_specific_iterator<C,T>& i,
  276. const enumerable_thread_specific_iterator<C,U>& j );
  277. template<typename C, typename T, typename U>
  278. friend ptrdiff_t operator-( const enumerable_thread_specific_iterator<C,T>& i, const enumerable_thread_specific_iterator<C,U>& j );
  279. template<typename C, typename U>
  280. friend class enumerable_thread_specific_iterator;
  281. public:
  282. enumerable_thread_specific_iterator( const Container &container, typename Container::size_type index ) :
  283. my_container(&const_cast<Container &>(container)), my_index(index), my_value(NULL) {}
  284. //! Default constructor
  285. enumerable_thread_specific_iterator() : my_container(NULL), my_index(0), my_value(NULL) {}
  286. template<typename U>
  287. enumerable_thread_specific_iterator( const enumerable_thread_specific_iterator<Container, U>& other ) :
  288. my_container( other.my_container ), my_index( other.my_index), my_value( const_cast<Value *>(other.my_value) ) {}
  289. enumerable_thread_specific_iterator operator+( ptrdiff_t offset ) const {
  290. return enumerable_thread_specific_iterator(*my_container, my_index + offset);
  291. }
  292. enumerable_thread_specific_iterator &operator+=( ptrdiff_t offset ) {
  293. my_index += offset;
  294. my_value = NULL;
  295. return *this;
  296. }
  297. enumerable_thread_specific_iterator operator-( ptrdiff_t offset ) const {
  298. return enumerable_thread_specific_iterator( *my_container, my_index-offset );
  299. }
  300. enumerable_thread_specific_iterator &operator-=( ptrdiff_t offset ) {
  301. my_index -= offset;
  302. my_value = NULL;
  303. return *this;
  304. }
  305. Value& operator*() const {
  306. Value* value = my_value;
  307. if( !value ) {
  308. value = my_value = reinterpret_cast<Value *>(&(*my_container)[my_index].value);
  309. }
  310. __TBB_ASSERT( value==reinterpret_cast<Value *>(&(*my_container)[my_index].value), "corrupt cache" );
  311. return *value;
  312. }
  313. Value& operator[]( ptrdiff_t k ) const {
  314. return (*my_container)[my_index + k].value;
  315. }
  316. Value* operator->() const {return &operator*();}
  317. enumerable_thread_specific_iterator& operator++() {
  318. ++my_index;
  319. my_value = NULL;
  320. return *this;
  321. }
  322. enumerable_thread_specific_iterator& operator--() {
  323. --my_index;
  324. my_value = NULL;
  325. return *this;
  326. }
  327. //! Post increment
  328. enumerable_thread_specific_iterator operator++(int) {
  329. enumerable_thread_specific_iterator result = *this;
  330. ++my_index;
  331. my_value = NULL;
  332. return result;
  333. }
  334. //! Post decrement
  335. enumerable_thread_specific_iterator operator--(int) {
  336. enumerable_thread_specific_iterator result = *this;
  337. --my_index;
  338. my_value = NULL;
  339. return result;
  340. }
  341. // STL support
  342. typedef ptrdiff_t difference_type;
  343. typedef Value value_type;
  344. typedef Value* pointer;
  345. typedef Value& reference;
  346. typedef std::random_access_iterator_tag iterator_category;
  347. };
  348. template<typename Container, typename T>
  349. enumerable_thread_specific_iterator<Container,T> operator+( ptrdiff_t offset,
  350. const enumerable_thread_specific_iterator<Container,T>& v ) {
  351. return enumerable_thread_specific_iterator<Container,T>( v.my_container, v.my_index + offset );
  352. }
  353. template<typename Container, typename T, typename U>
  354. bool operator==( const enumerable_thread_specific_iterator<Container,T>& i,
  355. const enumerable_thread_specific_iterator<Container,U>& j ) {
  356. return i.my_index==j.my_index && i.my_container == j.my_container;
  357. }
  358. template<typename Container, typename T, typename U>
  359. bool operator!=( const enumerable_thread_specific_iterator<Container,T>& i,
  360. const enumerable_thread_specific_iterator<Container,U>& j ) {
  361. return !(i==j);
  362. }
  363. template<typename Container, typename T, typename U>
  364. bool operator<( const enumerable_thread_specific_iterator<Container,T>& i,
  365. const enumerable_thread_specific_iterator<Container,U>& j ) {
  366. return i.my_index<j.my_index;
  367. }
  368. template<typename Container, typename T, typename U>
  369. bool operator>( const enumerable_thread_specific_iterator<Container,T>& i,
  370. const enumerable_thread_specific_iterator<Container,U>& j ) {
  371. return j<i;
  372. }
  373. template<typename Container, typename T, typename U>
  374. bool operator>=( const enumerable_thread_specific_iterator<Container,T>& i,
  375. const enumerable_thread_specific_iterator<Container,U>& j ) {
  376. return !(i<j);
  377. }
  378. template<typename Container, typename T, typename U>
  379. bool operator<=( const enumerable_thread_specific_iterator<Container,T>& i,
  380. const enumerable_thread_specific_iterator<Container,U>& j ) {
  381. return !(j<i);
  382. }
  383. template<typename Container, typename T, typename U>
  384. ptrdiff_t operator-( const enumerable_thread_specific_iterator<Container,T>& i,
  385. const enumerable_thread_specific_iterator<Container,U>& j ) {
  386. return i.my_index-j.my_index;
  387. }
  388. template<typename SegmentedContainer, typename Value >
  389. class segmented_iterator
  390. #if defined(_WIN64) && defined(_MSC_VER)
  391. : public std::iterator<std::input_iterator_tag, Value>
  392. #endif
  393. {
  394. template<typename C, typename T, typename U>
  395. friend bool operator==(const segmented_iterator<C,T>& i, const segmented_iterator<C,U>& j);
  396. template<typename C, typename T, typename U>
  397. friend bool operator!=(const segmented_iterator<C,T>& i, const segmented_iterator<C,U>& j);
  398. template<typename C, typename U>
  399. friend class segmented_iterator;
  400. public:
  401. segmented_iterator() {my_segcont = NULL;}
  402. segmented_iterator( const SegmentedContainer& _segmented_container ) :
  403. my_segcont(const_cast<SegmentedContainer*>(&_segmented_container)),
  404. outer_iter(my_segcont->end()) { }
  405. ~segmented_iterator() {}
  406. typedef typename SegmentedContainer::iterator outer_iterator;
  407. typedef typename SegmentedContainer::value_type InnerContainer;
  408. typedef typename InnerContainer::iterator inner_iterator;
  409. // STL support
  410. typedef ptrdiff_t difference_type;
  411. typedef Value value_type;
  412. typedef typename SegmentedContainer::size_type size_type;
  413. typedef Value* pointer;
  414. typedef Value& reference;
  415. typedef std::input_iterator_tag iterator_category;
  416. // Copy Constructor
  417. template<typename U>
  418. segmented_iterator(const segmented_iterator<SegmentedContainer, U>& other) :
  419. my_segcont(other.my_segcont),
  420. outer_iter(other.outer_iter),
  421. // can we assign a default-constructed iterator to inner if we're at the end?
  422. inner_iter(other.inner_iter)
  423. {}
  424. // assignment
  425. template<typename U>
  426. segmented_iterator& operator=( const segmented_iterator<SegmentedContainer, U>& other) {
  427. if(this != &other) {
  428. my_segcont = other.my_segcont;
  429. outer_iter = other.outer_iter;
  430. if(outer_iter != my_segcont->end()) inner_iter = other.inner_iter;
  431. }
  432. return *this;
  433. }
  434. // allow assignment of outer iterator to segmented iterator. Once it is
  435. // assigned, move forward until a non-empty inner container is found or
  436. // the end of the outer container is reached.
  437. segmented_iterator& operator=(const outer_iterator& new_outer_iter) {
  438. __TBB_ASSERT(my_segcont != NULL, NULL);
  439. // check that this iterator points to something inside the segmented container
  440. for(outer_iter = new_outer_iter ;outer_iter!=my_segcont->end(); ++outer_iter) {
  441. if( !outer_iter->empty() ) {
  442. inner_iter = outer_iter->begin();
  443. break;
  444. }
  445. }
  446. return *this;
  447. }
  448. // pre-increment
  449. segmented_iterator& operator++() {
  450. advance_me();
  451. return *this;
  452. }
  453. // post-increment
  454. segmented_iterator operator++(int) {
  455. segmented_iterator tmp = *this;
  456. operator++();
  457. return tmp;
  458. }
  459. bool operator==(const outer_iterator& other_outer) const {
  460. __TBB_ASSERT(my_segcont != NULL, NULL);
  461. return (outer_iter == other_outer &&
  462. (outer_iter == my_segcont->end() || inner_iter == outer_iter->begin()));
  463. }
  464. bool operator!=(const outer_iterator& other_outer) const {
  465. return !operator==(other_outer);
  466. }
  467. // (i)* RHS
  468. reference operator*() const {
  469. __TBB_ASSERT(my_segcont != NULL, NULL);
  470. __TBB_ASSERT(outer_iter != my_segcont->end(), "Dereferencing a pointer at end of container");
  471. __TBB_ASSERT(inner_iter != outer_iter->end(), NULL); // should never happen
  472. return *inner_iter;
  473. }
  474. // i->
  475. pointer operator->() const { return &operator*();}
  476. private:
  477. SegmentedContainer* my_segcont;
  478. outer_iterator outer_iter;
  479. inner_iterator inner_iter;
  480. void advance_me() {
  481. __TBB_ASSERT(my_segcont != NULL, NULL);
  482. __TBB_ASSERT(outer_iter != my_segcont->end(), NULL); // not true if there are no inner containers
  483. __TBB_ASSERT(inner_iter != outer_iter->end(), NULL); // not true if the inner containers are all empty.
  484. ++inner_iter;
  485. while(inner_iter == outer_iter->end() && ++outer_iter != my_segcont->end()) {
  486. inner_iter = outer_iter->begin();
  487. }
  488. }
  489. }; // segmented_iterator
  490. template<typename SegmentedContainer, typename T, typename U>
  491. bool operator==( const segmented_iterator<SegmentedContainer,T>& i,
  492. const segmented_iterator<SegmentedContainer,U>& j ) {
  493. if(i.my_segcont != j.my_segcont) return false;
  494. if(i.my_segcont == NULL) return true;
  495. if(i.outer_iter != j.outer_iter) return false;
  496. if(i.outer_iter == i.my_segcont->end()) return true;
  497. return i.inner_iter == j.inner_iter;
  498. }
  499. // !=
  500. template<typename SegmentedContainer, typename T, typename U>
  501. bool operator!=( const segmented_iterator<SegmentedContainer,T>& i,
  502. const segmented_iterator<SegmentedContainer,U>& j ) {
  503. return !(i==j);
  504. }
  505. template<typename T>
  506. struct destruct_only: tbb::internal::no_copy {
  507. tbb::aligned_space<T,1> value;
  508. ~destruct_only() {value.begin()[0].~T();}
  509. };
  510. template<typename T>
  511. struct construct_by_default: tbb::internal::no_assign {
  512. void construct(void*where) {new(where) T();} // C++ note: the () in T() ensure zero initialization.
  513. construct_by_default( int ) {}
  514. };
  515. template<typename T>
  516. struct construct_by_exemplar: tbb::internal::no_assign {
  517. const T exemplar;
  518. void construct(void*where) {new(where) T(exemplar);}
  519. construct_by_exemplar( const T& t ) : exemplar(t) {}
  520. };
  521. template<typename T, typename Finit>
  522. struct construct_by_finit: tbb::internal::no_assign {
  523. Finit f;
  524. void construct(void* where) {new(where) T(f());}
  525. construct_by_finit( const Finit& f_ ) : f(f_) {}
  526. };
  527. // storage for initialization function pointer
  528. template<typename T>
  529. class callback_base {
  530. public:
  531. // Clone *this
  532. virtual callback_base* clone() = 0;
  533. // Destruct and free *this
  534. virtual void destroy() = 0;
  535. // Need virtual destructor to satisfy GCC compiler warning
  536. virtual ~callback_base() { }
  537. // Construct T at where
  538. virtual void construct(void* where) = 0;
  539. };
  540. template <typename T, typename Constructor>
  541. class callback_leaf: public callback_base<T>, Constructor {
  542. template<typename X> callback_leaf( const X& x ) : Constructor(x) {}
  543. typedef typename tbb::tbb_allocator<callback_leaf> my_allocator_type;
  544. /*override*/ callback_base<T>* clone() {
  545. void* where = my_allocator_type().allocate(1);
  546. return new(where) callback_leaf(*this);
  547. }
  548. /*override*/ void destroy() {
  549. my_allocator_type().destroy(this);
  550. my_allocator_type().deallocate(this,1);
  551. }
  552. /*override*/ void construct(void* where) {
  553. Constructor::construct(where);
  554. }
  555. public:
  556. template<typename X>
  557. static callback_base<T>* make( const X& x ) {
  558. void* where = my_allocator_type().allocate(1);
  559. return new(where) callback_leaf(x);
  560. }
  561. };
  562. //! Template for adding padding in order to avoid false sharing
  563. /** ModularSize should be sizeof(U) modulo the cache line size.
  564. All maintenance of the space will be done explicitly on push_back,
  565. and all thread local copies must be destroyed before the concurrent
  566. vector is deleted.
  567. */
  568. template<typename U, size_t ModularSize>
  569. struct ets_element {
  570. char value[ModularSize==0 ? sizeof(U) : sizeof(U)+(tbb::internal::NFS_MaxLineSize-ModularSize)];
  571. void unconstruct() {
  572. tbb::internal::punned_cast<U*>(&value)->~U();
  573. }
  574. };
  575. } // namespace internal
  576. //! @endcond
  577. //! The enumerable_thread_specific container
  578. /** enumerable_thread_specific has the following properties:
  579. - thread-local copies are lazily created, with default, exemplar or function initialization.
  580. - thread-local copies do not move (during lifetime, and excepting clear()) so the address of a copy is invariant.
  581. - the contained objects need not have operator=() defined if combine is not used.
  582. - enumerable_thread_specific containers may be copy-constructed or assigned.
  583. - thread-local copies can be managed by hash-table, or can be accessed via TLS storage for speed.
  584. - outside of parallel contexts, the contents of all thread-local copies are accessible by iterator or using combine or combine_each methods
  585. @par Segmented iterator
  586. When the thread-local objects are containers with input_iterators defined, a segmented iterator may
  587. be used to iterate over all the elements of all thread-local copies.
  588. @par combine and combine_each
  589. - Both methods are defined for enumerable_thread_specific.
  590. - combine() requires the the type T have operator=() defined.
  591. - neither method modifies the contents of the object (though there is no guarantee that the applied methods do not modify the object.)
  592. - Both are evaluated in serial context (the methods are assumed to be non-benign.)
  593. @ingroup containers */
  594. template <typename T,
  595. typename Allocator=cache_aligned_allocator<T>,
  596. ets_key_usage_type ETS_key_type=ets_no_key >
  597. class enumerable_thread_specific: internal::ets_base<ETS_key_type> {
  598. template<typename U, typename A, ets_key_usage_type C> friend class enumerable_thread_specific;
  599. typedef internal::ets_element<T,sizeof(T)%tbb::internal::NFS_MaxLineSize> padded_element;
  600. //! A generic range, used to create range objects from the iterators
  601. template<typename I>
  602. class generic_range_type: public blocked_range<I> {
  603. public:
  604. typedef T value_type;
  605. typedef T& reference;
  606. typedef const T& const_reference;
  607. typedef I iterator;
  608. typedef ptrdiff_t difference_type;
  609. generic_range_type( I begin_, I end_, size_t grainsize_ = 1) : blocked_range<I>(begin_,end_,grainsize_) {}
  610. template<typename U>
  611. generic_range_type( const generic_range_type<U>& r) : blocked_range<I>(r.begin(),r.end(),r.grainsize()) {}
  612. generic_range_type( generic_range_type& r, split ) : blocked_range<I>(r,split()) {}
  613. };
  614. typedef typename Allocator::template rebind< padded_element >::other padded_allocator_type;
  615. typedef tbb::concurrent_vector< padded_element, padded_allocator_type > internal_collection_type;
  616. internal::callback_base<T> *my_construct_callback;
  617. internal_collection_type my_locals;
  618. /*override*/ void* create_local() {
  619. #if TBB_DEPRECATED
  620. void* lref = &my_locals[my_locals.push_back(padded_element())];
  621. #else
  622. void* lref = &*my_locals.push_back(padded_element());
  623. #endif
  624. my_construct_callback->construct(lref);
  625. return lref;
  626. }
  627. void unconstruct_locals() {
  628. for(typename internal_collection_type::iterator cvi = my_locals.begin(); cvi != my_locals.end(); ++cvi) {
  629. cvi->unconstruct();
  630. }
  631. }
  632. typedef typename Allocator::template rebind< uintptr_t >::other array_allocator_type;
  633. // _size is in bytes
  634. /*override*/ void* create_array(size_t _size) {
  635. size_t nelements = (_size + sizeof(uintptr_t) -1) / sizeof(uintptr_t);
  636. return array_allocator_type().allocate(nelements);
  637. }
  638. /*override*/ void free_array( void* _ptr, size_t _size) {
  639. size_t nelements = (_size + sizeof(uintptr_t) -1) / sizeof(uintptr_t);
  640. array_allocator_type().deallocate( reinterpret_cast<uintptr_t *>(_ptr),nelements);
  641. }
  642. public:
  643. //! Basic types
  644. typedef Allocator allocator_type;
  645. typedef T value_type;
  646. typedef T& reference;
  647. typedef const T& const_reference;
  648. typedef T* pointer;
  649. typedef const T* const_pointer;
  650. typedef typename internal_collection_type::size_type size_type;
  651. typedef typename internal_collection_type::difference_type difference_type;
  652. // Iterator types
  653. typedef typename internal::enumerable_thread_specific_iterator< internal_collection_type, value_type > iterator;
  654. typedef typename internal::enumerable_thread_specific_iterator< internal_collection_type, const value_type > const_iterator;
  655. // Parallel range types
  656. typedef generic_range_type< iterator > range_type;
  657. typedef generic_range_type< const_iterator > const_range_type;
  658. //! Default constructor. Each local instance of T is default constructed.
  659. enumerable_thread_specific() :
  660. my_construct_callback( internal::callback_leaf<T,internal::construct_by_default<T> >::make(/*dummy argument*/0) )
  661. {}
  662. //! Constructor with initializer functor. Each local instance of T is constructed by T(finit()).
  663. template <typename Finit>
  664. enumerable_thread_specific( Finit finit ) :
  665. my_construct_callback( internal::callback_leaf<T,internal::construct_by_finit<T,Finit> >::make( finit ) )
  666. {}
  667. //! Constuctor with exemplar. Each local instance of T is copied-constructed from the exemplar.
  668. enumerable_thread_specific(const T& exemplar) :
  669. my_construct_callback( internal::callback_leaf<T,internal::construct_by_exemplar<T> >::make( exemplar ) )
  670. {}
  671. //! Destructor
  672. ~enumerable_thread_specific() {
  673. my_construct_callback->destroy();
  674. this->clear(); // deallocation before the derived class is finished destructing
  675. // So free(array *) is still accessible
  676. }
  677. //! returns reference to local, discarding exists
  678. reference local() {
  679. bool exists;
  680. return local(exists);
  681. }
  682. //! Returns reference to calling thread's local copy, creating one if necessary
  683. reference local(bool& exists) {
  684. void* ptr = this->table_lookup(exists);
  685. return *(T*)ptr;
  686. }
  687. //! Get the number of local copies
  688. size_type size() const { return my_locals.size(); }
  689. //! true if there have been no local copies created
  690. bool empty() const { return my_locals.empty(); }
  691. //! begin iterator
  692. iterator begin() { return iterator( my_locals, 0 ); }
  693. //! end iterator
  694. iterator end() { return iterator(my_locals, my_locals.size() ); }
  695. //! begin const iterator
  696. const_iterator begin() const { return const_iterator(my_locals, 0); }
  697. //! end const iterator
  698. const_iterator end() const { return const_iterator(my_locals, my_locals.size()); }
  699. //! Get range for parallel algorithms
  700. range_type range( size_t grainsize=1 ) { return range_type( begin(), end(), grainsize ); }
  701. //! Get const range for parallel algorithms
  702. const_range_type range( size_t grainsize=1 ) const { return const_range_type( begin(), end(), grainsize ); }
  703. //! Destroys local copies
  704. void clear() {
  705. unconstruct_locals();
  706. my_locals.clear();
  707. this->table_clear();
  708. // callback is not destroyed
  709. // exemplar is not destroyed
  710. }
  711. private:
  712. template<typename U, typename A2, ets_key_usage_type C2>
  713. void internal_copy( const enumerable_thread_specific<U, A2, C2>& other);
  714. public:
  715. template<typename U, typename Alloc, ets_key_usage_type Cachetype>
  716. enumerable_thread_specific( const enumerable_thread_specific<U, Alloc, Cachetype>& other ) : internal::ets_base<ETS_key_type> ()
  717. {
  718. internal_copy(other);
  719. }
  720. enumerable_thread_specific( const enumerable_thread_specific& other ) : internal::ets_base<ETS_key_type> ()
  721. {
  722. internal_copy(other);
  723. }
  724. private:
  725. template<typename U, typename A2, ets_key_usage_type C2>
  726. enumerable_thread_specific &
  727. internal_assign(const enumerable_thread_specific<U, A2, C2>& other) {
  728. if(static_cast<void *>( this ) != static_cast<const void *>( &other )) {
  729. this->clear();
  730. my_construct_callback->destroy();
  731. my_construct_callback = 0;
  732. internal_copy( other );
  733. }
  734. return *this;
  735. }
  736. public:
  737. // assignment
  738. enumerable_thread_specific& operator=(const enumerable_thread_specific& other) {
  739. return internal_assign(other);
  740. }
  741. template<typename U, typename Alloc, ets_key_usage_type Cachetype>
  742. enumerable_thread_specific& operator=(const enumerable_thread_specific<U, Alloc, Cachetype>& other)
  743. {
  744. return internal_assign(other);
  745. }
  746. // combine_func_t has signature T(T,T) or T(const T&, const T&)
  747. template <typename combine_func_t>
  748. T combine(combine_func_t f_combine) {
  749. if(begin() == end()) {
  750. internal::destruct_only<T> location;
  751. my_construct_callback->construct(location.value.begin());
  752. return *location.value.begin();
  753. }
  754. const_iterator ci = begin();
  755. T my_result = *ci;
  756. while(++ci != end())
  757. my_result = f_combine( my_result, *ci );
  758. return my_result;
  759. }
  760. // combine_func_t has signature void(T) or void(const T&)
  761. template <typename combine_func_t>
  762. void combine_each(combine_func_t f_combine) {
  763. for(const_iterator ci = begin(); ci != end(); ++ci) {
  764. f_combine( *ci );
  765. }
  766. }
  767. }; // enumerable_thread_specific
  768. template <typename T, typename Allocator, ets_key_usage_type ETS_key_type>
  769. template<typename U, typename A2, ets_key_usage_type C2>
  770. void enumerable_thread_specific<T,Allocator,ETS_key_type>::internal_copy( const enumerable_thread_specific<U, A2, C2>& other) {
  771. // Initialize my_construct_callback first, so that it is valid even if rest of this routine throws an exception.
  772. my_construct_callback = other.my_construct_callback->clone();
  773. typedef internal::ets_base<ets_no_key> base;
  774. __TBB_ASSERT(my_locals.size()==0,NULL);
  775. this->table_reserve_for_copy( other );
  776. for( base::array* r=other.my_root; r; r=r->next ) {
  777. for( size_t i=0; i<r->size(); ++i ) {
  778. base::slot& s1 = r->at(i);
  779. if( !s1.empty() ) {
  780. base::slot& s2 = this->table_find(s1.key);
  781. if( s2.empty() ) {
  782. #if TBB_DEPRECATED
  783. void* lref = &my_locals[my_locals.push_back(padded_element())];
  784. #else
  785. void* lref = &*my_locals.push_back(padded_element());
  786. #endif
  787. s2.ptr = new(lref) T(*(U*)s1.ptr);
  788. s2.key = s1.key;
  789. } else {
  790. // Skip the duplicate
  791. }
  792. }
  793. }
  794. }
  795. }
  796. template< typename Container >
  797. class flattened2d {
  798. // This intermediate typedef is to address issues with VC7.1 compilers
  799. typedef typename Container::value_type conval_type;
  800. public:
  801. //! Basic types
  802. typedef typename conval_type::size_type size_type;
  803. typedef typename conval_type::difference_type difference_type;
  804. typedef typename conval_type::allocator_type allocator_type;
  805. typedef typename conval_type::value_type value_type;
  806. typedef typename conval_type::reference reference;
  807. typedef typename conval_type::const_reference const_reference;
  808. typedef typename conval_type::pointer pointer;
  809. typedef typename conval_type::const_pointer const_pointer;
  810. typedef typename internal::segmented_iterator<Container, value_type> iterator;
  811. typedef typename internal::segmented_iterator<Container, const value_type> const_iterator;
  812. flattened2d( const Container &c, typename Container::const_iterator b, typename Container::const_iterator e ) :
  813. my_container(const_cast<Container*>(&c)), my_begin(b), my_end(e) { }
  814. flattened2d( const Container &c ) :
  815. my_container(const_cast<Container*>(&c)), my_begin(c.begin()), my_end(c.end()) { }
  816. iterator begin() { return iterator(*my_container) = my_begin; }
  817. iterator end() { return iterator(*my_container) = my_end; }
  818. const_iterator begin() const { return const_iterator(*my_container) = my_begin; }
  819. const_iterator end() const { return const_iterator(*my_container) = my_end; }
  820. size_type size() const {
  821. size_type tot_size = 0;
  822. for(typename Container::const_iterator i = my_begin; i != my_end; ++i) {
  823. tot_size += i->size();
  824. }
  825. return tot_size;
  826. }
  827. private:
  828. Container *my_container;
  829. typename Container::const_iterator my_begin;
  830. typename Container::const_iterator my_end;
  831. };
  832. template <typename Container>
  833. flattened2d<Container> flatten2d(const Container &c, const typename Container::const_iterator b, const typename Container::const_iterator e) {
  834. return flattened2d<Container>(c, b, e);
  835. }
  836. template <typename Container>
  837. flattened2d<Container> flatten2d(const Container &c) {
  838. return flattened2d<Container>(c);
  839. }
  840. } // interface6
  841. namespace internal {
  842. using interface6::internal::segmented_iterator;
  843. }
  844. using interface6::enumerable_thread_specific;
  845. using interface6::flattened2d;
  846. using interface6::flatten2d;
  847. } // namespace tbb
  848. #endif