SystemC 3.0.0
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
32namespace sc_core {
33
34// ----------------------------------------------------------------------------
35// CLASS : sc_mempool
36//
37// ...
38// ----------------------------------------------------------------------------
39
41{
42public:
43
44 static void* allocate( std::size_t sz );
45 static void release( void* p, std::size_t sz );
46 static void display_statistics();
47};
48
49
50// ----------------------------------------------------------------------------
51// CLASS : sc_mpobject
52//
53// ...
54// ----------------------------------------------------------------------------
55
57{
58public:
59
60 static void* operator new( std::size_t sz )
61 { return sc_mempool::allocate( sz ); }
62
63 static void operator delete( void* p, std::size_t sz )
64 { sc_mempool::release( p, sz ); }
65
66 static void* operator new[]( std::size_t sz )
67 { return sc_mempool::allocate( sz ); }
68
69 static void operator delete[]( void* p, std::size_t sz )
70 { sc_mempool::release( p, sz ); }
71};
72
73} // namespace sc_core
74
75// $Log: sc_mempool.h,v $
76// Revision 1.3 2011/08/26 20:46:18 acg
77// Andy Goodrich: moved the modification log to the end of the file to
78// eliminate source line number skew when check-ins are done.
79//
80// Revision 1.2 2011/02/18 20:38:44 acg
81// Andy Goodrich: Updated Copyright notice.
82//
83// Revision 1.1.1.1 2006/12/15 20:20:06 acg
84// SystemC 2.3
85//
86// Revision 1.3 2006/01/13 18:53:11 acg
87// Andy Goodrich: Added $Log command so that CVS comments are reproduced in
88// the source.
89
90#endif
#define SC_API
Definition: sc_cmnhdr.h:148
static void display_statistics()
static void release(void *p, std::size_t sz)
static void * allocate(std::size_t sz)