COMBINATORIAL_BLAS  1.6
MemoryPool.h
Go to the documentation of this file.
1 /****************************************************************/
2 /* Parallel Combinatorial BLAS Library (for Graph Computations) */
3 /* version 1.6 -------------------------------------------------*/
4 /* date: 6/15/2017 ---------------------------------------------*/
5 /* authors: Ariful Azad, Aydin Buluc --------------------------*/
6 /****************************************************************/
7 /*
8  Copyright (c) 2010-2017, The Regents of the University of California
9 
10  Permission is hereby granted, free of charge, to any person obtaining a copy
11  of this software and associated documentation files (the "Software"), to deal
12  in the Software without restriction, including without limitation the rights
13  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14  copies of the Software, and to permit persons to whom the Software is
15  furnished to do so, subject to the following conditions:
16 
17  The above copyright notice and this permission notice shall be included in
18  all copies or substantial portions of the Software.
19 
20  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
26  THE SOFTWARE.
27  */
28 
29 
30 #ifndef _MEMORY_POOL_H
31 #define _MEMORY_POOL_H
32 
33 #include <iostream>
34 #include <list>
35 #include <new> // For "placement new" (classes using this memory pool may need it)
36 #include <fstream>
37 
38 namespace combblas {
39 
42 class Memory
43 {
44  public:
45  Memory(char * m_beg, size_t m_size): begin(m_beg),size(m_size)
46  {};
47 
48  char * begaddr() { return begin; }
49  char * endaddr() { return begin + size; }
50 
51  bool operator < (const Memory & rhs) const
52  { return (begin < rhs.begin); }
53  bool operator == (const Memory & rhs) const
54  { return (begin == rhs.begin); }
55 
56  char * begin;
57  size_t size;
58 };
59 
60 
67 {
68 public:
69  MemoryPool(void * m_beg, size_t m_size);
70 
71  void * alloc(size_t size);
72  void dealloc (void * base, size_t size);
73 
74  friend std::ofstream& operator<< (std::ofstream& outfile, const MemoryPool & mpool);
75 
76 private:
77  // std::list is a doubly linked list (i.e., a Sequence that supports both forward and backward traversal)
78  std::list<Memory> freelist;
79  char * initbeg;
80  char * initend;
81 };
82 
83 
84 }
85 
86 #endif
char * endaddr()
Definition: MemoryPool.h:49
bool operator==(const Memory &rhs) const
Definition: MemoryPool.h:53
bool operator<(const Memory &rhs) const
Definition: MemoryPool.h:51
Memory(char *m_beg, size_t m_size)
Definition: MemoryPool.h:45
char * begaddr()
Definition: MemoryPool.h:48
std::ofstream & operator<<(std::ofstream &outfile, const SpMat< UIT, UNT, UDER > &s)
Definition: SpMat.cpp:201
Definition: CCGrid.h:4