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

Comparing libcoro/coro.c (file contents):
Revision 1.51 by root, Fri Apr 2 19:18:01 2010 UTC vs.
Revision 1.61 by root, Sun Jul 3 10:51:42 2011 UTC

1/* 1/*
2 * Copyright (c) 2001-2009 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 __GCC_HAVE_DWARF2_CFI_ASM && __amd64
92 asm (".cfi_undefined rip");
93#endif
94
91 func ((void *)arg); 95 func ((void *)arg);
92 96
93 /* the new coro returned. bad. just abort() for now */ 97 /* the new coro returned. bad. just abort() for now */
94 abort (); 98 abort ();
95} 99}
110 114
111# endif 115# endif
112 116
113# if CORO_ASM 117# if CORO_ASM
114 118
119 #if _WIN32
120 #define CORO_WIN_TIB 1
121 #endif
122
115 asm ( 123 asm (
116 ".text\n" 124 "\t.text\n"
117 ".globl coro_transfer\n" 125 "\t.globl coro_transfer\n"
118 ".type coro_transfer, @function\n"
119 "coro_transfer:\n" 126 "coro_transfer:\n"
127 /* windows, of course, gives a shit on the amd64 ABI and uses different registers */
128 /* http://blogs.msdn.com/freik/archive/2005/03/17/398200.aspx */
120 #if __amd64 129 #if __amd64
130 #ifdef WIN32
131 /* TODO: xmm6..15 also would need to be saved. sigh. */
132 #define NUM_SAVED 8
133 "\tpushq %rsi\n"
134 "\tpushq %rdi\n"
135 "\tpushq %rbp\n"
136 "\tpushq %rbx\n"
137 "\tpushq %r12\n"
138 "\tpushq %r13\n"
139 "\tpushq %r14\n"
140 "\tpushq %r15\n"
141 #if CORO_WIN_TIB
142 "\tpushq %fs:0x0\n"
143 "\tpushq %fs:0x8\n"
144 "\tpushq %fs:0xc\n"
145 #endif
146 "\tmovq %rsp, (%rcx)\n"
147 "\tmovq (%rdx), %rsp\n"
148 #if CORO_WIN_TIB
149 "\tpopq %fs:0xc\n"
150 "\tpopq %fs:0x8\n"
151 "\tpopq %fs:0x0\n"
152 #endif
153 "\tpopq %r15\n"
154 "\tpopq %r14\n"
155 "\tpopq %r13\n"
156 "\tpopq %r12\n"
157 "\tpopq %rbx\n"
158 "\tpopq %rbp\n"
159 "\tpopq %rdi\n"
160 "\tpopq %rsi\n"
161 #else
121 #define NUM_SAVED 6 162 #define NUM_SAVED 6
122 "\tpush %rbp\n" 163 "\tpushq %rbp\n"
123 "\tpush %rbx\n" 164 "\tpushq %rbx\n"
124 "\tpush %r12\n" 165 "\tpushq %r12\n"
125 "\tpush %r13\n" 166 "\tpushq %r13\n"
126 "\tpush %r14\n" 167 "\tpushq %r14\n"
127 "\tpush %r15\n" 168 "\tpushq %r15\n"
128 #if CORO_WIN_TIB 169 "\tmovq %rsp, (%rdi)\n"
170 "\tmovq (%rsi), %rsp\n"
171 "\tpopq %r15\n"
172 "\tpopq %r14\n"
173 "\tpopq %r13\n"
174 "\tpopq %r12\n"
129 "\tpush %fs:0x0\n" 175 "\tpopq %rbx\n"
130 "\tpush %fs:0x8\n" 176 "\tpopq %rbp\n"
131 "\tpush %fs:0xc\n"
132 #endif 177 #endif
133 "\tmov %rsp, (%rdi)\n"
134 "\tmov (%rsi), %rsp\n"
135 #if CORO_WIN_TIB
136 "\tpop %fs:0xc\n"
137 "\tpop %fs:0x8\n"
138 "\tpop %fs:0x0\n"
139 #endif
140 "\tpop %r15\n"
141 "\tpop %r14\n"
142 "\tpop %r13\n"
143 "\tpop %r12\n"
144 "\tpop %rbx\n"
145 "\tpop %rbp\n"
146 #elif __i386 178 #elif __i386
147 #define NUM_SAVED 4 179 #define NUM_SAVED 4
148 "\tpush %ebp\n" 180 "\tpushl %ebp\n"
149 "\tpush %ebx\n" 181 "\tpushl %ebx\n"
150 "\tpush %esi\n" 182 "\tpushl %esi\n"
151 "\tpush %edi\n" 183 "\tpushl %edi\n"
152 #if CORO_WIN_TIB 184 #if CORO_WIN_TIB
153 "\tpush %fs:0\n" 185 "\tpushl %fs:0\n"
154 "\tpush %fs:4\n" 186 "\tpushl %fs:4\n"
155 "\tpush %fs:8\n" 187 "\tpushl %fs:8\n"
156 #endif 188 #endif
157 "\tmov %esp, (%eax)\n" 189 "\tmovl %esp, (%eax)\n"
158 "\tmov (%edx), %esp\n" 190 "\tmovl (%edx), %esp\n"
159 #if CORO_WIN_TIB 191 #if CORO_WIN_TIB
160 "\tpop %fs:8\n" 192 "\tpopl %fs:8\n"
161 "\tpop %fs:4\n" 193 "\tpopl %fs:4\n"
162 "\tpop %fs:0\n" 194 "\tpopl %fs:0\n"
163 #endif 195 #endif
164 "\tpop %edi\n" 196 "\tpopl %edi\n"
165 "\tpop %esi\n" 197 "\tpopl %esi\n"
166 "\tpop %ebx\n" 198 "\tpopl %ebx\n"
167 "\tpop %ebp\n" 199 "\tpopl %ebp\n"
168 #else 200 #else
169 #error unsupported architecture 201 #error unsupported architecture
170 #endif 202 #endif
171 "\tret\n" 203 "\tret\n"
172 ); 204 );
208 perror ("sigaction"); 240 perror ("sigaction");
209 abort (); 241 abort ();
210 } 242 }
211 243
212 /* set the new stack */ 244 /* set the new stack */
213 nstk.ss_sp = STACK_ADJUST_PTR (sptr,ssize); /* yes, some platforms (IRIX) get this wrong. */ 245 nstk.ss_sp = STACK_ADJUST_PTR (sptr, ssize); /* yes, some platforms (IRIX) get this wrong. */
214 nstk.ss_size = STACK_ADJUST_SIZE (sptr,ssize); 246 nstk.ss_size = STACK_ADJUST_SIZE (sptr, ssize);
215 nstk.ss_flags = 0; 247 nstk.ss_flags = 0;
216 248
217 if (sigaltstack (&nstk, &ostk) < 0) 249 if (sigaltstack (&nstk, &ostk) < 0)
218 { 250 {
219 perror ("sigaltstack"); 251 perror ("sigaltstack");
303 *--ctx->sp = (char *)sptr + ssize; /* StackBase */ 335 *--ctx->sp = (char *)sptr + ssize; /* StackBase */
304 *--ctx->sp = sptr; /* StackLimit */ 336 *--ctx->sp = sptr; /* StackLimit */
305 #endif 337 #endif
306 338
307 ctx->sp -= NUM_SAVED; 339 ctx->sp -= NUM_SAVED;
340 memset (ctx->sp, 0, sizeof (*ctx->sp) * NUM_SAVED);
308 341
309# elif CORO_UCONTEXT 342# elif CORO_UCONTEXT
310 343
311 getcontext (&(ctx->uc)); 344 getcontext (&(ctx->uc));
312 345
400 args.arg = arg; 433 args.arg = arg;
401 args.self = ctx; 434 args.self = ctx;
402 args.main = &nctx; 435 args.main = &nctx;
403 436
404 pthread_attr_init (&attr); 437 pthread_attr_init (&attr);
438#if __UCLIBC__
439 /* exists, but is borked */
440 /*pthread_attr_setstacksize (&attr, (size_t)ssize);*/
441#else
405 pthread_attr_setstack (&attr, sptr, (size_t)ssize); 442 pthread_attr_setstack (&attr, sptr, (size_t)ssize);
443#endif
406 pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS); 444 pthread_attr_setscope (&attr, PTHREAD_SCOPE_PROCESS);
407 pthread_create (&ctx->id, &attr, coro_init, &args); 445 pthread_create (&ctx->id, &attr, coro_init, &args);
408 446
409 coro_transfer (args.main, args.self); 447 coro_transfer (args.main, args.self);
410 } 448 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines