Subversion Repositories HelenOS

Rev

Rev 1787 | Rev 2021 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1787 Rev 2019
1
/*
1
/*
2
 * Copyright (C) 2006 Ondrej Palkovsky
2
 * Copyright (C) 2006 Ondrej Palkovsky
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
#include <test.h>
29
#include <test.h>
30
#include <mm/slab.h>
30
#include <mm/slab.h>
31
#include <print.h>
31
#include <print.h>
32
#include <proc/thread.h>
32
#include <proc/thread.h>
33
#include <arch.h>
33
#include <arch.h>
34
#include <panic.h>
34
#include <panic.h>
35
#include <mm/frame.h>
35
#include <mm/frame.h>
36
#include <memstr.h>
36
#include <memstr.h>
37
#include <synch/condvar.h>
37
#include <synch/condvar.h>
38
#include <synch/mutex.h>
38
#include <synch/mutex.h>
39
 
39
 
-
 
40
#ifdef CONFIG_BENCH
-
 
41
#include <arch/cycle.h>
-
 
42
#endif
-
 
43
 
40
#define ITEM_SIZE 256
44
#define ITEM_SIZE 256
41
 
45
 
42
/** Fill memory with 2 caches, when allocation fails,
46
/** Fill memory with 2 caches, when allocation fails,
43
 *  free one of the caches. We should have everything in magazines,
47
 *  free one of the caches. We should have everything in magazines,
44
 *  now allocation should clean magazines and allow for full allocation.
48
 *  now allocation should clean magazines and allow for full allocation.
45
 */
49
 */
46
static void totalmemtest(void)
50
static void totalmemtest(void)
47
{
51
{
48
    slab_cache_t *cache1;
52
    slab_cache_t *cache1;
49
    slab_cache_t *cache2;
53
    slab_cache_t *cache2;
50
    int i;
54
    int i;
51
 
55
 
52
    void *data1, *data2;
56
    void *data1, *data2;
53
    void *olddata1=NULL, *olddata2=NULL;
57
    void *olddata1=NULL, *olddata2=NULL;
54
   
58
   
55
    cache1 = slab_cache_create("cache1_tst", ITEM_SIZE, 0, NULL, NULL, 0);
59
    cache1 = slab_cache_create("cache1_tst", ITEM_SIZE, 0, NULL, NULL, 0);
56
    cache2 = slab_cache_create("cache2_tst", ITEM_SIZE, 0, NULL, NULL, 0);
60
    cache2 = slab_cache_create("cache2_tst", ITEM_SIZE, 0, NULL, NULL, 0);
57
 
61
 
58
    printf("Allocating...");
62
    printf("Allocating...");
59
    /* Use atomic alloc, so that we find end of memory */
63
    /* Use atomic alloc, so that we find end of memory */
60
    do {
64
    do {
61
        data1 = slab_alloc(cache1, FRAME_ATOMIC);
65
        data1 = slab_alloc(cache1, FRAME_ATOMIC);
62
        data2 = slab_alloc(cache2, FRAME_ATOMIC);
66
        data2 = slab_alloc(cache2, FRAME_ATOMIC);
63
        if (!data1 || !data2) {
67
        if (!data1 || !data2) {
64
            if (data1)
68
            if (data1)
65
                slab_free(cache1,data1);
69
                slab_free(cache1,data1);
66
            if (data2)
70
            if (data2)
67
                slab_free(cache2,data2);
71
                slab_free(cache2,data2);
68
            break;
72
            break;
69
        }
73
        }
70
        memsetb((uintptr_t)data1, ITEM_SIZE, 0);
74
        memsetb((uintptr_t)data1, ITEM_SIZE, 0);
71
        memsetb((uintptr_t)data2, ITEM_SIZE, 0);
75
        memsetb((uintptr_t)data2, ITEM_SIZE, 0);
72
        *((void **)data1) = olddata1;
76
        *((void **)data1) = olddata1;
73
        *((void **)data2) = olddata2;
77
        *((void **)data2) = olddata2;
74
        olddata1 = data1;
78
        olddata1 = data1;
75
        olddata2 = data2;
79
        olddata2 = data2;
76
    }while(1);
80
    }while(1);
77
    printf("done.\n");
81
    printf("done.\n");
78
    /* We do not have memory - now deallocate cache2 */
82
    /* We do not have memory - now deallocate cache2 */
79
    printf("Deallocating cache2...");
83
    printf("Deallocating cache2...");
80
    while (olddata2) {
84
    while (olddata2) {
81
        data2 = *((void **)olddata2);
85
        data2 = *((void **)olddata2);
82
        slab_free(cache2, olddata2);
86
        slab_free(cache2, olddata2);
83
        olddata2 = data2;
87
        olddata2 = data2;
84
    }
88
    }
85
    printf("done.\n");
89
    printf("done.\n");
86
 
90
 
87
    printf("Allocating to cache1...\n");
91
    printf("Allocating to cache1...\n");
88
    for (i=0; i<30; i++) {
92
    for (i=0; i<30; i++) {
89
        data1 = slab_alloc(cache1, FRAME_ATOMIC);
93
        data1 = slab_alloc(cache1, FRAME_ATOMIC);
90
        if (!data1) {
94
        if (!data1) {
91
            panic("Incorrect memory size - use another test.");
95
            panic("Incorrect memory size - use another test.");
92
        }
96
        }
93
        memsetb((uintptr_t)data1, ITEM_SIZE, 0);
97
        memsetb((uintptr_t)data1, ITEM_SIZE, 0);
94
        *((void **)data1) = olddata1;
98
        *((void **)data1) = olddata1;
95
        olddata1 = data1;
99
        olddata1 = data1;
96
    }
100
    }
97
    while (1) {
101
    while (1) {
98
        data1 = slab_alloc(cache1, FRAME_ATOMIC);
102
        data1 = slab_alloc(cache1, FRAME_ATOMIC);
99
        if (!data1) {
103
        if (!data1) {
100
            break;
104
            break;
101
        }
105
        }
102
        memsetb((uintptr_t)data1, ITEM_SIZE, 0);
106
        memsetb((uintptr_t)data1, ITEM_SIZE, 0);
103
        *((void **)data1) = olddata1;
107
        *((void **)data1) = olddata1;
104
        olddata1 = data1;
108
        olddata1 = data1;
105
    }
109
    }
106
    printf("Deallocating cache1...");
110
    printf("Deallocating cache1...");
107
    while (olddata1) {
111
    while (olddata1) {
108
        data1 = *((void **)olddata1);
112
        data1 = *((void **)olddata1);
109
        slab_free(cache1, olddata1);
113
        slab_free(cache1, olddata1);
110
        olddata1 = data1;
114
        olddata1 = data1;
111
    }
115
    }
112
    printf("done.\n");
116
    printf("done.\n");
113
    slab_print_list();
117
    slab_print_list();
114
    slab_cache_destroy(cache1);
118
    slab_cache_destroy(cache1);
115
    slab_cache_destroy(cache2);
119
    slab_cache_destroy(cache2);
116
}
120
}
117
 
121
 
118
slab_cache_t *thr_cache;
122
slab_cache_t *thr_cache;
119
semaphore_t thr_sem;
123
semaphore_t thr_sem;
120
condvar_t thread_starter;
124
condvar_t thread_starter;
121
mutex_t starter_mutex;
125
mutex_t starter_mutex;
122
 
126
 
123
#define THREADS 8
127
#define THREADS 8
124
 
128
 
125
static void slabtest(void *priv)
129
static void slabtest(void *priv)
126
{
130
{
127
    void *data=NULL, *new;
131
    void *data=NULL, *new;
128
 
132
 
129
    thread_detach(THREAD);
133
    thread_detach(THREAD);
130
 
134
 
131
    mutex_lock(&starter_mutex);
135
    mutex_lock(&starter_mutex);
132
    condvar_wait(&thread_starter,&starter_mutex);
136
    condvar_wait(&thread_starter,&starter_mutex);
133
    mutex_unlock(&starter_mutex);
137
    mutex_unlock(&starter_mutex);
134
       
138
       
135
    printf("Starting thread #%d...\n",THREAD->tid);
139
    printf("Starting thread #%d...\n",THREAD->tid);
136
 
140
 
137
    /* Alloc all */
141
    /* Alloc all */
138
    printf("Thread #%d allocating...\n", THREAD->tid);
142
    printf("Thread #%d allocating...\n", THREAD->tid);
139
    while (1) {
143
    while (1) {
140
        /* Call with atomic to detect end of memory */
144
        /* Call with atomic to detect end of memory */
141
        new = slab_alloc(thr_cache, FRAME_ATOMIC);
145
        new = slab_alloc(thr_cache, FRAME_ATOMIC);
142
        if (!new)
146
        if (!new)
143
            break;
147
            break;
144
        *((void **)new) = data;
148
        *((void **)new) = data;
145
        data = new;
149
        data = new;
146
    }
150
    }
147
    printf("Thread #%d releasing...\n", THREAD->tid);
151
    printf("Thread #%d releasing...\n", THREAD->tid);
148
    while (data) {
152
    while (data) {
149
        new = *((void **)data);
153
        new = *((void **)data);
150
        *((void **)data) = NULL;
154
        *((void **)data) = NULL;
151
        slab_free(thr_cache, data);
155
        slab_free(thr_cache, data);
152
        data = new;
156
        data = new;
153
    }
157
    }
154
    printf("Thread #%d allocating...\n", THREAD->tid);
158
    printf("Thread #%d allocating...\n", THREAD->tid);
155
    while (1) {
159
    while (1) {
156
        /* Call with atomic to detect end of memory */
160
        /* Call with atomic to detect end of memory */
157
        new = slab_alloc(thr_cache, FRAME_ATOMIC);
161
        new = slab_alloc(thr_cache, FRAME_ATOMIC);
158
        if (!new)
162
        if (!new)
159
            break;
163
            break;
160
        *((void **)new) = data;
164
        *((void **)new) = data;
161
        data = new;
165
        data = new;
162
    }
166
    }
163
    printf("Thread #%d releasing...\n", THREAD->tid);
167
    printf("Thread #%d releasing...\n", THREAD->tid);
164
    while (data) {
168
    while (data) {
165
        new = *((void **)data);
169
        new = *((void **)data);
166
        *((void **)data) = NULL;
170
        *((void **)data) = NULL;
167
        slab_free(thr_cache, data);
171
        slab_free(thr_cache, data);
168
        data = new;
172
        data = new;
169
    }
173
    }
170
 
174
 
171
 
175
 
172
    printf("Thread #%d finished\n", THREAD->tid);
176
    printf("Thread #%d finished\n", THREAD->tid);
173
    slab_print_list();
177
    slab_print_list();
174
    semaphore_up(&thr_sem);
178
    semaphore_up(&thr_sem);
175
}
179
}
176
 
180
 
177
 
181
 
178
static void multitest(int size)
182
static void multitest(int size)
179
{
183
{
180
    /* Start 8 threads that just allocate as much as possible,
184
    /* Start 8 threads that just allocate as much as possible,
181
     * then release everything, then again allocate, then release
185
     * then release everything, then again allocate, then release
182
     */
186
     */
183
    thread_t *t;
187
    thread_t *t;
184
    int i;
188
    int i;
185
 
189
 
186
    printf("Running stress test with size %d\n", size);
190
    printf("Running stress test with size %d\n", size);
187
    condvar_initialize(&thread_starter);
191
    condvar_initialize(&thread_starter);
188
    mutex_initialize(&starter_mutex);
192
    mutex_initialize(&starter_mutex);
189
 
193
 
190
    thr_cache = slab_cache_create("thread_cache", size, 0,
194
    thr_cache = slab_cache_create("thread_cache", size, 0,
191
                      NULL, NULL,
195
                      NULL, NULL,
192
                      0);
196
                      0);
193
    semaphore_initialize(&thr_sem,0);
197
    semaphore_initialize(&thr_sem,0);
194
    for (i=0; i<THREADS; i++) {  
198
    for (i=0; i<THREADS; i++) {  
195
        if (!(t = thread_create(slabtest, NULL, TASK, 0, "slabtest")))
199
        if (!(t = thread_create(slabtest, NULL, TASK, 0, "slabtest")))
196
            panic("could not create thread\n");
200
            panic("could not create thread\n");
197
        thread_ready(t);
201
        thread_ready(t);
198
    }
202
    }
199
    thread_sleep(1);
203
    thread_sleep(1);
200
    condvar_broadcast(&thread_starter);
204
    condvar_broadcast(&thread_starter);
201
 
205
 
202
    for (i=0; i<THREADS; i++)
206
    for (i=0; i<THREADS; i++)
203
        semaphore_down(&thr_sem);
207
        semaphore_down(&thr_sem);
204
   
208
   
205
    slab_cache_destroy(thr_cache);
209
    slab_cache_destroy(thr_cache);
206
    printf("Stress test complete.\n");
210
    printf("Stress test complete.\n");
207
}
211
}
208
 
212
 
209
void test(void)
213
void test(void)
210
{
214
{
-
 
215
#ifdef CONFIG_BENCH
-
 
216
    uint64_t t0 = get_cycle();
-
 
217
#endif
-
 
218
 
211
    printf("Running reclaim single-thread test .. pass1\n");
219
    printf("Running reclaim single-thread test .. pass1\n");
212
    totalmemtest();
220
    totalmemtest();
213
    printf("Running reclaim single-thread test .. pass2\n");
221
    printf("Running reclaim single-thread test .. pass2\n");
214
    totalmemtest();
222
    totalmemtest();
215
    printf("Reclaim test OK.\n");
223
    printf("Reclaim test OK.\n");
216
 
224
 
217
    multitest(128);
225
    multitest(128);
218
    multitest(2048);
226
    multitest(2048);
219
    multitest(8192);
227
    multitest(8192);
220
    printf("All done.\n");
228
    printf("All done.\n");
-
 
229
 
-
 
230
#ifdef CONFIG_BENCH
-
 
231
    uint64_t dt = get_cycle() - t0;
-
 
232
    printf("Time: %.*d cycles\n", sizeof(dt) * 2, dt);
-
 
233
#endif
221
}
234
}
222
 
235