blob: da3ad24a820548dfdf593abdfbaf70ee8ae60112 [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
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 <unistd.h>
39#include <stdlib.h>
40
41#include <vppinfra/mem.h>
42#include <vppinfra/heap.h>
43#include <vppinfra/format.h>
44
45static int verbose;
46#define if_verbose(format,args...) \
47 if (verbose) { clib_warning(format, ## args); }
48
Dave Barach6a5adc32018-07-04 10:56:23 -040049u32
50vl (void *p)
51{
52 return (vec_len (p));
53}
54
Dave Barachc3799992016-08-15 11:12:27 -040055int
56main (int argc, char *argv[])
Ed Warnickecb9cada2015-12-08 15:45:58 -070057{
58 word i, j, k, n, check_mask;
59 u32 seed;
Dave Barachc3799992016-08-15 11:12:27 -040060 u32 *h = 0;
61 uword *objects = 0;
62 uword *handles = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070063 uword objects_used;
Damjan Marion299571a2022-03-19 00:07:52 +010064 uword align;
Ed Warnickecb9cada2015-12-08 15:45:58 -070065
Dave Barach6a5adc32018-07-04 10:56:23 -040066 clib_mem_init (0, 10 << 20);
67
Ed Warnickecb9cada2015-12-08 15:45:58 -070068 n = 10;
69 seed = (u32) getpid ();
70 check_mask = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
72 if (argc > 1)
73 {
74 n = atoi (argv[1]);
75 verbose = 1;
76 }
77 if (argc > 2)
78 {
79 word i = atoi (argv[2]);
80 if (i)
81 seed = i;
82 }
83 if (argc > 3)
84 check_mask = atoi (argv[3]);
85
86 align = 0;
87 if (argc > 4)
88 align = 1 << atoi (argv[4]);
89
Dave Barachc3799992016-08-15 11:12:27 -040090 if_verbose ("testing %wd iterations seed %wd\n", n, seed);
Ed Warnickecb9cada2015-12-08 15:45:58 -070091
Dave Barachc3799992016-08-15 11:12:27 -040092 if (verbose)
93 fformat (stderr, "%U\n", format_clib_mem_usage, /* verbose */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
95 vec_resize (objects, 1000);
Ole Troan3288ed72017-12-06 17:00:05 +010096 if (vec_bytes (objects) > 0) /* stupid warning be gone */
Dave Barachb7b92992018-10-17 10:38:51 -040097 clib_memset (objects, ~0, vec_bytes (objects));
Ed Warnickecb9cada2015-12-08 15:45:58 -070098 vec_resize (handles, vec_len (objects));
99
100 objects_used = 0;
101
Ed Warnickecb9cada2015-12-08 15:45:58 -0700102 for (i = 0; i < n; i++)
103 {
104 while (1)
105 {
106 j = random_u32 (&seed) % vec_len (objects);
107 if (objects[j] != ~0 || i + objects_used < n)
108 break;
109 }
110
111 if (objects[j] != ~0)
112 {
113 heap_dealloc (h, handles[j]);
114 objects_used--;
115 objects[j] = ~0;
116 }
117 else
118 {
Dave Barachc3799992016-08-15 11:12:27 -0400119 u32 *data;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120 uword size;
121
122 size = 1 + (random_u32 (&seed) % 100);
123 objects[j] = heap_alloc_aligned (h, size, align, handles[j]);
124 objects_used++;
125
126 if (align)
127 ASSERT (0 == (objects[j] & (align - 1)));
128 ASSERT (objects[j] < vec_len (h));
129 ASSERT (size <= heap_len (h, handles[j]));
130
131 /* Set newly allocated object with test data. */
132 if (check_mask & 2)
133 {
134 data = h + objects[j];
135
136 for (k = 0; k < size; k++)
137 data[k] = objects[j] + k;
138 }
139 }
140
141 if (check_mask & 1)
142 heap_validate (h);
143
144 if (check_mask & 4)
145 {
146 /* Duplicate heap at each iteration. */
Dave Barachc3799992016-08-15 11:12:27 -0400147 u32 *h1 = heap_dup (h);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148 heap_free (h);
149 h = h1;
150 }
151
152 /* Verify that all used objects have correct test data. */
153 if (check_mask & 2)
154 {
155 for (j = 0; j < vec_len (objects); j++)
156 if (objects[j] != ~0)
157 {
Dave Barachc3799992016-08-15 11:12:27 -0400158 u32 *data = h + objects[j];
Ed Warnickecb9cada2015-12-08 15:45:58 -0700159 for (k = 0; k < heap_len (h, handles[j]); k++)
Dave Barachc3799992016-08-15 11:12:27 -0400160 ASSERT (data[k] == objects[j] + k);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700161 }
162 }
163 }
164
Dave Barachc3799992016-08-15 11:12:27 -0400165 if (verbose)
166 fformat (stderr, "%U\n", format_heap, h, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700167
168 {
Dave Barachc3799992016-08-15 11:12:27 -0400169 u32 *h1 = heap_dup (h);
170 if (verbose)
171 fformat (stderr, "%U\n", format_heap, h1, 1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172 heap_free (h1);
173 }
174
175 heap_free (h);
Dave Barachc3799992016-08-15 11:12:27 -0400176 if (verbose)
177 fformat (stderr, "%U\n", format_heap, h, 1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400178 // ASSERT (objects_used == 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700179
180 vec_free (objects);
181 vec_free (handles);
182
Dave Barachc3799992016-08-15 11:12:27 -0400183 if (verbose)
184 fformat (stderr, "%U\n", format_clib_mem_usage, /* verbose */ 0);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700185
186 return 0;
187}
Dave Barachc3799992016-08-15 11:12:27 -0400188
189/*
190 * fd.io coding-style-patch-verification: ON
191 *
192 * Local Variables:
193 * eval: (c-set-style "gnu")
194 * End:
195 */