SystemC  2.3.2
Accellera SystemC proof-of-concept library
sc_mempool.h
Go to the documentation of this file.
1 /*****************************************************************************
2 
3  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4  more contributor license agreements. See the NOTICE file distributed
5  with this work for additional information regarding copyright ownership.
6  Accellera licenses this file to you under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with the
8  License. You may obtain a copy of the License at
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15  implied. See the License for the specific language governing
16  permissions and limitations under the License.
17 
18  *****************************************************************************/
19 
20 /*****************************************************************************
21 
22  sc_mempool.h - Memory pools for small objects.
23 
24  Original Author: Stan Y. Liao, Synopsys, Inc.
25 
26  CHANGE LOG AT END OF FILE
27  *****************************************************************************/
28 
29 #ifndef SC_MEMPOOL_H
30 #define SC_MEMPOOL_H
31 
32 namespace sc_core {
33 
39 {
40 public:
41 
42  static void* allocate( std::size_t sz );
43  static void release( void* p, std::size_t sz );
44  static void display_statistics();
45 };
46 
47 
53 {
54 public:
55 
56  static void* operator new( std::size_t sz )
57  { return sc_mempool::allocate( sz ); }
58 
59  static void operator delete( void* p, std::size_t sz )
60  { sc_mempool::release( p, sz ); }
61 
62  static void* operator new[]( std::size_t sz )
63  { return sc_mempool::allocate( sz ); }
64 
65  static void operator delete[]( void* p, std::size_t sz )
66  { sc_mempool::release( p, sz ); }
67 };
68 
69 } // namespace sc_core
70 
71 // $Log: sc_mempool.h,v $
72 // Revision 1.3 2011/08/26 20:46:18 acg
73 // Andy Goodrich: moved the modification log to the end of the file to
74 // eliminate source line number skew when check-ins are done.
75 //
76 // Revision 1.2 2011/02/18 20:38:44 acg
77 // Andy Goodrich: Updated Copyright notice.
78 //
79 // Revision 1.1.1.1 2006/12/15 20:20:06 acg
80 // SystemC 2.3
81 //
82 // Revision 1.3 2006/01/13 18:53:11 acg
83 // Andy Goodrich: Added $Log command so that CVS comments are reproduced in
84 // the source.
85 
86 #endif
static void release(void *p, std::size_t sz)
static void * allocate(std::size_t sz)
#define SC_API
Definition: sc_cmnhdr.h:168