File size: 28,427 Bytes
334514d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 | // Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
#include "go_asm.h"
#include "go_tls.h"
#include "funcdata.h"
#include "textflag.h"
// _rt0_s390x_lib is common startup code for s390x systems when
// using -buildmode=c-archive or -buildmode=c-shared. The linker will
// arrange to invoke this function as a global constructor (for
// c-archive) or when the shared library is loaded (for c-shared).
// We expect argc and argv to be passed in the usual C ABI registers
// R2 and R3.
TEXT _rt0_s390x_lib(SB), NOSPLIT|NOFRAME, $0
STMG R6, R15, 48(R15)
MOVD R2, _rt0_s390x_lib_argc<>(SB)
MOVD R3, _rt0_s390x_lib_argv<>(SB)
// Save R6-R15 in the register save area of the calling function.
STMG R6, R15, 48(R15)
// Allocate 80 bytes on the stack.
MOVD $-80(R15), R15
// Save F8-F15 in our stack frame.
FMOVD F8, 16(R15)
FMOVD F9, 24(R15)
FMOVD F10, 32(R15)
FMOVD F11, 40(R15)
FMOVD F12, 48(R15)
FMOVD F13, 56(R15)
FMOVD F14, 64(R15)
FMOVD F15, 72(R15)
// Synchronous initialization.
MOVD $runtime路libpreinit(SB), R1
BL R1
// Create a new thread to finish Go runtime initialization.
MOVD _cgo_sys_thread_create(SB), R1
CMP R1, $0
BEQ nocgo
MOVD $_rt0_s390x_lib_go(SB), R2
MOVD $0, R3
BL R1
BR restore
nocgo:
MOVD $0x800000, R1 // stacksize
MOVD R1, 0(R15)
MOVD $_rt0_s390x_lib_go(SB), R1
MOVD R1, 8(R15) // fn
MOVD $runtime路newosproc(SB), R1
BL R1
restore:
// Restore F8-F15 from our stack frame.
FMOVD 16(R15), F8
FMOVD 24(R15), F9
FMOVD 32(R15), F10
FMOVD 40(R15), F11
FMOVD 48(R15), F12
FMOVD 56(R15), F13
FMOVD 64(R15), F14
FMOVD 72(R15), F15
MOVD $80(R15), R15
// Restore R6-R15.
LMG 48(R15), R6, R15
RET
// _rt0_s390x_lib_go initializes the Go runtime.
// This is started in a separate thread by _rt0_s390x_lib.
TEXT _rt0_s390x_lib_go(SB), NOSPLIT|NOFRAME, $0
MOVD _rt0_s390x_lib_argc<>(SB), R2
MOVD _rt0_s390x_lib_argv<>(SB), R3
MOVD $runtime路rt0_go(SB), R1
BR R1
DATA _rt0_s390x_lib_argc<>(SB)/8, $0
GLOBL _rt0_s390x_lib_argc<>(SB), NOPTR, $8
DATA _rt0_s90x_lib_argv<>(SB)/8, $0
GLOBL _rt0_s390x_lib_argv<>(SB), NOPTR, $8
TEXT runtime路rt0_go(SB),NOSPLIT|TOPFRAME,$0
// R2 = argc; R3 = argv; R11 = temp; R13 = g; R15 = stack pointer
// C TLS base pointer in AR0:AR1
// initialize essential registers
XOR R0, R0
SUB $24, R15
MOVW R2, 8(R15) // argc
MOVD R3, 16(R15) // argv
// create istack out of the given (operating system) stack.
// _cgo_init may update stackguard.
MOVD $runtime路g0(SB), g
MOVD R15, R11
SUB $(64*1024), R11
MOVD R11, g_stackguard0(g)
MOVD R11, g_stackguard1(g)
MOVD R11, (g_stack+stack_lo)(g)
MOVD R15, (g_stack+stack_hi)(g)
// if there is a _cgo_init, call it using the gcc ABI.
MOVD _cgo_init(SB), R11
CMPBEQ R11, $0, nocgo
MOVW AR0, R4 // (AR0 << 32 | AR1) is the TLS base pointer; MOVD is translated to EAR
SLD $32, R4, R4
MOVW AR1, R4 // arg 2: TLS base pointer
MOVD $setg_gcc<>(SB), R3 // arg 1: setg
MOVD g, R2 // arg 0: G
// C functions expect 160 bytes of space on caller stack frame
// and an 8-byte aligned stack pointer
MOVD R15, R9 // save current stack (R9 is preserved in the Linux ABI)
SUB $160, R15 // reserve 160 bytes
MOVD $~7, R6
AND R6, R15 // 8-byte align
BL R11 // this call clobbers volatile registers according to Linux ABI (R0-R5, R14)
MOVD R9, R15 // restore stack
XOR R0, R0 // zero R0
nocgo:
// update stackguard after _cgo_init
MOVD (g_stack+stack_lo)(g), R2
ADD $const_stackGuard, R2
MOVD R2, g_stackguard0(g)
MOVD R2, g_stackguard1(g)
// set the per-goroutine and per-mach "registers"
MOVD $runtime路m0(SB), R2
// save m->g0 = g0
MOVD g, m_g0(R2)
// save m0 to g0->m
MOVD R2, g_m(g)
BL runtime路check(SB)
// argc/argv are already prepared on stack
BL runtime路args(SB)
BL runtime路checkS390xCPU(SB)
BL runtime路osinit(SB)
BL runtime路schedinit(SB)
// create a new goroutine to start program
MOVD $runtime路mainPC(SB), R2 // entry
SUB $16, R15
MOVD R2, 8(R15)
MOVD $0, 0(R15)
BL runtime路newproc(SB)
ADD $16, R15
// start this M
BL runtime路mstart(SB)
MOVD $0, 1(R0)
RET
DATA runtime路mainPC+0(SB)/8,$runtime路main<ABIInternal>(SB)
GLOBL runtime路mainPC(SB),RODATA,$8
TEXT runtime路breakpoint(SB),NOSPLIT|NOFRAME,$0-0
BRRK
RET
TEXT runtime路asminit(SB),NOSPLIT|NOFRAME,$0-0
RET
TEXT runtime路mstart(SB),NOSPLIT|TOPFRAME,$0
CALL runtime路mstart0(SB)
RET // not reached
/*
* go-routine
*/
// void gogo(Gobuf*)
// restore state from Gobuf; longjmp
TEXT runtime路gogo(SB), NOSPLIT|NOFRAME, $0-8
MOVD buf+0(FP), R5
MOVD gobuf_g(R5), R6
MOVD 0(R6), R7 // make sure g != nil
BR gogo<>(SB)
TEXT gogo<>(SB), NOSPLIT|NOFRAME, $0
MOVD R6, g
BL runtime路save_g(SB)
MOVD 0(g), R4
MOVD gobuf_sp(R5), R15
MOVD gobuf_lr(R5), LR
MOVD gobuf_ctxt(R5), R12
MOVD $0, gobuf_sp(R5)
MOVD $0, gobuf_lr(R5)
MOVD $0, gobuf_ctxt(R5)
CMP R0, R0 // set condition codes for == test, needed by stack split
MOVD gobuf_pc(R5), R6
BR (R6)
// void mcall(fn func(*g))
// Switch to m->g0's stack, call fn(g).
// Fn must never return. It should gogo(&g->sched)
// to keep running g.
TEXT runtime路mcall<ABIInternal>(SB), NOSPLIT, $-8-8
#ifdef GOEXPERIMENT_regabiargs
MOVD R2, R12 // context
#else
MOVD fn+0(FP), R12 // context
#endif
// Save caller state in g->sched
MOVD R15, (g_sched+gobuf_sp)(g)
MOVD LR, (g_sched+gobuf_pc)(g)
MOVD $0, (g_sched+gobuf_lr)(g)
// Switch to m->g0 & its stack, call fn.
MOVD g, R2
MOVD g_m(g), R4
MOVD m_g0(R4), g
BL runtime路save_g(SB)
CMP g, R2
BNE 2(PC)
BR runtime路badmcall(SB)
MOVD 0(R12), R4 // code pointer
MOVD (g_sched+gobuf_sp)(g), R15 // sp = m->g0->sched.sp
SUB $16, R15
MOVD R2, 8(R15)
MOVD $0, 0(R15)
BL (R4)
BR runtime路badmcall2(SB)
// systemstack_switch is a dummy routine that systemstack leaves at the bottom
// of the G stack. We need to distinguish the routine that
// lives at the bottom of the G stack from the one that lives
// at the top of the system stack because the one at the top of
// the system stack terminates the stack walk (see topofstack()).
TEXT runtime路systemstack_switch(SB), NOSPLIT, $0-0
UNDEF
BL (LR) // make sure this function is not leaf
RET
// func systemstack(fn func())
TEXT runtime路systemstack(SB), NOSPLIT, $0-8
MOVD fn+0(FP), R3 // R3 = fn
MOVD R3, R12 // context
MOVD g_m(g), R4 // R4 = m
MOVD m_gsignal(R4), R5 // R5 = gsignal
CMPBEQ g, R5, noswitch
MOVD m_g0(R4), R5 // R5 = g0
CMPBEQ g, R5, noswitch
MOVD m_curg(R4), R6
CMPBEQ g, R6, switch
// Bad: g is not gsignal, not g0, not curg. What is it?
// Hide call from linker nosplit analysis.
MOVD $runtime路badsystemstack(SB), R3
BL (R3)
BL runtime路abort(SB)
switch:
// save our state in g->sched. Pretend to
// be systemstack_switch if the G stack is scanned.
BL gosave_systemstack_switch<>(SB)
// switch to g0
MOVD R5, g
BL runtime路save_g(SB)
MOVD (g_sched+gobuf_sp)(g), R15
// call target function
MOVD 0(R12), R3 // code pointer
BL (R3)
// switch back to g
MOVD g_m(g), R3
MOVD m_curg(R3), g
BL runtime路save_g(SB)
MOVD (g_sched+gobuf_sp)(g), R15
MOVD $0, (g_sched+gobuf_sp)(g)
RET
noswitch:
// already on m stack, just call directly
// Using a tail call here cleans up tracebacks since we won't stop
// at an intermediate systemstack.
MOVD 0(R12), R3 // code pointer
MOVD 0(R15), LR // restore LR
ADD $8, R15
BR (R3)
// func switchToCrashStack0(fn func())
TEXT runtime路switchToCrashStack0<ABIInternal>(SB), NOSPLIT, $0-8
MOVD R2, R12 // context
MOVD g_m(g), R2 // curm
// set g to gcrash
MOVD $runtime路gcrash(SB), g // g = &gcrash
BL runtime路save_g(SB)
MOVD R2, g_m(g) // g.m = curm
MOVD g, m_g0(R2) // curm.g0 = g
// switch to crashstack
MOVD (g_stack+stack_hi)(g), R2
ADD $(-4*8), R2, R15
// call target function
MOVD 0(R12), R3 // code pointer
BL (R3)
// should never return
BL runtime路abort(SB)
UNDEF
/*
* support for morestack
*/
// Called during function prolog when more stack is needed.
// Caller has already loaded:
// R3: framesize, R4: argsize, R5: LR
//
// The traceback routines see morestack on a g0 as being
// the top of a stack (for example, morestack calling newstack
// calling the scheduler calling newm calling gc), so we must
// record an argument size. For that purpose, it has no arguments.
TEXT runtime路morestack(SB),NOSPLIT|NOFRAME,$0-0
// Called from f.
// Set g->sched to context in f.
MOVD R15, (g_sched+gobuf_sp)(g)
MOVD LR, R8
MOVD R8, (g_sched+gobuf_pc)(g)
MOVD R5, (g_sched+gobuf_lr)(g)
MOVD R12, (g_sched+gobuf_ctxt)(g)
// Cannot grow scheduler stack (m->g0).
MOVD g_m(g), R7
MOVD m_g0(R7), R8
CMPBNE g, R8, 3(PC)
BL runtime路badmorestackg0(SB)
BL runtime路abort(SB)
// Cannot grow signal stack (m->gsignal).
MOVD m_gsignal(R7), R8
CMP g, R8
BNE 3(PC)
BL runtime路badmorestackgsignal(SB)
BL runtime路abort(SB)
// Called from f.
// Set m->morebuf to f's caller.
MOVD R5, (m_morebuf+gobuf_pc)(R7) // f's caller's PC
MOVD R15, (m_morebuf+gobuf_sp)(R7) // f's caller's SP
MOVD g, (m_morebuf+gobuf_g)(R7)
// Call newstack on m->g0's stack.
MOVD m_g0(R7), g
BL runtime路save_g(SB)
MOVD (g_sched+gobuf_sp)(g), R15
// Create a stack frame on g0 to call newstack.
MOVD $0, -8(R15) // Zero saved LR in frame
SUB $8, R15
BL runtime路newstack(SB)
// Not reached, but make sure the return PC from the call to newstack
// is still in this function, and not the beginning of the next.
UNDEF
TEXT runtime路morestack_noctxt(SB),NOSPLIT|NOFRAME,$0-0
// Force SPWRITE. This function doesn't actually write SP,
// but it is called with a special calling convention where
// the caller doesn't save LR on stack but passes it as a
// register (R5), and the unwinder currently doesn't understand.
// Make it SPWRITE to stop unwinding. (See issue 54332)
MOVD R15, R15
MOVD $0, R12
BR runtime路morestack(SB)
// reflectcall: call a function with the given argument list
// func call(stackArgsType *_type, f *FuncVal, stackArgs *byte, stackArgsSize, stackRetOffset, frameSize uint32, regArgs *abi.RegArgs).
// we don't have variable-sized frames, so we use a small number
// of constant-sized-frame functions to encode a few bits of size in the pc.
// Caution: ugly multiline assembly macros in your future!
#define DISPATCH(NAME,MAXSIZE) \
MOVD $MAXSIZE, R4; \
CMP R3, R4; \
BGT 3(PC); \
MOVD $NAME(SB), R5; \
BR (R5)
// Note: can't just "BR NAME(SB)" - bad inlining results.
TEXT 路reflectcall(SB), NOSPLIT, $-8-48
MOVWZ frameSize+32(FP), R3
DISPATCH(runtime路call16, 16)
DISPATCH(runtime路call32, 32)
DISPATCH(runtime路call64, 64)
DISPATCH(runtime路call128, 128)
DISPATCH(runtime路call256, 256)
DISPATCH(runtime路call512, 512)
DISPATCH(runtime路call1024, 1024)
DISPATCH(runtime路call2048, 2048)
DISPATCH(runtime路call4096, 4096)
DISPATCH(runtime路call8192, 8192)
DISPATCH(runtime路call16384, 16384)
DISPATCH(runtime路call32768, 32768)
DISPATCH(runtime路call65536, 65536)
DISPATCH(runtime路call131072, 131072)
DISPATCH(runtime路call262144, 262144)
DISPATCH(runtime路call524288, 524288)
DISPATCH(runtime路call1048576, 1048576)
DISPATCH(runtime路call2097152, 2097152)
DISPATCH(runtime路call4194304, 4194304)
DISPATCH(runtime路call8388608, 8388608)
DISPATCH(runtime路call16777216, 16777216)
DISPATCH(runtime路call33554432, 33554432)
DISPATCH(runtime路call67108864, 67108864)
DISPATCH(runtime路call134217728, 134217728)
DISPATCH(runtime路call268435456, 268435456)
DISPATCH(runtime路call536870912, 536870912)
DISPATCH(runtime路call1073741824, 1073741824)
MOVD $runtime路badreflectcall(SB), R5
BR (R5)
#define CALLFN(NAME,MAXSIZE) \
TEXT NAME(SB), WRAPPER, $MAXSIZE-48; \
NO_LOCAL_POINTERS; \
/* copy arguments to stack */ \
MOVD stackArgs+16(FP), R4; \
MOVWZ stackArgsSize+24(FP), R5; \
MOVD $stack-MAXSIZE(SP), R6; \
loopArgs: /* copy 256 bytes at a time */ \
CMP R5, $256; \
BLT tailArgs; \
SUB $256, R5; \
MVC $256, 0(R4), 0(R6); \
MOVD $256(R4), R4; \
MOVD $256(R6), R6; \
BR loopArgs; \
tailArgs: /* copy remaining bytes */ \
CMP R5, $0; \
BEQ callFunction; \
SUB $1, R5; \
EXRL $callfnMVC<>(SB), R5; \
callFunction: \
MOVD f+8(FP), R12; \
MOVD regArgs+40(FP), R10; \
BL 路unspillArgs(SB); \
MOVD (R12), R10; \
PCDATA $PCDATA_StackMapIndex, $0; \
BL (R10); \
/* copy return values back */ \
MOVD regArgs+40(FP), R10; \
BL 路spillArgs(SB); \
MOVD stackArgsType+0(FP), R7; \
MOVD stackArgs+16(FP), R6; \
MOVWZ stackArgsSize+24(FP), R5; \
MOVD $stack-MAXSIZE(SP), R4; \
MOVWZ stackRetOffset+28(FP), R1; \
ADD R1, R4; \
ADD R1, R6; \
SUB R1, R5; \
BL callRet<>(SB); \
RET
// callRet copies return values back at the end of call*. This is a
// separate function so it can allocate stack space for the arguments
// to reflectcallmove. It does not follow the Go ABI; it expects its
// arguments in registers.
TEXT callRet<>(SB), NOSPLIT, $40-0
NO_LOCAL_POINTERS;
MOVD R7, 8(R15)
MOVD R6, 16(R15)
MOVD R4, 24(R15)
MOVD R5, 32(R15)
MOVD R10, 40(R15)
BL runtime路reflectcallmove(SB)
RET
CALLFN(路call16, 16)
CALLFN(路call32, 32)
CALLFN(路call64, 64)
CALLFN(路call128, 128)
CALLFN(路call256, 256)
CALLFN(路call512, 512)
CALLFN(路call1024, 1024)
CALLFN(路call2048, 2048)
CALLFN(路call4096, 4096)
CALLFN(路call8192, 8192)
CALLFN(路call16384, 16384)
CALLFN(路call32768, 32768)
CALLFN(路call65536, 65536)
CALLFN(路call131072, 131072)
CALLFN(路call262144, 262144)
CALLFN(路call524288, 524288)
CALLFN(路call1048576, 1048576)
CALLFN(路call2097152, 2097152)
CALLFN(路call4194304, 4194304)
CALLFN(路call8388608, 8388608)
CALLFN(路call16777216, 16777216)
CALLFN(路call33554432, 33554432)
CALLFN(路call67108864, 67108864)
CALLFN(路call134217728, 134217728)
CALLFN(路call268435456, 268435456)
CALLFN(路call536870912, 536870912)
CALLFN(路call1073741824, 1073741824)
// Not a function: target for EXRL (execute relative long) instruction.
TEXT callfnMVC<>(SB),NOSPLIT|NOFRAME,$0-0
MVC $1, 0(R4), 0(R6)
TEXT runtime路procyieldAsm(SB),NOSPLIT,$0-0
RET
// Save state of caller into g->sched,
// but using fake PC from systemstack_switch.
// Must only be called from functions with no locals ($0)
// or else unwinding from systemstack_switch is incorrect.
// Smashes R1.
TEXT gosave_systemstack_switch<>(SB),NOSPLIT|NOFRAME,$0
MOVD $runtime路systemstack_switch(SB), R1
ADD $16, R1 // get past prologue
MOVD R1, (g_sched+gobuf_pc)(g)
MOVD R15, (g_sched+gobuf_sp)(g)
MOVD $0, (g_sched+gobuf_lr)(g)
// Assert ctxt is zero. See func save.
MOVD (g_sched+gobuf_ctxt)(g), R1
CMPBEQ R1, $0, 2(PC)
BL runtime路abort(SB)
RET
// func asmcgocall(fn, arg unsafe.Pointer) int32
// Call fn(arg) on the scheduler stack,
// aligned appropriately for the gcc ABI.
// See cgocall.go for more details.
TEXT 路asmcgocall(SB),NOSPLIT,$0-20
// R2 = argc; R3 = argv; R11 = temp; R13 = g; R15 = stack pointer
// C TLS base pointer in AR0:AR1
MOVD fn+0(FP), R3
MOVD arg+8(FP), R4
MOVD R15, R2 // save original stack pointer
MOVD g, R5
// Figure out if we need to switch to m->g0 stack.
// We get called to create new OS threads too, and those
// come in on the m->g0 stack already. Or we might already
// be on the m->gsignal stack.
MOVD g_m(g), R6
MOVD m_gsignal(R6), R7
CMPBEQ R7, g, g0
MOVD m_g0(R6), R7
CMPBEQ R7, g, g0
BL gosave_systemstack_switch<>(SB)
MOVD R7, g
BL runtime路save_g(SB)
MOVD (g_sched+gobuf_sp)(g), R15
// Now on a scheduling stack (a pthread-created stack).
g0:
// Save room for two of our pointers, plus 160 bytes of callee
// save area that lives on the caller stack.
SUB $176, R15
MOVD $~7, R6
AND R6, R15 // 8-byte alignment for gcc ABI
MOVD R5, 168(R15) // save old g on stack
MOVD (g_stack+stack_hi)(R5), R5
SUB R2, R5
MOVD R5, 160(R15) // save depth in old g stack (can't just save SP, as stack might be copied during a callback)
MOVD $0, 0(R15) // clear back chain pointer (TODO can we give it real back trace information?)
MOVD R4, R2 // arg in R2
BL R3 // can clobber: R0-R5, R14, F0-F3, F5, F7-F15
XOR R0, R0 // set R0 back to 0.
// Restore g, stack pointer.
MOVD 168(R15), g
BL runtime路save_g(SB)
MOVD (g_stack+stack_hi)(g), R5
MOVD 160(R15), R6
SUB R6, R5
MOVD R5, R15
MOVW R2, ret+16(FP)
RET
// cgocallback(fn, frame unsafe.Pointer, ctxt uintptr)
// See cgocall.go for more details.
TEXT 路cgocallback(SB),NOSPLIT,$24-24
NO_LOCAL_POINTERS
// Skip cgocallbackg, just dropm when fn is nil, and frame is the saved g.
// It is used to dropm while thread is exiting.
MOVD fn+0(FP), R1
CMPBNE R1, $0, loadg
// Restore the g from frame.
MOVD frame+8(FP), g
BR dropm
loadg:
// Load m and g from thread-local storage.
MOVB runtime路iscgo(SB), R3
CMPBEQ R3, $0, nocgo
BL runtime路load_g(SB)
nocgo:
// If g is nil, Go did not create the current thread,
// or if this thread never called into Go on pthread platforms.
// Call needm to obtain one for temporary use.
// In this case, we're running on the thread stack, so there's
// lots of space, but the linker doesn't know. Hide the call from
// the linker analysis by using an indirect call.
CMPBEQ g, $0, needm
MOVD g_m(g), R8
MOVD R8, savedm-8(SP)
BR havem
needm:
MOVD g, savedm-8(SP) // g is zero, so is m.
MOVD $runtime路needAndBindM(SB), R3
BL (R3)
// Set m->sched.sp = SP, so that if a panic happens
// during the function we are about to execute, it will
// have a valid SP to run on the g0 stack.
// The next few lines (after the havem label)
// will save this SP onto the stack and then write
// the same SP back to m->sched.sp. That seems redundant,
// but if an unrecovered panic happens, unwindm will
// restore the g->sched.sp from the stack location
// and then systemstack will try to use it. If we don't set it here,
// that restored SP will be uninitialized (typically 0) and
// will not be usable.
MOVD g_m(g), R8
MOVD m_g0(R8), R3
MOVD R15, (g_sched+gobuf_sp)(R3)
havem:
// Now there's a valid m, and we're running on its m->g0.
// Save current m->g0->sched.sp on stack and then set it to SP.
// Save current sp in m->g0->sched.sp in preparation for
// switch back to m->curg stack.
// NOTE: unwindm knows that the saved g->sched.sp is at 8(R1) aka savedsp-16(SP).
MOVD m_g0(R8), R3
MOVD (g_sched+gobuf_sp)(R3), R4
MOVD R4, savedsp-24(SP) // must match frame size
MOVD R15, (g_sched+gobuf_sp)(R3)
// Switch to m->curg stack and call runtime.cgocallbackg.
// Because we are taking over the execution of m->curg
// but *not* resuming what had been running, we need to
// save that information (m->curg->sched) so we can restore it.
// We can restore m->curg->sched.sp easily, because calling
// runtime.cgocallbackg leaves SP unchanged upon return.
// To save m->curg->sched.pc, we push it onto the curg stack and
// open a frame the same size as cgocallback's g0 frame.
// Once we switch to the curg stack, the pushed PC will appear
// to be the return PC of cgocallback, so that the traceback
// will seamlessly trace back into the earlier calls.
MOVD m_curg(R8), g
BL runtime路save_g(SB)
MOVD (g_sched+gobuf_sp)(g), R4 // prepare stack as R4
MOVD (g_sched+gobuf_pc)(g), R5
MOVD R5, -(24+8)(R4) // "saved LR"; must match frame size
// Gather our arguments into registers.
MOVD fn+0(FP), R1
MOVD frame+8(FP), R2
MOVD ctxt+16(FP), R3
MOVD $-(24+8)(R4), R15 // switch stack; must match frame size
MOVD R1, 8(R15)
MOVD R2, 16(R15)
MOVD R3, 24(R15)
BL runtime路cgocallbackg(SB)
// Restore g->sched (== m->curg->sched) from saved values.
MOVD 0(R15), R5
MOVD R5, (g_sched+gobuf_pc)(g)
MOVD $(24+8)(R15), R4 // must match frame size
MOVD R4, (g_sched+gobuf_sp)(g)
// Switch back to m->g0's stack and restore m->g0->sched.sp.
// (Unlike m->curg, the g0 goroutine never uses sched.pc,
// so we do not have to restore it.)
MOVD g_m(g), R8
MOVD m_g0(R8), g
BL runtime路save_g(SB)
MOVD (g_sched+gobuf_sp)(g), R15
MOVD savedsp-24(SP), R4 // must match frame size
MOVD R4, (g_sched+gobuf_sp)(g)
// If the m on entry was nil, we called needm above to borrow an m,
// 1. for the duration of the call on non-pthread platforms,
// 2. or the duration of the C thread alive on pthread platforms.
// If the m on entry wasn't nil,
// 1. the thread might be a Go thread,
// 2. or it wasn't the first call from a C thread on pthread platforms,
// since then we skip dropm to reuse the m in the first call.
MOVD savedm-8(SP), R6
CMPBNE R6, $0, droppedm
// Skip dropm to reuse it in the next call, when a pthread key has been created.
MOVD _cgo_pthread_key_created(SB), R6
// It means cgo is disabled when _cgo_pthread_key_created is a nil pointer, need dropm.
CMPBEQ R6, $0, dropm
MOVD (R6), R6
CMPBNE R6, $0, droppedm
dropm:
MOVD $runtime路dropm(SB), R3
BL (R3)
droppedm:
// Done!
RET
// void setg(G*); set g. for use by needm.
TEXT runtime路setg(SB), NOSPLIT, $0-8
MOVD gg+0(FP), g
// This only happens if iscgo, so jump straight to save_g
BL runtime路save_g(SB)
RET
// void setg_gcc(G*); set g in C TLS.
// Must obey the gcc calling convention.
TEXT setg_gcc<>(SB),NOSPLIT|NOFRAME,$0-0
// The standard prologue clobbers LR (R14), which is callee-save in
// the C ABI, so we have to use NOFRAME and save LR ourselves.
MOVD LR, R1
// Also save g, R10, and R11 since they're callee-save in C ABI
MOVD R10, R3
MOVD g, R4
MOVD R11, R5
MOVD R2, g
BL runtime路save_g(SB)
MOVD R5, R11
MOVD R4, g
MOVD R3, R10
MOVD R1, LR
RET
TEXT runtime路abort(SB),NOSPLIT|NOFRAME,$0-0
MOVW (R0), R0
UNDEF
// int64 runtime路cputicks(void)
TEXT runtime路cputicks(SB),NOSPLIT,$0-8
// The TOD clock on s390 counts from the year 1900 in ~250ps intervals.
// This means that since about 1972 the msb has been set, making the
// result of a call to STORE CLOCK (stck) a negative number.
// We clear the msb to make it positive.
STCK ret+0(FP) // serialises before and after call
MOVD ret+0(FP), R3 // R3 will wrap to 0 in the year 2043
SLD $1, R3
SRD $1, R3
MOVD R3, ret+0(FP)
RET
#ifdef GOEXPERIMENT_regabiargs
// spillArgs stores return values from registers to a *internal/abi.RegArgs in R10.
TEXT runtime路spillArgs(SB),NOSPLIT,$0-0
MOVD R2, 0(R10)
MOVD R3, 8(R10)
MOVD R4, 16(R10)
MOVD R5, 24(R10)
MOVD R6, 32(R10)
MOVD R7, 40(R10)
MOVD R8, 48(R10)
MOVD R9, 56(R10)
FMOVD F0, 64(R10)
FMOVD F1, 72(R10)
FMOVD F2, 80(R10)
FMOVD F3, 88(R10)
FMOVD F4, 96(R10)
FMOVD F5, 104(R10)
FMOVD F6, 112(R10)
FMOVD F7, 120(R10)
FMOVD F8, 128(R10)
FMOVD F9, 136(R10)
FMOVD F10, 144(R10)
FMOVD F11, 152(R10)
FMOVD F12, 160(R10)
FMOVD F13, 168(R10)
FMOVD F14, 176(R10)
FMOVD F15, 184(R10)
RET
// unspillArgs loads args into registers from a *internal/abi.RegArgs in R10.
TEXT runtime路unspillArgs(SB),NOSPLIT,$0-0
MOVD 0(R10), R2
MOVD 8(R10), R3
MOVD 16(R10), R4
MOVD 24(R10), R5
MOVD 32(R10), R6
MOVD 40(R10), R7
MOVD 48(R10), R8
MOVD 56(R10), R9
FMOVD 64(R10), F0
FMOVD 72(R10), F1
FMOVD 80(R10), F2
FMOVD 88(R10), F3
FMOVD 96(R10), F4
FMOVD 104(R10), F5
FMOVD 112(R10), F6
FMOVD 120(R10), F7
FMOVD 128(R10), F8
FMOVD 136(R10), F9
FMOVD 144(R10), F10
FMOVD 152(R10), F11
FMOVD 160(R10), F12
FMOVD 168(R10), F13
FMOVD 176(R10), F14
FMOVD 184(R10), F15
RET
#else
TEXT runtime路spillArgs(SB),NOSPLIT,$0-0
RET
TEXT runtime路unspillArgs(SB),NOSPLIT,$0-0
RET
#endif
// AES hashing not implemented for s390x
TEXT runtime路memhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-32
JMP runtime路memhashFallback<ABIInternal>(SB)
TEXT runtime路strhash<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
JMP runtime路strhashFallback<ABIInternal>(SB)
TEXT runtime路memhash32<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
JMP runtime路memhash32Fallback<ABIInternal>(SB)
TEXT runtime路memhash64<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-24
JMP runtime路memhash64Fallback<ABIInternal>(SB)
// Called from cgo wrappers, this function returns g->m->curg.stack.hi.
// Must obey the gcc calling convention.
TEXT _cgo_topofstack(SB),NOSPLIT|NOFRAME,$0
// g (R13), R10, R11 and LR (R14) are callee-save in the C ABI, so save them
MOVD g, R1
MOVD R10, R3
MOVD LR, R4
MOVD R11, R5
BL runtime路load_g(SB) // clobbers g (R13), R10, R11
MOVD g_m(g), R2
MOVD m_curg(R2), R2
MOVD (g_stack+stack_hi)(R2), R2
MOVD R1, g
MOVD R3, R10
MOVD R4, LR
MOVD R5, R11
RET
// The top-most function running on a goroutine
// returns to goexit+PCQuantum.
TEXT runtime路goexit(SB),NOSPLIT|NOFRAME|TOPFRAME,$0-0
BYTE $0x07; BYTE $0x00; // 2-byte nop
BL runtime路goexit1(SB) // does not return
// traceback from goexit1 must hit code range of goexit
BYTE $0x07; BYTE $0x00; // 2-byte nop
TEXT 路publicationBarrier(SB),NOSPLIT|NOFRAME,$0-0
// Stores are already ordered on s390x, so this is just a
// compile barrier.
RET
// This is called from .init_array and follows the platform, not Go, ABI.
// We are overly conservative. We could only save the registers we use.
// However, since this function is only called once per loaded module
// performance is unimportant.
TEXT runtime路addmoduledata(SB),NOSPLIT|NOFRAME,$0-0
// Save R6-R15 in the register save area of the calling function.
// Don't bother saving F8-F15 as we aren't doing any calls.
STMG R6, R15, 48(R15)
// append the argument (passed in R2, as per the ELF ABI) to the
// moduledata linked list.
MOVD runtime路lastmoduledatap(SB), R1
MOVD R2, moduledata_next(R1)
MOVD R2, runtime路lastmoduledatap(SB)
// Restore R6-R15.
LMG 48(R15), R6, R15
RET
TEXT 路checkASM(SB),NOSPLIT,$0-1
MOVB $1, ret+0(FP)
RET
// gcWriteBarrier informs the GC about heap pointer writes.
//
// gcWriteBarrier does NOT follow the Go ABI. It accepts the
// number of bytes of buffer needed in R9, and returns a pointer
// to the buffer space in R9.
// It clobbers R10 (the temp register) and R1 (used by PLT stub).
// It does not clobber any other general-purpose registers,
// but may clobber others (e.g., floating point registers).
TEXT gcWriteBarrier<>(SB),NOSPLIT,$96
// Save the registers clobbered by the fast path.
MOVD R4, 96(R15)
retry:
MOVD g_m(g), R1
MOVD m_p(R1), R1
// Increment wbBuf.next position.
MOVD R9, R4
ADD (p_wbBuf+wbBuf_next)(R1), R4
// Is the buffer full?
MOVD (p_wbBuf+wbBuf_end)(R1), R10
CMPUBGT R4, R10, flush
// Commit to the larger buffer.
MOVD R4, (p_wbBuf+wbBuf_next)(R1)
// Make return value (the original next position)
SUB R9, R4, R9
// Restore registers.
MOVD 96(R15), R4
RET
flush:
// Save all general purpose registers since these could be
// clobbered by wbBufFlush and were not saved by the caller.
STMG R2, R3, 8(R15)
MOVD R0, 24(R15)
// R1 already saved.
// R4 already saved.
STMG R5, R12, 32(R15) // save R5 - R12
// R13 is g.
// R14 is LR.
// R15 is SP.
CALL runtime路wbBufFlush(SB)
LMG 8(R15), R2, R3 // restore R2 - R3
MOVD 24(R15), R0 // restore R0
LMG 32(R15), R5, R12 // restore R5 - R12
JMP retry
TEXT runtime路gcWriteBarrier1<ABIInternal>(SB),NOSPLIT,$0
MOVD $8, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier2<ABIInternal>(SB),NOSPLIT,$0
MOVD $16, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier3<ABIInternal>(SB),NOSPLIT,$0
MOVD $24, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier4<ABIInternal>(SB),NOSPLIT,$0
MOVD $32, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier5<ABIInternal>(SB),NOSPLIT,$0
MOVD $40, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier6<ABIInternal>(SB),NOSPLIT,$0
MOVD $48, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier7<ABIInternal>(SB),NOSPLIT,$0
MOVD $56, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路gcWriteBarrier8<ABIInternal>(SB),NOSPLIT,$0
MOVD $64, R9
JMP gcWriteBarrier<>(SB)
TEXT runtime路panicBounds<ABIInternal>(SB),NOSPLIT,$144-0
NO_LOCAL_POINTERS
// Save all 16 int registers that could have an index in them.
// They may be pointers, but if they are they are dead.
STMG R0, R12, 24(R15)
// Note that R10 @ 104 is not needed, it is an assembler temp
// skip R13 aka G @ 128
// skip R14 aka LR @ 136
// skip R15 aka SP @ 144
MOVD R14, R2 // PC immediately after call to panicBounds
ADD $24, R15, R3 // pointer to save area
CALL runtime路panicBounds64<ABIInternal>(SB)
RET
|