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 | 15ced2d | 2014-11-11 17:06:22 -0500 | [diff] [blame] | 5 | #include "go_asm.h" |
| 6 | #include "go_tls.h" |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 7 | #include "funcdata.h" |
Russ Cox | cb040d5 | 2014-09-04 23:05:18 -0400 | [diff] [blame] | 8 | #include "textflag.h" |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 9 | |
Russ Cox | 7ba41e9 | 2014-09-03 11:11:16 -0400 | [diff] [blame] | 10 | TEXT runtime·rt0_go(SB),NOSPLIT,$0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 11 | // copy arguments forward on an even stack |
Russ Cox | dfc22e29 | 2013-03-07 19:57:10 -0800 | [diff] [blame] | 12 | MOVL argc+0(FP), AX |
| 13 | MOVL argv+4(FP), BX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 14 | SUBL $128, SP // plenty of scratch |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 15 | ANDL $~15, SP |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 16 | MOVL AX, 120(SP) // save argc, argv away |
| 17 | MOVL BX, 124(SP) |
| 18 | |
Dmitriy Vyukov | 428062d | 2011-12-07 16:53:17 +0300 | [diff] [blame] | 19 | // set default stack bounds. |
Russ Cox | f8d49b5 | 2013-02-28 16:24:38 -0500 | [diff] [blame] | 20 | // _cgo_init may update stackguard. |
Dmitriy Vyukov | 428062d | 2011-12-07 16:53:17 +0300 | [diff] [blame] | 21 | MOVL $runtime·g0(SB), BP |
| 22 | LEAL (-64*1024+104)(SP), BX |
Russ Cox | e6d3511 | 2015-01-05 16:29:21 +0000 | [diff] [blame] | 23 | MOVL BX, g_stackguard0(BP) |
| 24 | MOVL BX, g_stackguard1(BP) |
Russ Cox | 15b76ad | 2014-09-09 13:39:57 -0400 | [diff] [blame] | 25 | MOVL BX, (g_stack+stack_lo)(BP) |
| 26 | MOVL SP, (g_stack+stack_hi)(BP) |
Dmitriy Vyukov | 428062d | 2011-12-07 16:53:17 +0300 | [diff] [blame] | 27 | |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 28 | // find out information about the processor we're on |
Shenghou Ma | 35e8454 | 2015-10-17 17:46:25 -0400 | [diff] [blame] | 29 | #ifdef GOOS_nacl // NaCl doesn't like PUSHFL/POPFL |
| 30 | JMP has_cpuid |
| 31 | #else |
| 32 | // first see if CPUID instruction is supported. |
| 33 | PUSHFL |
| 34 | PUSHFL |
| 35 | XORL $(1<<21), 0(SP) // flip ID bit |
| 36 | POPFL |
| 37 | PUSHFL |
| 38 | POPL AX |
| 39 | XORL 0(SP), AX |
| 40 | POPFL // restore EFLAGS |
| 41 | TESTL $(1<<21), AX |
| 42 | JNE has_cpuid |
| 43 | #endif |
| 44 | |
| 45 | bad_proc: // show that the program requires MMX. |
| 46 | MOVL $2, 0(SP) |
| 47 | MOVL $bad_proc_msg<>(SB), 4(SP) |
| 48 | MOVL $0x3d, 8(SP) |
| 49 | CALL runtime·write(SB) |
| 50 | MOVL $1, 0(SP) |
| 51 | CALL runtime·exit(SB) |
| 52 | INT $3 |
| 53 | |
| 54 | has_cpuid: |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 55 | MOVL $0, AX |
| 56 | CPUID |
Keith Randall | 4b209db | 2016-03-29 21:25:33 -0700 | [diff] [blame] | 57 | MOVL AX, SI |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 58 | CMPL AX, $0 |
| 59 | JE nocpuinfo |
Dmitry Vyukov | 6e70fdd | 2015-02-17 14:25:49 +0300 | [diff] [blame] | 60 | |
| 61 | // Figure out how to serialize RDTSC. |
| 62 | // On Intel processors LFENCE is enough. AMD requires MFENCE. |
| 63 | // Don't know about the rest, so let's do MFENCE. |
| 64 | CMPL BX, $0x756E6547 // "Genu" |
| 65 | JNE notintel |
| 66 | CMPL DX, $0x49656E69 // "ineI" |
| 67 | JNE notintel |
| 68 | CMPL CX, $0x6C65746E // "ntel" |
| 69 | JNE notintel |
Martin Möhrmann | b64e817 | 2017-04-24 16:59:33 +0200 | [diff] [blame] | 70 | MOVB $1, runtime·isIntel(SB) |
Dmitry Vyukov | 6e70fdd | 2015-02-17 14:25:49 +0300 | [diff] [blame] | 71 | MOVB $1, runtime·lfenceBeforeRdtsc(SB) |
| 72 | notintel: |
| 73 | |
Keith Randall | 4b209db | 2016-03-29 21:25:33 -0700 | [diff] [blame] | 74 | // Load EAX=1 cpuid flags |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 75 | MOVL $1, AX |
| 76 | CPUID |
Martin Möhrmann | b64e817 | 2017-04-24 16:59:33 +0200 | [diff] [blame] | 77 | MOVL CX, DI // Move to global variable clobbers CX when generating PIC |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 78 | MOVL AX, runtime·processorVersionInfo(SB) |
Martin Möhrmann | b64e817 | 2017-04-24 16:59:33 +0200 | [diff] [blame] | 79 | MOVL DI, runtime·cpuid_ecx(SB) |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 80 | MOVL DX, runtime·cpuid_edx(SB) |
Shenghou Ma | 35e8454 | 2015-10-17 17:46:25 -0400 | [diff] [blame] | 81 | |
| 82 | // Check for MMX support |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 83 | TESTL $(1<<23), DX // MMX |
| 84 | JZ bad_proc |
Shenghou Ma | 35e8454 | 2015-10-17 17:46:25 -0400 | [diff] [blame] | 85 | |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 86 | TESTL $(1<<26), DX // SSE2 |
| 87 | SETNE runtime·support_sse2(SB) |
| 88 | |
| 89 | TESTL $(1<<9), DI // SSSE3 |
| 90 | SETNE runtime·support_ssse3(SB) |
| 91 | |
| 92 | TESTL $(1<<19), DI // SSE4.1 |
| 93 | SETNE runtime·support_sse41(SB) |
| 94 | |
| 95 | TESTL $(1<<20), DI // SSE4.2 |
| 96 | SETNE runtime·support_sse42(SB) |
| 97 | |
| 98 | TESTL $(1<<23), DI // POPCNT |
| 99 | SETNE runtime·support_popcnt(SB) |
| 100 | |
| 101 | TESTL $(1<<25), DI // AES |
| 102 | SETNE runtime·support_aes(SB) |
| 103 | |
| 104 | TESTL $(1<<27), DI // OSXSAVE |
| 105 | SETNE runtime·support_osxsave(SB) |
| 106 | |
| 107 | // If OS support for XMM and YMM is not present |
| 108 | // support_avx will be set back to false later. |
| 109 | TESTL $(1<<28), DI // AVX |
| 110 | SETNE runtime·support_avx(SB) |
| 111 | |
| 112 | eax7: |
Keith Randall | 4b209db | 2016-03-29 21:25:33 -0700 | [diff] [blame] | 113 | // Load EAX=7/ECX=0 cpuid flags |
| 114 | CMPL SI, $7 |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 115 | JLT osavx |
Keith Randall | 4b209db | 2016-03-29 21:25:33 -0700 | [diff] [blame] | 116 | MOVL $7, AX |
| 117 | MOVL $0, CX |
| 118 | CPUID |
| 119 | MOVL BX, runtime·cpuid_ebx7(SB) |
| 120 | |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 121 | TESTL $(1<<3), BX // BMI1 |
| 122 | SETNE runtime·support_bmi1(SB) |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 123 | |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 124 | // If OS support for XMM and YMM is not present |
| 125 | // support_avx2 will be set back to false later. |
| 126 | TESTL $(1<<5), BX |
| 127 | SETNE runtime·support_avx2(SB) |
| 128 | |
| 129 | TESTL $(1<<8), BX // BMI2 |
| 130 | SETNE runtime·support_bmi2(SB) |
| 131 | |
| 132 | TESTL $(1<<9), BX // ERMS |
| 133 | SETNE runtime·support_erms(SB) |
| 134 | |
| 135 | osavx: |
| 136 | // nacl does not support XGETBV to test |
| 137 | // for XMM and YMM OS support. |
| 138 | #ifndef GOOS_nacl |
| 139 | CMPB runtime·support_osxsave(SB), $1 |
| 140 | JNE noavx |
| 141 | MOVL $0, CX |
| 142 | // For XGETBV, OSXSAVE bit is required and sufficient |
| 143 | XGETBV |
| 144 | ANDL $6, AX |
| 145 | CMPL AX, $6 // Check for OS support of XMM and YMM registers. |
| 146 | JE nocpuinfo |
| 147 | #endif |
| 148 | noavx: |
| 149 | MOVB $0, runtime·support_avx(SB) |
| 150 | MOVB $0, runtime·support_avx2(SB) |
| 151 | |
| 152 | nocpuinfo: |
Russ Cox | f8d49b5 | 2013-02-28 16:24:38 -0500 | [diff] [blame] | 153 | // if there is an _cgo_init, call it to let it |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 154 | // initialize and to set up GS. if not, |
| 155 | // we set up GS ourselves. |
Russ Cox | f8d49b5 | 2013-02-28 16:24:38 -0500 | [diff] [blame] | 156 | MOVL _cgo_init(SB), AX |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 157 | TESTL AX, AX |
Dmitriy Vyukov | fbfed49 | 2011-11-09 23:11:48 +0300 | [diff] [blame] | 158 | JZ needtls |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 159 | MOVL $setg_gcc<>(SB), BX |
Russ Cox | 6a70f9d | 2013-03-25 18:14:02 -0400 | [diff] [blame] | 160 | MOVL BX, 4(SP) |
Russ Cox | 3b85b72 | 2013-03-11 00:51:42 -0400 | [diff] [blame] | 161 | MOVL BP, 0(SP) |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 162 | CALL AX |
Russ Cox | 15b76ad | 2014-09-09 13:39:57 -0400 | [diff] [blame] | 163 | |
Dmitriy Vyukov | f5becf4 | 2013-06-03 12:28:24 +0400 | [diff] [blame] | 164 | // update stackguard after _cgo_init |
| 165 | MOVL $runtime·g0(SB), CX |
Russ Cox | 15b76ad | 2014-09-09 13:39:57 -0400 | [diff] [blame] | 166 | MOVL (g_stack+stack_lo)(CX), AX |
Russ Cox | 15ced2d | 2014-11-11 17:06:22 -0500 | [diff] [blame] | 167 | ADDL $const__StackGuard, AX |
Russ Cox | e6d3511 | 2015-01-05 16:29:21 +0000 | [diff] [blame] | 168 | MOVL AX, g_stackguard0(CX) |
| 169 | MOVL AX, g_stackguard1(CX) |
Russ Cox | 15b76ad | 2014-09-09 13:39:57 -0400 | [diff] [blame] | 170 | |
Matthew Dempsky | 8ee0fd8 | 2015-06-09 15:24:38 -0700 | [diff] [blame] | 171 | #ifndef GOOS_windows |
Russ Cox | f8d49b5 | 2013-02-28 16:24:38 -0500 | [diff] [blame] | 172 | // skip runtime·ldt0setup(SB) and tls test after _cgo_init for non-windows |
Matthew Dempsky | 8ee0fd8 | 2015-06-09 15:24:38 -0700 | [diff] [blame] | 173 | JMP ok |
| 174 | #endif |
Dmitriy Vyukov | fbfed49 | 2011-11-09 23:11:48 +0300 | [diff] [blame] | 175 | needtls: |
Matthew Dempsky | 8ee0fd8 | 2015-06-09 15:24:38 -0700 | [diff] [blame] | 176 | #ifdef GOOS_plan9 |
Yuval Pavel Zholkover | 2aa2ceb | 2011-07-25 12:25:41 -0400 | [diff] [blame] | 177 | // skip runtime·ldt0setup(SB) and tls test on Plan 9 in all cases |
Matthew Dempsky | 8ee0fd8 | 2015-06-09 15:24:38 -0700 | [diff] [blame] | 178 | JMP ok |
| 179 | #endif |
Yuval Pavel Zholkover | 2aa2ceb | 2011-07-25 12:25:41 -0400 | [diff] [blame] | 180 | |
Russ Cox | 1b14bdb | 2009-09-22 16:28:32 -0700 | [diff] [blame] | 181 | // set up %gs |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 182 | CALL runtime·ldt0setup(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 183 | |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 184 | // store through it, to make sure it works |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 185 | get_tls(BX) |
| 186 | MOVL $0x123, g(BX) |
Matthew Dempsky | 7bb38f6 | 2015-11-12 15:35:50 -0800 | [diff] [blame] | 187 | MOVL runtime·m0+m_tls(SB), AX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 188 | CMPL AX, $0x123 |
| 189 | JEQ ok |
Russ Cox | 133a158 | 2009-10-03 10:37:12 -0700 | [diff] [blame] | 190 | MOVL AX, 0 // abort |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 191 | ok: |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 192 | // set up m and g "registers" |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 193 | get_tls(BX) |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 194 | LEAL runtime·g0(SB), DX |
| 195 | MOVL DX, g(BX) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 196 | LEAL runtime·m0(SB), AX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 197 | |
| 198 | // save m->g0 = g0 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 199 | MOVL DX, m_g0(AX) |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 200 | // save g0->m = m0 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 201 | MOVL AX, g_m(DX) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 202 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 203 | CALL runtime·emptyfunc(SB) // fault if stack check is wrong |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 204 | |
| 205 | // convention is D is always cleared |
| 206 | CLD |
| 207 | |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 208 | CALL runtime·check(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 209 | |
| 210 | // saved argc, argv |
| 211 | MOVL 120(SP), AX |
| 212 | MOVL AX, 0(SP) |
| 213 | MOVL 124(SP), AX |
| 214 | MOVL AX, 4(SP) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 215 | CALL runtime·args(SB) |
| 216 | CALL runtime·osinit(SB) |
| 217 | CALL runtime·schedinit(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 218 | |
| 219 | // create a new goroutine to start program |
Michael Hudson-Doyle | f78dc1d | 2015-03-29 23:38:20 +0000 | [diff] [blame] | 220 | PUSHL $runtime·mainPC(SB) // entry |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 221 | PUSHL $0 // arg size |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 222 | CALL runtime·newproc(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 223 | POPL AX |
| 224 | POPL AX |
| 225 | |
| 226 | // start this M |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 227 | CALL runtime·mstart(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 228 | |
| 229 | INT $3 |
| 230 | RET |
| 231 | |
Shenghou Ma | 35e8454 | 2015-10-17 17:46:25 -0400 | [diff] [blame] | 232 | DATA bad_proc_msg<>+0x00(SB)/8, $"This pro" |
| 233 | DATA bad_proc_msg<>+0x08(SB)/8, $"gram can" |
| 234 | DATA bad_proc_msg<>+0x10(SB)/8, $" only be" |
| 235 | DATA bad_proc_msg<>+0x18(SB)/8, $" run on " |
Keith Randall | a871464 | 2016-06-05 09:24:09 -0700 | [diff] [blame] | 236 | DATA bad_proc_msg<>+0x20(SB)/8, $"processo" |
Shenghou Ma | 35e8454 | 2015-10-17 17:46:25 -0400 | [diff] [blame] | 237 | DATA bad_proc_msg<>+0x28(SB)/8, $"rs with " |
| 238 | DATA bad_proc_msg<>+0x30(SB)/8, $"MMX supp" |
| 239 | DATA bad_proc_msg<>+0x38(SB)/4, $"ort." |
| 240 | DATA bad_proc_msg<>+0x3c(SB)/1, $0xa |
| 241 | GLOBL bad_proc_msg<>(SB), RODATA, $0x3d |
| 242 | |
Michael Hudson-Doyle | f78dc1d | 2015-03-29 23:38:20 +0000 | [diff] [blame] | 243 | DATA runtime·mainPC+0(SB)/4,$runtime·main(SB) |
| 244 | GLOBL runtime·mainPC(SB),RODATA,$4 |
Russ Cox | 1903ad7 | 2013-02-21 17:01:13 -0500 | [diff] [blame] | 245 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 246 | TEXT runtime·breakpoint(SB),NOSPLIT,$0-0 |
Russ Cox | 1b14bdb | 2009-09-22 16:28:32 -0700 | [diff] [blame] | 247 | INT $3 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 248 | RET |
| 249 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 250 | TEXT runtime·asminit(SB),NOSPLIT,$0-0 |
Carl Shapiro | 019c8fc | 2013-04-02 13:45:56 -0700 | [diff] [blame] | 251 | // Linux and MinGW start the FPU in extended double precision. |
Russ Cox | 1707a99 | 2012-02-14 01:23:15 -0500 | [diff] [blame] | 252 | // Other operating systems use double precision. |
| 253 | // Change to double precision to match them, |
| 254 | // and to match other hardware that only has double. |
Keith Randall | c069bc4 | 2016-07-26 11:51:33 -0700 | [diff] [blame] | 255 | FLDCW runtime·controlWord64(SB) |
Russ Cox | 1707a99 | 2012-02-14 01:23:15 -0500 | [diff] [blame] | 256 | RET |
| 257 | |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 258 | /* |
| 259 | * go-routine |
| 260 | */ |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 261 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 262 | // void gosave(Gobuf*) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 263 | // save state in Gobuf; setjmp |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 264 | TEXT runtime·gosave(SB), NOSPLIT, $0-4 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 265 | MOVL buf+0(FP), AX // gobuf |
| 266 | LEAL buf+0(FP), BX // caller's SP |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 267 | MOVL BX, gobuf_sp(AX) |
| 268 | MOVL 0(SP), BX // caller's PC |
| 269 | MOVL BX, gobuf_pc(AX) |
Russ Cox | d67e7e3 | 2013-06-12 15:22:26 -0400 | [diff] [blame] | 270 | MOVL $0, gobuf_ret(AX) |
Austin Clements | 70c107c | 2016-10-19 15:49:31 -0400 | [diff] [blame] | 271 | // Assert ctxt is zero. See func save. |
| 272 | MOVL gobuf_ctxt(AX), BX |
| 273 | TESTL BX, BX |
| 274 | JZ 2(PC) |
| 275 | CALL runtime·badctxt(SB) |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 276 | get_tls(CX) |
| 277 | MOVL g(CX), BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 278 | MOVL BX, gobuf_g(AX) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 279 | RET |
| 280 | |
Ian Lance Taylor | 0627248 | 2013-06-12 15:05:10 -0700 | [diff] [blame] | 281 | // void gogo(Gobuf*) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 282 | // restore state from Gobuf; longjmp |
Austin Clements | 70c107c | 2016-10-19 15:49:31 -0400 | [diff] [blame] | 283 | TEXT runtime·gogo(SB), NOSPLIT, $8-4 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 284 | MOVL buf+0(FP), BX // gobuf |
Austin Clements | 70c107c | 2016-10-19 15:49:31 -0400 | [diff] [blame] | 285 | |
| 286 | // If ctxt is not nil, invoke deletion barrier before overwriting. |
| 287 | MOVL gobuf_ctxt(BX), DX |
| 288 | TESTL DX, DX |
| 289 | JZ nilctxt |
| 290 | LEAL gobuf_ctxt(BX), AX |
| 291 | MOVL AX, 0(SP) |
| 292 | MOVL $0, 4(SP) |
| 293 | CALL runtime·writebarrierptr_prewrite(SB) |
| 294 | MOVL buf+0(FP), BX |
| 295 | |
| 296 | nilctxt: |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 297 | MOVL gobuf_g(BX), DX |
| 298 | MOVL 0(DX), CX // make sure g != nil |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 299 | get_tls(CX) |
| 300 | MOVL DX, g(CX) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 301 | MOVL gobuf_sp(BX), SP // restore SP |
Russ Cox | d67e7e3 | 2013-06-12 15:22:26 -0400 | [diff] [blame] | 302 | MOVL gobuf_ret(BX), AX |
| 303 | MOVL gobuf_ctxt(BX), DX |
| 304 | MOVL $0, gobuf_sp(BX) // clear to help garbage collector |
| 305 | MOVL $0, gobuf_ret(BX) |
| 306 | MOVL $0, gobuf_ctxt(BX) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 307 | MOVL gobuf_pc(BX), BX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 308 | JMP BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 309 | |
Russ Cox | 012ceed | 2014-09-03 11:35:22 -0400 | [diff] [blame] | 310 | // func mcall(fn func(*g)) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 311 | // Switch to m->g0's stack, call fn(g). |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 312 | // Fn must never return. It should gogo(&g->sched) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 313 | // to keep running g. |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 314 | TEXT runtime·mcall(SB), NOSPLIT, $0-4 |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 315 | MOVL fn+0(FP), DI |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 316 | |
| 317 | get_tls(DX) |
| 318 | MOVL g(DX), AX // save state in g->sched |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 319 | MOVL 0(SP), BX // caller's PC |
| 320 | MOVL BX, (g_sched+gobuf_pc)(AX) |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 321 | LEAL fn+0(FP), BX // caller's SP |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 322 | MOVL BX, (g_sched+gobuf_sp)(AX) |
| 323 | MOVL AX, (g_sched+gobuf_g)(AX) |
| 324 | |
| 325 | // switch to m->g0 & its stack, call fn |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 326 | MOVL g(DX), BX |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 327 | MOVL g_m(BX), BX |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 328 | MOVL m_g0(BX), SI |
| 329 | CMPL SI, AX // if g == m->g0 call badmcall |
Keith Randall | 32b770b | 2013-08-29 15:53:34 -0700 | [diff] [blame] | 330 | JNE 3(PC) |
| 331 | MOVL $runtime·badmcall(SB), AX |
| 332 | JMP AX |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 333 | MOVL SI, g(DX) // g = m->g0 |
Russ Cox | 528534c | 2013-06-05 07:16:53 -0400 | [diff] [blame] | 334 | MOVL (g_sched+gobuf_sp)(SI), SP // sp = m->g0->sched.sp |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 335 | PUSHL AX |
Russ Cox | 012ceed | 2014-09-03 11:35:22 -0400 | [diff] [blame] | 336 | MOVL DI, DX |
| 337 | MOVL 0(DI), DI |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 338 | CALL DI |
| 339 | POPL AX |
Keith Randall | 32b770b | 2013-08-29 15:53:34 -0700 | [diff] [blame] | 340 | MOVL $runtime·badmcall2(SB), AX |
| 341 | JMP AX |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 342 | RET |
| 343 | |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 344 | // systemstack_switch is a dummy routine that systemstack leaves at the bottom |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 345 | // of the G stack. We need to distinguish the routine that |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 346 | // lives at the bottom of the G stack from the one that lives |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 347 | // at the top of the system stack because the one at the top of |
| 348 | // the system stack terminates the stack walk (see topofstack()). |
| 349 | TEXT runtime·systemstack_switch(SB), NOSPLIT, $0-0 |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 350 | RET |
| 351 | |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 352 | // func systemstack(fn func()) |
| 353 | TEXT runtime·systemstack(SB), NOSPLIT, $0-4 |
| 354 | MOVL fn+0(FP), DI // DI = fn |
Russ Cox | 1d550b8 | 2014-09-11 12:08:30 -0400 | [diff] [blame] | 355 | get_tls(CX) |
| 356 | MOVL g(CX), AX // AX = g |
| 357 | MOVL g_m(AX), BX // BX = m |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 358 | |
Russ Cox | 1d550b8 | 2014-09-11 12:08:30 -0400 | [diff] [blame] | 359 | MOVL m_gsignal(BX), DX // DX = gsignal |
| 360 | CMPL AX, DX |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 361 | JEQ noswitch |
Russ Cox | 32ecf57 | 2014-09-04 00:10:10 -0400 | [diff] [blame] | 362 | |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 363 | MOVL m_g0(BX), DX // DX = g0 |
| 364 | CMPL AX, DX |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 365 | JEQ noswitch |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 366 | |
Russ Cox | 32ecf57 | 2014-09-04 00:10:10 -0400 | [diff] [blame] | 367 | MOVL m_curg(BX), BP |
| 368 | CMPL AX, BP |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 369 | JEQ switch |
Russ Cox | 32ecf57 | 2014-09-04 00:10:10 -0400 | [diff] [blame] | 370 | |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 371 | // Bad: g is not gsignal, not g0, not curg. What is it? |
Russ Cox | 32ecf57 | 2014-09-04 00:10:10 -0400 | [diff] [blame] | 372 | // Hide call from linker nosplit analysis. |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 373 | MOVL $runtime·badsystemstack(SB), AX |
Russ Cox | 32ecf57 | 2014-09-04 00:10:10 -0400 | [diff] [blame] | 374 | CALL AX |
| 375 | |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 376 | switch: |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 377 | // save our state in g->sched. Pretend to |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 378 | // be systemstack_switch if the G stack is scanned. |
| 379 | MOVL $runtime·systemstack_switch(SB), (g_sched+gobuf_pc)(AX) |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 380 | MOVL SP, (g_sched+gobuf_sp)(AX) |
| 381 | MOVL AX, (g_sched+gobuf_g)(AX) |
| 382 | |
| 383 | // switch to g0 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 384 | get_tls(CX) |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 385 | MOVL DX, g(CX) |
Russ Cox | d16a2ad | 2014-09-04 22:48:08 -0400 | [diff] [blame] | 386 | MOVL (g_sched+gobuf_sp)(DX), BX |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 387 | // make it look like mstart called systemstack on g0, to stop traceback |
Russ Cox | d16a2ad | 2014-09-04 22:48:08 -0400 | [diff] [blame] | 388 | SUBL $4, BX |
| 389 | MOVL $runtime·mstart(SB), DX |
| 390 | MOVL DX, 0(BX) |
| 391 | MOVL BX, SP |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 392 | |
| 393 | // call target function |
Russ Cox | 012ceed | 2014-09-03 11:35:22 -0400 | [diff] [blame] | 394 | MOVL DI, DX |
| 395 | MOVL 0(DI), DI |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 396 | CALL DI |
| 397 | |
| 398 | // switch back to g |
| 399 | get_tls(CX) |
| 400 | MOVL g(CX), AX |
| 401 | MOVL g_m(AX), BX |
| 402 | MOVL m_curg(BX), AX |
| 403 | MOVL AX, g(CX) |
| 404 | MOVL (g_sched+gobuf_sp)(AX), SP |
| 405 | MOVL $0, (g_sched+gobuf_sp)(AX) |
| 406 | RET |
| 407 | |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 408 | noswitch: |
| 409 | // already on system stack, just call directly |
Russ Cox | 012ceed | 2014-09-03 11:35:22 -0400 | [diff] [blame] | 410 | MOVL DI, DX |
| 411 | MOVL 0(DI), DI |
Keith Randall | 4aa5043 | 2014-07-30 09:01:52 -0700 | [diff] [blame] | 412 | CALL DI |
| 413 | RET |
| 414 | |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 415 | /* |
| 416 | * support for morestack |
| 417 | */ |
| 418 | |
| 419 | // Called during function prolog when more stack is needed. |
Russ Cox | 58f12ff | 2013-07-18 16:53:45 -0400 | [diff] [blame] | 420 | // |
| 421 | // The traceback routines see morestack on a g0 as being |
| 422 | // the top of a stack (for example, morestack calling newstack |
| 423 | // calling the scheduler calling newm calling gc), so we must |
| 424 | // record an argument size. For that purpose, it has no arguments. |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 425 | TEXT runtime·morestack(SB),NOSPLIT,$0-0 |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 426 | // Cannot grow scheduler stack (m->g0). |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 427 | get_tls(CX) |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 428 | MOVL g(CX), BX |
| 429 | MOVL g_m(BX), BX |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 430 | MOVL m_g0(BX), SI |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 431 | CMPL g(CX), SI |
Austin Clements | 687d9d5 | 2016-10-13 10:44:57 -0400 | [diff] [blame] | 432 | JNE 3(PC) |
| 433 | CALL runtime·badmorestackg0(SB) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 434 | INT $3 |
| 435 | |
Russ Cox | f8f630f | 2014-09-05 16:51:45 -0400 | [diff] [blame] | 436 | // Cannot grow signal stack. |
| 437 | MOVL m_gsignal(BX), SI |
| 438 | CMPL g(CX), SI |
Austin Clements | 687d9d5 | 2016-10-13 10:44:57 -0400 | [diff] [blame] | 439 | JNE 3(PC) |
| 440 | CALL runtime·badmorestackgsignal(SB) |
Russ Cox | f8f630f | 2014-09-05 16:51:45 -0400 | [diff] [blame] | 441 | INT $3 |
| 442 | |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 443 | // Called from f. |
| 444 | // Set m->morebuf to f's caller. |
| 445 | MOVL 4(SP), DI // f's caller's PC |
| 446 | MOVL DI, (m_morebuf+gobuf_pc)(BX) |
| 447 | LEAL 8(SP), CX // f's caller's SP |
| 448 | MOVL CX, (m_morebuf+gobuf_sp)(BX) |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 449 | get_tls(CX) |
| 450 | MOVL g(CX), SI |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 451 | MOVL SI, (m_morebuf+gobuf_g)(BX) |
| 452 | |
Russ Cox | 6fa3c89 | 2013-06-27 11:32:01 -0400 | [diff] [blame] | 453 | // Set g->sched to context in f. |
| 454 | MOVL 0(SP), AX // f's PC |
| 455 | MOVL AX, (g_sched+gobuf_pc)(SI) |
| 456 | MOVL SI, (g_sched+gobuf_g)(SI) |
| 457 | LEAL 4(SP), AX // f's SP |
| 458 | MOVL AX, (g_sched+gobuf_sp)(SI) |
Austin Clements | bf9c71c | 2016-10-19 18:27:39 -0400 | [diff] [blame] | 459 | // newstack will fill gobuf.ctxt. |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 460 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 461 | // Call newstack on m->g0's stack. |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 462 | MOVL m_g0(BX), BP |
Hector Chu | 6bfe5f5 | 2010-01-06 17:58:55 -0800 | [diff] [blame] | 463 | MOVL BP, g(CX) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 464 | MOVL (g_sched+gobuf_sp)(BP), AX |
Russ Cox | 7e14bd8 | 2010-12-07 17:19:36 -0500 | [diff] [blame] | 465 | MOVL -4(AX), BX // fault if CALL would, before smashing SP |
| 466 | MOVL AX, SP |
Austin Clements | bf9c71c | 2016-10-19 18:27:39 -0400 | [diff] [blame] | 467 | PUSHL DX // ctxt argument |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 468 | CALL runtime·newstack(SB) |
Russ Cox | 8522a47 | 2009-06-17 15:15:55 -0700 | [diff] [blame] | 469 | MOVL $0, 0x1003 // crash if newstack returns |
Austin Clements | bf9c71c | 2016-10-19 18:27:39 -0400 | [diff] [blame] | 470 | POPL DX // keep balance check happy |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 471 | RET |
| 472 | |
Russ Cox | c2dd33a | 2014-03-04 13:53:08 -0500 | [diff] [blame] | 473 | TEXT runtime·morestack_noctxt(SB),NOSPLIT,$0-0 |
| 474 | MOVL $0, DX |
| 475 | JMP runtime·morestack(SB) |
| 476 | |
Keith Randall | 5263198 | 2014-09-08 10:14:41 -0700 | [diff] [blame] | 477 | // reflectcall: call a function with the given argument list |
Russ Cox | df027ac | 2014-12-30 13:59:55 -0500 | [diff] [blame] | 478 | // func call(argtype *_type, f *FuncVal, arg *byte, argsize, retoffset uint32). |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 479 | // we don't have variable-sized frames, so we use a small number |
| 480 | // of constant-sized-frame functions to encode a few bits of size in the pc. |
| 481 | // Caution: ugly multiline assembly macros in your future! |
| 482 | |
| 483 | #define DISPATCH(NAME,MAXSIZE) \ |
| 484 | CMPL CX, $MAXSIZE; \ |
| 485 | JA 3(PC); \ |
Russ Cox | f8f630f | 2014-09-05 16:51:45 -0400 | [diff] [blame] | 486 | MOVL $NAME(SB), AX; \ |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 487 | JMP AX |
Rob Pike | aff7883 | 2014-07-30 10:11:44 -0700 | [diff] [blame] | 488 | // Note: can't just "JMP NAME(SB)" - bad inlining results. |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 489 | |
Russ Cox | 7a524a1 | 2014-12-22 13:27:53 -0500 | [diff] [blame] | 490 | TEXT reflect·call(SB), NOSPLIT, $0-0 |
| 491 | JMP ·reflectcall(SB) |
| 492 | |
Russ Cox | df027ac | 2014-12-30 13:59:55 -0500 | [diff] [blame] | 493 | TEXT ·reflectcall(SB), NOSPLIT, $0-20 |
| 494 | MOVL argsize+12(FP), CX |
Rob Pike | aff7883 | 2014-07-30 10:11:44 -0700 | [diff] [blame] | 495 | DISPATCH(runtime·call16, 16) |
| 496 | DISPATCH(runtime·call32, 32) |
| 497 | DISPATCH(runtime·call64, 64) |
| 498 | DISPATCH(runtime·call128, 128) |
| 499 | DISPATCH(runtime·call256, 256) |
| 500 | DISPATCH(runtime·call512, 512) |
| 501 | DISPATCH(runtime·call1024, 1024) |
| 502 | DISPATCH(runtime·call2048, 2048) |
| 503 | DISPATCH(runtime·call4096, 4096) |
| 504 | DISPATCH(runtime·call8192, 8192) |
| 505 | DISPATCH(runtime·call16384, 16384) |
| 506 | DISPATCH(runtime·call32768, 32768) |
| 507 | DISPATCH(runtime·call65536, 65536) |
| 508 | DISPATCH(runtime·call131072, 131072) |
| 509 | DISPATCH(runtime·call262144, 262144) |
| 510 | DISPATCH(runtime·call524288, 524288) |
| 511 | DISPATCH(runtime·call1048576, 1048576) |
| 512 | DISPATCH(runtime·call2097152, 2097152) |
| 513 | DISPATCH(runtime·call4194304, 4194304) |
| 514 | DISPATCH(runtime·call8388608, 8388608) |
| 515 | DISPATCH(runtime·call16777216, 16777216) |
| 516 | DISPATCH(runtime·call33554432, 33554432) |
| 517 | DISPATCH(runtime·call67108864, 67108864) |
| 518 | DISPATCH(runtime·call134217728, 134217728) |
| 519 | DISPATCH(runtime·call268435456, 268435456) |
| 520 | DISPATCH(runtime·call536870912, 536870912) |
| 521 | DISPATCH(runtime·call1073741824, 1073741824) |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 522 | MOVL $runtime·badreflectcall(SB), AX |
| 523 | JMP AX |
| 524 | |
Keith Randall | 12e46e4 | 2013-08-06 14:33:55 -0700 | [diff] [blame] | 525 | #define CALLFN(NAME,MAXSIZE) \ |
Russ Cox | df027ac | 2014-12-30 13:59:55 -0500 | [diff] [blame] | 526 | TEXT NAME(SB), WRAPPER, $MAXSIZE-20; \ |
Russ Cox | cb6f5ac | 2014-10-15 13:12:16 -0400 | [diff] [blame] | 527 | NO_LOCAL_POINTERS; \ |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 528 | /* copy arguments to stack */ \ |
Russ Cox | df027ac | 2014-12-30 13:59:55 -0500 | [diff] [blame] | 529 | MOVL argptr+8(FP), SI; \ |
| 530 | MOVL argsize+12(FP), CX; \ |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 531 | MOVL SP, DI; \ |
| 532 | REP;MOVSB; \ |
| 533 | /* call function */ \ |
Russ Cox | df027ac | 2014-12-30 13:59:55 -0500 | [diff] [blame] | 534 | MOVL f+4(FP), DX; \ |
Russ Cox | 4a000b9 | 2014-02-25 17:00:08 -0500 | [diff] [blame] | 535 | MOVL (DX), AX; \ |
Keith Randall | cee8bca | 2014-05-21 14:28:34 -0700 | [diff] [blame] | 536 | PCDATA $PCDATA_StackMapIndex, $0; \ |
Russ Cox | 4a000b9 | 2014-02-25 17:00:08 -0500 | [diff] [blame] | 537 | CALL AX; \ |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 538 | /* copy return values back */ \ |
Austin Clements | 79561a8 | 2016-10-20 22:45:18 -0400 | [diff] [blame] | 539 | MOVL argtype+0(FP), DX; \ |
Russ Cox | df027ac | 2014-12-30 13:59:55 -0500 | [diff] [blame] | 540 | MOVL argptr+8(FP), DI; \ |
| 541 | MOVL argsize+12(FP), CX; \ |
| 542 | MOVL retoffset+16(FP), BX; \ |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 543 | MOVL SP, SI; \ |
Russ Cox | 72c5d5e | 2014-04-08 11:11:35 -0400 | [diff] [blame] | 544 | ADDL BX, DI; \ |
| 545 | ADDL BX, SI; \ |
| 546 | SUBL BX, CX; \ |
Austin Clements | 79561a8 | 2016-10-20 22:45:18 -0400 | [diff] [blame] | 547 | CALL callRet<>(SB); \ |
| 548 | RET |
| 549 | |
| 550 | // callRet copies return values back at the end of call*. This is a |
| 551 | // separate function so it can allocate stack space for the arguments |
| 552 | // to reflectcallmove. It does not follow the Go ABI; it expects its |
| 553 | // arguments in registers. |
| 554 | TEXT callRet<>(SB), NOSPLIT, $16-0 |
| 555 | MOVL DX, 0(SP) |
| 556 | MOVL DI, 4(SP) |
| 557 | MOVL SI, 8(SP) |
| 558 | MOVL CX, 12(SP) |
| 559 | CALL runtime·reflectcallmove(SB) |
Keith Randall | 9cd5706 | 2013-08-02 13:03:14 -0700 | [diff] [blame] | 560 | RET |
| 561 | |
Russ Cox | cb6f5ac | 2014-10-15 13:12:16 -0400 | [diff] [blame] | 562 | CALLFN(·call16, 16) |
| 563 | CALLFN(·call32, 32) |
| 564 | CALLFN(·call64, 64) |
| 565 | CALLFN(·call128, 128) |
| 566 | CALLFN(·call256, 256) |
| 567 | CALLFN(·call512, 512) |
| 568 | CALLFN(·call1024, 1024) |
| 569 | CALLFN(·call2048, 2048) |
| 570 | CALLFN(·call4096, 4096) |
| 571 | CALLFN(·call8192, 8192) |
| 572 | CALLFN(·call16384, 16384) |
| 573 | CALLFN(·call32768, 32768) |
| 574 | CALLFN(·call65536, 65536) |
| 575 | CALLFN(·call131072, 131072) |
| 576 | CALLFN(·call262144, 262144) |
| 577 | CALLFN(·call524288, 524288) |
| 578 | CALLFN(·call1048576, 1048576) |
| 579 | CALLFN(·call2097152, 2097152) |
| 580 | CALLFN(·call4194304, 4194304) |
| 581 | CALLFN(·call8388608, 8388608) |
| 582 | CALLFN(·call16777216, 16777216) |
| 583 | CALLFN(·call33554432, 33554432) |
| 584 | CALLFN(·call67108864, 67108864) |
| 585 | CALLFN(·call134217728, 134217728) |
| 586 | CALLFN(·call268435456, 268435456) |
| 587 | CALLFN(·call536870912, 536870912) |
| 588 | CALLFN(·call1073741824, 1073741824) |
Russ Cox | bba278a | 2009-07-08 18:16:09 -0700 | [diff] [blame] | 589 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 590 | TEXT runtime·procyield(SB),NOSPLIT,$0-0 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 591 | MOVL cycles+0(FP), AX |
Dmitriy Vyukov | 4e5086b | 2011-07-29 12:44:06 -0400 | [diff] [blame] | 592 | again: |
| 593 | PAUSE |
| 594 | SUBL $1, AX |
| 595 | JNZ again |
| 596 | RET |
| 597 | |
Austin Clements | f5d494b | 2015-06-15 12:30:23 -0400 | [diff] [blame] | 598 | TEXT ·publicationBarrier(SB),NOSPLIT,$0-0 |
| 599 | // Stores are already ordered on x86, so this is just a |
| 600 | // compile barrier. |
| 601 | RET |
| 602 | |
Russ Cox | aa3222d8 | 2009-06-02 23:02:12 -0700 | [diff] [blame] | 603 | // void jmpdefer(fn, sp); |
| 604 | // called from deferreturn. |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 605 | // 1. pop the caller |
Michael Hudson-Doyle | 2684974 | 2016-06-02 11:07:55 +1200 | [diff] [blame] | 606 | // 2. sub 5 bytes (the length of CALL & a 32 bit displacement) from the callers |
| 607 | // return (when building for shared libraries, subtract 16 bytes -- 5 bytes |
| 608 | // for CALL & displacement to call __x86.get_pc_thunk.cx, 6 bytes for the |
| 609 | // LEAL to load the offset into BX, and finally 5 for the call & displacement) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 610 | // 3. jmp to the argument |
Keith Randall | a97a91d | 2013-08-07 14:03:50 -0700 | [diff] [blame] | 611 | TEXT runtime·jmpdefer(SB), NOSPLIT, $0-8 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 612 | MOVL fv+0(FP), DX // fn |
| 613 | MOVL argp+4(FP), BX // caller sp |
Russ Cox | aa3222d8 | 2009-06-02 23:02:12 -0700 | [diff] [blame] | 614 | LEAL -4(BX), SP // caller sp after CALL |
Michael Hudson-Doyle | 2684974 | 2016-06-02 11:07:55 +1200 | [diff] [blame] | 615 | #ifdef GOBUILDMODE_shared |
| 616 | SUBL $16, (SP) // return to CALL again |
| 617 | #else |
Russ Cox | aa3222d8 | 2009-06-02 23:02:12 -0700 | [diff] [blame] | 618 | SUBL $5, (SP) // return to CALL again |
Michael Hudson-Doyle | 2684974 | 2016-06-02 11:07:55 +1200 | [diff] [blame] | 619 | #endif |
Russ Cox | 6066fdc | 2013-02-22 10:47:54 -0500 | [diff] [blame] | 620 | MOVL 0(DX), BX |
Russ Cox | 1903ad7 | 2013-02-21 17:01:13 -0500 | [diff] [blame] | 621 | JMP BX // but first run the deferred function |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 622 | |
Russ Cox | d67e7e3 | 2013-06-12 15:22:26 -0400 | [diff] [blame] | 623 | // Save state of caller into g->sched. |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 624 | TEXT gosave<>(SB),NOSPLIT,$0 |
Russ Cox | d67e7e3 | 2013-06-12 15:22:26 -0400 | [diff] [blame] | 625 | PUSHL AX |
| 626 | PUSHL BX |
| 627 | get_tls(BX) |
| 628 | MOVL g(BX), BX |
| 629 | LEAL arg+0(FP), AX |
| 630 | MOVL AX, (g_sched+gobuf_sp)(BX) |
| 631 | MOVL -4(AX), AX |
| 632 | MOVL AX, (g_sched+gobuf_pc)(BX) |
| 633 | MOVL $0, (g_sched+gobuf_ret)(BX) |
Austin Clements | 70c107c | 2016-10-19 15:49:31 -0400 | [diff] [blame] | 634 | // Assert ctxt is zero. See func save. |
| 635 | MOVL (g_sched+gobuf_ctxt)(BX), AX |
| 636 | TESTL AX, AX |
| 637 | JZ 2(PC) |
| 638 | CALL runtime·badctxt(SB) |
Russ Cox | d67e7e3 | 2013-06-12 15:22:26 -0400 | [diff] [blame] | 639 | POPL BX |
| 640 | POPL AX |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 641 | RET |
| 642 | |
Alex Brainman | 9d968cb | 2015-04-27 17:32:23 +1000 | [diff] [blame] | 643 | // func asmcgocall(fn, arg unsafe.Pointer) int32 |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 644 | // Call fn(arg) on the scheduler stack, |
| 645 | // aligned appropriately for the gcc ABI. |
Alex Brainman | 9d968cb | 2015-04-27 17:32:23 +1000 | [diff] [blame] | 646 | // See cgocall.go for more details. |
| 647 | TEXT ·asmcgocall(SB),NOSPLIT,$0-12 |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 648 | MOVL fn+0(FP), AX |
| 649 | MOVL arg+4(FP), BX |
Russ Cox | cb76724 | 2014-09-04 00:01:55 -0400 | [diff] [blame] | 650 | |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 651 | MOVL SP, DX |
| 652 | |
| 653 | // Figure out if we need to switch to m->g0 stack. |
| 654 | // We get called to create new OS threads too, and those |
| 655 | // come in on the m->g0 stack already. |
| 656 | get_tls(CX) |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 657 | MOVL g(CX), BP |
| 658 | MOVL g_m(BP), BP |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 659 | MOVL m_g0(BP), SI |
| 660 | MOVL g(CX), DI |
| 661 | CMPL SI, DI |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 662 | JEQ noswitch |
Russ Cox | d67e7e3 | 2013-06-12 15:22:26 -0400 | [diff] [blame] | 663 | CALL gosave<>(SB) |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 664 | get_tls(CX) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 665 | MOVL SI, g(CX) |
| 666 | MOVL (g_sched+gobuf_sp)(SI), SP |
| 667 | |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 668 | noswitch: |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 669 | // Now on a scheduling stack (a pthread-created stack). |
| 670 | SUBL $32, SP |
| 671 | ANDL $~15, SP // alignment, perhaps unnecessary |
| 672 | MOVL DI, 8(SP) // save g |
Keith Randall | 47f251c | 2014-09-11 20:36:23 -0700 | [diff] [blame] | 673 | MOVL (g_stack+stack_hi)(DI), DI |
| 674 | SUBL DX, DI |
| 675 | MOVL DI, 4(SP) // save depth in stack (can't just save SP, as stack might be copied during a callback) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 676 | MOVL BX, 0(SP) // first argument in x86-32 ABI |
| 677 | CALL AX |
| 678 | |
| 679 | // Restore registers, g, stack pointer. |
| 680 | get_tls(CX) |
| 681 | MOVL 8(SP), DI |
Keith Randall | 47f251c | 2014-09-11 20:36:23 -0700 | [diff] [blame] | 682 | MOVL (g_stack+stack_hi)(DI), SI |
| 683 | SUBL 4(SP), SI |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 684 | MOVL DI, g(CX) |
Keith Randall | 47f251c | 2014-09-11 20:36:23 -0700 | [diff] [blame] | 685 | MOVL SI, SP |
Alex Brainman | 9d968cb | 2015-04-27 17:32:23 +1000 | [diff] [blame] | 686 | |
| 687 | MOVL AX, ret+8(FP) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 688 | RET |
| 689 | |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 690 | // cgocallback(void (*fn)(void*), void *frame, uintptr framesize, uintptr ctxt) |
Russ Cox | 3d2dfc5 | 2013-02-22 16:08:56 -0500 | [diff] [blame] | 691 | // Turn the fn into a Go func (by taking its address) and call |
| 692 | // cgocallback_gofunc. |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 693 | TEXT runtime·cgocallback(SB),NOSPLIT,$16-16 |
Russ Cox | 3d2dfc5 | 2013-02-22 16:08:56 -0500 | [diff] [blame] | 694 | LEAL fn+0(FP), AX |
| 695 | MOVL AX, 0(SP) |
| 696 | MOVL frame+4(FP), AX |
| 697 | MOVL AX, 4(SP) |
| 698 | MOVL framesize+8(FP), AX |
| 699 | MOVL AX, 8(SP) |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 700 | MOVL ctxt+12(FP), AX |
| 701 | MOVL AX, 12(SP) |
Russ Cox | 3d2dfc5 | 2013-02-22 16:08:56 -0500 | [diff] [blame] | 702 | MOVL $runtime·cgocallback_gofunc(SB), AX |
| 703 | CALL AX |
| 704 | RET |
| 705 | |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 706 | // cgocallback_gofunc(FuncVal*, void *frame, uintptr framesize, uintptr ctxt) |
Alex Brainman | 9d968cb | 2015-04-27 17:32:23 +1000 | [diff] [blame] | 707 | // See cgocall.go for more details. |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 708 | TEXT ·cgocallback_gofunc(SB),NOSPLIT,$12-16 |
Russ Cox | e844f53 | 2014-09-12 07:46:11 -0400 | [diff] [blame] | 709 | NO_LOCAL_POINTERS |
| 710 | |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 711 | // If g is nil, Go did not create the current thread. |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 712 | // Call needm to obtain one for temporary use. |
| 713 | // In this case, we're running on the thread stack, so there's |
| 714 | // lots of space, but the linker doesn't know. Hide the call from |
| 715 | // the linker analysis by using an indirect call through AX. |
| 716 | get_tls(CX) |
| 717 | #ifdef GOOS_windows |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 718 | MOVL $0, BP |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 719 | CMPL CX, $0 |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 720 | JEQ 2(PC) // TODO |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 721 | #endif |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 722 | MOVL g(CX), BP |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 723 | CMPL BP, $0 |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 724 | JEQ needm |
| 725 | MOVL g_m(BP), BP |
| 726 | MOVL BP, DX // saved copy of oldm |
| 727 | JMP havem |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 728 | needm: |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 729 | MOVL $0, 0(SP) |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 730 | MOVL $runtime·needm(SB), AX |
| 731 | CALL AX |
Russ Cox | f011282 | 2013-07-24 09:01:57 -0400 | [diff] [blame] | 732 | MOVL 0(SP), DX |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 733 | get_tls(CX) |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 734 | MOVL g(CX), BP |
| 735 | MOVL g_m(BP), BP |
Russ Cox | 9b73238 | 2012-03-08 12:12:40 -0500 | [diff] [blame] | 736 | |
Russ Cox | c4efaac | 2014-10-28 21:53:09 -0400 | [diff] [blame] | 737 | // Set m->sched.sp = SP, so that if a panic happens |
| 738 | // during the function we are about to execute, it will |
| 739 | // have a valid SP to run on the g0 stack. |
| 740 | // The next few lines (after the havem label) |
| 741 | // will save this SP onto the stack and then write |
| 742 | // the same SP back to m->sched.sp. That seems redundant, |
| 743 | // but if an unrecovered panic happens, unwindm will |
| 744 | // restore the g->sched.sp from the stack location |
Russ Cox | 656be31 | 2014-11-12 14:54:31 -0500 | [diff] [blame] | 745 | // and then systemstack will try to use it. If we don't set it here, |
Russ Cox | c4efaac | 2014-10-28 21:53:09 -0400 | [diff] [blame] | 746 | // that restored SP will be uninitialized (typically 0) and |
| 747 | // will not be usable. |
| 748 | MOVL m_g0(BP), SI |
| 749 | MOVL SP, (g_sched+gobuf_sp)(SI) |
| 750 | |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 751 | havem: |
| 752 | // Now there's a valid m, and we're running on its m->g0. |
| 753 | // Save current m->g0->sched.sp on stack and then set it to SP. |
| 754 | // Save current sp in m->g0->sched.sp in preparation for |
| 755 | // switch back to m->curg stack. |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 756 | // NOTE: unwindm knows that the saved g->sched.sp is at 0(SP). |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 757 | MOVL m_g0(BP), SI |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 758 | MOVL (g_sched+gobuf_sp)(SI), AX |
| 759 | MOVL AX, 0(SP) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 760 | MOVL SP, (g_sched+gobuf_sp)(SI) |
| 761 | |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 762 | // Switch to m->curg stack and call runtime.cgocallbackg. |
| 763 | // Because we are taking over the execution of m->curg |
| 764 | // but *not* resuming what had been running, we need to |
| 765 | // save that information (m->curg->sched) so we can restore it. |
Russ Cox | 528534c | 2013-06-05 07:16:53 -0400 | [diff] [blame] | 766 | // We can restore m->curg->sched.sp easily, because calling |
Alex Brainman | 72e8348 | 2011-08-18 12:17:09 -0400 | [diff] [blame] | 767 | // runtime.cgocallbackg leaves SP unchanged upon return. |
Russ Cox | 528534c | 2013-06-05 07:16:53 -0400 | [diff] [blame] | 768 | // To save m->curg->sched.pc, we push it onto the stack. |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 769 | // This has the added benefit that it looks to the traceback |
Alex Brainman | 72e8348 | 2011-08-18 12:17:09 -0400 | [diff] [blame] | 770 | // routine like cgocallbackg is going to return to that |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 771 | // PC (because the frame we allocate below has the same |
| 772 | // size as cgocallback_gofunc's frame declared above) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 773 | // so that the traceback will seamlessly trace back into |
| 774 | // the earlier calls. |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 775 | // |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 776 | // In the new goroutine, 4(SP) holds the saved oldm (DX) register. |
| 777 | // 8(SP) is unused. |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 778 | MOVL m_curg(BP), SI |
| 779 | MOVL SI, g(CX) |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 780 | MOVL (g_sched+gobuf_sp)(SI), DI // prepare stack as DI |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 781 | MOVL (g_sched+gobuf_pc)(SI), BP |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 782 | MOVL BP, -4(DI) |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 783 | MOVL ctxt+12(FP), CX |
Russ Cox | f011282 | 2013-07-24 09:01:57 -0400 | [diff] [blame] | 784 | LEAL -(4+12)(DI), SP |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 785 | MOVL DX, 4(SP) |
| 786 | MOVL CX, 0(SP) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 787 | CALL runtime·cgocallbackg(SB) |
Ian Lance Taylor | 5f9a870 | 2016-04-27 14:18:29 -0700 | [diff] [blame] | 788 | MOVL 4(SP), DX |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 789 | |
Russ Cox | 528534c | 2013-06-05 07:16:53 -0400 | [diff] [blame] | 790 | // Restore g->sched (== m->curg->sched) from saved values. |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 791 | get_tls(CX) |
| 792 | MOVL g(CX), SI |
Russ Cox | f011282 | 2013-07-24 09:01:57 -0400 | [diff] [blame] | 793 | MOVL 12(SP), BP |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 794 | MOVL BP, (g_sched+gobuf_pc)(SI) |
Russ Cox | f011282 | 2013-07-24 09:01:57 -0400 | [diff] [blame] | 795 | LEAL (12+4)(SP), DI |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 796 | MOVL DI, (g_sched+gobuf_sp)(SI) |
| 797 | |
| 798 | // Switch back to m->g0's stack and restore m->g0->sched.sp. |
| 799 | // (Unlike m->curg, the g0 goroutine never uses sched.pc, |
| 800 | // so we do not have to restore it.) |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 801 | MOVL g(CX), BP |
| 802 | MOVL g_m(BP), BP |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 803 | MOVL m_g0(BP), SI |
| 804 | MOVL SI, g(CX) |
| 805 | MOVL (g_sched+gobuf_sp)(SI), SP |
Russ Cox | dba623b | 2013-07-23 18:40:02 -0400 | [diff] [blame] | 806 | MOVL 0(SP), AX |
| 807 | MOVL AX, (g_sched+gobuf_sp)(SI) |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 808 | |
| 809 | // If the m on entry was nil, we called needm above to borrow an m |
| 810 | // for the duration of the call. Since the call is over, return it with dropm. |
Russ Cox | f011282 | 2013-07-24 09:01:57 -0400 | [diff] [blame] | 811 | CMPL DX, $0 |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 812 | JNE 3(PC) |
| 813 | MOVL $runtime·dropm(SB), AX |
| 814 | CALL AX |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 815 | |
| 816 | // Done! |
| 817 | RET |
| 818 | |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 819 | // void setg(G*); set g. for use by needm. |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 820 | TEXT runtime·setg(SB), NOSPLIT, $0-4 |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 821 | MOVL gg+0(FP), BX |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 822 | #ifdef GOOS_windows |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 823 | CMPL BX, $0 |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 824 | JNE settls |
| 825 | MOVL $0, 0x14(FS) |
| 826 | RET |
| 827 | settls: |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 828 | MOVL g_m(BX), AX |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 829 | LEAL m_tls(AX), AX |
| 830 | MOVL AX, 0x14(FS) |
| 831 | #endif |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 832 | get_tls(CX) |
Russ Cox | 6c97639 | 2013-02-20 17:48:23 -0500 | [diff] [blame] | 833 | MOVL BX, g(CX) |
| 834 | RET |
| 835 | |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 836 | // void setg_gcc(G*); set g. for use by gcc |
| 837 | TEXT setg_gcc<>(SB), NOSPLIT, $0 |
Russ Cox | 6a70f9d | 2013-03-25 18:14:02 -0400 | [diff] [blame] | 838 | get_tls(AX) |
Russ Cox | 89f185f | 2014-06-26 11:54:39 -0400 | [diff] [blame] | 839 | MOVL gg+0(FP), DX |
| 840 | MOVL DX, g(AX) |
Russ Cox | 6a70f9d | 2013-03-25 18:14:02 -0400 | [diff] [blame] | 841 | RET |
| 842 | |
Russ Cox | 8ac35be | 2014-09-09 14:02:37 -0400 | [diff] [blame] | 843 | // check that SP is in range [g->stack.lo, g->stack.hi) |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 844 | TEXT runtime·stackcheck(SB), NOSPLIT, $0-0 |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 845 | get_tls(CX) |
| 846 | MOVL g(CX), AX |
Russ Cox | 15b76ad | 2014-09-09 13:39:57 -0400 | [diff] [blame] | 847 | CMPL (g_stack+stack_hi)(AX), SP |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 848 | JHI 2(PC) |
| 849 | INT $3 |
Russ Cox | 15b76ad | 2014-09-09 13:39:57 -0400 | [diff] [blame] | 850 | CMPL SP, (g_stack+stack_lo)(AX) |
Russ Cox | f9ca3b5 | 2011-03-07 10:37:42 -0500 | [diff] [blame] | 851 | JHI 2(PC) |
| 852 | INT $3 |
| 853 | RET |
| 854 | |
Austin Clements | faa7a7e | 2015-05-20 16:30:49 -0400 | [diff] [blame] | 855 | TEXT runtime·getcallerpc(SB),NOSPLIT,$4-8 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 856 | MOVL argp+0(FP),AX // addr of first arg |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 857 | MOVL -4(AX),AX // get calling pc |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 858 | MOVL AX, ret+4(FP) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 859 | RET |
| 860 | |
Dmitry Vyukov | 6e70fdd | 2015-02-17 14:25:49 +0300 | [diff] [blame] | 861 | // func cputicks() int64 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 862 | TEXT runtime·cputicks(SB),NOSPLIT,$0-8 |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 863 | CMPB runtime·support_sse2(SB), $1 |
| 864 | JNE done |
Dmitry Vyukov | 6e70fdd | 2015-02-17 14:25:49 +0300 | [diff] [blame] | 865 | CMPB runtime·lfenceBeforeRdtsc(SB), $1 |
| 866 | JNE mfence |
| 867 | BYTE $0x0f; BYTE $0xae; BYTE $0xe8 // LFENCE |
| 868 | JMP done |
| 869 | mfence: |
| 870 | BYTE $0x0f; BYTE $0xae; BYTE $0xf0 // MFENCE |
| 871 | done: |
Shenghou Ma | 6392b43 | 2012-02-06 12:49:28 -0500 | [diff] [blame] | 872 | RDTSC |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 873 | MOVL AX, ret_lo+0(FP) |
| 874 | MOVL DX, ret_hi+4(FP) |
Damian Gryski | 8e765da | 2012-02-02 14:09:27 -0500 | [diff] [blame] | 875 | RET |
| 876 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 877 | TEXT runtime·ldt0setup(SB),NOSPLIT,$16-0 |
Matthew Dempsky | 7bb38f6 | 2015-11-12 15:35:50 -0800 | [diff] [blame] | 878 | // set up ldt 7 to point at m0.tls |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 879 | // 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] | 880 | // 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] | 881 | MOVL $7, 0(SP) |
Matthew Dempsky | 7bb38f6 | 2015-11-12 15:35:50 -0800 | [diff] [blame] | 882 | LEAL runtime·m0+m_tls(SB), AX |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 883 | MOVL AX, 4(SP) |
| 884 | MOVL $32, 8(SP) // sizeof(tls array) |
Russ Cox | 68b4255 | 2010-11-04 14:00:19 -0400 | [diff] [blame] | 885 | CALL runtime·setldt(SB) |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 886 | RET |
| 887 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 888 | TEXT runtime·emptyfunc(SB),0,$0-0 |
Russ Cox | 0d3a043 | 2009-03-30 00:01:07 -0700 | [diff] [blame] | 889 | RET |
| 890 | |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 891 | // memhash_varlen(p unsafe.Pointer, h seed) uintptr |
| 892 | // redirects to memhash(p, h, size) using the size |
| 893 | // stored in the closure. |
| 894 | TEXT runtime·memhash_varlen(SB),NOSPLIT,$16-12 |
| 895 | GO_ARGS |
| 896 | NO_LOCAL_POINTERS |
| 897 | MOVL p+0(FP), AX |
| 898 | MOVL h+4(FP), BX |
| 899 | MOVL 4(DX), CX |
| 900 | MOVL AX, 0(SP) |
| 901 | MOVL BX, 4(SP) |
| 902 | MOVL CX, 8(SP) |
| 903 | CALL runtime·memhash(SB) |
| 904 | MOVL 12(SP), AX |
| 905 | MOVL AX, ret+8(FP) |
| 906 | RET |
| 907 | |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 908 | // hash function using AES hardware instructions |
Keith Randall | a2a9768 | 2014-07-31 15:07:05 -0700 | [diff] [blame] | 909 | TEXT runtime·aeshash(SB),NOSPLIT,$0-16 |
| 910 | MOVL p+0(FP), AX // ptr to data |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 911 | MOVL s+8(FP), BX // size |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 912 | LEAL ret+12(FP), DX |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 913 | JMP runtime·aeshashbody(SB) |
| 914 | |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 915 | TEXT runtime·aeshashstr(SB),NOSPLIT,$0-12 |
Keith Randall | a2a9768 | 2014-07-31 15:07:05 -0700 | [diff] [blame] | 916 | MOVL p+0(FP), AX // ptr to string object |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 917 | MOVL 4(AX), BX // length of string |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 918 | MOVL (AX), AX // string data |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 919 | LEAL ret+8(FP), DX |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 920 | JMP runtime·aeshashbody(SB) |
| 921 | |
| 922 | // AX: data |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 923 | // BX: length |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 924 | // DX: address to put return value |
| 925 | TEXT runtime·aeshashbody(SB),NOSPLIT,$0-0 |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 926 | MOVL h+4(FP), X0 // 32 bits of per-table hash seed |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 927 | PINSRW $4, BX, X0 // 16 bits of length |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 928 | PSHUFHW $0, X0, X0 // replace size with its low 2 bytes repeated 4 times |
| 929 | MOVO X0, X1 // save unscrambled seed |
| 930 | PXOR runtime·aeskeysched(SB), X0 // xor in per-process seed |
| 931 | AESENC X0, X0 // scramble seed |
| 932 | |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 933 | CMPL BX, $16 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 934 | JB aes0to15 |
| 935 | JE aes16 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 936 | CMPL BX, $32 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 937 | JBE aes17to32 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 938 | CMPL BX, $64 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 939 | JBE aes33to64 |
| 940 | JMP aes65plus |
| 941 | |
| 942 | aes0to15: |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 943 | TESTL BX, BX |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 944 | JE aes0 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 945 | |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 946 | ADDL $16, AX |
| 947 | TESTW $0xff0, AX |
| 948 | JE endofpage |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 949 | |
Keith Randall | ee66972 | 2013-05-15 09:40:14 -0700 | [diff] [blame] | 950 | // 16 bytes loaded at this address won't cross |
| 951 | // a page boundary, so we can load it directly. |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 952 | MOVOU -16(AX), X1 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 953 | ADDL BX, BX |
| 954 | PAND masks<>(SB)(BX*8), X1 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 955 | |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 956 | final1: |
| 957 | AESENC X0, X1 // scramble input, xor in seed |
| 958 | AESENC X1, X1 // scramble combo 2 times |
| 959 | AESENC X1, X1 |
| 960 | MOVL X1, (DX) |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 961 | RET |
| 962 | |
| 963 | endofpage: |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 964 | // address ends in 1111xxxx. Might be up against |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 965 | // a page boundary, so load ending at last byte. |
| 966 | // Then shift bytes down using pshufb. |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 967 | MOVOU -32(AX)(BX*1), X1 |
| 968 | ADDL BX, BX |
| 969 | PSHUFB shifts<>(SB)(BX*8), X1 |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 970 | JMP final1 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 971 | |
| 972 | aes0: |
Keith Randall | 731bdc5 | 2015-09-01 12:53:15 -0700 | [diff] [blame] | 973 | // Return scrambled input seed |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 974 | AESENC X0, X0 |
| 975 | MOVL X0, (DX) |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 976 | RET |
| 977 | |
| 978 | aes16: |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 979 | MOVOU (AX), X1 |
| 980 | JMP final1 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 981 | |
| 982 | aes17to32: |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 983 | // make second starting seed |
| 984 | PXOR runtime·aeskeysched+16(SB), X1 |
| 985 | AESENC X1, X1 |
| 986 | |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 987 | // load data to be hashed |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 988 | MOVOU (AX), X2 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 989 | MOVOU -16(AX)(BX*1), X3 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 990 | |
| 991 | // scramble 3 times |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 992 | AESENC X0, X2 |
| 993 | AESENC X1, X3 |
| 994 | AESENC X2, X2 |
| 995 | AESENC X3, X3 |
| 996 | AESENC X2, X2 |
| 997 | AESENC X3, X3 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 998 | |
| 999 | // combine results |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1000 | PXOR X3, X2 |
| 1001 | MOVL X2, (DX) |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1002 | RET |
| 1003 | |
| 1004 | aes33to64: |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1005 | // make 3 more starting seeds |
| 1006 | MOVO X1, X2 |
| 1007 | MOVO X1, X3 |
| 1008 | PXOR runtime·aeskeysched+16(SB), X1 |
| 1009 | PXOR runtime·aeskeysched+32(SB), X2 |
| 1010 | PXOR runtime·aeskeysched+48(SB), X3 |
| 1011 | AESENC X1, X1 |
| 1012 | AESENC X2, X2 |
| 1013 | AESENC X3, X3 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1014 | |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1015 | MOVOU (AX), X4 |
| 1016 | MOVOU 16(AX), X5 |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 1017 | MOVOU -32(AX)(BX*1), X6 |
| 1018 | MOVOU -16(AX)(BX*1), X7 |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1019 | |
| 1020 | AESENC X0, X4 |
| 1021 | AESENC X1, X5 |
| 1022 | AESENC X2, X6 |
| 1023 | AESENC X3, X7 |
| 1024 | |
| 1025 | AESENC X4, X4 |
| 1026 | AESENC X5, X5 |
| 1027 | AESENC X6, X6 |
| 1028 | AESENC X7, X7 |
| 1029 | |
| 1030 | AESENC X4, X4 |
| 1031 | AESENC X5, X5 |
| 1032 | AESENC X6, X6 |
| 1033 | AESENC X7, X7 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1034 | |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1035 | PXOR X6, X4 |
| 1036 | PXOR X7, X5 |
| 1037 | PXOR X5, X4 |
| 1038 | MOVL X4, (DX) |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1039 | RET |
| 1040 | |
| 1041 | aes65plus: |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1042 | // make 3 more starting seeds |
| 1043 | MOVO X1, X2 |
| 1044 | MOVO X1, X3 |
| 1045 | PXOR runtime·aeskeysched+16(SB), X1 |
| 1046 | PXOR runtime·aeskeysched+32(SB), X2 |
| 1047 | PXOR runtime·aeskeysched+48(SB), X3 |
| 1048 | AESENC X1, X1 |
| 1049 | AESENC X2, X2 |
| 1050 | AESENC X3, X3 |
| 1051 | |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1052 | // start with last (possibly overlapping) block |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 1053 | MOVOU -64(AX)(BX*1), X4 |
| 1054 | MOVOU -48(AX)(BX*1), X5 |
| 1055 | MOVOU -32(AX)(BX*1), X6 |
| 1056 | MOVOU -16(AX)(BX*1), X7 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1057 | |
| 1058 | // scramble state once |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1059 | AESENC X0, X4 |
| 1060 | AESENC X1, X5 |
| 1061 | AESENC X2, X6 |
| 1062 | AESENC X3, X7 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1063 | |
| 1064 | // compute number of remaining 64-byte blocks |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 1065 | DECL BX |
| 1066 | SHRL $6, BX |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1067 | |
| 1068 | aesloop: |
| 1069 | // scramble state, xor in a block |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1070 | MOVOU (AX), X0 |
| 1071 | MOVOU 16(AX), X1 |
| 1072 | MOVOU 32(AX), X2 |
| 1073 | MOVOU 48(AX), X3 |
| 1074 | AESENC X0, X4 |
| 1075 | AESENC X1, X5 |
| 1076 | AESENC X2, X6 |
| 1077 | AESENC X3, X7 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1078 | |
| 1079 | // scramble state |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1080 | AESENC X4, X4 |
| 1081 | AESENC X5, X5 |
| 1082 | AESENC X6, X6 |
| 1083 | AESENC X7, X7 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1084 | |
| 1085 | ADDL $64, AX |
Michael Hudson-Doyle | 6056cc5 | 2015-10-28 12:10:28 +1300 | [diff] [blame] | 1086 | DECL BX |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1087 | JNE aesloop |
| 1088 | |
| 1089 | // 2 more scrambles to finish |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1090 | AESENC X4, X4 |
| 1091 | AESENC X5, X5 |
| 1092 | AESENC X6, X6 |
| 1093 | AESENC X7, X7 |
| 1094 | |
| 1095 | AESENC X4, X4 |
| 1096 | AESENC X5, X5 |
| 1097 | AESENC X6, X6 |
| 1098 | AESENC X7, X7 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1099 | |
Keith Randall | 91059de | 2015-08-31 16:26:12 -0700 | [diff] [blame] | 1100 | PXOR X6, X4 |
| 1101 | PXOR X7, X5 |
| 1102 | PXOR X5, X4 |
| 1103 | MOVL X4, (DX) |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1104 | RET |
| 1105 | |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1106 | TEXT runtime·aeshash32(SB),NOSPLIT,$0-12 |
Keith Randall | a2a9768 | 2014-07-31 15:07:05 -0700 | [diff] [blame] | 1107 | MOVL p+0(FP), AX // ptr to data |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1108 | MOVL h+4(FP), X0 // seed |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1109 | PINSRD $1, (AX), X0 // data |
Keith Randall | db53d97 | 2013-03-20 14:34:26 -0700 | [diff] [blame] | 1110 | AESENC runtime·aeskeysched+0(SB), X0 |
| 1111 | AESENC runtime·aeskeysched+16(SB), X0 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1112 | AESENC runtime·aeskeysched+32(SB), X0 |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1113 | MOVL X0, ret+8(FP) |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1114 | RET |
| 1115 | |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1116 | TEXT runtime·aeshash64(SB),NOSPLIT,$0-12 |
Keith Randall | a2a9768 | 2014-07-31 15:07:05 -0700 | [diff] [blame] | 1117 | MOVL p+0(FP), AX // ptr to data |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1118 | MOVQ (AX), X0 // data |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1119 | PINSRD $2, h+4(FP), X0 // seed |
Keith Randall | db53d97 | 2013-03-20 14:34:26 -0700 | [diff] [blame] | 1120 | AESENC runtime·aeskeysched+0(SB), X0 |
| 1121 | AESENC runtime·aeskeysched+16(SB), X0 |
Keith Randall | 7a4a64e | 2014-12-10 14:20:17 -0800 | [diff] [blame] | 1122 | AESENC runtime·aeskeysched+32(SB), X0 |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1123 | MOVL X0, ret+8(FP) |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1124 | RET |
| 1125 | |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1126 | // simple mask to get rid of data in the high part of the register. |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1127 | DATA masks<>+0x00(SB)/4, $0x00000000 |
| 1128 | DATA masks<>+0x04(SB)/4, $0x00000000 |
| 1129 | DATA masks<>+0x08(SB)/4, $0x00000000 |
| 1130 | DATA masks<>+0x0c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1131 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1132 | DATA masks<>+0x10(SB)/4, $0x000000ff |
| 1133 | DATA masks<>+0x14(SB)/4, $0x00000000 |
| 1134 | DATA masks<>+0x18(SB)/4, $0x00000000 |
| 1135 | DATA masks<>+0x1c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1136 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1137 | DATA masks<>+0x20(SB)/4, $0x0000ffff |
| 1138 | DATA masks<>+0x24(SB)/4, $0x00000000 |
| 1139 | DATA masks<>+0x28(SB)/4, $0x00000000 |
| 1140 | DATA masks<>+0x2c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1141 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1142 | DATA masks<>+0x30(SB)/4, $0x00ffffff |
| 1143 | DATA masks<>+0x34(SB)/4, $0x00000000 |
| 1144 | DATA masks<>+0x38(SB)/4, $0x00000000 |
| 1145 | DATA masks<>+0x3c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1146 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1147 | DATA masks<>+0x40(SB)/4, $0xffffffff |
| 1148 | DATA masks<>+0x44(SB)/4, $0x00000000 |
| 1149 | DATA masks<>+0x48(SB)/4, $0x00000000 |
| 1150 | DATA masks<>+0x4c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1151 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1152 | DATA masks<>+0x50(SB)/4, $0xffffffff |
| 1153 | DATA masks<>+0x54(SB)/4, $0x000000ff |
| 1154 | DATA masks<>+0x58(SB)/4, $0x00000000 |
| 1155 | DATA masks<>+0x5c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1156 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1157 | DATA masks<>+0x60(SB)/4, $0xffffffff |
| 1158 | DATA masks<>+0x64(SB)/4, $0x0000ffff |
| 1159 | DATA masks<>+0x68(SB)/4, $0x00000000 |
| 1160 | DATA masks<>+0x6c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1161 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1162 | DATA masks<>+0x70(SB)/4, $0xffffffff |
| 1163 | DATA masks<>+0x74(SB)/4, $0x00ffffff |
| 1164 | DATA masks<>+0x78(SB)/4, $0x00000000 |
| 1165 | DATA masks<>+0x7c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1166 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1167 | DATA masks<>+0x80(SB)/4, $0xffffffff |
| 1168 | DATA masks<>+0x84(SB)/4, $0xffffffff |
| 1169 | DATA masks<>+0x88(SB)/4, $0x00000000 |
| 1170 | DATA masks<>+0x8c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1171 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1172 | DATA masks<>+0x90(SB)/4, $0xffffffff |
| 1173 | DATA masks<>+0x94(SB)/4, $0xffffffff |
| 1174 | DATA masks<>+0x98(SB)/4, $0x000000ff |
| 1175 | DATA masks<>+0x9c(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1176 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1177 | DATA masks<>+0xa0(SB)/4, $0xffffffff |
| 1178 | DATA masks<>+0xa4(SB)/4, $0xffffffff |
| 1179 | DATA masks<>+0xa8(SB)/4, $0x0000ffff |
| 1180 | DATA masks<>+0xac(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1181 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1182 | DATA masks<>+0xb0(SB)/4, $0xffffffff |
| 1183 | DATA masks<>+0xb4(SB)/4, $0xffffffff |
| 1184 | DATA masks<>+0xb8(SB)/4, $0x00ffffff |
| 1185 | DATA masks<>+0xbc(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1186 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1187 | DATA masks<>+0xc0(SB)/4, $0xffffffff |
| 1188 | DATA masks<>+0xc4(SB)/4, $0xffffffff |
| 1189 | DATA masks<>+0xc8(SB)/4, $0xffffffff |
| 1190 | DATA masks<>+0xcc(SB)/4, $0x00000000 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1191 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1192 | DATA masks<>+0xd0(SB)/4, $0xffffffff |
| 1193 | DATA masks<>+0xd4(SB)/4, $0xffffffff |
| 1194 | DATA masks<>+0xd8(SB)/4, $0xffffffff |
| 1195 | DATA masks<>+0xdc(SB)/4, $0x000000ff |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1196 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1197 | DATA masks<>+0xe0(SB)/4, $0xffffffff |
| 1198 | DATA masks<>+0xe4(SB)/4, $0xffffffff |
| 1199 | DATA masks<>+0xe8(SB)/4, $0xffffffff |
| 1200 | DATA masks<>+0xec(SB)/4, $0x0000ffff |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1201 | |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1202 | DATA masks<>+0xf0(SB)/4, $0xffffffff |
| 1203 | DATA masks<>+0xf4(SB)/4, $0xffffffff |
| 1204 | DATA masks<>+0xf8(SB)/4, $0xffffffff |
| 1205 | DATA masks<>+0xfc(SB)/4, $0x00ffffff |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1206 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 1207 | GLOBL masks<>(SB),RODATA,$256 |
Keith Randall | a5d4024 | 2013-03-12 10:47:44 -0700 | [diff] [blame] | 1208 | |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 1209 | // these are arguments to pshufb. They move data down from |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1210 | // the high bytes of the register to the low bytes of the register. |
| 1211 | // index is how many bytes to move. |
| 1212 | DATA shifts<>+0x00(SB)/4, $0x00000000 |
| 1213 | DATA shifts<>+0x04(SB)/4, $0x00000000 |
| 1214 | DATA shifts<>+0x08(SB)/4, $0x00000000 |
| 1215 | DATA shifts<>+0x0c(SB)/4, $0x00000000 |
| 1216 | |
| 1217 | DATA shifts<>+0x10(SB)/4, $0xffffff0f |
| 1218 | DATA shifts<>+0x14(SB)/4, $0xffffffff |
| 1219 | DATA shifts<>+0x18(SB)/4, $0xffffffff |
| 1220 | DATA shifts<>+0x1c(SB)/4, $0xffffffff |
| 1221 | |
| 1222 | DATA shifts<>+0x20(SB)/4, $0xffff0f0e |
| 1223 | DATA shifts<>+0x24(SB)/4, $0xffffffff |
| 1224 | DATA shifts<>+0x28(SB)/4, $0xffffffff |
| 1225 | DATA shifts<>+0x2c(SB)/4, $0xffffffff |
| 1226 | |
| 1227 | DATA shifts<>+0x30(SB)/4, $0xff0f0e0d |
| 1228 | DATA shifts<>+0x34(SB)/4, $0xffffffff |
| 1229 | DATA shifts<>+0x38(SB)/4, $0xffffffff |
| 1230 | DATA shifts<>+0x3c(SB)/4, $0xffffffff |
| 1231 | |
| 1232 | DATA shifts<>+0x40(SB)/4, $0x0f0e0d0c |
| 1233 | DATA shifts<>+0x44(SB)/4, $0xffffffff |
| 1234 | DATA shifts<>+0x48(SB)/4, $0xffffffff |
| 1235 | DATA shifts<>+0x4c(SB)/4, $0xffffffff |
| 1236 | |
| 1237 | DATA shifts<>+0x50(SB)/4, $0x0e0d0c0b |
| 1238 | DATA shifts<>+0x54(SB)/4, $0xffffff0f |
| 1239 | DATA shifts<>+0x58(SB)/4, $0xffffffff |
| 1240 | DATA shifts<>+0x5c(SB)/4, $0xffffffff |
| 1241 | |
| 1242 | DATA shifts<>+0x60(SB)/4, $0x0d0c0b0a |
| 1243 | DATA shifts<>+0x64(SB)/4, $0xffff0f0e |
| 1244 | DATA shifts<>+0x68(SB)/4, $0xffffffff |
| 1245 | DATA shifts<>+0x6c(SB)/4, $0xffffffff |
| 1246 | |
| 1247 | DATA shifts<>+0x70(SB)/4, $0x0c0b0a09 |
| 1248 | DATA shifts<>+0x74(SB)/4, $0xff0f0e0d |
| 1249 | DATA shifts<>+0x78(SB)/4, $0xffffffff |
| 1250 | DATA shifts<>+0x7c(SB)/4, $0xffffffff |
| 1251 | |
| 1252 | DATA shifts<>+0x80(SB)/4, $0x0b0a0908 |
| 1253 | DATA shifts<>+0x84(SB)/4, $0x0f0e0d0c |
| 1254 | DATA shifts<>+0x88(SB)/4, $0xffffffff |
| 1255 | DATA shifts<>+0x8c(SB)/4, $0xffffffff |
| 1256 | |
| 1257 | DATA shifts<>+0x90(SB)/4, $0x0a090807 |
| 1258 | DATA shifts<>+0x94(SB)/4, $0x0e0d0c0b |
| 1259 | DATA shifts<>+0x98(SB)/4, $0xffffff0f |
| 1260 | DATA shifts<>+0x9c(SB)/4, $0xffffffff |
| 1261 | |
| 1262 | DATA shifts<>+0xa0(SB)/4, $0x09080706 |
| 1263 | DATA shifts<>+0xa4(SB)/4, $0x0d0c0b0a |
| 1264 | DATA shifts<>+0xa8(SB)/4, $0xffff0f0e |
| 1265 | DATA shifts<>+0xac(SB)/4, $0xffffffff |
| 1266 | |
| 1267 | DATA shifts<>+0xb0(SB)/4, $0x08070605 |
| 1268 | DATA shifts<>+0xb4(SB)/4, $0x0c0b0a09 |
| 1269 | DATA shifts<>+0xb8(SB)/4, $0xff0f0e0d |
| 1270 | DATA shifts<>+0xbc(SB)/4, $0xffffffff |
| 1271 | |
| 1272 | DATA shifts<>+0xc0(SB)/4, $0x07060504 |
| 1273 | DATA shifts<>+0xc4(SB)/4, $0x0b0a0908 |
| 1274 | DATA shifts<>+0xc8(SB)/4, $0x0f0e0d0c |
| 1275 | DATA shifts<>+0xcc(SB)/4, $0xffffffff |
| 1276 | |
| 1277 | DATA shifts<>+0xd0(SB)/4, $0x06050403 |
| 1278 | DATA shifts<>+0xd4(SB)/4, $0x0a090807 |
| 1279 | DATA shifts<>+0xd8(SB)/4, $0x0e0d0c0b |
| 1280 | DATA shifts<>+0xdc(SB)/4, $0xffffff0f |
| 1281 | |
| 1282 | DATA shifts<>+0xe0(SB)/4, $0x05040302 |
| 1283 | DATA shifts<>+0xe4(SB)/4, $0x09080706 |
| 1284 | DATA shifts<>+0xe8(SB)/4, $0x0d0c0b0a |
| 1285 | DATA shifts<>+0xec(SB)/4, $0xffff0f0e |
| 1286 | |
| 1287 | DATA shifts<>+0xf0(SB)/4, $0x04030201 |
| 1288 | DATA shifts<>+0xf4(SB)/4, $0x08070605 |
| 1289 | DATA shifts<>+0xf8(SB)/4, $0x0c0b0a09 |
| 1290 | DATA shifts<>+0xfc(SB)/4, $0xff0f0e0d |
| 1291 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 1292 | GLOBL shifts<>(SB),RODATA,$256 |
Russ Cox | 9ddfb64 | 2013-07-16 16:24:09 -0400 | [diff] [blame] | 1293 | |
Shenghou Ma | 3583a44 | 2015-09-03 02:44:26 -0400 | [diff] [blame] | 1294 | TEXT ·checkASM(SB),NOSPLIT,$0-1 |
| 1295 | // check that masks<>(SB) and shifts<>(SB) are aligned to 16-byte |
| 1296 | MOVL $masks<>(SB), AX |
| 1297 | MOVL $shifts<>(SB), BX |
| 1298 | ORL BX, AX |
| 1299 | TESTL $15, AX |
| 1300 | SETEQ ret+0(FP) |
| 1301 | RET |
| 1302 | |
Keith Randall | bd70bd9 | 2016-02-22 13:20:38 -0800 | [diff] [blame] | 1303 | // memequal(p, q unsafe.Pointer, size uintptr) bool |
| 1304 | TEXT runtime·memequal(SB),NOSPLIT,$0-13 |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 1305 | MOVL a+0(FP), SI |
| 1306 | MOVL b+4(FP), DI |
Keith Randall | bd70bd9 | 2016-02-22 13:20:38 -0800 | [diff] [blame] | 1307 | CMPL SI, DI |
| 1308 | JEQ eq |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 1309 | MOVL size+8(FP), BX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1310 | LEAL ret+12(FP), AX |
| 1311 | JMP runtime·memeqbody(SB) |
Keith Randall | bd70bd9 | 2016-02-22 13:20:38 -0800 | [diff] [blame] | 1312 | eq: |
| 1313 | MOVB $1, ret+12(FP) |
| 1314 | RET |
Keith Randall | 0c6b55e | 2014-07-16 14:16:19 -0700 | [diff] [blame] | 1315 | |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1316 | // memequal_varlen(a, b unsafe.Pointer) bool |
| 1317 | TEXT runtime·memequal_varlen(SB),NOSPLIT,$0-9 |
| 1318 | MOVL a+0(FP), SI |
| 1319 | MOVL b+4(FP), DI |
| 1320 | CMPL SI, DI |
| 1321 | JEQ eq |
| 1322 | MOVL 4(DX), BX // compiler stores size at offset 4 in the closure |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1323 | LEAL ret+8(FP), AX |
| 1324 | JMP runtime·memeqbody(SB) |
Keith Randall | d5e4c40 | 2015-01-06 16:42:48 -0800 | [diff] [blame] | 1325 | eq: |
| 1326 | MOVB $1, ret+8(FP) |
| 1327 | RET |
| 1328 | |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1329 | // eqstring tests whether two strings are equal. |
Josh Bleecher Snyder | 135ef49 | 2015-02-04 17:31:37 -0800 | [diff] [blame] | 1330 | // The compiler guarantees that strings passed |
| 1331 | // to eqstring have equal length. |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1332 | // See runtime_test.go:eqstring_generic for |
Josh Bleecher Snyder | 339a24d | 2014-08-19 08:50:35 -0700 | [diff] [blame] | 1333 | // equivalent Go code. |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1334 | TEXT runtime·eqstring(SB),NOSPLIT,$0-17 |
Josh Bleecher Snyder | 71ab9fa | 2016-07-11 16:05:57 -0700 | [diff] [blame] | 1335 | MOVL s1_base+0(FP), SI |
| 1336 | MOVL s2_base+8(FP), DI |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1337 | CMPL SI, DI |
| 1338 | JEQ same |
Josh Bleecher Snyder | 71ab9fa | 2016-07-11 16:05:57 -0700 | [diff] [blame] | 1339 | MOVL s1_len+4(FP), BX |
| 1340 | LEAL ret+16(FP), AX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1341 | JMP runtime·memeqbody(SB) |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1342 | same: |
Josh Bleecher Snyder | 71ab9fa | 2016-07-11 16:05:57 -0700 | [diff] [blame] | 1343 | MOVB $1, ret+16(FP) |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1344 | RET |
Keith Randall | b36ed90 | 2014-06-16 21:00:37 -0700 | [diff] [blame] | 1345 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 1346 | TEXT bytes·Equal(SB),NOSPLIT,$0-25 |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1347 | MOVL a_len+4(FP), BX |
| 1348 | MOVL b_len+16(FP), CX |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1349 | CMPL BX, CX |
| 1350 | JNE eqret |
| 1351 | MOVL a+0(FP), SI |
| 1352 | MOVL b+12(FP), DI |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1353 | LEAL ret+24(FP), AX |
| 1354 | JMP runtime·memeqbody(SB) |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1355 | eqret: |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1356 | MOVB $0, ret+24(FP) |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1357 | RET |
| 1358 | |
| 1359 | // a in SI |
| 1360 | // b in DI |
| 1361 | // count in BX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1362 | // address of result byte in AX |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 1363 | TEXT runtime·memeqbody(SB),NOSPLIT,$0-0 |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1364 | CMPL BX, $4 |
| 1365 | JB small |
| 1366 | |
| 1367 | // 64 bytes at a time using xmm registers |
| 1368 | hugeloop: |
| 1369 | CMPL BX, $64 |
| 1370 | JB bigloop |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 1371 | CMPB runtime·support_sse2(SB), $1 |
| 1372 | JNE bigloop |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1373 | MOVOU (SI), X0 |
| 1374 | MOVOU (DI), X1 |
| 1375 | MOVOU 16(SI), X2 |
| 1376 | MOVOU 16(DI), X3 |
| 1377 | MOVOU 32(SI), X4 |
| 1378 | MOVOU 32(DI), X5 |
| 1379 | MOVOU 48(SI), X6 |
| 1380 | MOVOU 48(DI), X7 |
| 1381 | PCMPEQB X1, X0 |
| 1382 | PCMPEQB X3, X2 |
| 1383 | PCMPEQB X5, X4 |
| 1384 | PCMPEQB X7, X6 |
| 1385 | PAND X2, X0 |
| 1386 | PAND X6, X4 |
| 1387 | PAND X4, X0 |
| 1388 | PMOVMSKB X0, DX |
| 1389 | ADDL $64, SI |
| 1390 | ADDL $64, DI |
| 1391 | SUBL $64, BX |
| 1392 | CMPL DX, $0xffff |
| 1393 | JEQ hugeloop |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1394 | MOVB $0, (AX) |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1395 | RET |
| 1396 | |
| 1397 | // 4 bytes at a time using 32-bit register |
| 1398 | bigloop: |
| 1399 | CMPL BX, $4 |
| 1400 | JBE leftover |
| 1401 | MOVL (SI), CX |
| 1402 | MOVL (DI), DX |
| 1403 | ADDL $4, SI |
| 1404 | ADDL $4, DI |
| 1405 | SUBL $4, BX |
| 1406 | CMPL CX, DX |
| 1407 | JEQ bigloop |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1408 | MOVB $0, (AX) |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1409 | RET |
| 1410 | |
| 1411 | // remaining 0-4 bytes |
| 1412 | leftover: |
| 1413 | MOVL -4(SI)(BX*1), CX |
| 1414 | MOVL -4(DI)(BX*1), DX |
| 1415 | CMPL CX, DX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1416 | SETEQ (AX) |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1417 | RET |
| 1418 | |
| 1419 | small: |
| 1420 | CMPL BX, $0 |
| 1421 | JEQ equal |
| 1422 | |
| 1423 | LEAL 0(BX*8), CX |
| 1424 | NEGL CX |
| 1425 | |
| 1426 | MOVL SI, DX |
| 1427 | CMPB DX, $0xfc |
| 1428 | JA si_high |
| 1429 | |
| 1430 | // load at SI won't cross a page boundary. |
| 1431 | MOVL (SI), SI |
| 1432 | JMP si_finish |
| 1433 | si_high: |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 1434 | // address ends in 111111xx. Load up to bytes we want, move to correct position. |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1435 | MOVL -4(SI)(BX*1), SI |
| 1436 | SHRL CX, SI |
| 1437 | si_finish: |
| 1438 | |
| 1439 | // same for DI. |
| 1440 | MOVL DI, DX |
| 1441 | CMPB DX, $0xfc |
| 1442 | JA di_high |
| 1443 | MOVL (DI), DI |
| 1444 | JMP di_finish |
| 1445 | di_high: |
| 1446 | MOVL -4(DI)(BX*1), DI |
| 1447 | SHRL CX, DI |
| 1448 | di_finish: |
| 1449 | |
| 1450 | SUBL SI, DI |
| 1451 | SHLL CX, DI |
| 1452 | equal: |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1453 | SETEQ (AX) |
Keith Randall | 3d5daa2 | 2013-04-02 16:26:15 -0700 | [diff] [blame] | 1454 | RET |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1455 | |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 1456 | TEXT runtime·cmpstring(SB),NOSPLIT,$0-20 |
Russ Cox | 25f6b02 | 2014-08-27 11:32:17 -0400 | [diff] [blame] | 1457 | MOVL s1_base+0(FP), SI |
| 1458 | MOVL s1_len+4(FP), BX |
| 1459 | MOVL s2_base+8(FP), DI |
| 1460 | MOVL s2_len+12(FP), DX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1461 | LEAL ret+16(FP), AX |
| 1462 | JMP runtime·cmpbody(SB) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1463 | |
Russ Cox | 7a524a1 | 2014-12-22 13:27:53 -0500 | [diff] [blame] | 1464 | TEXT bytes·Compare(SB),NOSPLIT,$0-28 |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1465 | MOVL s1+0(FP), SI |
| 1466 | MOVL s1+4(FP), BX |
| 1467 | MOVL s2+12(FP), DI |
| 1468 | MOVL s2+16(FP), DX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1469 | LEAL ret+24(FP), AX |
| 1470 | JMP runtime·cmpbody(SB) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1471 | |
Shenghou Ma | 3b00197 | 2015-03-07 00:18:16 -0500 | [diff] [blame] | 1472 | TEXT bytes·IndexByte(SB),NOSPLIT,$0-20 |
Brad Fitzpatrick | e2a1bd6 | 2013-08-01 16:11:19 -0700 | [diff] [blame] | 1473 | MOVL s+0(FP), SI |
| 1474 | MOVL s_len+4(FP), CX |
| 1475 | MOVB c+12(FP), AL |
| 1476 | MOVL SI, DI |
| 1477 | CLD; REPN; SCASB |
| 1478 | JZ 3(PC) |
| 1479 | MOVL $-1, ret+16(FP) |
| 1480 | RET |
| 1481 | SUBL SI, DI |
| 1482 | SUBL $1, DI |
| 1483 | MOVL DI, ret+16(FP) |
| 1484 | RET |
| 1485 | |
Shenghou Ma | 3b00197 | 2015-03-07 00:18:16 -0500 | [diff] [blame] | 1486 | TEXT strings·IndexByte(SB),NOSPLIT,$0-16 |
Brad Fitzpatrick | 598c789 | 2013-08-05 15:04:05 -0700 | [diff] [blame] | 1487 | MOVL s+0(FP), SI |
| 1488 | MOVL s_len+4(FP), CX |
| 1489 | MOVB c+8(FP), AL |
| 1490 | MOVL SI, DI |
| 1491 | CLD; REPN; SCASB |
| 1492 | JZ 3(PC) |
| 1493 | MOVL $-1, ret+12(FP) |
| 1494 | RET |
| 1495 | SUBL SI, DI |
| 1496 | SUBL $1, DI |
| 1497 | MOVL DI, ret+12(FP) |
| 1498 | RET |
| 1499 | |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1500 | // input: |
| 1501 | // SI = a |
| 1502 | // DI = b |
| 1503 | // BX = alen |
| 1504 | // DX = blen |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1505 | // AX = address of return word (set to 1/0/-1) |
Keith Randall | 5a54696 | 2013-08-07 10:23:24 -0700 | [diff] [blame] | 1506 | TEXT runtime·cmpbody(SB),NOSPLIT,$0-0 |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1507 | MOVL DX, BP |
| 1508 | SUBL BX, DX // DX = blen-alen |
Keith Randall | 8c9ef9d | 2016-01-13 13:09:46 -0800 | [diff] [blame] | 1509 | JLE 2(PC) |
| 1510 | MOVL BX, BP // BP = min(alen, blen) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1511 | CMPL SI, DI |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1512 | JEQ allsame |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1513 | CMPL BP, $4 |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1514 | JB small |
Martin Möhrmann | 5a6c580 | 2017-04-27 08:30:27 +0200 | [diff] [blame^] | 1515 | CMPB runtime·support_sse2(SB), $1 |
| 1516 | JNE mediumloop |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1517 | largeloop: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1518 | CMPL BP, $16 |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1519 | JB mediumloop |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1520 | MOVOU (SI), X0 |
| 1521 | MOVOU (DI), X1 |
| 1522 | PCMPEQB X0, X1 |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1523 | PMOVMSKB X1, BX |
| 1524 | XORL $0xffff, BX // convert EQ to NE |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1525 | JNE diff16 // branch if at least one byte is not equal |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1526 | ADDL $16, SI |
| 1527 | ADDL $16, DI |
| 1528 | SUBL $16, BP |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1529 | JMP largeloop |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1530 | |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1531 | diff16: |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1532 | BSFL BX, BX // index of first byte that differs |
| 1533 | XORL DX, DX |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1534 | MOVB (SI)(BX*1), CX |
| 1535 | CMPB CX, (DI)(BX*1) |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1536 | SETHI DX |
| 1537 | LEAL -1(DX*2), DX // convert 1/0 to +1/-1 |
| 1538 | MOVL DX, (AX) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1539 | RET |
| 1540 | |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1541 | mediumloop: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1542 | CMPL BP, $4 |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1543 | JBE _0through4 |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1544 | MOVL (SI), BX |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1545 | MOVL (DI), CX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1546 | CMPL BX, CX |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1547 | JNE diff4 |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1548 | ADDL $4, SI |
| 1549 | ADDL $4, DI |
| 1550 | SUBL $4, BP |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1551 | JMP mediumloop |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1552 | |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1553 | _0through4: |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1554 | MOVL -4(SI)(BP*1), BX |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1555 | MOVL -4(DI)(BP*1), CX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1556 | CMPL BX, CX |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1557 | JEQ allsame |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1558 | |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1559 | diff4: |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1560 | BSWAPL BX // reverse order of bytes |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1561 | BSWAPL CX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1562 | XORL BX, CX // find bit differences |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1563 | BSRL CX, CX // index of highest bit difference |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1564 | SHRL CX, BX // move a's bit to bottom |
| 1565 | ANDL $1, BX // mask bit |
| 1566 | LEAL -1(BX*2), BX // 1/0 => +1/-1 |
| 1567 | MOVL BX, (AX) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1568 | RET |
| 1569 | |
| 1570 | // 0-3 bytes in common |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1571 | small: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1572 | LEAL (BP*8), CX |
| 1573 | NEGL CX |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1574 | JEQ allsame |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1575 | |
| 1576 | // load si |
| 1577 | CMPB SI, $0xfc |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1578 | JA si_high |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1579 | MOVL (SI), SI |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1580 | JMP si_finish |
| 1581 | si_high: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1582 | MOVL -4(SI)(BP*1), SI |
| 1583 | SHRL CX, SI |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1584 | si_finish: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1585 | SHLL CX, SI |
| 1586 | |
| 1587 | // same for di |
| 1588 | CMPB DI, $0xfc |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1589 | JA di_high |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1590 | MOVL (DI), DI |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1591 | JMP di_finish |
| 1592 | di_high: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1593 | MOVL -4(DI)(BP*1), DI |
| 1594 | SHRL CX, DI |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1595 | di_finish: |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1596 | SHLL CX, DI |
| 1597 | |
| 1598 | BSWAPL SI // reverse order of bytes |
| 1599 | BSWAPL DI |
| 1600 | XORL SI, DI // find bit differences |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1601 | JEQ allsame |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1602 | BSRL DI, CX // index of highest bit difference |
| 1603 | SHRL CX, SI // move a's bit to bottom |
| 1604 | ANDL $1, SI // mask bit |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1605 | LEAL -1(SI*2), BX // 1/0 => +1/-1 |
| 1606 | MOVL BX, (AX) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1607 | RET |
| 1608 | |
| 1609 | // all the bytes in common are the same, so we just need |
| 1610 | // to compare the lengths. |
Russ Cox | b55791e | 2014-10-28 21:50:16 -0400 | [diff] [blame] | 1611 | allsame: |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1612 | XORL BX, BX |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1613 | XORL CX, CX |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1614 | TESTL DX, DX |
| 1615 | SETLT BX // 1 if alen > blen |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1616 | SETEQ CX // 1 if alen == blen |
Keith Randall | c526f3a | 2015-04-21 14:22:41 -0700 | [diff] [blame] | 1617 | LEAL -1(CX)(BX*2), BX // 1,0,-1 result |
| 1618 | MOVL BX, (AX) |
Keith Randall | b3946dc | 2013-05-14 16:05:51 -0700 | [diff] [blame] | 1619 | RET |
Keith Randall | 6c7cbf0 | 2014-04-01 12:51:02 -0700 | [diff] [blame] | 1620 | |
Keith Randall | f440737 | 2014-09-03 08:49:43 -0700 | [diff] [blame] | 1621 | TEXT runtime·return0(SB), NOSPLIT, $0 |
| 1622 | MOVL $0, AX |
| 1623 | RET |
Keith Randall | 1b6807b | 2014-09-25 07:59:01 -0700 | [diff] [blame] | 1624 | |
| 1625 | // Called from cgo wrappers, this function returns g->m->curg.stack.hi. |
| 1626 | // Must obey the gcc calling convention. |
Keith Randall | 1aa65fe | 2014-09-25 08:37:04 -0700 | [diff] [blame] | 1627 | TEXT _cgo_topofstack(SB),NOSPLIT,$0 |
Keith Randall | 1b6807b | 2014-09-25 07:59:01 -0700 | [diff] [blame] | 1628 | get_tls(CX) |
| 1629 | MOVL g(CX), AX |
| 1630 | MOVL g_m(AX), AX |
| 1631 | MOVL m_curg(AX), AX |
| 1632 | MOVL (g_stack+stack_hi)(AX), AX |
| 1633 | RET |
Russ Cox | a5a0733 | 2014-10-29 20:37:44 -0400 | [diff] [blame] | 1634 | |
| 1635 | // The top-most function running on a goroutine |
| 1636 | // returns to goexit+PCQuantum. |
| 1637 | TEXT runtime·goexit(SB),NOSPLIT,$0-0 |
| 1638 | BYTE $0x90 // NOP |
| 1639 | CALL runtime·goexit1(SB) // does not return |
Dmitry Vyukov | 894024f | 2015-02-20 20:07:02 +0300 | [diff] [blame] | 1640 | // traceback from goexit1 must hit code range of goexit |
| 1641 | BYTE $0x90 // NOP |
Russ Cox | 15ced2d | 2014-11-11 17:06:22 -0500 | [diff] [blame] | 1642 | |
Shenghou Ma | 0adf6dc | 2015-10-17 18:21:44 -0400 | [diff] [blame] | 1643 | // Prefetching doesn't seem to help. |
Russ Cox | 8c3f640 | 2014-11-21 15:57:10 -0500 | [diff] [blame] | 1644 | TEXT runtime·prefetcht0(SB),NOSPLIT,$0-4 |
Russ Cox | 8c3f640 | 2014-11-21 15:57:10 -0500 | [diff] [blame] | 1645 | RET |
| 1646 | |
| 1647 | TEXT runtime·prefetcht1(SB),NOSPLIT,$0-4 |
Russ Cox | 8c3f640 | 2014-11-21 15:57:10 -0500 | [diff] [blame] | 1648 | RET |
| 1649 | |
Russ Cox | 8c3f640 | 2014-11-21 15:57:10 -0500 | [diff] [blame] | 1650 | TEXT runtime·prefetcht2(SB),NOSPLIT,$0-4 |
Russ Cox | 8c3f640 | 2014-11-21 15:57:10 -0500 | [diff] [blame] | 1651 | RET |
| 1652 | |
| 1653 | TEXT runtime·prefetchnta(SB),NOSPLIT,$0-4 |
Russ Cox | 8c3f640 | 2014-11-21 15:57:10 -0500 | [diff] [blame] | 1654 | RET |
Michael Hudson-Doyle | 09d7de8 | 2015-10-28 12:15:43 +1300 | [diff] [blame] | 1655 | |
Brad Fitzpatrick | 5fea2cc | 2016-03-01 23:21:55 +0000 | [diff] [blame] | 1656 | // Add a module's moduledata to the linked list of moduledata objects. This |
Michael Hudson-Doyle | 09d7de8 | 2015-10-28 12:15:43 +1300 | [diff] [blame] | 1657 | // is called from .init_array by a function generated in the linker and so |
| 1658 | // follows the platform ABI wrt register preservation -- it only touches AX, |
| 1659 | // CX (implicitly) and DX, but it does not follow the ABI wrt arguments: |
| 1660 | // instead the pointer to the moduledata is passed in AX. |
| 1661 | TEXT runtime·addmoduledata(SB),NOSPLIT,$0-0 |
| 1662 | MOVL runtime·lastmoduledatap(SB), DX |
| 1663 | MOVL AX, moduledata_next(DX) |
| 1664 | MOVL AX, runtime·lastmoduledatap(SB) |
| 1665 | RET |
Keith Randall | df2f813 | 2016-07-21 10:37:59 -0700 | [diff] [blame] | 1666 | |
Keith Randall | c069bc4 | 2016-07-26 11:51:33 -0700 | [diff] [blame] | 1667 | TEXT runtime·uint32tofloat64(SB),NOSPLIT,$8-12 |
Keith Randall | df2f813 | 2016-07-21 10:37:59 -0700 | [diff] [blame] | 1668 | MOVL a+0(FP), AX |
Keith Randall | c069bc4 | 2016-07-26 11:51:33 -0700 | [diff] [blame] | 1669 | MOVL AX, 0(SP) |
| 1670 | MOVL $0, 4(SP) |
| 1671 | FMOVV 0(SP), F0 |
| 1672 | FMOVDP F0, ret+4(FP) |
Keith Randall | df2f813 | 2016-07-21 10:37:59 -0700 | [diff] [blame] | 1673 | RET |
| 1674 | |
Keith Randall | c069bc4 | 2016-07-26 11:51:33 -0700 | [diff] [blame] | 1675 | TEXT runtime·float64touint32(SB),NOSPLIT,$12-12 |
| 1676 | FMOVD a+0(FP), F0 |
| 1677 | FSTCW 0(SP) |
| 1678 | FLDCW runtime·controlWord64trunc(SB) |
| 1679 | FMOVVP F0, 4(SP) |
| 1680 | FLDCW 0(SP) |
| 1681 | MOVL 4(SP), AX |
Keith Randall | df2f813 | 2016-07-21 10:37:59 -0700 | [diff] [blame] | 1682 | MOVL AX, ret+8(FP) |
| 1683 | RET |