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

Comparing libcoro/coro.c (file contents):
Revision 1.56 by root, Mon May 30 02:32:06 2011 UTC vs.
Revision 1.61 by root, Sun Jul 3 10:51:42 2011 UTC

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#ifdef __linux && __elf 91#if __GCC_HAVE_DWARF2_CFI_ASM && __amd64
92 /* we blindly assume on any __linux with __elf we have a new enough gas with .cfi_undefined support */
93 asm (".cfi_undefined rip"); 92 asm (".cfi_undefined rip");
94#endif 93#endif
95 94
96 func ((void *)arg); 95 func ((void *)arg);
97 96
115 114
116# endif 115# endif
117 116
118# if CORO_ASM 117# if CORO_ASM
119 118
119 #if _WIN32
120 #define CORO_WIN_TIB 1
121 #endif
122
120 asm ( 123 asm (
121 ".text\n" 124 "\t.text\n"
122 ".globl coro_transfer\n" 125 "\t.globl coro_transfer\n"
123 ".type coro_transfer, @function\n"
124 "coro_transfer:\n" 126 "coro_transfer:\n"
125 /* windows, of course, gives a shit on the amd64 ABI and uses different registers */ 127 /* windows, of course, gives a shit on the amd64 ABI and uses different registers */
126 /* http://blogs.msdn.com/freik/archive/2005/03/17/398200.aspx */ 128 /* http://blogs.msdn.com/freik/archive/2005/03/17/398200.aspx */
127 #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
128 #define NUM_SAVED 6 162 #define NUM_SAVED 6
129 "\tpush %rbp\n" 163 "\tpushq %rbp\n"
130 "\tpush %rbx\n" 164 "\tpushq %rbx\n"
131 "\tpush %r12\n" 165 "\tpushq %r12\n"
132 "\tpush %r13\n" 166 "\tpushq %r13\n"
133 "\tpush %r14\n" 167 "\tpushq %r14\n"
134 "\tpush %r15\n" 168 "\tpushq %r15\n"
135 #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"
136 "\tpush %gs:0x0\n" 175 "\tpopq %rbx\n"
137 "\tpush %gs:0x8\n" 176 "\tpopq %rbp\n"
138 "\tpush %gs:0xc\n"
139 #endif 177 #endif
140 "\tmov %rsp, (%rdi)\n"
141 "\tmov (%rsi), %rsp\n"
142 #if CORO_WIN_TIB
143 "\tpop %gs:0xc\n"
144 "\tpop %gs:0x8\n"
145 "\tpop %gs:0x0\n"
146 #endif
147 "\tpop %r15\n"
148 "\tpop %r14\n"
149 "\tpop %r13\n"
150 "\tpop %r12\n"
151 "\tpop %rbx\n"
152 "\tpop %rbp\n"
153 #elif __i386 178 #elif __i386
154 #define NUM_SAVED 4 179 #define NUM_SAVED 4
155 "\tpush %ebp\n" 180 "\tpushl %ebp\n"
156 "\tpush %ebx\n" 181 "\tpushl %ebx\n"
157 "\tpush %esi\n" 182 "\tpushl %esi\n"
158 "\tpush %edi\n" 183 "\tpushl %edi\n"
159 #if CORO_WIN_TIB 184 #if CORO_WIN_TIB
160 "\tpush %fs:0\n" 185 "\tpushl %fs:0\n"
161 "\tpush %fs:4\n" 186 "\tpushl %fs:4\n"
162 "\tpush %fs:8\n" 187 "\tpushl %fs:8\n"
163 #endif 188 #endif
164 "\tmov %esp, (%eax)\n" 189 "\tmovl %esp, (%eax)\n"
165 "\tmov (%edx), %esp\n" 190 "\tmovl (%edx), %esp\n"
166 #if CORO_WIN_TIB 191 #if CORO_WIN_TIB
167 "\tpop %fs:8\n" 192 "\tpopl %fs:8\n"
168 "\tpop %fs:4\n" 193 "\tpopl %fs:4\n"
169 "\tpop %fs:0\n" 194 "\tpopl %fs:0\n"
170 #endif 195 #endif
171 "\tpop %edi\n" 196 "\tpopl %edi\n"
172 "\tpop %esi\n" 197 "\tpopl %esi\n"
173 "\tpop %ebx\n" 198 "\tpopl %ebx\n"
174 "\tpop %ebp\n" 199 "\tpopl %ebp\n"
175 #else 200 #else
176 #error unsupported architecture 201 #error unsupported architecture
177 #endif 202 #endif
178 "\tret\n" 203 "\tret\n"
179 ); 204 );

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines