Subversion Repositories HelenOS

Rev

Rev 3100 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2938 svoboda 1
/*
2
 * Copyright (c) 2008 Jiri Svoboda
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
/** @addtogroup debug
30
 * @{
31
 */
32
/** @file
33
 */
34
 
35
#include <stdlib.h>
4692 svoboda 36
#include <adt/list.h>
2939 svoboda 37
#include <assert.h>
38
#include <futex.h>
39
#include <async.h>
2938 svoboda 40
 
2940 svoboda 41
#include "include/arch.h"
42
#include "main.h"
2938 svoboda 43
#include "dthread.h"
44
 
45
static int last_thread_id = 0;
46
 
47
link_t dthreads;        /* List of application's threads */
48
dthread_t *cwt;         /* Current working thread */
49
 
50
dthread_t *dthread_new(thash_t hash)
51
{
52
    dthread_t *dt;
53
 
54
    dt = malloc(sizeof(dthread_t));
55
    if (!dt) {
56
        exit(1);
57
    }
58
 
59
    dt->id = ++last_thread_id;
60
    dt->hash = hash;
2939 svoboda 61
    dt->fid = 0;
62
    dt->stopped = 0;
2938 svoboda 63
 
3100 svoboda 64
    arch_dthread_initialize(dt);
65
 
2938 svoboda 66
    if (!cwt) cwt = dt;
67
 
68
    list_append(&dt->link, &dthreads);
69
 
70
    return dt;
71
}
72
 
73
void dthread_delete(dthread_t *dt)
74
{
75
    list_remove(&dt->link);
76
    free(dt);
77
}
78
 
2939 svoboda 79
/*
80
 * Get dthread struct serviced by fibril fid.
81
 */
82
dthread_t *dthread_get_by_fid(fid_t fid)
83
{
84
    link_t *cur;
85
    dthread_t *dt;
2938 svoboda 86
 
2939 svoboda 87
    dt = NULL;
88
    for (cur = dthreads.next; cur != &dthreads; cur = cur->next) {
89
        dt = list_get_instance(cur, dthread_t, link);
90
        if (dt->fid == fid) return dt;
91
    }  
92
 
93
    return NULL;
94
}
95
 
96
/*
97
 * Get dthread struct for dthread serviced by the current fibril.
98
 */
99
dthread_t *dthread_get(void)
100
{
101
    return dthread_get_by_fid(fibril_get_id());
102
}
103
 
104
void dthread_stop_me(void)
105
{
106
    dthread_t *dt;
107
 
108
    dt = dthread_get();
109
    assert(dt);
110
 
111
    futex_down(&async_futex);
112
 
113
    dt->stopped = 1;
114
    fibril_switch(FIBRIL_TO_MANAGER);
115
 
116
    futex_up(&async_futex);
117
}
118
 
119
void dthread_resume(dthread_t *dt)
120
{
121
    if (!dt->stopped) return;
122
 
123
    futex_down(&async_futex);
124
 
125
    fibril_add_ready(dt->fid);
126
    dt->stopped = 0;
127
 
128
    futex_up(&async_futex);
129
}
130
 
2940 svoboda 131
unsigned dthread_get_pc(dthread_t *dt)
132
{
2941 svoboda 133
    static istate_t istate;
2940 svoboda 134
    int rc;
2939 svoboda 135
 
2941 svoboda 136
    rc = udebug_regs_read(app_phone, dt->hash, &istate);
2940 svoboda 137
    if (rc < 0) {
138
        printf("failed reading registers (%d)\n", rc);
139
        return 0;
140
    }
141
 
2941 svoboda 142
    return istate_get_pc(&istate);
2940 svoboda 143
}
144
 
2938 svoboda 145
/** @}
146
 */