ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcoro/coro.c
(Generate patch)

Comparing libcoro/coro.c (file contents):
Revision 1.45 by root, Tue Jun 23 00:56:14 2009 UTC vs.
Revision 1.60 by root, Mon Jun 13 09:00:15 2011 UTC

1/* 1/*
2 * Copyright (c) 2001-2008 Marc Alexander Lehmann <schmorp@schmorp.de> 2 * Copyright (c) 2001-2011 Marc Alexander Lehmann <schmorp@schmorp.de>
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without modifica- 4 * Redistribution and use in source and binary forms, with or without modifica-
5 * tion, are permitted provided that the following conditions are met: 5 * tion, are permitted provided that the following conditions are met:
6 * 6 *
7 * 1. Redistributions of source code must retain the above copyright notice, 7 * 1. Redistributions of source code must retain the above copyright notice,
86 volatile coro_func func = coro_init_func; 86 volatile coro_func func = coro_init_func;
87 volatile void *arg = coro_init_arg; 87 volatile void *arg = coro_init_arg;
88 88
89 coro_transfer (new_coro, create_coro); 89 coro_transfer (new_coro, create_coro);
90 90
91#if __linux && __amd64
92 /* we blindly assume on any __linux with __amd64 we have a new enough gas with .cfi_undefined support */
93 asm (".cfi_undefined rip");
94#endif
95
91 func ((void *)arg); 96 func ((void *)arg);
92 97
93 /* the new coro returned. bad. just abort() for now */ 98 /* the new coro returned. bad. just abort() for now */
94 abort (); 99 abort ();
95} 100}
110 115
111# endif 116# endif
112 117
113# if CORO_ASM 118# if CORO_ASM
114 119
120 #if _WIN32
121 #define CORO_WIN_TIB 1
122 #endif
123
115 asm ( 124 asm (
116 ".text\n" 125 "\t.text\n"
117 ".globl coro_transfer\n" 126 "\t.globl coro_transfer\n"
118 ".type coro_transfer, @function\n"
119 "coro_transfer:\n" 127 "coro_transfer:\n"
128 /* windows, of course, gives a shit on the amd64 ABI and uses different registers */
129 /* http://blogs.msdn.com/freik/archive/2005/03/17/398200.aspx */
120 #if __amd64 130 #if __amd64
131 #ifdef WIN32
132 /* TODO: xmm6..15 also would need to be saved. sigh. */
133 #define NUM_SAVED 8
134 "\tpushq %rsi\n"
135 "\tpushq %rdi\n"
136 "\tpushq %rbp\n"
137 "\tpushq %rbx\n"
138 "\tpushq %r12\n"
139 "\tpushq %r13\n"
140 "\tpushq %r14\n"
141 "\tpushq %r15\n"
142 #if CORO_WIN_TIB
143 "\tpushq %fs:0x0\n"
144 "\tpushq %fs:0x8\n"
145 "\tpushq %fs:0xc\n"
146 #endif
147 "\tmovq %rsp, (%rcx)\n"
148 "\tmovq (%rdx), %rsp\n"
149 #if CORO_WIN_TIB
150 "\tpopq %fs:0xc\n"
151 "\tpopq %fs:0x8\n"
152 "\tpopq %fs:0x0\n"
153 #endif
154 "\tpopq %r15\n"
155 "\tpopq %r14\n"
156 "\tpopq %r13\n"
157 "\tpopq %r12\n"
158 "\tpopq %rbx\n"
159 "\tpopq %rbp\n"
160 "\tpopq %rdi\n"
161 "\tpopq %rsi\n"
162 #else
121 #define NUM_SAVED 6 163 #define NUM_SAVED 6
122 "\tpush %rbp\n" 164 "\tpushq %rbp\n"
123 "\tpush %rbx\n" 165 "\tpushq %rbx\n"
124 "\tpush %r12\n" 166 "\tpushq %r12\n"
125 "\tpush %r13\n" 167 "\tpushq %r13\n"
126 "\tpush %r14\n" 168 "\tpushq %r14\n"
127 "\tpush %r15\n" 169 "\tpushq %r15\n"
128 "\tmov %rsp, (%rdi)\n" 170 "\tmovq %rsp, (%rdi)\n"
129 "\tmov (%rsi), %rsp\n" 171 "\tmovq (%rsi), %rsp\n"
130 "\tpop %r15\n" 172 "\tpopq %r15\n"
131 "\tpop %r14\n" 173 "\tpopq %r14\n"
132 "\tpop %r13\n" 174 "\tpopq %r13\n"
133 "\tpop %r12\n" 175 "\tpopq %r12\n"
134 "\tpop %rbx\n" 176 "\tpopq %rbx\n"
135 "\tpop %rbp\n" 177 "\tpopq %rbp\n"
178 #endif
136 #elif __i386 179 #elif __i386
137 #define NUM_SAVED 4 180 #define NUM_SAVED 4
138 "\tpush %ebp\n" 181 "\tpushl %ebp\n"
139 "\tpush %ebx\n" 182 "\tpushl %ebx\n"
140 "\tpush %esi\n" 183 "\tpushl %esi\n"
141 "\tpush %edi\n" 184 "\tpushl %edi\n"
185 #if CORO_WIN_TIB
186 "\tpushl %fs:0\n"
187 "\tpushl %fs:4\n"
188 "\tpushl %fs:8\n"
189 #endif
142 "\tmov %esp, (%eax)\n" 190 "\tmovl %esp, (%eax)\n"
143 "\tmov (%edx), %esp\n" 191 "\tmovl (%edx), %esp\n"
192 #if CORO_WIN_TIB
193 "\tpopl %fs:8\n"
194 "\tpopl %fs:4\n"
195 "\tpopl %fs:0\n"
196 #endif
144 "\tpop %edi\n" 197 "\tpopl %edi\n"
145 "\tpop %esi\n" 198 "\tpopl %esi\n"
146 "\tpop %ebx\n" 199 "\tpopl %ebx\n"
147 "\tpop %ebp\n" 200 "\tpopl %ebp\n"
148 #else 201 #else
149 #error unsupported architecture 202 #error unsupported architecture
150 #endif 203 #endif
151 "\tret\n" 204 "\tret\n"
152 ); 205 );
188 perror ("sigaction"); 241 perror ("sigaction");
189 abort (); 242 abort ();
190 } 243 }
191 244
192 /* set the new stack */ 245 /* set the new stack */
193 nstk.ss_sp = STACK_ADJUST_PTR (sptr,ssize); /* yes, some platforms (IRIX) get this wrong. */ 246 nstk.ss_sp = STACK_ADJUST_PTR (sptr, ssize); /* yes, some platforms (IRIX) get this wrong. */
194 nstk.ss_size = STACK_ADJUST_SIZE (sptr,ssize); 247 nstk.ss_size = STACK_ADJUST_SIZE (sptr, ssize);
195 nstk.ss_flags = 0; 248 nstk.ss_flags = 0;
196 249
197 if (sigaltstack (&nstk, &ostk) < 0) 250 if (sigaltstack (&nstk, &ostk) < 0)
198 { 251 {
199 perror ("sigaltstack"); 252 perror ("sigaltstack");
223 sigprocmask (SIG_SETMASK, &osig, 0); 276 sigprocmask (SIG_SETMASK, &osig, 0);
224 277
225# elif CORO_LOSER 278# elif CORO_LOSER
226 279
227 coro_setjmp (ctx->env); 280 coro_setjmp (ctx->env);
228 #if __CYGWIN__ 281 #if __CYGWIN__ && __i386
282 ctx->env[8] = (long) coro_init;
229 ctx->env[7] = (long)((char *)sptr + ssize) - sizeof (long); 283 ctx->env[7] = (long) ((char *)sptr + ssize) - sizeof (long);
230 ctx->env[8] = (long)coro_init; 284 #elif __CYGWIN__ && __x86_64
285 ctx->env[7] = (long) coro_init;
286 ctx->env[6] = (long) ((char *)sptr + ssize) - sizeof (long);
231 #elif defined(__MINGW32__) 287 #elif defined(__MINGW32__)
288 ctx->env[5] = (long) coro_init;
232 ctx->env[4] = (long)((char *)sptr + ssize) - sizeof (long); 289 ctx->env[4] = (long) ((char *)sptr + ssize) - sizeof (long);
233 ctx->env[5] = (long)coro_init;
234 #elif defined(_M_IX86) 290 #elif defined(_M_IX86)
235 ((_JUMP_BUFFER *)&ctx->env)->Eip = (long)coro_init; 291 ((_JUMP_BUFFER *)&ctx->env)->Eip = (long) coro_init;
236 ((_JUMP_BUFFER *)&ctx->env)->Esp = (long)STACK_ADJUST_PTR (sptr, ssize) - sizeof (long); 292 ((_JUMP_BUFFER *)&ctx->env)->Esp = (long) STACK_ADJUST_PTR (sptr, ssize) - sizeof (long);
237 #elif defined(_M_AMD64) 293 #elif defined(_M_AMD64)
238 ((_JUMP_BUFFER *)&ctx->env)->Rip = (__int64)coro_init; 294 ((_JUMP_BUFFER *)&ctx->env)->Rip = (__int64) coro_init;
239 ((_JUMP_BUFFER *)&ctx->env)->Rsp = (__int64)STACK_ADJUST_PTR (sptr, ssize) - sizeof (long); 295 ((_JUMP_BUFFER *)&ctx->env)->Rsp = (__int64) STACK_ADJUST_PTR (sptr, ssize) - sizeof (__int64);
240 #elif defined(_M_IA64) 296 #elif defined(_M_IA64)
241 ((_JUMP_BUFFER *)&ctx->env)->StIIP = (__int64)coro_init; 297 ((_JUMP_BUFFER *)&ctx->env)->StIIP = (__int64) coro_init;
242 ((_JUMP_BUFFER *)&ctx->env)->IntSp = (__int64)STACK_ADJUST_PTR (sptr, ssize) - sizeof (long); 298 ((_JUMP_BUFFER *)&ctx->env)->IntSp = (__int64) STACK_ADJUST_PTR (sptr, ssize) - sizeof (__int64);
243 #else 299 #else
244 #error "microsoft libc or architecture not supported" 300 #error "microsoft libc or architecture not supported"
245 #endif 301 #endif
246 302
247# elif CORO_LINUX 303# elif CORO_LINUX
248 304
249 coro_setjmp (ctx->env); 305 coro_setjmp (ctx->env);
250 #if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 0 && defined (JB_PC) && defined (JB_SP) 306 #if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 0 && defined (JB_PC) && defined (JB_SP)
251 ctx->env[0].__jmpbuf[JB_PC] = (long)coro_init; 307 ctx->env[0].__jmpbuf[JB_PC] = (long) coro_init;
252 ctx->env[0].__jmpbuf[JB_SP] = (long)STACK_ADJUST_PTR (sptr, ssize) - sizeof (long); 308 ctx->env[0].__jmpbuf[JB_SP] = (long) STACK_ADJUST_PTR (sptr, ssize) - sizeof (long);
253 #elif __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 0 && defined (__mc68000__) 309 #elif __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 0 && defined (__mc68000__)
254 ctx->env[0].__jmpbuf[0].__aregs[0] = (long int)coro_init; 310 ctx->env[0].__jmpbuf[0].__aregs[0] = (long int)coro_init;
255 ctx->env[0].__jmpbuf[0].__sp = (int *)((char *)sptr + ssize) - sizeof (long); 311 ctx->env[0].__jmpbuf[0].__sp = (int *) ((char *)sptr + ssize) - sizeof (long);
256 #elif defined (__GNU_LIBRARY__) && defined (__i386__) 312 #elif defined (__GNU_LIBRARY__) && defined (__i386__)
257 ctx->env[0].__jmpbuf[0].__pc = (char *)coro_init; 313 ctx->env[0].__jmpbuf[0].__pc = (char *) coro_init;
258 ctx->env[0].__jmpbuf[0].__sp = (void *)((char *)sptr + ssize) - sizeof (long); 314 ctx->env[0].__jmpbuf[0].__sp = (void *) ((char *)sptr + ssize) - sizeof (long);
259 #elif defined (__GNU_LIBRARY__) && defined (__amd64__) 315 #elif defined (__GNU_LIBRARY__) && defined (__amd64__)
260 ctx->env[0].__jmpbuf[JB_PC] = (long)coro_init; 316 ctx->env[0].__jmpbuf[JB_PC] = (long) coro_init;
261 ctx->env[0].__jmpbuf[0].__sp = (void *)((char *)sptr + ssize) - sizeof (long); 317 ctx->env[0].__jmpbuf[0].__sp = (void *) ((char *)sptr + ssize) - sizeof (long);
262 #else 318 #else
263 #error "linux libc or architecture not supported" 319 #error "linux libc or architecture not supported"
264 #endif 320 #endif
265 321
266# elif CORO_IRIX 322# elif CORO_IRIX
267 323
268 coro_setjmp (ctx->env, 0); 324 coro_setjmp (ctx->env, 0);
269 ctx->env[JB_PC] = (__uint64_t)coro_init; 325 ctx->env[JB_PC] = (__uint64_t)coro_init;
270 ctx->env[JB_SP] = (__uint64_t)STACK_ADJUST_PTR (sptr, ssize) - sizeof (long); 326 ctx->env[JB_SP] = (__uint64_t)STACK_ADJUST_PTR (sptr, ssize) - sizeof (long);
271 327
272# elif CORO_ASM 328# elif CORO_ASM
273 329
274 ctx->sp = (void **)(ssize + (char *)sptr); 330 ctx->sp = (void **)(ssize + (char *)sptr);
275 *--ctx->sp = (void *)abort; /* needed for alignment only */ 331 *--ctx->sp = (void *)abort; /* needed for alignment only */
276 *--ctx->sp = (void *)coro_init; 332 *--ctx->sp = (void *)coro_init;
333
334 #if CORO_WIN_TIB
335 *--ctx->sp = 0; /* ExceptionList */
336 *--ctx->sp = (char *)sptr + ssize; /* StackBase */
337 *--ctx->sp = sptr; /* StackLimit */
338 #endif
339
277 ctx->sp -= NUM_SAVED; 340 ctx->sp -= NUM_SAVED;
341 memset (ctx->sp, 0, sizeof (*ctx->sp) * NUM_SAVED);
278 342
279# elif CORO_UCONTEXT 343# elif CORO_UCONTEXT
280 344
281 getcontext (&(ctx->uc)); 345 getcontext (&(ctx->uc));
282 346
370 args.arg = arg; 434 args.arg = arg;
371 args.self = ctx; 435 args.self = ctx;
372 args.main = &nctx; 436 args.main = &nctx;
373 437
374 pthread_attr_init (&attr); 438 pthread_attr_init (&attr);
439#if __UCLIBC__
440 /* exists, but is borked */
441 /*pthread_attr_setstacksize (&attr, (size_t)ssize);*/
442#else
375 pthread_attr_setstack (&attr, sptr, (size_t)ssize); 443 pthread_attr_setstack (&attr, sptr, (size_t)ssize);
444#endif
376 pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS); 445 pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS);
377 pthread_create (&ctx->id, &attr, coro_init, &args); 446 pthread_create (&ctx->id, &attr, coro_init, &args);
378 447
379 coro_transfer (args.main, args.self); 448 coro_transfer (args.main, args.self);
380 } 449 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines