summaryrefslogtreecommitdiffstats
path: root/nsprpub/pr/tests/stack.c
blob: 5526a27445ba082be9bc61af14c41de5f9cbffc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


/*
 *
 * Test atomic stack operations
 *
 *      Two stacks are created and threads add data items (each containing
 *      one of the first n integers) to the first stack, remove data items
 *      from the first stack and add them to the second stack. The primordial
 *      thread compares the sum of the first n integers to the sum of the
 *      integers in the data items in the second stack. The test succeeds if
 *      they are equal.
 */

#include "nspr.h"
#include "plgetopt.h"

typedef struct _DataRecord {
    PRInt32 data;
    PRStackElem link;
} DataRecord;

#define RECORD_LINK_PTR(lp) ((DataRecord*) ((char*) (lp) - offsetof(DataRecord,link)))

#define MAX_THREAD_CNT      100
#define DEFAULT_THREAD_CNT  4
#define DEFAULT_DATA_CNT    100
#define DEFAULT_LOOP_CNT    10000

/*
 * sum of the first n numbers using the formula n*(n+1)/2
 */
#define SUM_OF_NUMBERS(n) ((n & 1) ? (((n + 1)/2) * n) : ((n/2) * (n+1)))

typedef struct stack_data {
    PRStack     *list1;
    PRStack     *list2;
    PRInt32     initial_data_value;
    PRInt32     data_cnt;
    PRInt32     loops;
} stack_data;

static void stackop(void *arg);

static int _debug_on;

PRFileDesc  *output;
PRFileDesc  *errhandle;

int main(int argc, char **argv)
{
    PRInt32 rv, cnt, sum;
    DataRecord  *Item;
    PRStack     *list1, *list2;
    PRStackElem *node;
    PRStatus rc;

    PRInt32 thread_cnt = DEFAULT_THREAD_CNT;
    PRInt32 data_cnt = DEFAULT_DATA_CNT;
    PRInt32 loops = DEFAULT_LOOP_CNT;
    PRThread **threads;
    stack_data *thread_args;

    PLOptStatus os;
    PLOptState *opt = PL_CreateOptState(argc, argv, "dt:c:l:");

    while (PL_OPT_EOL != (os = PL_GetNextOpt(opt)))
    {
        if (PL_OPT_BAD == os) {
            continue;
        }
        switch (opt->option)
        {
            case 'd':  /* debug mode */
                _debug_on = 1;
                break;
            case 't':  /* thread count */
                thread_cnt = atoi(opt->value);
                break;
            case 'c':  /* data count */
                data_cnt = atoi(opt->value);
                break;
            case 'l':  /* loop count */
                loops = atoi(opt->value);
                break;
            default:
                break;
        }
    }
    PL_DestroyOptState(opt);

    PR_SetConcurrency(4);

    output = PR_GetSpecialFD(PR_StandardOutput);
    errhandle = PR_GetSpecialFD(PR_StandardError);
    list1 = PR_CreateStack("Stack_1");
    if (list1 == NULL) {
        PR_fprintf(errhandle, "PR_CreateStack failed - error %d\n",
                   PR_GetError());
        return 1;
    }

    list2 = PR_CreateStack("Stack_2");
    if (list2 == NULL) {
        PR_fprintf(errhandle, "PR_CreateStack failed - error %d\n",
                   PR_GetError());
        return 1;
    }


    threads = (PRThread**) PR_CALLOC(sizeof(PRThread*) * thread_cnt);
    thread_args = (stack_data *) PR_CALLOC(sizeof(stack_data) * thread_cnt);

    if (_debug_on)
        PR_fprintf(output,"%s: thread_cnt = %d data_cnt = %d\n", argv[0],
                   thread_cnt, data_cnt);
    for(cnt = 0; cnt < thread_cnt; cnt++) {
        PRThreadScope scope;

        thread_args[cnt].list1 = list1;
        thread_args[cnt].list2 = list2;
        thread_args[cnt].loops = loops;
        thread_args[cnt].data_cnt = data_cnt;
        thread_args[cnt].initial_data_value = 1 + cnt * data_cnt;

        if (cnt & 1) {
            scope = PR_GLOBAL_THREAD;
        }
        else {
            scope = PR_LOCAL_THREAD;
        }


        threads[cnt] = PR_CreateThread(PR_USER_THREAD,
                                       stackop, &thread_args[cnt],
                                       PR_PRIORITY_NORMAL,
                                       scope,
                                       PR_JOINABLE_THREAD,
                                       0);
        if (threads[cnt] == NULL) {
            PR_fprintf(errhandle, "PR_CreateThread failed - error %d\n",
                       PR_GetError());
            PR_ProcessExit(2);
        }
        if (_debug_on)
            PR_fprintf(output,"%s: created thread = 0x%x\n", argv[0],
                       threads[cnt]);
    }

    for(cnt = 0; cnt < thread_cnt; cnt++) {
        rc = PR_JoinThread(threads[cnt]);
        PR_ASSERT(rc == PR_SUCCESS);
    }

    node = PR_StackPop(list1);
    /*
     * list1 should be empty
     */
    if (node != NULL) {
        PR_fprintf(errhandle, "Error - Stack 1 not empty\n");
        PR_ASSERT(node == NULL);
        PR_ProcessExit(4);
    }

    cnt = data_cnt * thread_cnt;
    sum = 0;
    while (cnt-- > 0) {
        node = PR_StackPop(list2);
        /*
         * There should be at least 'cnt' number of records
         */
        if (node == NULL) {
            PR_fprintf(errhandle, "Error - PR_StackPop returned NULL\n");
            PR_ProcessExit(3);
        }
        Item = RECORD_LINK_PTR(node);
        sum += Item->data;
    }
    node = PR_StackPop(list2);
    /*
     * there should be exactly 'cnt' number of records
     */
    if (node != NULL) {
        PR_fprintf(errhandle, "Error - Stack 2 not empty\n");
        PR_ASSERT(node == NULL);
        PR_ProcessExit(4);
    }
    PR_DELETE(threads);
    PR_DELETE(thread_args);

    PR_DestroyStack(list1);
    PR_DestroyStack(list2);

    if (sum == SUM_OF_NUMBERS(data_cnt * thread_cnt)) {
        PR_fprintf(output, "%s successful\n", argv[0]);
        PR_fprintf(output, "\t\tsum = 0x%x, expected = 0x%x\n", sum,
                   SUM_OF_NUMBERS(thread_cnt * data_cnt));
        return 0;
    } else {
        PR_fprintf(output, "%s failed: sum = 0x%x, expected = 0x%x\n",
                   argv[0], sum,
                   SUM_OF_NUMBERS(data_cnt * thread_cnt));
        return 2;
    }
}

static void stackop(void *thread_arg)
{
    PRInt32 val, cnt, index, loops;
    DataRecord  *Items, *Item;
    PRStack     *list1, *list2;
    PRStackElem *node;
    stack_data *arg = (stack_data *) thread_arg;

    val = arg->initial_data_value;
    cnt = arg->data_cnt;
    loops = arg->loops;
    list1 = arg->list1;
    list2 = arg->list2;

    /*
     * allocate memory for the data records
     */
    Items = (DataRecord *) PR_CALLOC(sizeof(DataRecord) * cnt);
    PR_ASSERT(Items != NULL);
    index = 0;

    if (_debug_on)
        PR_fprintf(output,
                   "Thread[0x%x] init_val = %d cnt = %d data1 = 0x%x datan = 0x%x\n",
                   PR_GetCurrentThread(), val, cnt, &Items[0], &Items[cnt-1]);


    /*
     * add the data records to list1
     */
    while (cnt-- > 0) {
        Items[index].data = val++;
        PR_StackPush(list1, &Items[index].link);
        index++;
    }

    /*
     * pop data records from list1 and add them back to list1
     * generates contention for the stack accesses
     */
    while (loops-- > 0) {
        cnt = arg->data_cnt;
        while (cnt-- > 0) {
            node = PR_StackPop(list1);
            if (node == NULL) {
                PR_fprintf(errhandle, "Error - PR_StackPop returned NULL\n");
                PR_ASSERT(node != NULL);
                PR_ProcessExit(3);
            }
            PR_StackPush(list1, node);
        }
    }
    /*
     * remove the data records from list1 and add them to list2
     */
    cnt = arg->data_cnt;
    while (cnt-- > 0) {
        node = PR_StackPop(list1);
        if (node == NULL) {
            PR_fprintf(errhandle, "Error - PR_StackPop returned NULL\n");
            PR_ASSERT(node != NULL);
            PR_ProcessExit(3);
        }
        PR_StackPush(list2, node);
    }
    if (_debug_on)
        PR_fprintf(output,
                   "Thread[0x%x] init_val = %d cnt = %d exiting\n",
                   PR_GetCurrentThread(), val, cnt);

}