coroutine-win32.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * Win32 coroutine initialization code
  3. *
  4. * Copyright (c) 2011 Kevin Wolf <kwolf@redhat.com>
  5. *
  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:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  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.
  23. */
  24. #include "qemu/osdep.h"
  25. #include "qemu/coroutine_int.h"
  26. #include "qemu/coroutine-tls.h"
  27. typedef struct
  28. {
  29. Coroutine base;
  30. LPVOID fiber;
  31. CoroutineAction action;
  32. } CoroutineWin32;
  33. QEMU_DEFINE_STATIC_CO_TLS(CoroutineWin32, leader);
  34. QEMU_DEFINE_STATIC_CO_TLS(Coroutine *, current);
  35. /* This function is marked noinline to prevent GCC from inlining it
  36. * into coroutine_trampoline(). If we allow it to do that then it
  37. * hoists the code to get the address of the TLS variable "current"
  38. * out of the while() loop. This is an invalid transformation because
  39. * the SwitchToFiber() call may be called when running thread A but
  40. * return in thread B, and so we might be in a different thread
  41. * context each time round the loop.
  42. */
  43. CoroutineAction __attribute__((noinline))
  44. qemu_coroutine_switch(Coroutine *from_, Coroutine *to_,
  45. CoroutineAction action)
  46. {
  47. CoroutineWin32 *from = DO_UPCAST(CoroutineWin32, base, from_);
  48. CoroutineWin32 *to = DO_UPCAST(CoroutineWin32, base, to_);
  49. set_current(to_);
  50. to->action = action;
  51. SwitchToFiber(to->fiber);
  52. return from->action;
  53. }
  54. static void CALLBACK coroutine_trampoline(void *co_)
  55. {
  56. Coroutine *co = co_;
  57. while (true) {
  58. co->entry(co->entry_arg);
  59. qemu_coroutine_switch(co, co->caller, COROUTINE_TERMINATE);
  60. }
  61. }
  62. Coroutine *qemu_coroutine_new(void)
  63. {
  64. const size_t stack_size = COROUTINE_STACK_SIZE;
  65. CoroutineWin32 *co;
  66. co = g_malloc0(sizeof(*co));
  67. co->fiber = CreateFiber(stack_size, coroutine_trampoline, &co->base);
  68. return &co->base;
  69. }
  70. void qemu_coroutine_delete(Coroutine *co_)
  71. {
  72. CoroutineWin32 *co = DO_UPCAST(CoroutineWin32, base, co_);
  73. DeleteFiber(co->fiber);
  74. g_free(co);
  75. }
  76. Coroutine *qemu_coroutine_self(void)
  77. {
  78. Coroutine *current = get_current();
  79. if (!current) {
  80. CoroutineWin32 *leader = get_ptr_leader();
  81. current = &leader->base;
  82. set_current(current);
  83. leader->fiber = ConvertThreadToFiber(NULL);
  84. }
  85. return current;
  86. }
  87. bool qemu_in_coroutine(void)
  88. {
  89. Coroutine *current = get_current();
  90. return current && current->caller;
  91. }