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
|
AREA Trampoline, CODE
EXPORT ctiTrampoline
EXPORT ctiVMThrowTrampoline
EXPORT ctiOpThrowNotCaught
ctiTrampoline PROC
stmdb sp!, {r1-r3}
stmdb sp!, {r4-r8, lr}
sub sp, sp, #68 ; sync with PRESERVEDR4_OFFSET
mov r4, r2
mov r5, #512
; r0 contains the code
mov lr, pc
bx r0
add sp, sp, #68 ; sync with PRESERVEDR4_OFFSET
ldmia sp!, {r4-r8, lr}
add sp, sp, #12
bx lr
ctiTrampoline ENDP
ctiVMThrowTrampoline PROC
mov r0, sp
mov lr, pc
bl cti_vm_throw
ctiOpThrowNotCaught
add sp, sp, #68 ; sync with PRESERVEDR4_OFFSET
ldmia sp!, {r4-r8, lr}
add sp, sp, #12
bx lr
ctiVMThrowTrampoline ENDP
EXPORT cti_op_create_this
IMPORT JITStubThunked_op_create_this
cti_op_create_this PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_create_this
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_create_this ENDP
EXPORT cti_op_convert_this
IMPORT JITStubThunked_op_convert_this
cti_op_convert_this PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_convert_this
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_convert_this ENDP
EXPORT cti_op_convert_this_strict
IMPORT JITStubThunked_op_convert_this_strict
cti_op_convert_this_strict PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_convert_this_strict
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_convert_this_strict ENDP
EXPORT cti_op_add
IMPORT JITStubThunked_op_add
cti_op_add PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_add
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_add ENDP
EXPORT cti_op_pre_inc
IMPORT JITStubThunked_op_pre_inc
cti_op_pre_inc PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_pre_inc
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_pre_inc ENDP
EXPORT cti_timeout_check
IMPORT JITStubThunked_timeout_check
cti_timeout_check PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_timeout_check
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_timeout_check ENDP
EXPORT cti_register_file_check
IMPORT JITStubThunked_register_file_check
cti_register_file_check PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_register_file_check
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_register_file_check ENDP
EXPORT cti_op_loop_if_lesseq
IMPORT JITStubThunked_op_loop_if_lesseq
cti_op_loop_if_lesseq PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_loop_if_lesseq
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_loop_if_lesseq ENDP
EXPORT cti_op_new_object
IMPORT JITStubThunked_op_new_object
cti_op_new_object PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_new_object
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_new_object ENDP
EXPORT cti_op_put_by_id_generic
IMPORT JITStubThunked_op_put_by_id_generic
cti_op_put_by_id_generic PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id_generic
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id_generic ENDP
EXPORT cti_op_put_by_id_direct_generic
IMPORT JITStubThunked_op_put_by_id_direct_generic
cti_op_put_by_id_direct_generic PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id_direct_generic
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id_direct_generic ENDP
EXPORT cti_op_get_by_id_generic
IMPORT JITStubThunked_op_get_by_id_generic
cti_op_get_by_id_generic PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_generic
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_generic ENDP
EXPORT cti_op_put_by_id
IMPORT JITStubThunked_op_put_by_id
cti_op_put_by_id PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id ENDP
EXPORT cti_op_put_by_id_direct
IMPORT JITStubThunked_op_put_by_id_direct
cti_op_put_by_id_direct PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id_direct
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id_direct ENDP
EXPORT cti_op_put_by_id_fail
IMPORT JITStubThunked_op_put_by_id_fail
cti_op_put_by_id_fail PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id_fail
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id_fail ENDP
EXPORT cti_op_put_by_id_direct_fail
IMPORT JITStubThunked_op_put_by_id_direct_fail
cti_op_put_by_id_direct_fail PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id_direct_fail
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id_direct_fail ENDP
EXPORT cti_op_put_by_id_transition_realloc
IMPORT JITStubThunked_op_put_by_id_transition_realloc
cti_op_put_by_id_transition_realloc PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_id_transition_realloc
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_id_transition_realloc ENDP
EXPORT cti_op_get_by_id_method_check
IMPORT JITStubThunked_op_get_by_id_method_check
cti_op_get_by_id_method_check PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_method_check
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_method_check ENDP
EXPORT cti_op_get_by_id
IMPORT JITStubThunked_op_get_by_id
cti_op_get_by_id PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id ENDP
EXPORT cti_op_get_by_id_self_fail
IMPORT JITStubThunked_op_get_by_id_self_fail
cti_op_get_by_id_self_fail PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_self_fail
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_self_fail ENDP
EXPORT cti_op_get_by_id_getter_stub
IMPORT JITStubThunked_op_get_by_id_getter_stub
cti_op_get_by_id_getter_stub PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_getter_stub
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_getter_stub ENDP
EXPORT cti_op_get_by_id_custom_stub
IMPORT JITStubThunked_op_get_by_id_custom_stub
cti_op_get_by_id_custom_stub PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_custom_stub
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_custom_stub ENDP
EXPORT cti_op_get_by_id_proto_list
IMPORT JITStubThunked_op_get_by_id_proto_list
cti_op_get_by_id_proto_list PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_proto_list
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_proto_list ENDP
EXPORT cti_op_get_by_id_proto_list_full
IMPORT JITStubThunked_op_get_by_id_proto_list_full
cti_op_get_by_id_proto_list_full PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_proto_list_full
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_proto_list_full ENDP
EXPORT cti_op_get_by_id_proto_fail
IMPORT JITStubThunked_op_get_by_id_proto_fail
cti_op_get_by_id_proto_fail PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_proto_fail
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_proto_fail ENDP
EXPORT cti_op_get_by_id_array_fail
IMPORT JITStubThunked_op_get_by_id_array_fail
cti_op_get_by_id_array_fail PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_array_fail
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_array_fail ENDP
EXPORT cti_op_get_by_id_string_fail
IMPORT JITStubThunked_op_get_by_id_string_fail
cti_op_get_by_id_string_fail PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_id_string_fail
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_id_string_fail ENDP
EXPORT cti_op_check_has_instance
IMPORT JITStubThunked_op_check_has_instance
cti_op_check_has_instance PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_check_has_instance
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_check_has_instance ENDP
EXPORT cti_op_instanceof
IMPORT JITStubThunked_op_instanceof
cti_op_instanceof PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_instanceof
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_instanceof ENDP
EXPORT cti_op_del_by_id
IMPORT JITStubThunked_op_del_by_id
cti_op_del_by_id PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_del_by_id
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_del_by_id ENDP
EXPORT cti_op_mul
IMPORT JITStubThunked_op_mul
cti_op_mul PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_mul
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_mul ENDP
EXPORT cti_op_new_func
IMPORT JITStubThunked_op_new_func
cti_op_new_func PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_new_func
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_new_func ENDP
EXPORT cti_op_call_jitCompile
IMPORT JITStubThunked_op_call_jitCompile
cti_op_call_jitCompile PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_call_jitCompile
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_call_jitCompile ENDP
EXPORT cti_op_construct_jitCompile
IMPORT JITStubThunked_op_construct_jitCompile
cti_op_construct_jitCompile PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_construct_jitCompile
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_construct_jitCompile ENDP
EXPORT cti_op_call_arityCheck
IMPORT JITStubThunked_op_call_arityCheck
cti_op_call_arityCheck PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_call_arityCheck
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_call_arityCheck ENDP
EXPORT cti_op_construct_arityCheck
IMPORT JITStubThunked_op_construct_arityCheck
cti_op_construct_arityCheck PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_construct_arityCheck
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_construct_arityCheck ENDP
EXPORT cti_vm_lazyLinkCall
IMPORT JITStubThunked_vm_lazyLinkCall
cti_vm_lazyLinkCall PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_vm_lazyLinkCall
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_vm_lazyLinkCall ENDP
EXPORT cti_vm_lazyLinkConstruct
IMPORT JITStubThunked_vm_lazyLinkConstruct
cti_vm_lazyLinkConstruct PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_vm_lazyLinkConstruct
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_vm_lazyLinkConstruct ENDP
EXPORT cti_op_push_activation
IMPORT JITStubThunked_op_push_activation
cti_op_push_activation PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_push_activation
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_push_activation ENDP
EXPORT cti_op_call_NotJSFunction
IMPORT JITStubThunked_op_call_NotJSFunction
cti_op_call_NotJSFunction PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_call_NotJSFunction
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_call_NotJSFunction ENDP
EXPORT cti_op_create_arguments
IMPORT JITStubThunked_op_create_arguments
cti_op_create_arguments PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_create_arguments
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_create_arguments ENDP
EXPORT cti_op_create_arguments_no_params
IMPORT JITStubThunked_op_create_arguments_no_params
cti_op_create_arguments_no_params PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_create_arguments_no_params
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_create_arguments_no_params ENDP
EXPORT cti_op_tear_off_activation
IMPORT JITStubThunked_op_tear_off_activation
cti_op_tear_off_activation PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_tear_off_activation
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_tear_off_activation ENDP
EXPORT cti_op_tear_off_arguments
IMPORT JITStubThunked_op_tear_off_arguments
cti_op_tear_off_arguments PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_tear_off_arguments
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_tear_off_arguments ENDP
EXPORT cti_op_profile_will_call
IMPORT JITStubThunked_op_profile_will_call
cti_op_profile_will_call PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_profile_will_call
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_profile_will_call ENDP
EXPORT cti_op_profile_did_call
IMPORT JITStubThunked_op_profile_did_call
cti_op_profile_did_call PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_profile_did_call
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_profile_did_call ENDP
EXPORT cti_op_new_array
IMPORT JITStubThunked_op_new_array
cti_op_new_array PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_new_array
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_new_array ENDP
EXPORT cti_op_resolve
IMPORT JITStubThunked_op_resolve
cti_op_resolve PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_resolve
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_resolve ENDP
EXPORT cti_op_construct_NotJSConstruct
IMPORT JITStubThunked_op_construct_NotJSConstruct
cti_op_construct_NotJSConstruct PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_construct_NotJSConstruct
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_construct_NotJSConstruct ENDP
EXPORT cti_op_get_by_val
IMPORT JITStubThunked_op_get_by_val
cti_op_get_by_val PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_val
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_val ENDP
EXPORT cti_op_get_by_val_string
IMPORT JITStubThunked_op_get_by_val_string
cti_op_get_by_val_string PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_val_string
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_val_string ENDP
EXPORT cti_op_get_by_val_byte_array
IMPORT JITStubThunked_op_get_by_val_byte_array
cti_op_get_by_val_byte_array PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_by_val_byte_array
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_by_val_byte_array ENDP
EXPORT cti_op_sub
IMPORT JITStubThunked_op_sub
cti_op_sub PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_sub
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_sub ENDP
EXPORT cti_op_put_by_val
IMPORT JITStubThunked_op_put_by_val
cti_op_put_by_val PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_val
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_val ENDP
EXPORT cti_op_put_by_val_byte_array
IMPORT JITStubThunked_op_put_by_val_byte_array
cti_op_put_by_val_byte_array PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_val_byte_array
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_val_byte_array ENDP
EXPORT cti_op_lesseq
IMPORT JITStubThunked_op_lesseq
cti_op_lesseq PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_lesseq
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_lesseq ENDP
EXPORT cti_op_load_varargs
IMPORT JITStubThunked_op_load_varargs
cti_op_load_varargs PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_load_varargs
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_load_varargs ENDP
EXPORT cti_op_negate
IMPORT JITStubThunked_op_negate
cti_op_negate PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_negate
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_negate ENDP
EXPORT cti_op_resolve_base
IMPORT JITStubThunked_op_resolve_base
cti_op_resolve_base PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_resolve_base
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_resolve_base ENDP
EXPORT cti_op_resolve_base_strict_put
IMPORT JITStubThunked_op_resolve_base_strict_put
cti_op_resolve_base_strict_put PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_resolve_base_strict_put
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_resolve_base_strict_put ENDP
EXPORT cti_op_ensure_property_exists
IMPORT JITStubThunked_op_ensure_property_exists
cti_op_ensure_property_exists PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_ensure_property_exists
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_ensure_property_exists ENDP
EXPORT cti_op_resolve_skip
IMPORT JITStubThunked_op_resolve_skip
cti_op_resolve_skip PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_resolve_skip
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_resolve_skip ENDP
EXPORT cti_op_resolve_global
IMPORT JITStubThunked_op_resolve_global
cti_op_resolve_global PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_resolve_global
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_resolve_global ENDP
EXPORT cti_op_div
IMPORT JITStubThunked_op_div
cti_op_div PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_div
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_div ENDP
EXPORT cti_op_pre_dec
IMPORT JITStubThunked_op_pre_dec
cti_op_pre_dec PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_pre_dec
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_pre_dec ENDP
EXPORT cti_op_jless
IMPORT JITStubThunked_op_jless
cti_op_jless PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_jless
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_jless ENDP
EXPORT cti_op_jlesseq
IMPORT JITStubThunked_op_jlesseq
cti_op_jlesseq PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_jlesseq
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_jlesseq ENDP
EXPORT cti_op_not
IMPORT JITStubThunked_op_not
cti_op_not PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_not
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_not ENDP
EXPORT cti_op_jtrue
IMPORT JITStubThunked_op_jtrue
cti_op_jtrue PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_jtrue
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_jtrue ENDP
EXPORT cti_op_post_inc
IMPORT JITStubThunked_op_post_inc
cti_op_post_inc PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_post_inc
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_post_inc ENDP
EXPORT cti_op_eq
IMPORT JITStubThunked_op_eq
cti_op_eq PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_eq
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_eq ENDP
EXPORT cti_op_eq_strings
IMPORT JITStubThunked_op_eq_strings
cti_op_eq_strings PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_eq_strings
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_eq_strings ENDP
EXPORT cti_op_lshift
IMPORT JITStubThunked_op_lshift
cti_op_lshift PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_lshift
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_lshift ENDP
EXPORT cti_op_bitand
IMPORT JITStubThunked_op_bitand
cti_op_bitand PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_bitand
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_bitand ENDP
EXPORT cti_op_rshift
IMPORT JITStubThunked_op_rshift
cti_op_rshift PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_rshift
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_rshift ENDP
EXPORT cti_op_bitnot
IMPORT JITStubThunked_op_bitnot
cti_op_bitnot PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_bitnot
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_bitnot ENDP
EXPORT cti_op_resolve_with_base
IMPORT JITStubThunked_op_resolve_with_base
cti_op_resolve_with_base PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_resolve_with_base
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_resolve_with_base ENDP
EXPORT cti_op_new_func_exp
IMPORT JITStubThunked_op_new_func_exp
cti_op_new_func_exp PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_new_func_exp
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_new_func_exp ENDP
EXPORT cti_op_mod
IMPORT JITStubThunked_op_mod
cti_op_mod PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_mod
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_mod ENDP
EXPORT cti_op_less
IMPORT JITStubThunked_op_less
cti_op_less PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_less
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_less ENDP
EXPORT cti_op_post_dec
IMPORT JITStubThunked_op_post_dec
cti_op_post_dec PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_post_dec
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_post_dec ENDP
EXPORT cti_op_urshift
IMPORT JITStubThunked_op_urshift
cti_op_urshift PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_urshift
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_urshift ENDP
EXPORT cti_op_bitxor
IMPORT JITStubThunked_op_bitxor
cti_op_bitxor PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_bitxor
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_bitxor ENDP
EXPORT cti_op_new_regexp
IMPORT JITStubThunked_op_new_regexp
cti_op_new_regexp PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_new_regexp
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_new_regexp ENDP
EXPORT cti_op_bitor
IMPORT JITStubThunked_op_bitor
cti_op_bitor PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_bitor
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_bitor ENDP
EXPORT cti_op_call_eval
IMPORT JITStubThunked_op_call_eval
cti_op_call_eval PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_call_eval
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_call_eval ENDP
EXPORT cti_op_throw
IMPORT JITStubThunked_op_throw
cti_op_throw PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_throw
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_throw ENDP
EXPORT cti_op_get_pnames
IMPORT JITStubThunked_op_get_pnames
cti_op_get_pnames PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_get_pnames
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_get_pnames ENDP
EXPORT cti_has_property
IMPORT JITStubThunked_has_property
cti_has_property PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_has_property
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_has_property ENDP
EXPORT cti_op_push_scope
IMPORT JITStubThunked_op_push_scope
cti_op_push_scope PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_push_scope
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_push_scope ENDP
EXPORT cti_op_pop_scope
IMPORT JITStubThunked_op_pop_scope
cti_op_pop_scope PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_pop_scope
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_pop_scope ENDP
EXPORT cti_op_typeof
IMPORT JITStubThunked_op_typeof
cti_op_typeof PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_typeof
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_typeof ENDP
EXPORT cti_op_is_undefined
IMPORT JITStubThunked_op_is_undefined
cti_op_is_undefined PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_is_undefined
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_is_undefined ENDP
EXPORT cti_op_is_boolean
IMPORT JITStubThunked_op_is_boolean
cti_op_is_boolean PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_is_boolean
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_is_boolean ENDP
EXPORT cti_op_is_number
IMPORT JITStubThunked_op_is_number
cti_op_is_number PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_is_number
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_is_number ENDP
EXPORT cti_op_is_string
IMPORT JITStubThunked_op_is_string
cti_op_is_string PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_is_string
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_is_string ENDP
EXPORT cti_op_is_object
IMPORT JITStubThunked_op_is_object
cti_op_is_object PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_is_object
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_is_object ENDP
EXPORT cti_op_is_function
IMPORT JITStubThunked_op_is_function
cti_op_is_function PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_is_function
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_is_function ENDP
EXPORT cti_op_stricteq
IMPORT JITStubThunked_op_stricteq
cti_op_stricteq PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_stricteq
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_stricteq ENDP
EXPORT cti_op_to_primitive
IMPORT JITStubThunked_op_to_primitive
cti_op_to_primitive PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_to_primitive
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_to_primitive ENDP
EXPORT cti_op_strcat
IMPORT JITStubThunked_op_strcat
cti_op_strcat PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_strcat
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_strcat ENDP
EXPORT cti_op_nstricteq
IMPORT JITStubThunked_op_nstricteq
cti_op_nstricteq PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_nstricteq
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_nstricteq ENDP
EXPORT cti_op_to_jsnumber
IMPORT JITStubThunked_op_to_jsnumber
cti_op_to_jsnumber PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_to_jsnumber
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_to_jsnumber ENDP
EXPORT cti_op_in
IMPORT JITStubThunked_op_in
cti_op_in PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_in
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_in ENDP
EXPORT cti_op_push_new_scope
IMPORT JITStubThunked_op_push_new_scope
cti_op_push_new_scope PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_push_new_scope
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_push_new_scope ENDP
EXPORT cti_op_jmp_scopes
IMPORT JITStubThunked_op_jmp_scopes
cti_op_jmp_scopes PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_jmp_scopes
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_jmp_scopes ENDP
EXPORT cti_op_put_by_index
IMPORT JITStubThunked_op_put_by_index
cti_op_put_by_index PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_by_index
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_by_index ENDP
EXPORT cti_op_switch_imm
IMPORT JITStubThunked_op_switch_imm
cti_op_switch_imm PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_switch_imm
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_switch_imm ENDP
EXPORT cti_op_switch_char
IMPORT JITStubThunked_op_switch_char
cti_op_switch_char PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_switch_char
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_switch_char ENDP
EXPORT cti_op_switch_string
IMPORT JITStubThunked_op_switch_string
cti_op_switch_string PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_switch_string
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_switch_string ENDP
EXPORT cti_op_del_by_val
IMPORT JITStubThunked_op_del_by_val
cti_op_del_by_val PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_del_by_val
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_del_by_val ENDP
EXPORT cti_op_put_getter
IMPORT JITStubThunked_op_put_getter
cti_op_put_getter PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_getter
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_getter ENDP
EXPORT cti_op_put_setter
IMPORT JITStubThunked_op_put_setter
cti_op_put_setter PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_put_setter
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_put_setter ENDP
EXPORT cti_op_throw_reference_error
IMPORT JITStubThunked_op_throw_reference_error
cti_op_throw_reference_error PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_throw_reference_error
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_throw_reference_error ENDP
EXPORT cti_op_debug
IMPORT JITStubThunked_op_debug
cti_op_debug PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_op_debug
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_op_debug ENDP
EXPORT cti_vm_throw
IMPORT JITStubThunked_vm_throw
cti_vm_throw PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_vm_throw
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_vm_throw ENDP
EXPORT cti_to_object
IMPORT JITStubThunked_to_object
cti_to_object PROC
str lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bl JITStubThunked_to_object
ldr lr, [sp, #64] ; sync with THUNK_RETURN_ADDRESS_OFFSET
bx lr
cti_to_object ENDP
END
|