blob: 6bbec30638bd6bfd47ce34077787d186fc2f839c [file] [log] [blame]
Russ Cox0d3a0432009-03-30 00:01:07 -07001// Copyright 2009 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Russ Cox55889402011-12-19 15:51:13 -05005#include "zasm_GOOS_GOARCH.h"
Russ Cox8522a472009-06-17 15:15:55 -07006
Russ Cox0d3a0432009-03-30 00:01:07 -07007TEXT _rt0_386(SB),7,$0
8 // copy arguments forward on an even stack
9 MOVL 0(SP), AX // argc
10 LEAL 4(SP), BX // argv
11 SUBL $128, SP // plenty of scratch
Russ Cox133a1582009-10-03 10:37:12 -070012 ANDL $~15, SP
Russ Cox0d3a0432009-03-30 00:01:07 -070013 MOVL AX, 120(SP) // save argc, argv away
14 MOVL BX, 124(SP)
15
Dmitriy Vyukov428062d2011-12-07 16:53:17 +030016 // set default stack bounds.
17 // initcgo may update stackguard.
18 MOVL $runtime·g0(SB), BP
19 LEAL (-64*1024+104)(SP), BX
20 MOVL BX, g_stackguard(BP)
21 MOVL SP, g_stackbase(BP)
22
Russ Cox133a1582009-10-03 10:37:12 -070023 // if there is an initcgo, call it to let it
24 // initialize and to set up GS. if not,
25 // we set up GS ourselves.
26 MOVL initcgo(SB), AX
27 TESTL AX, AX
Dmitriy Vyukovfbfed492011-11-09 23:11:48 +030028 JZ needtls
Dmitriy Vyukov428062d2011-12-07 16:53:17 +030029 PUSHL BP
Russ Cox133a1582009-10-03 10:37:12 -070030 CALL AX
Dmitriy Vyukov428062d2011-12-07 16:53:17 +030031 POPL BP
Yuval Pavel Zholkover2aa2ceb2011-07-25 12:25:41 -040032 // skip runtime·ldt0setup(SB) and tls test after initcgo for non-windows
Wei Guangjing1aa2d882011-01-20 10:22:20 -050033 CMPL runtime·iswindows(SB), $0
34 JEQ ok
Dmitriy Vyukovfbfed492011-11-09 23:11:48 +030035needtls:
Yuval Pavel Zholkover2aa2ceb2011-07-25 12:25:41 -040036 // skip runtime·ldt0setup(SB) and tls test on Plan 9 in all cases
37 CMPL runtime·isplan9(SB), $1
38 JEQ ok
39
Russ Cox1b14bdb2009-09-22 16:28:32 -070040 // set up %gs
Russ Cox68b42552010-11-04 14:00:19 -040041 CALL runtime·ldt0setup(SB)
Russ Cox0d3a0432009-03-30 00:01:07 -070042
Russ Cox0d3a0432009-03-30 00:01:07 -070043 // store through it, to make sure it works
Hector Chu6bfe5f52010-01-06 17:58:55 -080044 get_tls(BX)
45 MOVL $0x123, g(BX)
Russ Cox68b42552010-11-04 14:00:19 -040046 MOVL runtime·tls0(SB), AX
Russ Cox0d3a0432009-03-30 00:01:07 -070047 CMPL AX, $0x123
48 JEQ ok
Russ Cox133a1582009-10-03 10:37:12 -070049 MOVL AX, 0 // abort
Russ Cox0d3a0432009-03-30 00:01:07 -070050ok:
Russ Cox0d3a0432009-03-30 00:01:07 -070051 // set up m and g "registers"
Hector Chu6bfe5f52010-01-06 17:58:55 -080052 get_tls(BX)
Russ Cox68b42552010-11-04 14:00:19 -040053 LEAL runtime·g0(SB), CX
Hector Chu6bfe5f52010-01-06 17:58:55 -080054 MOVL CX, g(BX)
Russ Cox68b42552010-11-04 14:00:19 -040055 LEAL runtime·m0(SB), AX
Hector Chu6bfe5f52010-01-06 17:58:55 -080056 MOVL AX, m(BX)
Russ Cox0d3a0432009-03-30 00:01:07 -070057
58 // save m->g0 = g0
Russ Cox8522a472009-06-17 15:15:55 -070059 MOVL CX, m_g0(AX)
Russ Cox0d3a0432009-03-30 00:01:07 -070060
Russ Cox68b42552010-11-04 14:00:19 -040061 CALL runtime·emptyfunc(SB) // fault if stack check is wrong
Russ Cox0d3a0432009-03-30 00:01:07 -070062
63 // convention is D is always cleared
64 CLD
65
Russ Cox68b42552010-11-04 14:00:19 -040066 CALL runtime·check(SB)
Russ Cox0d3a0432009-03-30 00:01:07 -070067
68 // saved argc, argv
69 MOVL 120(SP), AX
70 MOVL AX, 0(SP)
71 MOVL 124(SP), AX
72 MOVL AX, 4(SP)
Russ Cox68b42552010-11-04 14:00:19 -040073 CALL runtime·args(SB)
74 CALL runtime·osinit(SB)
75 CALL runtime·schedinit(SB)
Russ Cox0d3a0432009-03-30 00:01:07 -070076
77 // create a new goroutine to start program
Russ Cox6808da02011-10-27 18:04:12 -070078 PUSHL $runtime·main(SB) // entry
Russ Cox8522a472009-06-17 15:15:55 -070079 PUSHL $0 // arg size
Russ Cox68b42552010-11-04 14:00:19 -040080 CALL runtime·newproc(SB)
Russ Cox0d3a0432009-03-30 00:01:07 -070081 POPL AX
82 POPL AX
83
84 // start this M
Russ Cox68b42552010-11-04 14:00:19 -040085 CALL runtime·mstart(SB)
Russ Cox0d3a0432009-03-30 00:01:07 -070086
87 INT $3
88 RET
89
Russ Cox68b42552010-11-04 14:00:19 -040090TEXT runtime·breakpoint(SB),7,$0
Russ Cox1b14bdb2009-09-22 16:28:32 -070091 INT $3
Russ Cox0d3a0432009-03-30 00:01:07 -070092 RET
93
Russ Cox1707a992012-02-14 01:23:15 -050094TEXT runtime·asminit(SB),7,$0
95 // Linux, Windows start the FPU in extended double precision.
96 // Other operating systems use double precision.
97 // Change to double precision to match them,
98 // and to match other hardware that only has double.
99 PUSHL $0x27F
100 FLDCW 0(SP)
101 POPL AX
102 RET
103
Russ Cox8522a472009-06-17 15:15:55 -0700104/*
105 * go-routine
106 */
Russ Cox0d3a0432009-03-30 00:01:07 -0700107
Russ Coxf9ca3b52011-03-07 10:37:42 -0500108// void gosave(Gobuf*)
Russ Cox8522a472009-06-17 15:15:55 -0700109// save state in Gobuf; setjmp
Russ Cox68b42552010-11-04 14:00:19 -0400110TEXT runtime·gosave(SB), 7, $0
Russ Cox8522a472009-06-17 15:15:55 -0700111 MOVL 4(SP), AX // gobuf
112 LEAL 4(SP), BX // caller's SP
113 MOVL BX, gobuf_sp(AX)
114 MOVL 0(SP), BX // caller's PC
115 MOVL BX, gobuf_pc(AX)
Hector Chu6bfe5f52010-01-06 17:58:55 -0800116 get_tls(CX)
117 MOVL g(CX), BX
Russ Cox8522a472009-06-17 15:15:55 -0700118 MOVL BX, gobuf_g(AX)
Russ Cox0d3a0432009-03-30 00:01:07 -0700119 RET
120
Russ Cox8522a472009-06-17 15:15:55 -0700121// void gogo(Gobuf*, uintptr)
122// restore state from Gobuf; longjmp
Russ Cox68b42552010-11-04 14:00:19 -0400123TEXT runtime·gogo(SB), 7, $0
Russ Cox8522a472009-06-17 15:15:55 -0700124 MOVL 8(SP), AX // return 2nd arg
125 MOVL 4(SP), BX // gobuf
126 MOVL gobuf_g(BX), DX
127 MOVL 0(DX), CX // make sure g != nil
Hector Chu6bfe5f52010-01-06 17:58:55 -0800128 get_tls(CX)
129 MOVL DX, g(CX)
Russ Cox8522a472009-06-17 15:15:55 -0700130 MOVL gobuf_sp(BX), SP // restore SP
131 MOVL gobuf_pc(BX), BX
Russ Cox0d3a0432009-03-30 00:01:07 -0700132 JMP BX
Russ Cox8522a472009-06-17 15:15:55 -0700133
134// void gogocall(Gobuf*, void (*fn)(void))
135// restore state from Gobuf but then call fn.
136// (call fn, returning to state in Gobuf)
Russ Cox68b42552010-11-04 14:00:19 -0400137TEXT runtime·gogocall(SB), 7, $0
Russ Cox8522a472009-06-17 15:15:55 -0700138 MOVL 8(SP), AX // fn
139 MOVL 4(SP), BX // gobuf
140 MOVL gobuf_g(BX), DX
Hector Chu6bfe5f52010-01-06 17:58:55 -0800141 get_tls(CX)
142 MOVL DX, g(CX)
Russ Cox8522a472009-06-17 15:15:55 -0700143 MOVL 0(DX), CX // make sure g != nil
144 MOVL gobuf_sp(BX), SP // restore SP
145 MOVL gobuf_pc(BX), BX
146 PUSHL BX
147 JMP AX
148 POPL BX // not reached
149
Russ Coxf9ca3b52011-03-07 10:37:42 -0500150// void mcall(void (*fn)(G*))
151// Switch to m->g0's stack, call fn(g).
Russ Cox370276a2011-04-27 23:21:12 -0400152// Fn must never return. It should gogo(&g->sched)
Russ Coxf9ca3b52011-03-07 10:37:42 -0500153// to keep running g.
154TEXT runtime·mcall(SB), 7, $0
155 MOVL fn+0(FP), DI
156
157 get_tls(CX)
158 MOVL g(CX), AX // save state in g->gobuf
159 MOVL 0(SP), BX // caller's PC
160 MOVL BX, (g_sched+gobuf_pc)(AX)
161 LEAL 4(SP), BX // caller's SP
162 MOVL BX, (g_sched+gobuf_sp)(AX)
163 MOVL AX, (g_sched+gobuf_g)(AX)
164
165 // switch to m->g0 & its stack, call fn
166 MOVL m(CX), BX
167 MOVL m_g0(BX), SI
168 CMPL SI, AX // if g == m->g0 call badmcall
169 JNE 2(PC)
170 CALL runtime·badmcall(SB)
171 MOVL SI, g(CX) // g = m->g0
172 MOVL (g_sched+gobuf_sp)(SI), SP // sp = m->g0->gobuf.sp
173 PUSHL AX
174 CALL DI
175 POPL AX
176 CALL runtime·badmcall2(SB)
177 RET
178
Russ Cox8522a472009-06-17 15:15:55 -0700179/*
180 * support for morestack
181 */
182
183// Called during function prolog when more stack is needed.
Russ Cox68b42552010-11-04 14:00:19 -0400184TEXT runtime·morestack(SB),7,$0
Russ Cox8522a472009-06-17 15:15:55 -0700185 // Cannot grow scheduler stack (m->g0).
Hector Chu6bfe5f52010-01-06 17:58:55 -0800186 get_tls(CX)
187 MOVL m(CX), BX
Russ Cox8522a472009-06-17 15:15:55 -0700188 MOVL m_g0(BX), SI
Hector Chu6bfe5f52010-01-06 17:58:55 -0800189 CMPL g(CX), SI
Russ Cox8522a472009-06-17 15:15:55 -0700190 JNE 2(PC)
191 INT $3
192
193 // frame size in DX
194 // arg size in AX
195 // Save in m.
Russ Cox141a4a12011-01-14 14:05:20 -0500196 MOVL DX, m_moreframesize(BX)
197 MOVL AX, m_moreargsize(BX)
Russ Cox8522a472009-06-17 15:15:55 -0700198
199 // Called from f.
200 // Set m->morebuf to f's caller.
201 MOVL 4(SP), DI // f's caller's PC
202 MOVL DI, (m_morebuf+gobuf_pc)(BX)
203 LEAL 8(SP), CX // f's caller's SP
204 MOVL CX, (m_morebuf+gobuf_sp)(BX)
Russ Cox141a4a12011-01-14 14:05:20 -0500205 MOVL CX, m_moreargp(BX)
Hector Chu6bfe5f52010-01-06 17:58:55 -0800206 get_tls(CX)
207 MOVL g(CX), SI
Russ Cox8522a472009-06-17 15:15:55 -0700208 MOVL SI, (m_morebuf+gobuf_g)(BX)
209
210 // Set m->morepc to f's PC.
211 MOVL 0(SP), AX
212 MOVL AX, m_morepc(BX)
213
Russ Coxf9ca3b52011-03-07 10:37:42 -0500214 // Call newstack on m->g0's stack.
Russ Cox8522a472009-06-17 15:15:55 -0700215 MOVL m_g0(BX), BP
Hector Chu6bfe5f52010-01-06 17:58:55 -0800216 MOVL BP, g(CX)
Russ Coxf9ca3b52011-03-07 10:37:42 -0500217 MOVL (g_sched+gobuf_sp)(BP), AX
Russ Cox7e14bd82010-12-07 17:19:36 -0500218 MOVL -4(AX), BX // fault if CALL would, before smashing SP
219 MOVL AX, SP
Russ Cox68b42552010-11-04 14:00:19 -0400220 CALL runtime·newstack(SB)
Russ Cox8522a472009-06-17 15:15:55 -0700221 MOVL $0, 0x1003 // crash if newstack returns
Russ Cox0d3a0432009-03-30 00:01:07 -0700222 RET
223
Russ Coxbba278a2009-07-08 18:16:09 -0700224// Called from reflection library. Mimics morestack,
225// reuses stack growth code to create a frame
226// with the desired args running the desired function.
227//
228// func call(fn *byte, arg *byte, argsize uint32).
229TEXT reflect·call(SB), 7, $0
Hector Chu6bfe5f52010-01-06 17:58:55 -0800230 get_tls(CX)
231 MOVL m(CX), BX
Russ Coxbba278a2009-07-08 18:16:09 -0700232
233 // Save our caller's state as the PC and SP to
234 // restore when returning from f.
235 MOVL 0(SP), AX // our caller's PC
236 MOVL AX, (m_morebuf+gobuf_pc)(BX)
237 LEAL 4(SP), AX // our caller's SP
238 MOVL AX, (m_morebuf+gobuf_sp)(BX)
Hector Chu6bfe5f52010-01-06 17:58:55 -0800239 MOVL g(CX), AX
Russ Coxbba278a2009-07-08 18:16:09 -0700240 MOVL AX, (m_morebuf+gobuf_g)(BX)
241
242 // Set up morestack arguments to call f on a new stack.
Russ Cox83727cc2010-03-29 21:48:22 -0700243 // We set f's frame size to 1, as a hint to newstack
244 // that this is a call from reflect·call.
245 // If it turns out that f needs a larger frame than
246 // the default stack, f's usual stack growth prolog will
247 // allocate a new segment (and recopy the arguments).
Russ Coxbba278a2009-07-08 18:16:09 -0700248 MOVL 4(SP), AX // fn
249 MOVL 8(SP), DX // arg frame
250 MOVL 12(SP), CX // arg size
251
252 MOVL AX, m_morepc(BX) // f's PC
Russ Cox141a4a12011-01-14 14:05:20 -0500253 MOVL DX, m_moreargp(BX) // f's argument pointer
254 MOVL CX, m_moreargsize(BX) // f's argument size
255 MOVL $1, m_moreframesize(BX) // f's frame size
Russ Coxbba278a2009-07-08 18:16:09 -0700256
Russ Coxf9ca3b52011-03-07 10:37:42 -0500257 // Call newstack on m->g0's stack.
Russ Coxbba278a2009-07-08 18:16:09 -0700258 MOVL m_g0(BX), BP
Hector Chu6bfe5f52010-01-06 17:58:55 -0800259 get_tls(CX)
260 MOVL BP, g(CX)
Russ Coxf9ca3b52011-03-07 10:37:42 -0500261 MOVL (g_sched+gobuf_sp)(BP), SP
Russ Cox68b42552010-11-04 14:00:19 -0400262 CALL runtime·newstack(SB)
Russ Coxbba278a2009-07-08 18:16:09 -0700263 MOVL $0, 0x1103 // crash if newstack returns
264 RET
265
266
Russ Cox8522a472009-06-17 15:15:55 -0700267// Return point when leaving stack.
Russ Cox68b42552010-11-04 14:00:19 -0400268TEXT runtime·lessstack(SB), 7, $0
Russ Cox8522a472009-06-17 15:15:55 -0700269 // Save return value in m->cret
Hector Chu6bfe5f52010-01-06 17:58:55 -0800270 get_tls(CX)
271 MOVL m(CX), BX
Russ Cox8522a472009-06-17 15:15:55 -0700272 MOVL AX, m_cret(BX)
273
Russ Coxf9ca3b52011-03-07 10:37:42 -0500274 // Call oldstack on m->g0's stack.
275 MOVL m_g0(BX), BP
276 MOVL BP, g(CX)
277 MOVL (g_sched+gobuf_sp)(BP), SP
Russ Cox68b42552010-11-04 14:00:19 -0400278 CALL runtime·oldstack(SB)
Russ Cox8522a472009-06-17 15:15:55 -0700279 MOVL $0, 0x1004 // crash if oldstack returns
280 RET
281
282
Russ Cox0d3a0432009-03-30 00:01:07 -0700283// bool cas(int32 *val, int32 old, int32 new)
284// Atomically:
285// if(*val == old){
286// *val = new;
287// return 1;
288// }else
289// return 0;
Russ Cox68b42552010-11-04 14:00:19 -0400290TEXT runtime·cas(SB), 7, $0
Russ Cox0d3a0432009-03-30 00:01:07 -0700291 MOVL 4(SP), BX
292 MOVL 8(SP), AX
293 MOVL 12(SP), CX
294 LOCK
295 CMPXCHGL CX, 0(BX)
296 JZ 3(PC)
297 MOVL $0, AX
298 RET
299 MOVL $1, AX
300 RET
301
Hector Chu6bfe5f52010-01-06 17:58:55 -0800302// bool casp(void **p, void *old, void *new)
303// Atomically:
304// if(*p == old){
305// *p = new;
306// return 1;
307// }else
308// return 0;
Russ Cox68b42552010-11-04 14:00:19 -0400309TEXT runtime·casp(SB), 7, $0
Hector Chu6bfe5f52010-01-06 17:58:55 -0800310 MOVL 4(SP), BX
311 MOVL 8(SP), AX
312 MOVL 12(SP), CX
313 LOCK
314 CMPXCHGL CX, 0(BX)
315 JZ 3(PC)
316 MOVL $0, AX
317 RET
318 MOVL $1, AX
319 RET
320
Dmitriy Vyukov491aa152011-07-15 11:27:16 -0400321// uint32 xadd(uint32 volatile *val, int32 delta)
322// Atomically:
323// *val += delta;
324// return *val;
325TEXT runtime·xadd(SB), 7, $0
326 MOVL 4(SP), BX
327 MOVL 8(SP), AX
328 MOVL AX, CX
329 LOCK
330 XADDL AX, 0(BX)
331 ADDL CX, AX
332 RET
333
Dmitriy Vyukov4e5086b2011-07-29 12:44:06 -0400334TEXT runtime·xchg(SB), 7, $0
335 MOVL 4(SP), BX
336 MOVL 8(SP), AX
337 XCHGL AX, 0(BX)
338 RET
339
340TEXT runtime·procyield(SB),7,$0
341 MOVL 4(SP), AX
342again:
343 PAUSE
344 SUBL $1, AX
345 JNZ again
346 RET
347
Dmitriy Vyukov86a659c2011-07-13 11:22:41 -0700348TEXT runtime·atomicstorep(SB), 7, $0
349 MOVL 4(SP), BX
350 MOVL 8(SP), AX
351 XCHGL AX, 0(BX)
352 RET
353
Dmitriy Vyukov91f0f182011-07-29 13:47:24 -0400354TEXT runtime·atomicstore(SB), 7, $0
355 MOVL 4(SP), BX
356 MOVL 8(SP), AX
357 XCHGL AX, 0(BX)
358 RET
359
Russ Coxaa3222d82009-06-02 23:02:12 -0700360// void jmpdefer(fn, sp);
361// called from deferreturn.
Russ Cox0d3a0432009-03-30 00:01:07 -0700362// 1. pop the caller
363// 2. sub 5 bytes from the callers return
364// 3. jmp to the argument
Russ Cox68b42552010-11-04 14:00:19 -0400365TEXT runtime·jmpdefer(SB), 7, $0
Russ Coxaa3222d82009-06-02 23:02:12 -0700366 MOVL 4(SP), AX // fn
367 MOVL 8(SP), BX // caller sp
368 LEAL -4(BX), SP // caller sp after CALL
369 SUBL $5, (SP) // return to CALL again
370 JMP AX // but first run the deferred function
Russ Cox0d3a0432009-03-30 00:01:07 -0700371
Russ Coxf9ca3b52011-03-07 10:37:42 -0500372// Dummy function to use in saved gobuf.PC,
373// to match SP pointing at a return address.
374// The gobuf.PC is unused by the contortions here
375// but setting it to return will make the traceback code work.
376TEXT return<>(SB),7,$0
377 RET
378
379// asmcgocall(void(*fn)(void*), void *arg)
380// Call fn(arg) on the scheduler stack,
381// aligned appropriately for the gcc ABI.
382// See cgocall.c for more details.
383TEXT runtime·asmcgocall(SB),7,$0
384 MOVL fn+0(FP), AX
385 MOVL arg+4(FP), BX
386 MOVL SP, DX
387
388 // Figure out if we need to switch to m->g0 stack.
389 // We get called to create new OS threads too, and those
390 // come in on the m->g0 stack already.
391 get_tls(CX)
392 MOVL m(CX), BP
393 MOVL m_g0(BP), SI
394 MOVL g(CX), DI
395 CMPL SI, DI
396 JEQ 6(PC)
397 MOVL SP, (g_sched+gobuf_sp)(DI)
398 MOVL $return<>(SB), (g_sched+gobuf_pc)(DI)
399 MOVL DI, (g_sched+gobuf_g)(DI)
400 MOVL SI, g(CX)
401 MOVL (g_sched+gobuf_sp)(SI), SP
402
403 // Now on a scheduling stack (a pthread-created stack).
404 SUBL $32, SP
405 ANDL $~15, SP // alignment, perhaps unnecessary
406 MOVL DI, 8(SP) // save g
407 MOVL DX, 4(SP) // save SP
408 MOVL BX, 0(SP) // first argument in x86-32 ABI
409 CALL AX
410
411 // Restore registers, g, stack pointer.
412 get_tls(CX)
413 MOVL 8(SP), DI
414 MOVL DI, g(CX)
415 MOVL 4(SP), SP
416 RET
417
418// cgocallback(void (*fn)(void*), void *frame, uintptr framesize)
419// See cgocall.c for more details.
420TEXT runtime·cgocallback(SB),7,$12
421 MOVL fn+0(FP), AX
422 MOVL frame+4(FP), BX
423 MOVL framesize+8(FP), DX
424
425 // Save current m->g0->sched.sp on stack and then set it to SP.
426 get_tls(CX)
427 MOVL m(CX), BP
428 MOVL m_g0(BP), SI
429 PUSHL (g_sched+gobuf_sp)(SI)
430 MOVL SP, (g_sched+gobuf_sp)(SI)
431
Alex Brainman72e83482011-08-18 12:17:09 -0400432 // Switch to m->curg stack and call runtime.cgocallbackg
Russ Coxf9ca3b52011-03-07 10:37:42 -0500433 // with the three arguments. Because we are taking over
434 // the execution of m->curg but *not* resuming what had
435 // been running, we need to save that information (m->curg->gobuf)
436 // so that we can restore it when we're done.
437 // We can restore m->curg->gobuf.sp easily, because calling
Alex Brainman72e83482011-08-18 12:17:09 -0400438 // runtime.cgocallbackg leaves SP unchanged upon return.
Russ Coxf9ca3b52011-03-07 10:37:42 -0500439 // To save m->curg->gobuf.pc, we push it onto the stack.
440 // This has the added benefit that it looks to the traceback
Alex Brainman72e83482011-08-18 12:17:09 -0400441 // routine like cgocallbackg is going to return to that
442 // PC (because we defined cgocallbackg to have
Russ Coxf9ca3b52011-03-07 10:37:42 -0500443 // a frame size of 12, the same amount that we use below),
444 // so that the traceback will seamlessly trace back into
445 // the earlier calls.
446 MOVL m_curg(BP), SI
447 MOVL SI, g(CX)
448 MOVL (g_sched+gobuf_sp)(SI), DI // prepare stack as DI
449
450 // Push gobuf.pc
451 MOVL (g_sched+gobuf_pc)(SI), BP
452 SUBL $4, DI
453 MOVL BP, 0(DI)
454
455 // Push arguments to cgocallbackg.
456 // Frame size here must match the frame size above
457 // to trick traceback routines into doing the right thing.
458 SUBL $12, DI
459 MOVL AX, 0(DI)
460 MOVL BX, 4(DI)
461 MOVL DX, 8(DI)
462
463 // Switch stack and make the call.
464 MOVL DI, SP
465 CALL runtime·cgocallbackg(SB)
466
467 // Restore g->gobuf (== m->curg->gobuf) from saved values.
468 get_tls(CX)
469 MOVL g(CX), SI
470 MOVL 12(SP), BP
471 MOVL BP, (g_sched+gobuf_pc)(SI)
472 LEAL (12+4)(SP), DI
473 MOVL DI, (g_sched+gobuf_sp)(SI)
474
475 // Switch back to m->g0's stack and restore m->g0->sched.sp.
476 // (Unlike m->curg, the g0 goroutine never uses sched.pc,
477 // so we do not have to restore it.)
478 MOVL m(CX), BP
479 MOVL m_g0(BP), SI
480 MOVL SI, g(CX)
481 MOVL (g_sched+gobuf_sp)(SI), SP
482 POPL (g_sched+gobuf_sp)(SI)
483
484 // Done!
485 RET
486
487// check that SP is in range [g->stackbase, g->stackguard)
488TEXT runtime·stackcheck(SB), 7, $0
489 get_tls(CX)
490 MOVL g(CX), AX
491 CMPL g_stackbase(AX), SP
492 JHI 2(PC)
493 INT $3
494 CMPL SP, g_stackguard(AX)
495 JHI 2(PC)
496 INT $3
497 RET
498
Russ Cox68b42552010-11-04 14:00:19 -0400499TEXT runtime·memclr(SB),7,$0
Russ Cox0d3a0432009-03-30 00:01:07 -0700500 MOVL 4(SP), DI // arg 1 addr
501 MOVL 8(SP), CX // arg 2 count
Quan Yong Zhai47410a22011-07-23 15:46:58 -0400502 MOVL CX, BX
503 ANDL $3, BX
Russ Cox0d3a0432009-03-30 00:01:07 -0700504 SHRL $2, CX
505 MOVL $0, AX
506 CLD
507 REP
508 STOSL
Quan Yong Zhai47410a22011-07-23 15:46:58 -0400509 MOVL BX, CX
510 REP
511 STOSB
Russ Cox0d3a0432009-03-30 00:01:07 -0700512 RET
513
Russ Cox68b42552010-11-04 14:00:19 -0400514TEXT runtime·getcallerpc(SB),7,$0
Russ Cox0d3a0432009-03-30 00:01:07 -0700515 MOVL x+0(FP),AX // addr of first arg
516 MOVL -4(AX),AX // get calling pc
517 RET
518
Russ Cox68b42552010-11-04 14:00:19 -0400519TEXT runtime·setcallerpc(SB),7,$0
Russ Cox0d3a0432009-03-30 00:01:07 -0700520 MOVL x+0(FP),AX // addr of first arg
521 MOVL x+4(FP), BX
522 MOVL BX, -4(AX) // set calling pc
523 RET
524
Russ Cox68b42552010-11-04 14:00:19 -0400525TEXT runtime·getcallersp(SB), 7, $0
Russ Cox6c196012010-04-05 12:51:09 -0700526 MOVL sp+0(FP), AX
527 RET
528
Damian Gryski8e765da2012-02-02 14:09:27 -0500529// int64 runtime·cputicks(void), so really
530// void runtime·cputicks(int64 *ticks)
531TEXT runtime·cputicks(SB),7,$0
Shenghou Ma6392b432012-02-06 12:49:28 -0500532 RDTSC
Damian Gryski8e765da2012-02-02 14:09:27 -0500533 MOVL ret+0(FP), DI
534 MOVL AX, 0(DI)
535 MOVL DX, 4(DI)
536 RET
537
Russ Cox68b42552010-11-04 14:00:19 -0400538TEXT runtime·ldt0setup(SB),7,$16
Russ Cox0d3a0432009-03-30 00:01:07 -0700539 // set up ldt 7 to point at tls0
540 // ldt 1 would be fine on Linux, but on OS X, 7 is as low as we can go.
Russ Cox1b14bdb2009-09-22 16:28:32 -0700541 // the entry number is just a hint. setldt will set up GS with what it used.
Russ Cox0d3a0432009-03-30 00:01:07 -0700542 MOVL $7, 0(SP)
Russ Cox68b42552010-11-04 14:00:19 -0400543 LEAL runtime·tls0(SB), AX
Russ Cox0d3a0432009-03-30 00:01:07 -0700544 MOVL AX, 4(SP)
545 MOVL $32, 8(SP) // sizeof(tls array)
Russ Cox68b42552010-11-04 14:00:19 -0400546 CALL runtime·setldt(SB)
Russ Cox0d3a0432009-03-30 00:01:07 -0700547 RET
548
Russ Cox68b42552010-11-04 14:00:19 -0400549TEXT runtime·emptyfunc(SB),0,$0
Russ Cox0d3a0432009-03-30 00:01:07 -0700550 RET
551
Russ Cox68b42552010-11-04 14:00:19 -0400552TEXT runtime·abort(SB),7,$0
Russ Cox0d3a0432009-03-30 00:01:07 -0700553 INT $0x3
Russ Cox133a1582009-10-03 10:37:12 -0700554
Russ Cox68b42552010-11-04 14:00:19 -0400555GLOBL runtime·tls0(SB), $32