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#include "qemu-common.h"
26#include "block/coroutine_int.h"
27
28typedef struct
29{
30 Coroutine base;
31
32 LPVOID fiber;
33 CoroutineAction action;
34} CoroutineWin32;
35
36static __thread CoroutineWin32 leader;
37static __thread Coroutine *current;
38
39CoroutineAction qemu_coroutine_switch(Coroutine *from_, Coroutine *to_,
40 CoroutineAction action)
41{
42 CoroutineWin32 *from = DO_UPCAST(CoroutineWin32, base, from_);
43 CoroutineWin32 *to = DO_UPCAST(CoroutineWin32, base, to_);
44
45 current = to_;
46
47 to->action = action;
48 SwitchToFiber(to->fiber);
49 return from->action;
50}
51
52static void CALLBACK coroutine_trampoline(void *co_)
53{
54 Coroutine *co = co_;
55
56 while (true) {
57 co->entry(co->entry_arg);
58 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE);
59 }
60}
61
62Coroutine *qemu_coroutine_new(void)
63{
64 const size_t stack_size = 1 << 20;
65 CoroutineWin32 *co;
66
67 co = g_malloc0(sizeof(*co));
68 co->fiber = CreateFiber(stack_size, coroutine_trampoline, &co->base);
69 return &co->base;
70}
71
72void qemu_coroutine_delete(Coroutine *co_)
73{
74 CoroutineWin32 *co = DO_UPCAST(CoroutineWin32, base, co_);
75
76 DeleteFiber(co->fiber);
77 g_free(co);
78}
79
80Coroutine *qemu_coroutine_self(void)
81{
82 if (!current) {
83 current = &leader.base;
84 leader.fiber = ConvertThreadToFiber(NULL);
85 }
86 return current;
87}
88
89bool qemu_in_coroutine(void)
90{
91 return current && current->caller;
92}
93