Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 1 | // 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 Cox | 5588940 | 2011-12-19 15:51:13 -0500 | [diff] [blame] | 5 | #include "zasm_GOOS_GOARCH.h" |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 6 | |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 7 | TEXT _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 Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 12 | ANDL $~15, SP |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 13 | MOVL AX, 120(SP) // save argc, argv away |
| 14 | MOVL BX, 124(SP) |
| 15 | |
Dmitriy Vyukov | 428062d | 2011-12-07 16:53:17 +0300 | [diff] [blame] | 16 | // 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 Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 23 | // 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 Vyukov | fbfed49 | 2011-11-09 23:11:48 +0300 | [diff] [blame] | 28 | JZ needtls |
Dmitriy Vyukov | 428062d | 2011-12-07 16:53:17 +0300 | [diff] [blame] | 29 | PUSHL BP |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 30 | CALL AX |
Dmitriy Vyukov | 428062d | 2011-12-07 16:53:17 +0300 | [diff] [blame] | 31 | POPL BP |
Yuval Pavel Zholkover | 2aa2ceb | 2011-07-25 12:25:41 -0400 | [diff] [blame] | 32 | // skip runtime·ldt0setup(SB) and tls test after initcgo for non-windows |
Wei Guangjing | 1aa2d88 | 2011-01-20 10:22:20 -0500 | [diff] [blame] | 33 | CMPL runtime·iswindows(SB), $0 |
| 34 | JEQ ok |
Dmitriy Vyukov | fbfed49 | 2011-11-09 23:11:48 +0300 | [diff] [blame] | 35 | needtls: |
Yuval Pavel Zholkover | 2aa2ceb | 2011-07-25 12:25:41 -0400 | [diff] [blame] | 36 | // skip runtime·ldt0setup(SB) and tls test on Plan 9 in all cases |
| 37 | CMPL runtime·isplan9(SB), $1 |
| 38 | JEQ ok |
| 39 | |
Russ Cox | 1b14bdb | 2009-09-22 16:28:32 -0700 | [diff] [blame] | 40 | // set up %gs |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 41 | CALL runtime·ldt0setup(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 42 | |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 43 | // store through it, to make sure it works |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 44 | get_tls(BX) |
| 45 | MOVL $0x123, g(BX) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 46 | MOVL runtime·tls0(SB), AX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 47 | CMPL AX, $0x123 |
| 48 | JEQ ok |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 49 | MOVL AX, 0 // abort |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 50 | ok: |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 51 | // set up m and g "registers" |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 52 | get_tls(BX) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 53 | LEAL runtime·g0(SB), CX |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 54 | MOVL CX, g(BX) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 55 | LEAL runtime·m0(SB), AX |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 56 | MOVL AX, m(BX) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 57 | |
| 58 | // save m->g0 = g0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 59 | MOVL CX, m_g0(AX) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 60 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 61 | CALL runtime·emptyfunc(SB) // fault if stack check is wrong |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 62 | |
| 63 | // convention is D is always cleared |
| 64 | CLD |
| 65 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 66 | CALL runtime·check(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 67 | |
| 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 73 | CALL runtime·args(SB) |
| 74 | CALL runtime·osinit(SB) |
| 75 | CALL runtime·schedinit(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 76 | |
| 77 | // create a new goroutine to start program |
Russ Cox | 6808da0 | 2011-10-27 18:04:12 -0700 | [diff] [blame] | 78 | PUSHL $runtime·main(SB) // entry |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 79 | PUSHL $0 // arg size |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 80 | CALL runtime·newproc(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 81 | POPL AX |
| 82 | POPL AX |
| 83 | |
| 84 | // start this M |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 85 | CALL runtime·mstart(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 86 | |
| 87 | INT $3 |
| 88 | RET |
| 89 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 90 | TEXT runtime·breakpoint(SB),7,$0 |
Russ Cox | 1b14bdb | 2009-09-22 16:28:32 -0700 | [diff] [blame] | 91 | INT $3 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 92 | RET |
| 93 | |
Russ Cox | 1707a99 | 2012-02-14 01:23:15 -0500 | [diff] [blame^] | 94 | TEXT 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 Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 104 | /* |
| 105 | * go-routine |
| 106 | */ |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 107 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 108 | // void gosave(Gobuf*) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 109 | // save state in Gobuf; setjmp |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 110 | TEXT runtime·gosave(SB), 7, $0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 111 | 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 Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 116 | get_tls(CX) |
| 117 | MOVL g(CX), BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 118 | MOVL BX, gobuf_g(AX) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 119 | RET |
| 120 | |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 121 | // void gogo(Gobuf*, uintptr) |
| 122 | // restore state from Gobuf; longjmp |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 123 | TEXT runtime·gogo(SB), 7, $0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 124 | 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 Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 128 | get_tls(CX) |
| 129 | MOVL DX, g(CX) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 130 | MOVL gobuf_sp(BX), SP // restore SP |
| 131 | MOVL gobuf_pc(BX), BX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 132 | JMP BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 133 | |
| 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 137 | TEXT runtime·gogocall(SB), 7, $0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 138 | MOVL 8(SP), AX // fn |
| 139 | MOVL 4(SP), BX // gobuf |
| 140 | MOVL gobuf_g(BX), DX |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 141 | get_tls(CX) |
| 142 | MOVL DX, g(CX) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 143 | 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 Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 150 | // void mcall(void (*fn)(G*)) |
| 151 | // Switch to m->g0's stack, call fn(g). |
Russ Cox | 370276a | 2011-04-27 23:21:12 -0400 | [diff] [blame] | 152 | // Fn must never return. It should gogo(&g->sched) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 153 | // to keep running g. |
| 154 | TEXT 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 Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 179 | /* |
| 180 | * support for morestack |
| 181 | */ |
| 182 | |
| 183 | // Called during function prolog when more stack is needed. |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 184 | TEXT runtime·morestack(SB),7,$0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 185 | // Cannot grow scheduler stack (m->g0). |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 186 | get_tls(CX) |
| 187 | MOVL m(CX), BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 188 | MOVL m_g0(BX), SI |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 189 | CMPL g(CX), SI |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 190 | JNE 2(PC) |
| 191 | INT $3 |
| 192 | |
| 193 | // frame size in DX |
| 194 | // arg size in AX |
| 195 | // Save in m. |
Russ Cox | 141a4a1 | 2011-01-14 14:05:20 -0500 | [diff] [blame] | 196 | MOVL DX, m_moreframesize(BX) |
| 197 | MOVL AX, m_moreargsize(BX) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 198 | |
| 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 Cox | 141a4a1 | 2011-01-14 14:05:20 -0500 | [diff] [blame] | 205 | MOVL CX, m_moreargp(BX) |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 206 | get_tls(CX) |
| 207 | MOVL g(CX), SI |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 208 | 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 Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 214 | // Call newstack on m->g0's stack. |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 215 | MOVL m_g0(BX), BP |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 216 | MOVL BP, g(CX) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 217 | MOVL (g_sched+gobuf_sp)(BP), AX |
Russ Cox | 7e14bd8 | 2010-12-07 17:19:36 -0500 | [diff] [blame] | 218 | MOVL -4(AX), BX // fault if CALL would, before smashing SP |
| 219 | MOVL AX, SP |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 220 | CALL runtime·newstack(SB) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 221 | MOVL $0, 0x1003 // crash if newstack returns |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 222 | RET |
| 223 | |
Russ Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 224 | // 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). |
| 229 | TEXT reflect·call(SB), 7, $0 |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 230 | get_tls(CX) |
| 231 | MOVL m(CX), BX |
Russ Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 232 | |
| 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 Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 239 | MOVL g(CX), AX |
Russ Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 240 | MOVL AX, (m_morebuf+gobuf_g)(BX) |
| 241 | |
| 242 | // Set up morestack arguments to call f on a new stack. |
Russ Cox | 83727cc | 2010-03-29 21:48:22 -0700 | [diff] [blame] | 243 | // 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 Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 248 | 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 Cox | 141a4a1 | 2011-01-14 14:05:20 -0500 | [diff] [blame] | 253 | 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 Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 256 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 257 | // Call newstack on m->g0's stack. |
Russ Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 258 | MOVL m_g0(BX), BP |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 259 | get_tls(CX) |
| 260 | MOVL BP, g(CX) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 261 | MOVL (g_sched+gobuf_sp)(BP), SP |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 262 | CALL runtime·newstack(SB) |
Russ Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 263 | MOVL $0, 0x1103 // crash if newstack returns |
| 264 | RET |
| 265 | |
| 266 | |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 267 | // Return point when leaving stack. |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 268 | TEXT runtime·lessstack(SB), 7, $0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 269 | // Save return value in m->cret |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 270 | get_tls(CX) |
| 271 | MOVL m(CX), BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 272 | MOVL AX, m_cret(BX) |
| 273 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 274 | // 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 278 | CALL runtime·oldstack(SB) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 279 | MOVL $0, 0x1004 // crash if oldstack returns |
| 280 | RET |
| 281 | |
| 282 | |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 283 | // 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 290 | TEXT runtime·cas(SB), 7, $0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 291 | 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 Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 302 | // 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 309 | TEXT runtime·casp(SB), 7, $0 |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 310 | 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 Vyukov | 491aa15 | 2011-07-15 11:27:16 -0400 | [diff] [blame] | 321 | // uint32 xadd(uint32 volatile *val, int32 delta) |
| 322 | // Atomically: |
| 323 | // *val += delta; |
| 324 | // return *val; |
| 325 | TEXT 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 Vyukov | 4e5086b | 2011-07-29 12:44:06 -0400 | [diff] [blame] | 334 | TEXT runtime·xchg(SB), 7, $0 |
| 335 | MOVL 4(SP), BX |
| 336 | MOVL 8(SP), AX |
| 337 | XCHGL AX, 0(BX) |
| 338 | RET |
| 339 | |
| 340 | TEXT runtime·procyield(SB),7,$0 |
| 341 | MOVL 4(SP), AX |
| 342 | again: |
| 343 | PAUSE |
| 344 | SUBL $1, AX |
| 345 | JNZ again |
| 346 | RET |
| 347 | |
Dmitriy Vyukov | 86a659c | 2011-07-13 11:22:41 -0700 | [diff] [blame] | 348 | TEXT runtime·atomicstorep(SB), 7, $0 |
| 349 | MOVL 4(SP), BX |
| 350 | MOVL 8(SP), AX |
| 351 | XCHGL AX, 0(BX) |
| 352 | RET |
| 353 | |
Dmitriy Vyukov | 91f0f18 | 2011-07-29 13:47:24 -0400 | [diff] [blame] | 354 | TEXT runtime·atomicstore(SB), 7, $0 |
| 355 | MOVL 4(SP), BX |
| 356 | MOVL 8(SP), AX |
| 357 | XCHGL AX, 0(BX) |
| 358 | RET |
| 359 | |
Russ Cox | aa3222d8 | 2009-06-02 23:02:12 -0700 | [diff] [blame] | 360 | // void jmpdefer(fn, sp); |
| 361 | // called from deferreturn. |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 362 | // 1. pop the caller |
| 363 | // 2. sub 5 bytes from the callers return |
| 364 | // 3. jmp to the argument |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 365 | TEXT runtime·jmpdefer(SB), 7, $0 |
Russ Cox | aa3222d8 | 2009-06-02 23:02:12 -0700 | [diff] [blame] | 366 | 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 Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 371 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 372 | // 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. |
| 376 | TEXT 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. |
| 383 | TEXT 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. |
| 420 | TEXT 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 Brainman | 72e8348 | 2011-08-18 12:17:09 -0400 | [diff] [blame] | 432 | // Switch to m->curg stack and call runtime.cgocallbackg |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 433 | // 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 Brainman | 72e8348 | 2011-08-18 12:17:09 -0400 | [diff] [blame] | 438 | // runtime.cgocallbackg leaves SP unchanged upon return. |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 439 | // 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 Brainman | 72e8348 | 2011-08-18 12:17:09 -0400 | [diff] [blame] | 441 | // routine like cgocallbackg is going to return to that |
| 442 | // PC (because we defined cgocallbackg to have |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 443 | // 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) |
| 488 | TEXT 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 499 | TEXT runtime·memclr(SB),7,$0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 500 | MOVL 4(SP), DI // arg 1 addr |
| 501 | MOVL 8(SP), CX // arg 2 count |
Quan Yong Zhai | 47410a2 | 2011-07-23 15:46:58 -0400 | [diff] [blame] | 502 | MOVL CX, BX |
| 503 | ANDL $3, BX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 504 | SHRL $2, CX |
| 505 | MOVL $0, AX |
| 506 | CLD |
| 507 | REP |
| 508 | STOSL |
Quan Yong Zhai | 47410a2 | 2011-07-23 15:46:58 -0400 | [diff] [blame] | 509 | MOVL BX, CX |
| 510 | REP |
| 511 | STOSB |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 512 | RET |
| 513 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 514 | TEXT runtime·getcallerpc(SB),7,$0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 515 | MOVL x+0(FP),AX // addr of first arg |
| 516 | MOVL -4(AX),AX // get calling pc |
| 517 | RET |
| 518 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 519 | TEXT runtime·setcallerpc(SB),7,$0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 520 | 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 Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 525 | TEXT runtime·getcallersp(SB), 7, $0 |
Russ Cox | 6c19601 | 2010-04-05 12:51:09 -0700 | [diff] [blame] | 526 | MOVL sp+0(FP), AX |
| 527 | RET |
| 528 | |
Damian Gryski | 8e765da | 2012-02-02 14:09:27 -0500 | [diff] [blame] | 529 | // int64 runtime·cputicks(void), so really |
| 530 | // void runtime·cputicks(int64 *ticks) |
| 531 | TEXT runtime·cputicks(SB),7,$0 |
Shenghou Ma | 6392b43 | 2012-02-06 12:49:28 -0500 | [diff] [blame] | 532 | RDTSC |
Damian Gryski | 8e765da | 2012-02-02 14:09:27 -0500 | [diff] [blame] | 533 | MOVL ret+0(FP), DI |
| 534 | MOVL AX, 0(DI) |
| 535 | MOVL DX, 4(DI) |
| 536 | RET |
| 537 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 538 | TEXT runtime·ldt0setup(SB),7,$16 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 539 | // 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 Cox | 1b14bdb | 2009-09-22 16:28:32 -0700 | [diff] [blame] | 541 | // the entry number is just a hint. setldt will set up GS with what it used. |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 542 | MOVL $7, 0(SP) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 543 | LEAL runtime·tls0(SB), AX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 544 | MOVL AX, 4(SP) |
| 545 | MOVL $32, 8(SP) // sizeof(tls array) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 546 | CALL runtime·setldt(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 547 | RET |
| 548 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 549 | TEXT runtime·emptyfunc(SB),0,$0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 550 | RET |
| 551 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 552 | TEXT runtime·abort(SB),7,$0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 553 | INT $0x3 |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 554 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 555 | GLOBL runtime·tls0(SB), $32 |