#pragma once #include "PoolAllocator.hpp" #include <memory> #ifdef _WIN32 # include <xstddef> #endif namespace sprawl { namespace memory { template<typename T, typename allocator=PoolAllocator<sizeof(T)> > class StlWrapper { public: typedef StlWrapper<T, allocator> other; typedef T value_type; typedef T* pointer; typedef const T* const_pointer; typedef T& reference; typedef T const& const_reference; typedef size_t size_type; typedef ptrdiff_t difference_type; #ifdef _WIN32 # if _HAS_CPP0X typedef std::false_type propagate_on_container_copy_assignment; typedef std::false_type propagate_on_container_move_assignment; typedef std::false_type propagate_on_container_swap; StlWrapper<T, allocator> select_on_container_copy_construction() const { // return this allocator return (*this); } # endif #endif template<class T2> struct rebind { typedef StlWrapper<T2, typename allocator::template rebind<T2>::otherAllocator> other; }; value_type* address(value_type& val) const { return reinterpret_cast<value_type*>(&reinterpret_cast<char&>(val)); } StlWrapper() { // } StlWrapper(StlWrapper<value_type> const& /*other*/) { // } template<class T2, class alloc> StlWrapper(const StlWrapper<T2, alloc>& /*other*/) { // } template<class T2> StlWrapper<value_type>& operator=(StlWrapper<T2> const& /*other*/) { return (*this); } bool operator==(const StlWrapper<value_type, allocator>& /*other*/) const { return true; } bool operator!=(const StlWrapper<value_type, allocator>& /*other*/) const { return false; } template<typename otherAllocator> bool operator==(const StlWrapper<value_type, otherAllocator>& /*other*/) const { return false; } template<typename otherAllocator> bool operator!=(const StlWrapper<value_type, otherAllocator>& /*other*/) const { return true; } void deallocate(value_type* ptr, size_type /*unused*/) { allocator::free(ptr); } value_type* allocate(size_type count) { if(count == 1) { return (value_type*)(allocator::alloc()); } return (value_type*)(allocator::alloc(count)); } value_type* allocate(size_type count, const void* /*unused*/) { return (value_type*)(allocate(count)); } void construct(value_type* ptr) { ::new ((void *)ptr) T(); } void construct(value_type* ptr, value_type const& other) { ::new ((void *)ptr) T(other); } template< typename T2, typename... Args > void construct( T2* ptr, Args&&... args ) { ::new ((void*)ptr) T2(std::forward<Args>(args)...); } template<class T2> void destroy(T2* ptr) { (void)(ptr); ptr->~T2(); } size_t max_size() const { return ((size_t)(-1) / sizeof (T)); } }; } }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 23398 | ququlala | "Forking branch Mainline of shadauxcat-libsprawl to ququlala-libsprawl." | ||
//guest/ShadauxCat/Sprawl/Mainline/memory/StlWrapper.hpp | |||||
#5 | 19906 | ShadauxCat |
- Added tag, compile time string type - Since tag requires visual studio 2015, removed compatibility code for earlier versions of visual studio - Improved compiler detection - Added endianness detection - Added template if/else helper - Fixed bug with murmur3 64 bit - Added seed argument for murmur3 #review-19907 |
||
#4 | 16052 | ShadauxCat |
- Changed default block size for concurrent queue to a more reasonable value - Changed some memory orders to memory_order_seq_cst when they don't actually need to be that to get around a bug in visual studio 2013 - debug builds assert when memory_order_acq_rel is used for a compare_exchange_strong (this is a standard library bug and is fixed in VS2015) - Added Event API - events are an alternative to condition variables that do not require a mutex and are guaranteed not to miss any signals, even if the signal comes while the thread is not listening for it. Unlike condition variables, however, they do not support broadcasting (and in fact, in general, are not safe to use with multiple threads listening for the same event simultaneously - though notifying on the same event is fine) - Rewrote ThreadManager around ConcurrentQueue and Event API so it is now lock-free. Also improved some behaviors of the staged thread manager operation so it now supports tasks that can be run on multiple stages via a bitmask. - Fixed an issue where the Coroutine copy constructor was calling the std::function constructor instead and another where initializing with a stack might try to call the wrong constructor and vice-versa - Fixed Coroutine never calling munmap() on its stack in linux and causing a memory leak - Added default arguments to time functions - Attempted to fix some issues with BinaryTree. Fixed some but not all. It's currently not suitable for use, sadly. - Logging Improvements: - - Added thread ID to logging - - Fixed some issues with category handlers - - Added backtraces - - Added the following additional log macros: - - - LOG_IF - - - LOG_EVERY_N - - - LOG_FIRST_N - - - LOG_IF_EVERY_N - - - LOG_IF_FIRST_N - - - LOG_ASSERT - - Added the ability to set extra info callbacks to get data such as script backtraces - - Removed the thread-related handlers and replaced them with RunHandler_Threaded and RunHandler_ThreadManager, which will enable any passed-in handler to be run in a threaded fashion - Removed StaticPoolAllocator and renamed DynamicPoolAllocator to PoolAllocator; adjusted unit tests accordingly - PoolAllocator now allocates its pool with mmap and VirtualAlloc, rather than with malloc - Fixed a bug with Vector copy assignment operator - Improved performance of StringBuilder considerably for cases where there are no modifier strings - Removed Copy-On-Write behavior of JSONToken as it was broken; copies are now performed with explicit DeepCopy() and ShallowCopy() functions - Fixed some parser bugs with JSONToken - Added iteration to JSONToken to iterate its children - Fixed crash when reading a negative number of bytes from a file - Changed StringBuilder to favor speed instead of memory by default - Added some performance unit tests for JSON token #review-16053 |
||
#3 | 14783 | ShadauxCat |
Style corrections (placement of const) #review-14784 |
||
#2 | 14216 | ShadauxCat |
-Moved some global sprawl::Strings into local scope in json serialization test because of initialization order issues in the memory allocator on mac. This is a temporary fix, and a real fix will come by making the pool allocator work in explicitly-sized pieces and putting all the code for those pieces into a cpp file. -Fixed a large number of warnings on mac/linux that were exposed by fixes to csbuild -Fixed compile errors on mac due to malloc and alloca not being defined, fixed by #include <stdlib.h> in appropriate places -Fixed mac os x trying to link against pthread erroneously -Provided os x implementation of time library -Fixed compile errors on os x due to std::unordered_map whining about the difference between an allocator that allocates std::pair<key, value> and one that allocates std::pair<key const, value>, which, of course, is that the allocator will be no different at all. -Fixed an actual issue where one unordered_map was allocating only key_type instead of std::pair<key_type, value_type> -Fixed a memory leak where coroutine objects would never be cleaned up because either Yield() or reactivate_() will never return (and thus never clean up their stack memory and thus never release any dynamic memory held in stack objects) depending on the situation - if the function runs to completion, reactivate_() never returns after calling swapcontext(); meanwhile, if the function does not run to completion, Yield() never returns after calling Pause(). This behavior will need to be well-documented because it will affect client-side code as well. Stack memory within a coroutine should not rely on RAII behavior. -Fixed compile failure when creating a StlWrapper with a const value_type #review-14217 |
||
#1 | 11496 | ShadauxCat | Initial checkin: Current states for csbuild and libSprawl |