Subversion Repositories HelenOS

Rev

Rev 4342 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4342 Rev 4348
Line 41... Line 41...
41
#define ATTEMPTS  5
41
#define ATTEMPTS  5
42
 
42
 
43
static atomic_t threads_ok;
43
static atomic_t threads_ok;
44
static atomic_t threads_fault;
44
static atomic_t threads_fault;
45
static waitq_t can_start;
45
static waitq_t can_start;
46
static bool sh_quiet;
-
 
47
 
46
 
48
static void testit1(void *data)
47
static void testit1(void *data)
49
{
48
{
50
    int i;
49
    int i;
51
    int arg __attribute__((aligned(16))) = (int) ((unative_t) data);
50
    int arg __attribute__((aligned(16))) = (int) ((unative_t) data);
Line 67... Line 66...
67
            "mfc1 %0, $1"
66
            "mfc1 %0, $1"
68
            : "=r" (after_arg)
67
            : "=r" (after_arg)
69
        );
68
        );
70
       
69
       
71
        if (arg != after_arg) {
70
        if (arg != after_arg) {
72
            if (!sh_quiet)
-
 
73
                printf("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg);
71
            TPRINTF("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg);
74
            atomic_inc(&threads_fault);
72
            atomic_inc(&threads_fault);
75
            break;
73
            break;
76
        }
74
        }
77
    }
75
    }
78
    atomic_inc(&threads_ok);
76
    atomic_inc(&threads_ok);
Line 99... Line 97...
99
            "mfc1 %0,$1"
97
            "mfc1 %0,$1"
100
            : "=r" (after_arg)
98
            : "=r" (after_arg)
101
        );
99
        );
102
       
100
       
103
        if (arg != after_arg) {
101
        if (arg != after_arg) {
104
            if (!sh_quiet)
-
 
105
                printf("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg);
102
            TPRINTF("General reg tid%" PRIu64 ": arg(%d) != %d\n", THREAD->tid, arg, after_arg);
106
            atomic_inc(&threads_fault);
103
            atomic_inc(&threads_fault);
107
            break;
104
            break;
108
        }
105
        }
109
    }
106
    }
110
    atomic_inc(&threads_ok);
107
    atomic_inc(&threads_ok);
111
}
108
}
112
 
109
 
113
 
110
 
114
char * test_mips2(bool quiet)
111
char *test_mips2(void)
115
{
112
{
116
    unsigned int i, total = 0;
113
    unsigned int i, total = 0;
117
    sh_quiet = quiet;
-
 
118
   
114
   
119
    waitq_initialize(&can_start);
115
    waitq_initialize(&can_start);
120
    atomic_set(&threads_ok, 0);
116
    atomic_set(&threads_ok, 0);
121
    atomic_set(&threads_fault, 0);
117
    atomic_set(&threads_fault, 0);
122
   
118
   
123
    if (!quiet)
-
 
124
        printf("Creating %u threads... ", 2 * THREADS);
119
    TPRINTF("Creating %u threads... ", 2 * THREADS);
125
   
120
   
126
    for (i = 0; i < THREADS; i++) {
121
    for (i = 0; i < THREADS; i++) {
127
        thread_t *t;
122
        thread_t *t;
128
       
123
       
129
        if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) {
124
        if (!(t = thread_create(testit1, (void *) ((unative_t) 2 * i), TASK, 0, "testit1", false))) {
130
            if (!quiet)
-
 
131
                printf("could not create thread %u\n", 2 * i);
125
            TPRINTF("could not create thread %u\n", 2 * i);
132
            break;
126
            break;
133
        }
127
        }
134
        thread_ready(t);
128
        thread_ready(t);
135
        total++;
129
        total++;
136
       
130
       
137
        if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) {
131
        if (!(t = thread_create(testit2, (void *) ((unative_t) 2 * i + 1), TASK, 0, "testit2", false))) {
138
            if (!quiet)
-
 
139
                printf("could not create thread %u\n", 2 * i + 1);
132
            TPRINTF("could not create thread %u\n", 2 * i + 1);
140
            break;
133
            break;
141
        }
134
        }
142
        thread_ready(t);
135
        thread_ready(t);
143
        total++;
136
        total++;
144
    }
137
    }
145
   
138
   
146
    if (!quiet)
-
 
147
        printf("ok\n");
139
    TPRINTF("ok\n");
148
       
140
       
149
    thread_sleep(1);
141
    thread_sleep(1);
150
    waitq_wakeup(&can_start, WAKEUP_ALL);
142
    waitq_wakeup(&can_start, WAKEUP_ALL);
151
   
143
   
152
    while (atomic_get(&threads_ok) != (long) total) {
144
    while (atomic_get(&threads_ok) != (long) total) {
153
        if (!quiet)
-
 
154
            printf("Threads left: %d\n", total - atomic_get(&threads_ok));
145
        TPRINTF("Threads left: %d\n", total - atomic_get(&threads_ok));
155
        thread_sleep(1);
146
        thread_sleep(1);
156
    }
147
    }
157
   
148
   
158
    if (atomic_get(&threads_fault) == 0)
149
    if (atomic_get(&threads_fault) == 0)
159
        return NULL;
150
        return NULL;