Initial commit of vpp code.
[vpp.git] / vppinfra / vppinfra / mem_mheap.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 /*
16   Copyright (c) 2001, 2002, 2003 Eliot Dresselhaus
17
18   Permission is hereby granted, free of charge, to any person obtaining
19   a copy of this software and associated documentation files (the
20   "Software"), to deal in the Software without restriction, including
21   without limitation the rights to use, copy, modify, merge, publish,
22   distribute, sublicense, and/or sell copies of the Software, and to
23   permit persons to whom the Software is furnished to do so, subject to
24   the following conditions:
25
26   The above copyright notice and this permission notice shall be
27   included in all copies or substantial portions of the Software.
28
29   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
30   EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31   MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
32   NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
33   LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
34   OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
35   WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 */
37
38 #include <vppinfra/format.h>
39 #include <vppinfra/mheap.h>
40 #include <vppinfra/os.h>
41
42 /* Valgrind stuff. */
43 #include <vppinfra/memcheck.h>
44 #include <vppinfra/valgrind.h>
45
46 clib_smp_main_t clib_smp_main = {
47   .n_cpus = 0,
48   .log2_n_per_cpu_stack_bytes = 20,
49   .log2_n_per_cpu_vm_bytes = 28,
50   .n_tls_4k_pages = 1,
51 };
52
53 void * clib_per_cpu_mheaps[32];
54
55 void clib_mem_exit (void)
56 {
57   u8 * heap = clib_mem_get_per_cpu_heap ();
58   if (heap)
59     mheap_free (heap);
60   clib_mem_set_per_cpu_heap (0);
61 }
62
63 /* Initialize CLIB heap based on memory/size given by user.
64    Set memory to 0 and CLIB will try to allocate its own heap. */
65 void * clib_mem_init (void * memory, uword memory_size)
66 {
67   u8 * heap;
68
69   if (memory || memory_size)
70     heap = mheap_alloc (memory, memory_size);
71   else
72     {
73       /* Allocate lots of address space since this will limit
74          the amount of memory the program can allocate.
75          In the kernel we're more conservative since some architectures
76          (e.g. mips) have pretty small kernel virtual address spaces. */
77 #ifdef __KERNEL__
78 #define MAX_VM_MEG 64
79 #else
80 #define MAX_VM_MEG 1024
81 #endif
82
83       uword alloc_size = MAX_VM_MEG << 20;
84       uword tries = 16;
85
86       while (1)
87         {
88           heap = mheap_alloc (0, alloc_size);
89           if (heap)
90             break;
91           alloc_size = (alloc_size * 3) / 4;
92           tries--;
93           if (tries == 0)
94             break;
95         }
96     }
97
98   clib_mem_set_heap (heap);
99
100   return heap;
101 }
102
103 #ifdef CLIB_LINUX_KERNEL
104 #include <asm/page.h>
105
106 uword clib_mem_get_page_size (void)
107 { return PAGE_SIZE; }
108 #endif
109
110 #ifdef CLIB_UNIX
111 uword clib_mem_get_page_size (void)
112 { return getpagesize (); }
113 #endif
114
115 /* Make a guess for standalone. */
116 #ifdef CLIB_STANDALONE
117 uword clib_mem_get_page_size (void)
118 { return 4096; }
119 #endif
120
121 u8 * format_clib_mem_usage (u8 * s, va_list * va)
122 {
123     int verbose = va_arg (*va, int);
124     return format (s, "%U", format_mheap, clib_mem_get_heap (), verbose);
125 }
126
127 void clib_mem_usage (clib_mem_usage_t * u)
128 { mheap_usage (clib_mem_get_heap (), u); }
129
130 /* Call serial number for debugger breakpoints. */
131 uword clib_mem_validate_serial = 0;
132
133 void clib_mem_validate (void)
134 {
135   if (MHEAP_HAVE_SMALL_OBJECT_CACHE)
136     clib_warning ("clib_mem_validate disabled (small object cache is ON)");
137   else
138     {
139       mheap_validate (clib_mem_get_heap ());
140       clib_mem_validate_serial++;
141     }
142 }
143
144 void clib_mem_trace (int enable)
145 { mheap_trace (clib_mem_get_heap (), enable); }