Blame view

RIOT/cpu/x86/x86_ucontext.c 4.96 KB
a752c7ab   elopes   add first test an...
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
  /*
   * Copyright (C) 2014  René Kijewski  <rene.kijewski@fu-berlin.de>
   *
   * This library is free software; you can redistribute it and/or
   * modify it under the terms of the GNU Lesser General Public
   * License as published by the Free Software Foundation; either
   * version 2.1 of the License, or (at your option) any later version.
   *
   * This library is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * Lesser General Public License for more details.
   *
   * You should have received a copy of the GNU Lesser General Public
   * License along with this library; if not, write to the Free Software
   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
   */
  
  /**
   * @ingroup     x86-multithreading
   * @{
   *
   * @file
   * @brief       Coroutine helper functions.
   *
   * @author      René Kijewski <rene.kijewski@fu-berlin.de>
   *
   * @}
   */
  
  #include <ucontext.h>
  
  #include <stdarg.h>
  
  int __attribute__((optimize("omit-frame-pointer"), no_instrument_function)) getcontext(ucontext_t *ucp)
  {
      __asm__ volatile ("pushf\n" :: "a"(ucp));
      __asm__ volatile ("pop 4*2(%eax)\n");
  
      __asm__ volatile ("mov %eax, 4*3(%eax)\n");
      __asm__ volatile ("mov %ecx, 4*4(%eax)\n");
      __asm__ volatile ("mov %edx, 4*5(%eax)\n");
      __asm__ volatile ("mov %ebx, 4*6(%eax)\n");
   /* __asm__ volatile ("mov %esp, 4*7(%eax)\n"); omitted */
      __asm__ volatile ("mov %ebp, 4*8(%eax)\n");
      __asm__ volatile ("mov %esi, 4*9(%eax)\n");
      __asm__ volatile ("mov %edi, 4*10(%eax)\n");
  
      __asm__ volatile ("lea 4(%esp), %edx\n");
      __asm__ volatile ("mov %edx, 4*0(%eax)\n");
      __asm__ volatile ("xor %edx, %edx\n");
      __asm__ volatile ("mov %edx, 4*1(%eax)\n");
  
      __asm__ volatile ("mov (%esp), %edx\n");
      __asm__ volatile ("mov %edx, 4*11(%eax)\n");
  
      return 0;
  }
  
  int __attribute__((optimize("omit-frame-pointer"), no_instrument_function)) setcontext(const ucontext_t *ucp)
  {
      __asm__ volatile ("1:\n" :: "a"(ucp));
  
   /* __asm__ volatile ("mov 4*3(%eax), %eax\n");, omitted */
      __asm__ volatile ("mov 4*4(%eax), %ecx\n");
   /* __asm__ volatile ("mov 4*5(%eax), %edx\n");, omitted */
      __asm__ volatile ("mov 4*6(%eax), %ebx\n");
   /* __asm__ volatile ("mov 4*7(%eax), %esp\n");, omitted */
      __asm__ volatile ("mov 4*8(%eax), %ebp\n");
      __asm__ volatile ("mov 4*9(%eax), %esi\n");
      __asm__ volatile ("mov 4*10(%eax), %edi\n");
  
      __asm__ volatile ("mov 4*0(%eax), %esp\n");
      __asm__ volatile ("add 4*1(%eax), %esp\n");
  
      __asm__ volatile ("mov 4*11(%eax), %edx\n");
      __asm__ volatile ("mov %eax, %ebx\n");
  
      __asm__ volatile ("push 4*2(%eax)\n");
      __asm__ volatile ("popf\n");
  
      __asm__ volatile ("call *%edx\n");
  
      __asm__ volatile ("mov 4*12(%ebx), %eax\n");
      __asm__ volatile ("jmp 1b\n");
      __builtin_unreachable();
  }
  
  static void __attribute__((optimize("omit-frame-pointer"), noreturn, no_instrument_function)) makecontext_entrypoint(void)
  {
      /* ebx = ucp, ecx = argc, ebp = arg[0], esi = arg[1], edi = arg[2] */
      __asm__ volatile ("mov 4*3(%ebx), %eax\n"); /* eax = func */
  
      __asm__ volatile ("jecxz 0f\n");
      __asm__ volatile ("cmpb $1, %cl; je 1f\n");
      __asm__ volatile ("cmpb $2, %cl; je 2f\n");
      __asm__ volatile ("cmpb $3, %cl; je 3f\n");
      __asm__ volatile ("cmpb $4, %cl; je 4f\n");
  
      __asm__ volatile ("   mov 4*7(%ebx), %edx; push %edx\n");
      __asm__ volatile ("4: mov 4*5(%ebx), %edx; push %edx\n");
      __asm__ volatile ("3: push %edi\n");
      __asm__ volatile ("2: push %esi\n");
      __asm__ volatile ("1: push %ebp\n");
      __asm__ volatile ("0: call *%eax\n"); /* call func(...), preserves ebx */
  
      __asm__ volatile ("mov 4*12(%ebx), %eax\n");
      __asm__ volatile ("push %eax\n");
      __asm__ volatile ("call setcontext\n");
      __builtin_unreachable();
  }
  
  void makecontext(ucontext_t *ucp, makecontext_fun_t func, int argc, ...)
  {
      ucp->uc_context.ip = (void *) (unsigned long) &makecontext_entrypoint;
      ucp->uc_context.registers.bx = (unsigned long) ucp;
  
      ucp->uc_context.registers.ax = (unsigned long) func;
      ucp->uc_context.registers.cx = argc > 0 ? argc : 0;
  
      if (argc <= 0) {
          return;
      }
  
      unsigned long *arg_registers[5] = {
          &ucp->uc_context.registers.bp,
          &ucp->uc_context.registers.si,
          &ucp->uc_context.registers.di,
          &ucp->uc_context.registers.dx,
          &ucp->uc_context.registers.sp,
      };
      va_list ap;
      va_start(ap, argc);
      for (int i = 0; i < argc; ++i) {
          *arg_registers[i] = va_arg(ap, unsigned long);
      }
      va_end(ap);
  }
  
  int swapcontext(ucontext_t *oucp, const ucontext_t *ucp)
  {
      /* Valid sentinel: an address in .text section is not valid for a stack pointer. */
      oucp->uc_context.registers.sp = (unsigned long) &swapcontext;
      getcontext(oucp);
      if (oucp->uc_context.registers.sp == (unsigned long) &swapcontext) {
          oucp->uc_context.registers.sp = 0;
          setcontext(ucp);
      }
      return 0;
  }