mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	* getactorstats query for validator-engine-console * celldb in-memory mode (--celldb-in-memory option) * rldp2: bugfix - do not estimate speed while nothing is sent * add simple ed25519 benchmark * fix compilation errors of different platforms and move to c++20 * fix some warnings * turn on TON_USE_ABSEIL for glibc 2.27 nix build --------- Co-authored-by: birydrad <>
		
			
				
	
	
		
			105 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
	
		
			3.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|     This file is part of TON Blockchain Library.
 | |
| 
 | |
|     TON Blockchain Library is free software: you can redistribute it and/or modify
 | |
|     it under the terms of the GNU Lesser General Public License as published by
 | |
|     the Free Software Foundation, either version 2 of the License, or
 | |
|     (at your option) any later version.
 | |
| 
 | |
|     TON Blockchain Library is distributed in the hope that it will be useful,
 | |
|     but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|     GNU Lesser General Public License for more details.
 | |
| 
 | |
|     You should have received a copy of the GNU Lesser General Public License
 | |
|     along with TON Blockchain Library.  If not, see <http://www.gnu.org/licenses/>.
 | |
| 
 | |
|     Copyright 2017-2020 Telegram Systems LLP
 | |
| */
 | |
| #pragma once
 | |
| 
 | |
| namespace vm {
 | |
| namespace detail {
 | |
| 
 | |
| template <class CellT>
 | |
| struct DefaultAllocator {
 | |
|   template <class T, class... ArgsT>
 | |
|   std::unique_ptr<CellT> make_unique(ArgsT&&... args) {
 | |
|     return std::make_unique<T>(std::forward<ArgsT>(args)...);
 | |
|   }
 | |
| };
 | |
| 
 | |
| template <class CellT, size_t Size = 0>
 | |
| class CellWithArrayStorage : public CellT {
 | |
|  public:
 | |
|   template <class... ArgsT>
 | |
|   CellWithArrayStorage(ArgsT&&... args) : CellT(std::forward<ArgsT>(args)...) {
 | |
|   }
 | |
|   ~CellWithArrayStorage() {
 | |
|     CellT::destroy_storage(get_storage());
 | |
|   }
 | |
|   template <class Allocator, class... ArgsT>
 | |
|   static auto create(Allocator allocator, size_t storage_size, ArgsT&&... args) {
 | |
|     static_assert(CellT::max_storage_size <= 40 * 8, "");
 | |
|     //size = 128 + 32 + 8;
 | |
|     auto size = (storage_size + 7) / 8;
 | |
| #define CASE(size) \
 | |
|   case (size):     \
 | |
|     return allocator. template make_unique<CellWithArrayStorage<CellT, (size) * 8>>(std::forward<ArgsT>(args)...);
 | |
| #define CASE2(offset) CASE(offset) CASE(offset + 1)
 | |
| #define CASE8(offset) CASE2(offset) CASE2(offset + 2) CASE2(offset + 4) CASE2(offset + 6)
 | |
| #define CASE32(offset) CASE8(offset) CASE8(offset + 8) CASE8(offset + 16) CASE8(offset + 24)
 | |
|     switch (size) { CASE32(0) CASE8(32) }
 | |
| #undef CASE
 | |
| #undef CASE2
 | |
| #undef CASE8
 | |
| #undef CASE32
 | |
|     LOG(FATAL) << "TOO BIG " << storage_size;
 | |
|     UNREACHABLE();
 | |
|   }
 | |
|   template <class... ArgsT>
 | |
|   static std::unique_ptr<CellT> create(size_t storage_size, ArgsT&&... args) {
 | |
|     return create(DefaultAllocator<CellT>{}, storage_size, std::forward<ArgsT>(args)...);
 | |
|   }
 | |
| 
 | |
|  private:
 | |
|   alignas(alignof(void*)) char storage_[Size];
 | |
| 
 | |
|   const char* get_storage() const final {
 | |
|     return storage_;
 | |
|   }
 | |
|   char* get_storage() final {
 | |
|     return storage_;
 | |
|   }
 | |
| };
 | |
| 
 | |
| template <class CellT>
 | |
| class CellWithUniquePtrStorage : public CellT {
 | |
|  public:
 | |
|   template <class... ArgsT>
 | |
|   CellWithUniquePtrStorage(size_t storage_size, ArgsT&&... args)
 | |
|       : CellT(std::forward<ArgsT>(args)...), storage_(std::make_unique<char[]>(storage_size)) {
 | |
|   }
 | |
|   ~CellWithUniquePtrStorage() {
 | |
|     CellT::destroy_storage(get_storage());
 | |
|   }
 | |
| 
 | |
|   template <class... ArgsT>
 | |
|   static std::unique_ptr<CellT> create(size_t storage_size, ArgsT&&... args) {
 | |
|     return std::make_unique<CellWithUniquePtrStorage>(storage_size, std::forward<ArgsT>(args)...);
 | |
|   }
 | |
| 
 | |
|  private:
 | |
|   std::unique_ptr<char[]> storage_;
 | |
| 
 | |
|   const char* get_storage() const final {
 | |
|     CHECK(storage_);
 | |
|     return storage_.get();
 | |
|   }
 | |
|   char* get_storage() final {
 | |
|     CHECK(storage_);
 | |
|     return storage_.get();
 | |
|   }
 | |
| };
 | |
| }  // namespace detail
 | |
| }  // namespace vm
 |