arena.h 4.5 KB
Newer Older
1 2 3 4 5
//  Copyright (c) 2013, Facebook, Inc.  All rights reserved.
//  This source code is licensed under the BSD-style license found in the
//  LICENSE file in the root directory of this source tree. An additional grant
//  of patent rights can be found in the PATENTS file in the same directory.
//
J
jorlow@chromium.org 已提交
6 7 8 9
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.

K
kailiu 已提交
10
// Arena is an implementation of Arena class. For a request of small size,
X
Xing Jin 已提交
11 12 13
// it allocates a block with pre-defined block size. For a request of big
// size, it uses malloc to directly get the requested size.

14
#pragma once
J
jorlow@chromium.org 已提交
15 16 17 18
#include <cstddef>
#include <vector>
#include <assert.h>
#include <stdint.h>
K
kailiu 已提交
19
#include "util/arena.h"
J
jorlow@chromium.org 已提交
20

21
namespace rocksdb {
J
jorlow@chromium.org 已提交
22

23 24
class Logger;

K
kailiu 已提交
25
class Arena {
J
jorlow@chromium.org 已提交
26
 public:
27
  // No copying allowed
K
kailiu 已提交
28 29
  Arena(const Arena&) = delete;
  void operator=(const Arena&) = delete;
30

31
  static const size_t kInlineSize;
32 33 34
  static const size_t kMinBlockSize;
  static const size_t kMaxBlockSize;

K
kailiu 已提交
35 36
  explicit Arena(size_t block_size = kMinBlockSize);
  ~Arena();
J
jorlow@chromium.org 已提交
37

K
kailiu 已提交
38
  char* Allocate(size_t bytes);
J
jorlow@chromium.org 已提交
39

S
sdong 已提交
40 41 42 43 44 45
  // huge_page_size: if >0, will try to allocate from huage page TLB.
  // The argument will be the size of the page size for huge page TLB. Bytes
  // will be rounded up to multiple of the page size to allocate through mmap
  // anonymous option with huge page on. The extra  space allocated will be
  // wasted. If allocation fails, will fall back to normal case. To enable it,
  // need to reserve huge pages for it to be allocated, like:
46 47
  //     sysctl -w vm.nr_hugepages=20
  // See linux doc Documentation/vm/hugetlbpage.txt for details.
48 49 50 51
  // huge page allocation can fail. In this case it will fail back to
  // normal cases. The messages will be logged to logger. So when calling with
  // huge_page_tlb_size > 0, we highly recommend a logger is passed in.
  // Otherwise, the error message will be printed out to stderr directly.
S
sdong 已提交
52
  char* AllocateAligned(size_t bytes, size_t huge_page_size = 0,
53
                        Logger* logger = nullptr);
J
jorlow@chromium.org 已提交
54 55

  // Returns an estimate of the total memory usage of data allocated
56
  // by the arena (exclude the space allocated but not yet used for future
J
jorlow@chromium.org 已提交
57
  // allocations).
K
kailiu 已提交
58
  size_t ApproximateMemoryUsage() const {
59 60
    return blocks_memory_ + blocks_.capacity() * sizeof(char*) -
           alloc_bytes_remaining_;
J
jorlow@chromium.org 已提交
61 62
  }

K
kailiu 已提交
63
  size_t MemoryAllocatedBytes() const { return blocks_memory_; }
X
Xing Jin 已提交
64

65 66 67 68 69 70
  size_t AllocatedAndUnused() const { return alloc_bytes_remaining_; }

  // If an allocation is too big, we'll allocate an irregular block with the
  // same size of that allocation.
  virtual size_t IrregularBlockNum() const { return irregular_block_num; }

71 72
  size_t BlockSize() const { return kBlockSize; }

J
jorlow@chromium.org 已提交
73
 private:
S
sdong 已提交
74
  char inline_block_[kInlineSize];
X
Xing Jin 已提交
75
  // Number of bytes allocated in one block
76
  const size_t kBlockSize;
J
jorlow@chromium.org 已提交
77
  // Array of new[] allocated memory blocks
78 79
  typedef std::vector<char*> Blocks;
  Blocks blocks_;
80 81 82 83 84 85 86 87

  struct MmapInfo {
    void* addr_;
    size_t length_;

    MmapInfo(void* addr, size_t length) : addr_(addr), length_(length) {}
  };
  std::vector<MmapInfo> huge_blocks_;
88
  size_t irregular_block_num = 0;
89 90 91 92 93 94 95 96 97 98 99 100 101

  // Stats for current active block.
  // For each block, we allocate aligned memory chucks from one end and
  // allocate unaligned memory chucks from the other end. Otherwise the
  // memory waste for alignment will be higher if we allocate both types of
  // memory from one direction.
  char* unaligned_alloc_ptr_ = nullptr;
  char* aligned_alloc_ptr_ = nullptr;
  // How many bytes left in currently active block?
  size_t alloc_bytes_remaining_ = 0;

  char* AllocateFallback(size_t bytes, bool aligned);
  char* AllocateNewBlock(size_t block_bytes);
J
jorlow@chromium.org 已提交
102 103

  // Bytes of memory in blocks allocated so far
104
  size_t blocks_memory_ = 0;
J
jorlow@chromium.org 已提交
105 106
};

K
kailiu 已提交
107
inline char* Arena::Allocate(size_t bytes) {
J
jorlow@chromium.org 已提交
108 109 110 111 112
  // The semantics of what to return are a bit messy if we allow
  // 0-byte allocations, so we disallow them here (we don't need
  // them for our internal use).
  assert(bytes > 0);
  if (bytes <= alloc_bytes_remaining_) {
113
    unaligned_alloc_ptr_ -= bytes;
J
jorlow@chromium.org 已提交
114
    alloc_bytes_remaining_ -= bytes;
115
    return unaligned_alloc_ptr_;
J
jorlow@chromium.org 已提交
116
  }
117
  return AllocateFallback(bytes, false /* unaligned */);
J
jorlow@chromium.org 已提交
118 119
}

120 121 122 123 124
// check and adjust the block_size so that the return value is
//  1. in the range of [kMinBlockSize, kMaxBlockSize].
//  2. the multiple of align unit.
extern size_t OptimizeBlockSize(size_t block_size);

125
}  // namespace rocksdb