ar7: Update board code for latest QEMU API
[qemu/ar7.git] / util / coroutine-win32.c
blob06bf78bce912f8624b9bbf85780cad6d07a89307
1 /*
2 * Win32 coroutine initialization code
4 * Copyright (c) 2011 Kevin Wolf <kwolf@redhat.com>
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "qemu-common.h"
27 #include "qemu/coroutine_int.h"
29 typedef struct
31 Coroutine base;
33 LPVOID fiber;
34 CoroutineAction action;
35 } CoroutineWin32;
37 static __thread CoroutineWin32 leader;
38 static __thread Coroutine *current;
40 /* This function is marked noinline to prevent GCC from inlining it
41 * into coroutine_trampoline(). If we allow it to do that then it
42 * hoists the code to get the address of the TLS variable "current"
43 * out of the while() loop. This is an invalid transformation because
44 * the SwitchToFiber() call may be called when running thread A but
45 * return in thread B, and so we might be in a different thread
46 * context each time round the loop.
48 CoroutineAction __attribute__((noinline))
49 qemu_coroutine_switch(Coroutine *from_, Coroutine *to_,
50 CoroutineAction action)
52 CoroutineWin32 *from = DO_UPCAST(CoroutineWin32, base, from_);
53 CoroutineWin32 *to = DO_UPCAST(CoroutineWin32, base, to_);
55 g_assert(current == from_);
56 current = to_;
58 to->action = action;
59 SwitchToFiber(to->fiber);
60 return from->action;
63 static void CALLBACK coroutine_trampoline(void *co_)
65 Coroutine *co = co_;
67 while (true) {
68 co->entry(co->entry_arg);
69 qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE);
73 Coroutine *qemu_coroutine_new(void)
75 const size_t stack_size = COROUTINE_STACK_SIZE;
76 CoroutineWin32 *co;
78 co = g_malloc0(sizeof(*co));
79 co->fiber = CreateFiber(stack_size, coroutine_trampoline, &co->base);
80 return &co->base;
83 void qemu_coroutine_delete(Coroutine *co_)
85 CoroutineWin32 *co = DO_UPCAST(CoroutineWin32, base, co_);
87 DeleteFiber(co->fiber);
88 g_free(co);
91 Coroutine *qemu_coroutine_self(void)
93 if (!current) {
94 current = &leader.base;
95 leader.fiber = ConvertThreadToFiber(NULL);
97 return current;
100 bool qemu_in_coroutine(void)
102 return current && current->caller;