Subversion Repositories HelenOS

Rev

Rev 1787 | Rev 2027 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
295 palkovsky 1
/*
2
 * Copyright (C) 2005 Ondrej Palkovsky
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
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
15
 *   derived from this software without specific prior written permission.
16
 *
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
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
29
#include <print.h>
30
#include <debug.h>
31
#include <panic.h>
32
 
33
#include <test.h>
1104 jermar 34
#include <atomic.h>
295 palkovsky 35
#include <proc/thread.h>
36
#include <time/delay.h>
37
 
38
#include <arch.h>
39
 
2021 decky 40
#ifdef CONFIG_BENCH
41
#include <arch/cycle.h>
42
#endif
43
 
44
#if (defined(ia32) || defined(amd64) || defined(ia32xen))
45
 
295 palkovsky 46
#define THREADS     50
47
#define DELAY       10000L
48
#define ATTEMPTS        5
49
 
483 jermar 50
static atomic_t threads_ok;
295 palkovsky 51
static waitq_t can_start;
52
 
296 palkovsky 53
static void testit1(void *data)
295 palkovsky 54
{
55
    int i;
1780 jermar 56
    int arg __attribute__((aligned(16))) = (int)((unative_t) data);
295 palkovsky 57
    int after_arg __attribute__((aligned(16)));
1658 vana 58
 
59
    thread_detach(THREAD);
295 palkovsky 60
 
61
    waitq_sleep(&can_start);
62
 
63
    for (i = 0; i<ATTEMPTS; i++) {
64
        __asm__ volatile (
65
            "movlpd %0, %%xmm2"
66
            :"=m"(arg)
67
            );
68
 
69
        delay(DELAY);
70
        __asm__ volatile (
71
            "movlpd %%xmm2, %0"
72
            :"=m"(after_arg)
73
            );
74
 
75
        if(arg != after_arg)
76
            panic("tid%d: arg(%d) != %d\n",
77
                  THREAD->tid, arg, after_arg);
78
    }
79
 
80
    atomic_inc(&threads_ok);
81
}
82
 
296 palkovsky 83
static void testit2(void *data)
84
{
85
    int i;
1780 jermar 86
    int arg __attribute__((aligned(16))) = (int)((unative_t) data);
296 palkovsky 87
    int after_arg __attribute__((aligned(16)));
1658 vana 88
 
89
    thread_detach(THREAD);
296 palkovsky 90
 
91
    waitq_sleep(&can_start);
295 palkovsky 92
 
296 palkovsky 93
    for (i = 0; i<ATTEMPTS; i++) {
94
        __asm__ volatile (
95
            "movlpd %0, %%xmm2"
96
            :"=m"(arg)
97
            );
98
 
99
        scheduler();
100
        __asm__ volatile (
101
            "movlpd %%xmm2, %0"
102
            :"=m"(after_arg)
103
            );
104
 
105
        if(arg != after_arg)
106
            panic("tid%d: arg(%d) != %d\n",
107
                  THREAD->tid, arg, after_arg);
108
    }
109
 
110
    atomic_inc(&threads_ok);
111
}
112
 
113
 
2021 decky 114
void test_sse1(void)
295 palkovsky 115
{
2021 decky 116
#ifdef CONFIG_BENCH
117
    uint64_t t0 = get_cycle();
118
#endif
295 palkovsky 119
    thread_t *t;
120
    int i;
121
 
122
    waitq_initialize(&can_start);
123
 
124
    printf("SSE test #1\n");
125
    printf("Creating %d threads... ", THREADS);
126
 
296 palkovsky 127
    for (i=0; i<THREADS/2; i++) {  
1780 jermar 128
        if (!(t = thread_create(testit1, (void *)((unative_t)i*2), TASK, 0, "testit1")))
295 palkovsky 129
            panic("could not create thread\n");
130
        thread_ready(t);
1780 jermar 131
        if (!(t = thread_create(testit2, (void *)((unative_t)i*2+1), TASK, 0, "testit2")))
296 palkovsky 132
            panic("could not create thread\n");
133
        thread_ready(t);
295 palkovsky 134
    }
296 palkovsky 135
 
295 palkovsky 136
    printf("ok\n");
137
 
138
    thread_sleep(1);
139
    waitq_wakeup(&can_start, WAKEUP_ALL);
140
 
827 palkovsky 141
    while (atomic_get(&threads_ok) != THREADS)
295 palkovsky 142
        ;
143
 
144
    printf("Test passed.\n");
2021 decky 145
#ifdef CONFIG_BENCH
146
    uint64_t dt = get_cycle() - t0;
147
    printf("Time: %.*d cycles\n", sizeof(dt) * 2, dt);
148
#endif
295 palkovsky 149
}
2021 decky 150
 
151
#else
152
 
153
void test_sse1(void)
154
{
155
    printf("This test is available only on SSE enabled platforms.");
156
}
157
 
158
#endif