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 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
|
/**************************************************************************/
/* */
/* OCaml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1996 Institut National de Recherche en Informatique et */
/* en Automatique. */
/* */
/* All rights reserved. This file is distributed under the terms of */
/* the GNU Lesser General Public License version 2.1, with the */
/* special exception on linking described in the file LICENSE. */
/* */
/**************************************************************************/
#include "caml/m.h"
#include "caml/asm.h"
.abiversion 2
#if _CALL_ELF != 2
#error "This POWER port requires the ELFv2 ABI"
#endif
/* Special registers */
#define SP 1
#define TMP 11
#define TMP2 12
#define START_PRG_ARG 12
#define START_PRG_DOMAIN_STATE_PTR 7
#define STACK_ARG_BYTES 24
#define C_CALL_FUN 25
#define C_CALL_TOC 26
#define C_CALL_RET_ADDR 27
#define C_CALL_TMP 28
#define TRAP_PTR 29
#define DOMAIN_STATE_PTR 30
#define ALLOC_PTR 31
/* Stack layout */
#define RESERVED_STACK 32
#define LR_SAVE 16
#define TOC_SAVE_PARENT 8
#define TOC_SAVE 24
#define TRAP_SIZE 16
#define TRAP_HANDLER_OFFSET 8
#define TRAP_PREVIOUS_OFFSET 0
#define CALLBACK_LINK_SIZE 32
/* struct stack_info */
#define Stack_sp(reg) 0(reg)
#define Stack_sp_offset 0
#define Stack_exception(reg) 8(reg)
#define Stack_handler(reg) 16(reg)
/* struct c_stack_link */
#define Cstack_stack(reg) 32(reg)
#define Cstack_sp(reg) 40(reg)
#define Cstack_sp_offset 40
#define Cstack_prev(reg) 48(reg)
/* struct stack_handler */
#define Handler_value(reg) 0(reg)
#define Handler_exception(reg) 8(reg)
#define Handler_effect(reg) 16(reg)
#define Handler_parent(reg) 24(reg)
#define Handler_parent_offset 24
/* Function definitions */
.macro TEXT_SECTION name
#if defined(FUNCTION_SECTIONS)
.section ".text.caml.\name","ax",@progbits
#else
.section ".text"
#endif
.endm
#if defined(FUNCTION_SECTIONS)
TEXT_SECTION caml_hot.code_begin
.globl caml_hot.code_begin
caml_hot.code_begin:
TEXT_SECTION caml_hot.code_end
.globl caml_hot.code_end
caml_hot.code_end:
#endif
.macro FUNCTION name
TEXT_SECTION \name
.globl \name
TYPE_DIRECTIVE(\name,@function)
\name:
0: addis 2, 12, .TOC.- 0b@ha
addi 2, 2, .TOC.- 0b@l
.localentry \name, . - \name
.endm
.macro ENDFUNCTION name
SIZE_DIRECTIVE(\name)
.endm
.macro OBJECT name
.globl \name
TYPE_DIRECTIVE(\name,@object)
\name:
.endm
.macro ENDOBJECT name
SIZE_DIRECTIVE(\name)
.endm
/* Function prologue and epilogue */
.macro ENTER_FUNCTION
/* Save return address in caller's frame. */
mflr 0
std 0, LR_SAVE(SP)
.endm
.macro LEAVE_FUNCTION
/* Restore return address. */
ld 0, LR_SAVE(SP)
mtlr 0
.endm
/* Accessing global variables. */
#define LSYMB(glob) .L##glob
#define Addrglobal(reg,glob) \
ld reg, LSYMB(glob)@toc(2)
/* Accessing local code labels. */
#define LLABEL(lbl) .LL##lbl
#define Addrlabel(reg,lbl) \
ld reg, LLABEL(lbl)@toc(2)
.set domain_curr_field, 0
#define DOMAIN_STATE(c_type, name) \
.equ domain_field_caml_##name, domain_curr_field ; \
.set domain_curr_field, domain_curr_field + 1
#include "../runtime/caml/domain_state.tbl"
#undef DOMAIN_STATE
#define Caml_state(var) 8*domain_field_caml_##var(DOMAIN_STATE_PTR)
/* Call or tail-call function F defined in another compilation unit */
#define Far_call(fn) bl fn; nop
#define Far_tailcall(fn) Addrglobal(12, fn); mtctr 12; bctr
/* Switch from OCaml stack to C stack */
.macro SWITCH_OCAML_TO_C
/* Fill in Caml_state->current_stack->sp */
ld TMP, Caml_state(current_stack)
std SP, Stack_sp(TMP)
/* Fill in Caml_state->c_stack */
ld TMP2, Caml_state(c_stack)
std TMP, Cstack_stack(TMP2)
std SP, Cstack_sp(TMP2)
/* Switch to C stack */
mr SP, TMP2
.endm
/* Switch from C stack to OCaml stack */
.macro SWITCH_C_TO_OCAML
ld SP, Cstack_sp(SP)
.endm
/* Save ALLOC_PTR and TRAP_PTR to domain state, and save
the registers used by the code generator to a free gc_regs bucket.
Address of bucket is then written to Caml_state(gc_regs) */
.macro SAVE_ALL_REGS
/* Save allocation pointer and exception pointer */
std ALLOC_PTR, Caml_state(young_ptr)
std TRAP_PTR, Caml_state(exn_handler)
/* Point TMP to the gc_regs bucket and skip to next bucket */
ld TMP, Caml_state(gc_regs_buckets)
ld 0, 0(TMP)
std 0, Caml_state(gc_regs_buckets)
/* Save all allocatable integer registers */
std 3, 0x000(TMP)
std 4, 0x008(TMP)
std 5, 0x010(TMP)
std 6, 0x018(TMP)
std 7, 0x020(TMP)
std 8, 0x028(TMP)
std 9, 0x030(TMP)
std 10, 0x038(TMP)
std 14, 0x040(TMP)
std 15, 0x048(TMP)
std 16, 0x050(TMP)
std 17, 0x058(TMP)
std 18, 0x060(TMP)
std 19, 0x068(TMP)
std 20, 0x070(TMP)
std 21, 0x078(TMP)
std 22, 0x080(TMP)
std 23, 0x088(TMP)
std 24, 0x090(TMP)
std 25, 0x098(TMP)
std 26, 0x0A0(TMP)
std 27, 0x0A8(TMP)
std 28, 0x0B0(TMP)
/* Save caller-save floating-point registers */
/* (callee-saves are preserved by C functions) */
stfd 0, 0x0B8(TMP)
stfd 1, 0x0C0(TMP)
stfd 2, 0x0C8(TMP)
stfd 3, 0x0D0(TMP)
stfd 4, 0x0D8(TMP)
stfd 5, 0x0E0(TMP)
stfd 6, 0x0E8(TMP)
stfd 7, 0x0F0(TMP)
stfd 8, 0x0F8(TMP)
stfd 9, 0x100(TMP)
stfd 10, 0x108(TMP)
stfd 11, 0x110(TMP)
stfd 12, 0x118(TMP)
stfd 13, 0x120(TMP)
/* Save bucket to gc_regs */
std TMP, Caml_state(gc_regs)
.endm
/* Undo SAVE_ALL_REGS: load all the registers saved to Caml_state(gc_regs)
and refresh ALLOC_PTR and TRAP_PTR from Caml_state */
.macro RESTORE_ALL_REGS
ld TMP, Caml_state(gc_regs)
/* Restore all allocatable integer registers */
ld 3, 0x000(TMP)
ld 4, 0x008(TMP)
ld 5, 0x010(TMP)
ld 6, 0x018(TMP)
ld 7, 0x020(TMP)
ld 8, 0x028(TMP)
ld 9, 0x030(TMP)
ld 10, 0x038(TMP)
ld 14, 0x040(TMP)
ld 15, 0x048(TMP)
ld 16, 0x050(TMP)
ld 17, 0x058(TMP)
ld 18, 0x060(TMP)
ld 19, 0x068(TMP)
ld 20, 0x070(TMP)
ld 21, 0x078(TMP)
ld 22, 0x080(TMP)
ld 23, 0x088(TMP)
ld 24, 0x090(TMP)
ld 25, 0x098(TMP)
ld 26, 0x0A0(TMP)
ld 27, 0x0A8(TMP)
ld 28, 0x0B0(TMP)
/* Restore caller-save floating-point registers
(callee-saves are preserved by C functions) */
lfd 0, 0x0B8(TMP)
lfd 1, 0x0C0(TMP)
lfd 2, 0x0C8(TMP)
lfd 3, 0x0D0(TMP)
lfd 4, 0x0D8(TMP)
lfd 5, 0x0E0(TMP)
lfd 6, 0x0E8(TMP)
lfd 7, 0x0F0(TMP)
lfd 8, 0x0F8(TMP)
lfd 9, 0x100(TMP)
lfd 10, 0x108(TMP)
lfd 11, 0x110(TMP)
lfd 12, 0x118(TMP)
lfd 13, 0x120(TMP)
/* Put gc_regs struct back in bucket linked list */
ld TMP2, Caml_state(gc_regs_buckets)
std TMP2, 0(TMP) /* next ptr */
std TMP, Caml_state(gc_regs_buckets)
/* Reload new allocation pointer and exception pointer */
ld ALLOC_PTR, Caml_state(young_ptr)
ld TRAP_PTR, Caml_state(exn_handler)
.endm
#if defined(WITH_THREAD_SANITIZER) /* { */
.macro TSAN_SETUP_C_CALL size
ENTER_FUNCTION
/* Setup new frame for a function call and possibly some register saves. */
addi SP, SP, -(RESERVED_STACK + \size)
std 2, TOC_SAVE(SP)
.endm
.macro TSAN_CLEANUP_AFTER_C_CALL size
/* Undo call frame. */
addi SP, SP, (RESERVED_STACK + \size)
LEAVE_FUNCTION
.endm
.macro TSAN_ENTER_FUNCTION
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 0
mr 3, 0 /* arg1: return address in caller */
Far_call(__tsan_func_entry)
TSAN_CLEANUP_AFTER_C_CALL 0
SWITCH_C_TO_OCAML
.endm
/* This is similar to SAVE_ALL_REGS, but only saving the caller-saved
registers. */
.macro TSAN_SAVE_CALLER_REGS
/* Save allocation pointer and exception pointer */
std ALLOC_PTR, Caml_state(young_ptr)
std TRAP_PTR, Caml_state(exn_handler)
/* Point TMP to the gc_regs bucket and skip to next bucket */
ld TMP, Caml_state(gc_regs_buckets)
ld 0, 0(TMP)
std 0, Caml_state(gc_regs_buckets)
/* Save caller-save integer registers */
std 3, 0x000(TMP)
std 4, 0x008(TMP)
std 5, 0x010(TMP)
std 6, 0x018(TMP)
std 7, 0x020(TMP)
std 8, 0x028(TMP)
std 9, 0x030(TMP)
std 10, 0x038(TMP)
/* Save caller-save floating-point registers */
stfd 0, 0x0B8(TMP)
stfd 1, 0x0C0(TMP)
stfd 2, 0x0C8(TMP)
stfd 3, 0x0D0(TMP)
stfd 4, 0x0D8(TMP)
stfd 5, 0x0E0(TMP)
stfd 6, 0x0E8(TMP)
stfd 7, 0x0F0(TMP)
stfd 8, 0x0F8(TMP)
stfd 9, 0x100(TMP)
stfd 10, 0x108(TMP)
stfd 11, 0x110(TMP)
stfd 12, 0x118(TMP)
stfd 13, 0x120(TMP)
/* Save bucket to gc_regs */
std TMP, Caml_state(gc_regs)
.endm
/* This is similar to RESTORE_ALL_REGS, but only restoring the caller-saved
registers. */
.macro TSAN_RESTORE_CALLER_REGS
ld TMP, Caml_state(gc_regs)
/* Restore caller-save integer registers */
ld 3, 0x000(TMP)
ld 4, 0x008(TMP)
ld 5, 0x010(TMP)
ld 6, 0x018(TMP)
ld 7, 0x020(TMP)
ld 8, 0x028(TMP)
ld 9, 0x030(TMP)
ld 10, 0x038(TMP)
/* Restore caller-save floating-point registers */
lfd 0, 0x0B8(TMP)
lfd 1, 0x0C0(TMP)
lfd 2, 0x0C8(TMP)
lfd 3, 0x0D0(TMP)
lfd 4, 0x0D8(TMP)
lfd 5, 0x0E0(TMP)
lfd 6, 0x0E8(TMP)
lfd 7, 0x0F0(TMP)
lfd 8, 0x0F8(TMP)
lfd 9, 0x100(TMP)
lfd 10, 0x108(TMP)
lfd 11, 0x110(TMP)
lfd 12, 0x118(TMP)
lfd 13, 0x120(TMP)
/* Put gc_regs struct back in bucket linked list */
ld TMP2, Caml_state(gc_regs_buckets)
std TMP2, 0(TMP) /* next ptr */
std TMP, Caml_state(gc_regs_buckets)
/* Reload new allocation pointer and exception pointer */
ld ALLOC_PTR, Caml_state(young_ptr)
ld TRAP_PTR, Caml_state(exn_handler)
.endm
#else /* } { */
.macro TSAN_ENTER_FUNCTION
.endm
.macro TSAN_SAVE_CALLER_REGS
.endm
.macro TSAN_RESTORE_CALLER_REGS
.endm
#endif /* } WITH_THREAD_SANITIZER */
/* Allocation functions and GC interface.
Referenced from C code in runtime/startup_nat.c
*/
TEXT_SECTION caml_system__code_begin
.globl caml_system__code_begin
caml_system__code_begin:
/* Reallocate the stack when it is too small. */
/* Desired size is passed in register r27. */
FUNCTION caml_call_realloc_stack
ENTER_FUNCTION
/* Save all registers, as well as ALLOC_PTR and TRAP_PTR */
SAVE_ALL_REGS /* r27 is preserved */
/* Recover desired size, to be passed in r3 */
mr 3, 27
/* Switch stacks and call caml_try_realloc_stack */
SWITCH_OCAML_TO_C
Far_call(caml_try_realloc_stack)
SWITCH_C_TO_OCAML
cmpdi 3, 0
/* Restore all registers, and also return address */
RESTORE_ALL_REGS
LEAVE_FUNCTION
/* Check status */
beq 1f
/* Reallocation successful: return to caller */
blr
/* Reallocation failed: raise the Stack_overflow exception */
1: Addrglobal(3, caml_exn_Stack_overflow)
b .Lcaml_raise_exn
ENDFUNCTION caml_call_realloc_stack
/* Invoke the garbage collector. */
FUNCTION caml_call_gc
ENTER_FUNCTION
/* Save all registers, as well as ALLOC_PTR and TRAP_PTR */
SAVE_ALL_REGS
TSAN_ENTER_FUNCTION
/* Switch stacks and call caml_garbage_collection */
SWITCH_OCAML_TO_C
Far_call(caml_garbage_collection)
#if defined(WITH_THREAD_SANITIZER)
TSAN_SETUP_C_CALL 0
li 3, 0
Far_call(__tsan_func_exit)
TSAN_CLEANUP_AFTER_C_CALL 0
#endif
SWITCH_C_TO_OCAML
/* Restore registers and return to caller */
RESTORE_ALL_REGS
LEAVE_FUNCTION
ld 2, TOC_SAVE(SP)
blr
ENDFUNCTION caml_call_gc
/* Call a C function from OCaml. Function to call is in C_CALL_FUN */
.macro RET_FROM_C_CALL
ld TMP, Caml_state(action_pending)
cmpdi TMP, 0
beqlr+ 0
li TMP, -1
std TMP, Caml_state(young_limit)
blr
.endm
FUNCTION caml_c_call
TSAN_SAVE_CALLER_REGS
TSAN_ENTER_FUNCTION
TSAN_RESTORE_CALLER_REGS
.Lcaml_c_call:
/* Save return address in caller's frame AND in a callee-save register */
mflr C_CALL_RET_ADDR
std C_CALL_RET_ADDR, LR_SAVE(SP)
/* Switch from OCaml to C */
SWITCH_OCAML_TO_C
/* Make the exception handler and alloc ptr available to the C code */
std ALLOC_PTR, Caml_state(young_ptr)
std TRAP_PTR, Caml_state(exn_handler)
/* Call C function (address in C_CALL_FUN) */
mtctr C_CALL_FUN
mr 12, C_CALL_FUN
mr C_CALL_TOC, 2 /* save current TOC in a callee-save register */
bctrl
mr 2, C_CALL_TOC /* restore current TOC */
/* Restore return address (in register C_CALL_RET_ADDR, preserved by C) */
mtlr C_CALL_RET_ADDR
/* Reload new allocation pointer and exception pointer */
ld ALLOC_PTR, Caml_state(young_ptr)
ld TRAP_PTR, Caml_state(exn_handler)
#if defined(WITH_THREAD_SANITIZER)
TSAN_SETUP_C_CALL 16
/* Save return value registers. Since the called function could be anything,
it may have returned its result (if any) either in r3 or f1. */
std 3, (RESERVED_STACK + 0)(SP)
stfd 1, (RESERVED_STACK + 8)(SP)
li 3, 0
Far_call(__tsan_func_exit)
lfd 1, (RESERVED_STACK + 8)(SP)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 16
#endif
/* Switch from C to OCaml */
SWITCH_C_TO_OCAML
/* Return to caller */
RET_FROM_C_CALL
ENDFUNCTION caml_c_call
FUNCTION caml_c_call_stack_args
/* Extra arguments to be passed on stack:
STACK_ARG_BYTES at offsets 32 to 32 + STACK_ARG_BYTES from SP */
mr C_CALL_TMP, SP
/* Save return address in caller's frame AND in a callee-save register */
mflr C_CALL_RET_ADDR
std C_CALL_RET_ADDR, LR_SAVE(SP)
/* Switch from OCaml to C */
SWITCH_OCAML_TO_C
/* Make the exception handler and alloc ptr available to the C code */
std ALLOC_PTR, Caml_state(young_ptr)
std TRAP_PTR, Caml_state(exn_handler)
/* Reserve STACK_ARG_BYTES bytes on the C stack */
subfc SP, STACK_ARG_BYTES, SP
/* Copy from OCaml SP + [32...32+STACK_ARG_BYTES)
to C SP + [32...32+STACK_ARG_BYTES) */
addi TMP, STACK_ARG_BYTES, 32 - 8
1: ldx 0, C_CALL_TMP, TMP
stdx 0, SP, TMP
addi TMP, TMP, -8
cmpdi TMP, 32
bge 1b
/* Call C function (address in C_CALL_FUN) */
mtctr C_CALL_FUN
mr 12, C_CALL_FUN
mr C_CALL_TOC, 2 /* save current TOC in a callee-save register */
bctrl
mr 2, C_CALL_TOC /* restore current TOC */
/* Pop the extra stack space used */
add SP, SP, STACK_ARG_BYTES
/* Restore return address (in register C_CALL_RET_ADDR, preserved by C) */
mtlr C_CALL_RET_ADDR
/* Reload new allocation pointer and exception pointer */
ld ALLOC_PTR, Caml_state(young_ptr)
ld TRAP_PTR, Caml_state(exn_handler)
/* Switch from C to OCaml */
SWITCH_C_TO_OCAML
/* Return to caller */
RET_FROM_C_CALL
ENDFUNCTION caml_c_call_stack_args
/* Raise an exception from OCaml */
FUNCTION caml_raise_exn
.Lcaml_raise_exn:
ld 0, Caml_state(backtrace_active)
cmpdi 0, 0
bne .L111
.L110:
/* Pop trap frame */
ld 0, TRAP_HANDLER_OFFSET(TRAP_PTR)
addi SP, TRAP_PTR, TRAP_SIZE-RESERVED_STACK
mtctr 0
ld TRAP_PTR, (RESERVED_STACK-TRAP_SIZE+TRAP_PREVIOUS_OFFSET)(SP)
/* Branch to handler */
bctr
.L111:
/* Zero backtrace_pos */
li 0, 0
std 0, Caml_state(backtrace_pos)
.L112:
mr 27, 3 /* preserve exn bucket in callee-save reg */
/* arg1: exception bucket, already in r3 */
mflr 4 /* arg2: PC of raise */
mr 5, SP /* arg3: SP of raise */
mr 6, TRAP_PTR /* arg4: SP of handler */
/* Switch to C stack and call caml_stash_backtrace */
ld SP, Caml_state(c_stack)
Far_call(caml_stash_backtrace)
/* Restore exception bucket and raise */
mr 3, 27
b .L110
ENDFUNCTION caml_raise_exn
FUNCTION caml_reraise_exn
ld 0, Caml_state(backtrace_active)
cmpdi 0, 0
bne .L112
/* Pop trap frame */
ld 0, TRAP_HANDLER_OFFSET(TRAP_PTR)
addi SP, TRAP_PTR, TRAP_SIZE-RESERVED_STACK
mtctr 0
ld TRAP_PTR, (RESERVED_STACK-TRAP_SIZE+TRAP_PREVIOUS_OFFSET)(SP)
/* Branch to handler */
bctr
ENDFUNCTION caml_reraise_exn
#if defined(WITH_THREAD_SANITIZER)
/* When TSan support is enabled, this routine should be called just before
raising an exception. It calls __tsan_func_exit for every OCaml frame about
to be exited due to the exception.
Takes no arguments, clobbers r3, r4, r5 and potentially all
caller-saved registers of the C calling convention. */
FUNCTION caml_tsan_exit_on_raise_asm
mflr 3 /* arg1: PC of raise */
mr 4, SP /* arg2: SP of raise */
mr 5, TRAP_PTR /* arg3: SP of handler */
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 0
Far_call(caml_tsan_exit_on_raise)
TSAN_CLEANUP_AFTER_C_CALL 0
SWITCH_C_TO_OCAML
blr
ENDFUNCTION caml_tsan_exit_on_raise_asm
#endif
/* Raise an exception from C */
FUNCTION caml_raise_exception
/* Reinitialize domain state pointer */
mr DOMAIN_STATE_PTR, 3
/* Move exn bucket where caml_raise_exn expects it */
mr 3, 4
/* Reload allocation pointer and exception pointer */
ld ALLOC_PTR, Caml_state(young_ptr)
ld TRAP_PTR, Caml_state(exn_handler)
/* Discard the C stack pointer and switch to OCaml stack */
ld TMP, Caml_state(current_stack)
ld SP, Stack_sp(TMP)
/* Reload return address from caller's frame (for the backtrace) */
LEAVE_FUNCTION
#if defined(WITH_THREAD_SANITIZER)
/* Call __tsan_func_exit for every OCaml stack frame exited due to the
exception */
mr 4, SP /* arg2: SP of raise */
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 16
std 3, (RESERVED_STACK + 0)(SP) /* preserve exception bucket */
mr 3, 0 /* arg1: PC of raise */
mr 5, TRAP_PTR /* arg3: SP of handler */
Far_call(caml_tsan_exit_on_raise)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 16
SWITCH_C_TO_OCAML
#endif
/* Raise the exception */
b .Lcaml_raise_exn
ENDFUNCTION caml_raise_exception
/* Start the OCaml program */
FUNCTION caml_start_program
#if defined(WITH_THREAD_SANITIZER)
/* We can't use the TSAN_ENTER_FUNCTION macro, as it assumes to run on an
OCaml stack, and we are still on a C stack at this point. Moreover, we
need to save r3 on the stack. */
TSAN_SETUP_C_CALL 16
std 3, (RESERVED_STACK + 0)(SP)
mr 3, 0 /* arg1: return address in caller */
Far_call(__tsan_func_entry)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 16
#endif
/* Domain state pointer is the first arg to caml_start_program. Move it */
mr START_PRG_DOMAIN_STATE_PTR, 3
/* Code to call is caml_program */
Addrglobal(START_PRG_ARG, caml_program)
/* Code shared between caml_start_program and caml_callback */
/* Domain state pointer is in START_PRG_DOMAIN_STATE_PTR */
/* Code to call is in START_PRG_ARG */
.L102:
/* Stack frame contains:
- 18 callee-save FPRs
- 18 callee-save GPRs
- a struct c_stack_link
- the standard reserved space */
#define STACKSIZE (18 * 8 + 18 * 8 + CALLBACK_LINK_SIZE + RESERVED_STACK)
/* Allocate and link stack frame */
stdu SP, -STACKSIZE(SP)
/* Save return address and TOC pointer */
mflr 0
std 0, (STACKSIZE + LR_SAVE)(SP)
std 2, (STACKSIZE + TOC_SAVE_PARENT)(SP)
/* Save all callee-save registers */
addi TMP, SP, CALLBACK_LINK_SIZE + RESERVED_STACK - 8
stdu 14, 8(TMP)
stdu 15, 8(TMP)
stdu 16, 8(TMP)
stdu 17, 8(TMP)
stdu 18, 8(TMP)
stdu 19, 8(TMP)
stdu 20, 8(TMP)
stdu 21, 8(TMP)
stdu 22, 8(TMP)
stdu 23, 8(TMP)
stdu 24, 8(TMP)
stdu 25, 8(TMP)
stdu 26, 8(TMP)
stdu 27, 8(TMP)
stdu 28, 8(TMP)
stdu 29, 8(TMP)
stdu 30, 8(TMP)
stdu 31, 8(TMP)
stfdu 14, 8(TMP)
stfdu 15, 8(TMP)
stfdu 16, 8(TMP)
stfdu 17, 8(TMP)
stfdu 18, 8(TMP)
stfdu 19, 8(TMP)
stfdu 20, 8(TMP)
stfdu 21, 8(TMP)
stfdu 22, 8(TMP)
stfdu 23, 8(TMP)
stfdu 24, 8(TMP)
stfdu 25, 8(TMP)
stfdu 26, 8(TMP)
stfdu 27, 8(TMP)
stfdu 28, 8(TMP)
stfdu 29, 8(TMP)
stfdu 30, 8(TMP)
stfdu 31, 8(TMP)
/* Load domain state pointer from argument */
mr DOMAIN_STATE_PTR, START_PRG_DOMAIN_STATE_PTR
/* Reload allocation pointer */
ld ALLOC_PTR, Caml_state(young_ptr)
/* Set up a struct c_stack_link on the C stack */
ld 0, Caml_state(c_stack)
std 0, Cstack_prev(SP)
std SP, Caml_state(c_stack)
/* Load the OCaml stack */
ld TMP, Caml_state(current_stack)
ld TMP, Stack_sp(TMP)
/* Store the gc_regs for callbacks during a GC */
ld 0, Caml_state(gc_regs)
stdu 0, -8(TMP)
/* Store the stack pointer to allow DWARF unwind (one day) */
stdu SP, -8(TMP)
/* Setup a trap frame to catch exceptions escaping the OCaml code */
addi TMP, TMP, -TRAP_SIZE
ld 0, Caml_state(exn_handler)
std 0, TRAP_PREVIOUS_OFFSET(TMP)
Addrlabel(0,trap_handler)
std 0, TRAP_HANDLER_OFFSET(TMP)
mr TRAP_PTR, TMP
/* Switch stacks, reserving 32 bytes at the bottom of the OCaml stack */
addi SP, TMP, -RESERVED_STACK
/* Call the OCaml code (address in START_PRG_ARG) */
mtctr START_PRG_ARG
.Lcaml_retaddr:
bctrl
/* Pop the reserved 32 bytes */
addi SP, SP, RESERVED_STACK
/* Pop the trap frame, restoring caml_exn_handler */
ld 0, TRAP_PREVIOUS_OFFSET(SP)
std 0, Caml_state(exn_handler)
addi SP, SP, TRAP_SIZE
/* Update allocation pointer */
.L106:
std ALLOC_PTR, Caml_state(young_ptr)
/* Restore GC regs */
ld 0, 8(SP)
std 0, Caml_state(gc_regs)
addi SP, SP, 16
/* Return to C stack */
ld TMP, Caml_state(current_stack)
std SP, Stack_sp(TMP)
ld SP, Caml_state(c_stack)
/* Pop the struct c_stack_link */
ld 0, Cstack_prev(SP)
std 0, Caml_state(c_stack)
/* Restore callee-save registers */
addi TMP, SP, CALLBACK_LINK_SIZE + RESERVED_STACK - 8
ldu 14, 8(TMP)
ldu 15, 8(TMP)
ldu 16, 8(TMP)
ldu 17, 8(TMP)
ldu 18, 8(TMP)
ldu 19, 8(TMP)
ldu 20, 8(TMP)
ldu 21, 8(TMP)
ldu 22, 8(TMP)
ldu 23, 8(TMP)
ldu 24, 8(TMP)
ldu 25, 8(TMP)
ldu 26, 8(TMP)
ldu 27, 8(TMP)
ldu 28, 8(TMP)
ldu 29, 8(TMP)
ldu 30, 8(TMP)
ldu 31, 8(TMP)
lfdu 14, 8(TMP)
lfdu 15, 8(TMP)
lfdu 16, 8(TMP)
lfdu 17, 8(TMP)
lfdu 18, 8(TMP)
lfdu 19, 8(TMP)
lfdu 20, 8(TMP)
lfdu 21, 8(TMP)
lfdu 22, 8(TMP)
lfdu 23, 8(TMP)
lfdu 24, 8(TMP)
lfdu 25, 8(TMP)
lfdu 26, 8(TMP)
lfdu 27, 8(TMP)
lfdu 28, 8(TMP)
lfdu 29, 8(TMP)
lfdu 30, 8(TMP)
lfdu 31, 8(TMP)
/* Reload return address and TOC pointer */
ld 0, (STACKSIZE + LR_SAVE)(SP)
ld 2, (STACKSIZE + TOC_SAVE_PARENT)(SP)
mtlr 0
/* Return */
addi SP, SP, STACKSIZE
#if defined(WITH_THREAD_SANITIZER)
TSAN_SETUP_C_CALL 16
std 3, (RESERVED_STACK + 0)(SP)
li 3, 0
Far_call(__tsan_func_exit)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 16
#endif
blr
/* The trap handler: */
.Ltrap_handler:
/* Update caml_exn_handler */
std TRAP_PTR, Caml_state(exn_handler)
/* Pop the reserved 32 bytes */
addi SP, SP, RESERVED_STACK
/* Encode exception bucket as an exception result and return it */
ori 3, 3, 2
b .L106
#undef STACKSIZE
ENDFUNCTION caml_start_program
/* Callback from C to OCaml */
FUNCTION caml_callback_asm
#if defined(WITH_THREAD_SANITIZER)
/* Save non-callee-saved registers r3, r4, r5 before C call */
TSAN_SETUP_C_CALL 32
std 3, (RESERVED_STACK + 0)(SP)
std 4, (RESERVED_STACK + 8)(SP)
std 5, (RESERVED_STACK + 16)(SP)
mr 3, 0 /* return address */
Far_call(__tsan_func_entry)
ld 5, (RESERVED_STACK + 16)(SP)
ld 4, (RESERVED_STACK + 8)(SP)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 32
#endif
/* Initial shuffling of arguments */
/* r3 = Caml_state, r4 = closure, 0(r5) = first arg */
mr START_PRG_DOMAIN_STATE_PTR, 3
ld 3, 0(5) /* r3 = Argument */
/* r4 = Closure */
ld START_PRG_ARG, 0(4) /* Code pointer */
b .L102
ENDFUNCTION caml_callback_asm
FUNCTION caml_callback2_asm
#if defined(WITH_THREAD_SANITIZER)
/* Save non-callee-saved registers r3, r4, r5 before C call */
TSAN_SETUP_C_CALL 32
std 3, (RESERVED_STACK + 0)(SP)
std 4, (RESERVED_STACK + 8)(SP)
std 5, (RESERVED_STACK + 16)(SP)
mr 3, 0 /* return address */
Far_call(__tsan_func_entry)
ld 5, (RESERVED_STACK + 16)(SP)
ld 4, (RESERVED_STACK + 8)(SP)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 32
#endif
/* r3 = Caml_state, r4 = closure, 0(r5) = first arg,
8(r5) = second arg */
mr START_PRG_DOMAIN_STATE_PTR, 3
mr 0, 4
ld 3, 0(5) /* r3 = First argument */
ld 4, 8(5) /* r4 = Second argument */
mr 5, 0 /* r5 = Closure */
Addrglobal(START_PRG_ARG, caml_apply2)
b .L102
ENDFUNCTION caml_callback2_asm
FUNCTION caml_callback3_asm
#if defined(WITH_THREAD_SANITIZER)
/* Save non-callee-saved registers r3, r4, r5 before C call */
TSAN_SETUP_C_CALL 32
std 3, (RESERVED_STACK + 0)(SP)
std 4, (RESERVED_STACK + 8)(SP)
std 5, (RESERVED_STACK + 16)(SP)
mr 3, 0 /* return address */
Far_call(__tsan_func_entry)
ld 5, (RESERVED_STACK + 16)(SP)
ld 4, (RESERVED_STACK + 8)(SP)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 32
#endif
/* r3 = Caml_state, r4 = closure, 0(r5) = first arg, 8(r5) = second arg,
2*8(r5) = third arg */
mr START_PRG_DOMAIN_STATE_PTR, 3
mr 6, 4 /* r6 = Closure */
ld 3, 0(5) /* r3 = First argument */
ld 4, 8(5) /* r4 = Second argument */
ld 5, 2*8(5) /* r5 = Third argument */
Addrglobal(START_PRG_ARG, caml_apply3)
b .L102
ENDFUNCTION caml_callback3_asm
/* Fibers */
/* Switch between OCaml stacks. Clobbers register 0 and switches TRAP_PTR.
Preserves old_stack and new_stack registers */
.macro SWITCH_OCAML_STACKS old_stack, new_stack
/* Save return address for old_stack */
ENTER_FUNCTION
/* Save OCaml SP and exn_handler in the stack info */
std SP, Stack_sp(\old_stack)
std TRAP_PTR, Stack_exception(\old_stack)
/* switch stacks */
std \new_stack, Caml_state(current_stack)
ld SP, Stack_sp(\new_stack)
/* restore exn_handler for new stack */
ld TRAP_PTR, Stack_exception(\new_stack)
/* Restore return address for new_stack */
LEAVE_FUNCTION
.endm
/*
* A continuation is a one word object that points to a fiber. A fiber [f] will
* point to its parent at Handler_parent(Stack_handler(f)). In the following,
* the [last_fiber] refers to the last fiber in the linked-list formed by the
* parent pointer.
*/
FUNCTION caml_perform
/* r3: effect to perform
r4: freshly allocated continuation */
ld 5, Caml_state(current_stack) /* r5 := old stack */
addi 6, 5, 1 /* r6 := Val_ptr(old stack) */
std 6, 0(4) /* Initialize continuation */
.Ldo_perform:
/* r3: effect to perform
r4: continuation
r5: old_stack
r6: last_fiber */
#if defined(WITH_THREAD_SANITIZER)
/* Signal to TSan all stack frames exited by the perform. */
TSAN_SAVE_CALLER_REGS
mflr 3 /* arg1: PC of perform */
mr 4, SP /* arg2: SP of perform */
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 0
Far_call(caml_tsan_exit_on_perform)
TSAN_CLEANUP_AFTER_C_CALL 0
SWITCH_C_TO_OCAML
TSAN_RESTORE_CALLER_REGS
#endif
std 6, 8(4) /* Set the last fiber field in the continuation */
ld 7, Stack_handler(5) /* r7 := old stack -> handler */
ld 8, Handler_parent(7) /* r8 := parent stack */
cmpdi 8, 0
beq 1f
#if defined(WITH_THREAD_SANITIZER)
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 48
/* Save non-callee-saved registers r3 to r8 */
std 3, (RESERVED_STACK + 0)(SP)
std 4, (RESERVED_STACK + 8)(SP)
std 5, (RESERVED_STACK + 16)(SP)
std 6, (RESERVED_STACK + 24)(SP)
std 7, (RESERVED_STACK + 32)(SP)
std 8, (RESERVED_STACK + 40)(SP)
/* Match the TSan-enter made from caml_runstack */
li 3, 0
Far_call(__tsan_func_exit)
ld 8, (RESERVED_STACK + 40)(SP)
ld 7, (RESERVED_STACK + 32)(SP)
ld 6, (RESERVED_STACK + 24)(SP)
ld 5, (RESERVED_STACK + 16)(SP)
ld 4, (RESERVED_STACK + 8)(SP)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 48
SWITCH_C_TO_OCAML
#endif
SWITCH_OCAML_STACKS 5, 8
/* We have to null the Handler_parent after the switch because
the Handler_parent is needed to unwind the stack for backtraces */
li 0, 0
std 0, Handler_parent(7) /* Set parent of performer to NULL */
ld 0, Handler_effect(7)
/* 1st argument: effect to perform */
/* 2nd argument: continuation */
mr 5, 6 /* 3rd argument: last_fiber */
mr 6, 0 /* 4th argument: effect handler */
Far_tailcall(caml_apply3)
1:
/* Switch back to original performer before raising Effect.Unhandled
(no-op unless this is a reperform) */
ld 10, 0(4) /* r10 := performer stack (loaded from continuation) */
addi 10, 10, -1 /* r10 := Ptr_val(r10) */
ld 9, Caml_state(current_stack)
SWITCH_OCAML_STACKS 9, 10
/* No parent stack. Raise Effect.Unhandled. */
#if defined(WITH_THREAD_SANITIZER)
/* We must let the TSan runtime know that we switched back to the
original performer stack. For that, we perform the necessary calls
to __tsan_func_entry via caml_tsan_entry_on_resume.
Note that from TSan's point of view, we just exited all stack
frames, including those of the main fiber. This is ok, because we
re-enter them immediately via caml_tsan_entry_on_resume below. */
TSAN_SAVE_CALLER_REGS
mflr 3 /* arg1: PC of perform */
mr 4, SP /* arg2: SP of perform */
mr 5, 10 /* arg3: performer stack */
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 0
Far_call(caml_tsan_entry_on_resume)
/* invoke __tsan_func_entry without shuffling stacks */
ld 3, LR_SAVE(SP)
Far_call(__tsan_func_entry)
TSAN_CLEANUP_AFTER_C_CALL 0
SWITCH_C_TO_OCAML
TSAN_RESTORE_CALLER_REGS
#endif
Addrglobal(C_CALL_FUN, caml_raise_unhandled_effect)
b .Lcaml_c_call
ENDFUNCTION caml_perform
FUNCTION caml_reperform
/* r3: effect to perform
r4: continuation
r5: last_fiber */
addi 5, 5, -1
ld TMP, Stack_handler(5)
ld 5, Caml_state(current_stack) /* r5 := old stack */
std 5, Handler_parent(TMP) /* Append to last_fiber */
addi 6, 5, 1 /* r6 (last_fiber) := Val_ptr(old stack) */
b .Ldo_perform
ENDFUNCTION caml_reperform
FUNCTION caml_resume
/* r3: new fiber
r4: fun
r5: arg
r6: last_fiber */
addi 3, 3, -1 /* r3 = Ptr_val(r3) */
ld 12, 0(4) /* r12 = code pointer */
mtctr 12 /* CTR = code pointer */
/* Check if stack is null, then already used */
cmpdi 3, 0
beq 1f
#if defined(WITH_THREAD_SANITIZER)
TSAN_SAVE_CALLER_REGS
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 16
std 3, (RESERVED_STACK + 0)(SP)
/* Necessary to include the caller of caml_resume in the TSan backtrace */
mr 3, 0 /* arg1: return address in caller */
Far_call(__tsan_func_entry)
/* Signal to TSan all stack frames exited by the perform. */
ld 3, (RESERVED_STACK + 0)(SP)
mr 5, 3 /* arg3: fiber */
ld 4, Stack_sp(3) /* arg2: SP at perform */
ld 3, LR_SAVE(4) /* arg1: PC of perform */
Far_call(caml_tsan_entry_on_resume)
TSAN_CLEANUP_AFTER_C_CALL 16
SWITCH_C_TO_OCAML
TSAN_RESTORE_CALLER_REGS
/* Restore r12 and ctr */
ld 12, 0(4) /* r12 = code pointer */
mtctr 12 /* CTR = code pointer */
#endif
/* Add current stack to the end */
addi 6, 6, -1 /* r6 = Ptr_val(r6) */
ld 7, Stack_handler(6)
ld 8, Caml_state(current_stack)
std 8, Handler_parent(7)
/* Switch stacks and run code */
SWITCH_OCAML_STACKS 8, 3
mr 3, 5
bctr
1: TSAN_ENTER_FUNCTION /* needed since we skip caml_c_call entry */
Addrglobal(C_CALL_FUN, caml_raise_continuation_already_resumed)
b .Lcaml_c_call
ENDFUNCTION caml_resume
/* Run a function on a new stack, then either
return the value or invoke exception handler */
FUNCTION caml_runstack
#if defined(WITH_THREAD_SANITIZER)
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 32
/* Save non-callee-saved registers r3, r4 and r5 */
std 3, (RESERVED_STACK + 0)(SP)
std 4, (RESERVED_STACK + 8)(SP)
std 5, (RESERVED_STACK + 16)(SP)
/* Necessary to include the caller of caml_runstack in the TSan backtrace */
mr 3, 0 /* arg1: return address in caller */
Far_call(__tsan_func_entry)
ld 5, (RESERVED_STACK + 16)(SP)
ld 4, (RESERVED_STACK + 8)(SP)
ld 3, (RESERVED_STACK + 0)(SP)
TSAN_CLEANUP_AFTER_C_CALL 32
SWITCH_C_TO_OCAML
#endif
/* r3: fiber
r4: fun
r5: arg */
/* save return address and TOC on old stack */
ENTER_FUNCTION
std 2, TOC_SAVE_PARENT(SP)
addi 3, 3, -1 /* r3 := Ptr_val(r3) */
ld 12, 0(4) /* r12 := code pointer */
mtctr 12 /* CTR := code pointer */
/* save old stack pointer and exception handler */
ld 8, Caml_state(current_stack) /* r8 := old stack */
std SP, Stack_sp(8)
std TRAP_PTR, Stack_exception(8)
/* Load new stack pointer and set parent */
ld TMP, Stack_handler(3)
std 8, Handler_parent(TMP)
std 3, Caml_state(current_stack)
ld 9, Stack_sp(3) /* r9 := sp of new stack */
/* Reserve 16-byte DWARF and gc_regs block, which is unused here. */
addi 9, 9, -16
/* Create an exception handler on the target stack
after 16byte DWARF & gc_regs block (which is unused here) */
addi 9, 9, -TRAP_SIZE
Addrlabel(TMP, fiber_exn_handler)
std TMP, TRAP_HANDLER_OFFSET(9)
/* link the previous exn_handler so that copying stacks works */
ld TMP, Stack_exception(3)
std TMP, TRAP_PREVIOUS_OFFSET(9)
mr TRAP_PTR, 9
/* Switch to the new stack, after reserving 32 bytes at bottom */
addi SP, 9, -RESERVED_STACK
/* Call the function on the new stack */
mr 3, 5 /* argument */
.Lframe_runstack:
bctrl
/* Clean up on return */
addi 8, SP, (RESERVED_STACK + TRAP_SIZE + 16)
/* r8 := stack_handler */
ld 25, Handler_value(8) /* saved across C call */
1:
mr 26, 3 /* save return value across C call */
ld 3, Caml_state(current_stack) /* arg to caml_free_stack */
/* restore parent stack and exn_handler into Caml_state */
ld TMP, Handler_parent(8)
std TMP, Caml_state(current_stack)
ld TRAP_PTR, Stack_exception(TMP)
std TRAP_PTR, Caml_state(exn_handler)
/* restore saved TOC */
ld 27, Stack_sp(TMP) /* saved across C calls */
ld 2, TOC_SAVE_PARENT(27)
/* free old stack by switching directly to c_stack;
this is a no-alloc call */
ld SP, Caml_state(c_stack)
Far_call(caml_free_stack)
/* switch directly to parent stack */
mr SP, 27 /* OCaml stack */
#if defined(WITH_THREAD_SANITIZER)
/* Signal to TSan that we exit caml_runstack (no registers to save here) */
li 3, 0
SWITCH_OCAML_TO_C
TSAN_SETUP_C_CALL 0
Far_call(__tsan_func_exit)
TSAN_CLEANUP_AFTER_C_CALL 0
SWITCH_C_TO_OCAML
#endif
/* pick correct return */
mr 3, 26 /* return value */
mr 4, 25 /* handler value */
ld 12, 0(4) /* code pointer */
mtctr 12 /* code pointer */
/* Invoke handle_value (or handle_exn) */
LEAVE_FUNCTION
bctr
.Lfiber_exn_handler:
addi 8, SP, (RESERVED_STACK + 16) /* r8 := stack_handler */
ld 25, Handler_exception(8)
b 1b
ENDFUNCTION caml_runstack
FUNCTION caml_ml_array_bound_error
TSAN_ENTER_FUNCTION /* needed since we skip caml_c_call entry */
Addrglobal(C_CALL_FUN, caml_array_bound_error_asm)
b .Lcaml_c_call
ENDFUNCTION caml_ml_array_bound_error
TEXT_SECTION caml_system__code_end
.globl caml_system__code_end
caml_system__code_end:
/* Frametable - GC roots for callback */
/* Uses the same naming convention as ocamlopt generated modules. */
.section ".data"
OBJECT caml_system.frametable
.quad 2 /* two descriptors */
.quad .Lcaml_retaddr + 4 /* return address into callback */
.short -1 /* negative frame size => use callback link */
.short 0 /* no roots */
.align 3
.quad .Lframe_runstack + 4 /* return address into fiber handler */
.short -1 /* negative frame size => use callback link */
.short 0 /* no roots here */
.align 3
ENDOBJECT caml_system.frametable
/* TOC entries */
.section ".toc", "aw"
#define TOCENTRY(glob) LSYMB(glob): .quad glob
#define TOCENTRYLABEL(lbl) LLABEL(lbl): .quad .L##lbl
TOCENTRY(caml_apply2)
TOCENTRY(caml_apply3)
TOCENTRY(caml_program)
TOCENTRY(caml_exn_Stack_overflow)
TOCENTRY(caml_raise_unhandled_effect)
TOCENTRY(caml_raise_continuation_already_resumed)
TOCENTRY(caml_array_bound_error_asm)
TOCENTRYLABEL(fiber_exn_handler)
TOCENTRYLABEL(trap_handler)
NONEXECSTACK_NOTE
|