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
|
/*
* Copyright (C) 2011-2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "MacroAssembler.h"
#include <array>
#include <wtf/FunctionTraits.h>
#include <wtf/MathExtras.h>
#include <wtf/PrintStream.h>
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
namespace JSC {
enum NoResultTag { NoResult };
// We use the same conventions in the baseline JIT as in the LLint. If you
// change mappings in the GPRInfo, you should change them in the offlineasm
// compiler adequately. The register naming conventions are described at the
// top of the LowLevelInterpreter.asm file.
typedef MacroAssembler::RegisterID GPRReg;
static constexpr GPRReg InvalidGPRReg { GPRReg::InvalidGPRReg };
#if ENABLE(ASSEMBLER)
#if USE(JSVALUE64)
class JSValueRegs {
public:
constexpr JSValueRegs() = default;
constexpr explicit JSValueRegs(GPRReg gpr)
: m_gpr(gpr)
{
}
static constexpr JSValueRegs payloadOnly(GPRReg gpr)
{
return JSValueRegs(gpr);
}
static constexpr JSValueRegs withTwoAvailableRegs(GPRReg gpr, GPRReg)
{
return JSValueRegs(gpr);
}
constexpr bool operator!() const { return m_gpr == InvalidGPRReg; }
explicit constexpr operator bool() const { return m_gpr != InvalidGPRReg; }
friend constexpr bool operator==(const JSValueRegs&, const JSValueRegs&) = default;
constexpr GPRReg gpr() const { return m_gpr; }
constexpr GPRReg tagGPR() const { return InvalidGPRReg; }
constexpr GPRReg payloadGPR() const { return m_gpr; }
constexpr bool uses(GPRReg gpr) const
{
if (gpr == InvalidGPRReg)
return false;
return m_gpr == gpr;
}
constexpr bool overlaps(JSValueRegs other) const { return uses(other.payloadGPR()); }
void dump(PrintStream&) const;
// Intentionally public to make JSValueRegs usable for template parameters.
GPRReg m_gpr { InvalidGPRReg };
};
class JSValueSource {
public:
JSValueSource()
: m_offset(notAddress())
, m_base(InvalidGPRReg)
{
}
JSValueSource(JSValueRegs regs)
: m_offset(notAddress())
, m_base(regs.gpr())
{
}
explicit JSValueSource(GPRReg gpr)
: m_offset(notAddress())
, m_base(gpr)
{
}
JSValueSource(MacroAssembler::Address address)
: m_offset(address.offset)
, m_base(address.base)
{
ASSERT(m_offset != notAddress());
ASSERT(m_base != InvalidGPRReg);
}
static JSValueSource unboxedCell(GPRReg payloadGPR)
{
return JSValueSource(payloadGPR);
}
bool operator!() const { return m_base == InvalidGPRReg; }
explicit operator bool() const { return m_base != InvalidGPRReg; }
bool isAddress() const { return m_offset != notAddress(); }
int32_t offset() const
{
ASSERT(isAddress());
return m_offset;
}
GPRReg base() const
{
ASSERT(isAddress());
return m_base;
}
GPRReg gpr() const
{
ASSERT(!isAddress());
return m_base;
}
GPRReg payloadGPR() const { return gpr(); }
JSValueRegs regs() const
{
return JSValueRegs(gpr());
}
MacroAssembler::Address asAddress() const { return MacroAssembler::Address(base(), offset()); }
private:
static inline int32_t notAddress() { return 0x80000000; }
int32_t m_offset;
GPRReg m_base;
};
#endif // USE(JSVALUE64)
#if USE(JSVALUE32_64)
class JSValueRegs {
public:
constexpr JSValueRegs() = default;
constexpr JSValueRegs(GPRReg tagGPR, GPRReg payloadGPR)
: m_tagGPR(tagGPR)
, m_payloadGPR(payloadGPR)
{
}
static constexpr JSValueRegs withTwoAvailableRegs(GPRReg tagGPR, GPRReg payloadGPR)
{
return JSValueRegs(tagGPR, payloadGPR);
}
static constexpr JSValueRegs payloadOnly(GPRReg payloadGPR)
{
return JSValueRegs(InvalidGPRReg, payloadGPR);
}
constexpr bool operator!() const { return !static_cast<bool>(*this); }
explicit constexpr operator bool() const
{
return static_cast<GPRReg>(m_tagGPR) != InvalidGPRReg
|| static_cast<GPRReg>(m_payloadGPR) != InvalidGPRReg;
}
friend constexpr bool operator==(const JSValueRegs&, const JSValueRegs&) = default;
constexpr GPRReg tagGPR() const { return m_tagGPR; }
constexpr GPRReg payloadGPR() const { return m_payloadGPR; }
GPRReg gpr(WhichValueWord which) const
{
switch (which) {
case TagWord:
return tagGPR();
case PayloadWord:
return payloadGPR();
}
ASSERT_NOT_REACHED();
return tagGPR();
}
constexpr bool uses(GPRReg gpr) const
{
if (gpr == InvalidGPRReg)
return false;
return m_tagGPR == gpr || m_payloadGPR == gpr;
}
constexpr bool overlaps(JSValueRegs other) const
{
return uses(other.payloadGPR()) || uses(other.tagGPR());
}
JS_EXPORT_PRIVATE void dump(PrintStream&) const;
// Intentionally public to make JSValueRegs usable for template parameters.
GPRReg m_tagGPR { InvalidGPRReg };
GPRReg m_payloadGPR { InvalidGPRReg };
};
class JSValueSource {
public:
JSValueSource()
: m_offset(notAddress())
, m_baseOrTag(InvalidGPRReg)
, m_payload(InvalidGPRReg)
, m_tagType(0)
{
}
JSValueSource(JSValueRegs regs)
: m_offset(notAddress())
, m_baseOrTag(regs.tagGPR())
, m_payload(regs.payloadGPR())
, m_tagType(0)
{
}
JSValueSource(GPRReg tagGPR, GPRReg payloadGPR)
: m_offset(notAddress())
, m_baseOrTag(tagGPR)
, m_payload(payloadGPR)
, m_tagType(0)
{
}
JSValueSource(MacroAssembler::Address address)
: m_offset(address.offset)
, m_baseOrTag(address.base)
, m_payload(InvalidGPRReg)
, m_tagType(0)
{
ASSERT(m_offset != notAddress());
ASSERT(m_baseOrTag != InvalidGPRReg);
}
static JSValueSource unboxedCell(GPRReg payloadGPR)
{
JSValueSource result;
result.m_offset = notAddress();
result.m_baseOrTag = InvalidGPRReg;
result.m_payload = payloadGPR;
result.m_tagType = static_cast<int8_t>(JSValue::CellTag);
return result;
}
bool operator!() const { return !static_cast<bool>(*this); }
explicit operator bool() const
{
return m_baseOrTag != InvalidGPRReg || m_payload != InvalidGPRReg;
}
bool isAddress() const
{
ASSERT(!!*this);
return m_offset != notAddress();
}
int32_t offset() const
{
ASSERT(isAddress());
return m_offset;
}
GPRReg base() const
{
ASSERT(isAddress());
return m_baseOrTag;
}
GPRReg tagGPR() const
{
ASSERT(!isAddress() && m_baseOrTag != InvalidGPRReg);
return m_baseOrTag;
}
GPRReg payloadGPR() const
{
ASSERT(!isAddress());
return m_payload;
}
bool hasKnownTag() const
{
ASSERT(!!*this);
ASSERT(!isAddress());
return m_baseOrTag == InvalidGPRReg;
}
uint32_t tag() const
{
return static_cast<int32_t>(m_tagType);
}
JSValueRegs regs() const
{
return JSValueRegs(tagGPR(), payloadGPR());
}
MacroAssembler::Address asAddress(unsigned additionalOffset = 0) const { return MacroAssembler::Address(base(), offset() + additionalOffset); }
private:
static inline int32_t notAddress() { return 0x80000000; }
int32_t m_offset;
GPRReg m_baseOrTag;
GPRReg m_payload;
int8_t m_tagType; // Contains the low bits of the tag.
};
#endif // USE(JSVALUE32_64)
#if CPU(X86_64)
#define NUMBER_OF_ARGUMENT_REGISTERS 6u
#define NUMBER_OF_CALLEE_SAVES_REGISTERS 5u
class GPRInfo {
public:
typedef GPRReg RegisterType;
static constexpr unsigned numberOfRegisters = 10;
static constexpr unsigned numberOfArgumentRegisters = NUMBER_OF_ARGUMENT_REGISTERS;
static constexpr unsigned numberOfCalleeSaveRegisters = 5;
// These registers match the baseline JIT.
static constexpr GPRReg callFrameRegister = X86Registers::ebp;
static constexpr GPRReg numberTagRegister = X86Registers::r14;
static constexpr GPRReg notCellMaskRegister = X86Registers::r15;
static constexpr GPRReg jitDataRegister = X86Registers::r13;
static constexpr GPRReg metadataTableRegister = X86Registers::r12;
// Temporary registers.
static constexpr GPRReg regT0 = X86Registers::eax;
static constexpr GPRReg regT1 = X86Registers::esi;
static constexpr GPRReg regT2 = X86Registers::edx;
static constexpr GPRReg regT3 = X86Registers::ecx;
static constexpr GPRReg regT4 = X86Registers::r8;
static constexpr GPRReg regT5 = X86Registers::r10;
static constexpr GPRReg regT6 = X86Registers::edi;
static constexpr GPRReg regT7 = X86Registers::r9;
static constexpr GPRReg regCS0 = X86Registers::ebx;
static constexpr GPRReg regCS1 = X86Registers::r12; // metadataTable in LLInt/Baseline
static constexpr GPRReg regCS2 = X86Registers::r13; // jitDataRegister
static constexpr GPRReg regCS3 = X86Registers::r14; // numberTagRegister
static constexpr GPRReg regCS4 = X86Registers::r15; // notCellMaskRegister
static constexpr GPRReg regWS0 = X86Registers::eax;
static constexpr GPRReg regWS1 = X86Registers::r10;
static constexpr GPRReg regWA0 = X86Registers::edi;
static constexpr GPRReg regWA1 = X86Registers::esi;
static constexpr GPRReg regWA2 = X86Registers::edx;
static constexpr GPRReg regWA3 = X86Registers::ecx;
static constexpr GPRReg regWA4 = X86Registers::r8;
static constexpr GPRReg regWA5 = X86Registers::r9;
// These constants provide the names for the general purpose argument & return value registers.
static constexpr GPRReg argumentGPR0 = X86Registers::edi; // regT6
static constexpr GPRReg argumentGPR1 = X86Registers::esi; // regT1
static constexpr GPRReg argumentGPR2 = X86Registers::edx; // regT2
static constexpr GPRReg argumentGPR3 = X86Registers::ecx; // regT3
static constexpr GPRReg argumentGPR4 = X86Registers::r8; // regT4
static constexpr GPRReg argumentGPR5 = X86Registers::r9; // regT7
static constexpr GPRReg nonArgGPR0 = X86Registers::r10; // regT5
static constexpr GPRReg nonArgGPR1 = X86Registers::eax; // regT0
static constexpr GPRReg returnValueGPR = X86Registers::eax; // regT0
static constexpr GPRReg returnValueGPR2 = X86Registers::edx; // regT2
static constexpr GPRReg nonPreservedNonReturnGPR = X86Registers::r10; // regT5
static constexpr GPRReg nonPreservedNonArgumentGPR0 = X86Registers::r10; // regT5
static constexpr GPRReg nonPreservedNonArgumentGPR1 = X86Registers::eax;
static constexpr GPRReg handlerGPR = GPRInfo::nonPreservedNonArgumentGPR1;
static constexpr GPRReg wasmScratchGPR0 = X86Registers::eax;
static constexpr GPRReg wasmScratchGPR1 = X86Registers::r10;
static constexpr GPRReg wasmContextInstancePointer = regCS0;
static constexpr GPRReg wasmBaseMemoryPointer = regCS3;
static constexpr GPRReg wasmBoundsCheckingSizeRegister = regCS4;
// FIXME: I believe that all uses of this are dead in the sense that it just causes the scratch
// register allocator to select a different register and potentially spill things. It would be better
// if we instead had a more explicit way of saying that we don't have a scratch register.
static constexpr GPRReg patchpointScratchRegister = MacroAssembler::s_scratchRegister;
static constexpr GPRReg toRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfRegisters);
constexpr GPRReg registerForIndex[numberOfRegisters] = { regT0, regT1, regT2, regT3, regT4, regT5, regT6, regT7, regCS0, regCS1 };
return registerForIndex[index];
}
static constexpr GPRReg toArgumentRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfArgumentRegisters);
constexpr GPRReg registerForIndex[numberOfArgumentRegisters] = { argumentGPR0, argumentGPR1, argumentGPR2, argumentGPR3, argumentGPR4, argumentGPR5 };
return registerForIndex[index];
}
static unsigned toIndex(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
ASSERT(static_cast<int>(reg) < 16);
static const unsigned indexForRegister[16] = { 0, 3, 2, 8, InvalidIndex, InvalidIndex, 1, 6, 4, 7, 5, InvalidIndex, 9, InvalidIndex, InvalidIndex, InvalidIndex };
return indexForRegister[reg];
}
static unsigned toArgumentIndex(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
ASSERT(static_cast<int>(reg) < 16);
static const unsigned indexForRegister[16] = { InvalidIndex, 3, 2, InvalidIndex, InvalidIndex, InvalidIndex, 1, 0, 4, 5, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex };
return indexForRegister[reg];
}
static ASCIILiteral debugName(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
return MacroAssembler::gprName(reg);
}
static const std::array<GPRReg, 3>& reservedRegisters()
{
static const std::array<GPRReg, 3> reservedRegisters { {
MacroAssembler::s_scratchRegister,
numberTagRegister,
notCellMaskRegister,
} };
return reservedRegisters;
}
static constexpr unsigned InvalidIndex = 0xffffffff;
};
static_assert(GPRInfo::regT0 == X86Registers::eax);
static_assert(GPRInfo::returnValueGPR2 == X86Registers::edx);
#endif // CPU(X86_64)
#if CPU(ARM_THUMB2)
#define NUMBER_OF_ARGUMENT_REGISTERS 4u
// Callee Saves includes r10, r11, and FP registers d8..d15, which are twice the size of a GPR
#define NUMBER_OF_CALLEE_SAVES_REGISTERS 18u
class GPRInfo {
public:
typedef GPRReg RegisterType;
static constexpr unsigned numberOfRegisters = 10;
static constexpr unsigned numberOfArgumentRegisters = NUMBER_OF_ARGUMENT_REGISTERS;
// Temporary registers.
static constexpr GPRReg regT0 = ARMRegisters::r0;
static constexpr GPRReg regT1 = ARMRegisters::r1;
static constexpr GPRReg regT2 = ARMRegisters::r2;
static constexpr GPRReg regT3 = ARMRegisters::r3;
static constexpr GPRReg regT4 = ARMRegisters::r4;
static constexpr GPRReg regT5 = ARMRegisters::r5;
static constexpr GPRReg regT6 = ARMRegisters::r8;
static constexpr GPRReg regT7 = ARMRegisters::r9;
static constexpr GPRReg regCS0 = ARMRegisters::r10; // metadataTable in LLInt/Baseline
static constexpr GPRReg regCS1 = ARMRegisters::r11; // jitDataRegister
// These registers match the baseline JIT.
static constexpr GPRReg callFrameRegister = ARMRegisters::fp;
static constexpr GPRReg jitDataRegister = regCS1;
static constexpr GPRReg metadataTableRegister = regCS0;
static constexpr GPRReg regWS0 = ARMRegisters::r5;
static constexpr GPRReg regWS1 = ARMRegisters::r8;
static constexpr GPRReg regWA0 = ARMRegisters::r0;
static constexpr GPRReg regWA1 = ARMRegisters::r1;
static constexpr GPRReg regWA2 = ARMRegisters::r2;
static constexpr GPRReg regWA3 = ARMRegisters::r3;
// These constants provide the names for the general purpose argument & return value registers.
static constexpr GPRReg argumentGPR0 = ARMRegisters::r0; // regT0
static constexpr GPRReg argumentGPR1 = ARMRegisters::r1; // regT1
static constexpr GPRReg argumentGPR2 = ARMRegisters::r2; // regT2
static constexpr GPRReg argumentGPR3 = ARMRegisters::r3; // regT3
static constexpr GPRReg nonArgGPR0 = ARMRegisters::r4; // regT4
static constexpr GPRReg returnValueGPR = ARMRegisters::r0; // regT0
static constexpr GPRReg returnValueGPR2 = ARMRegisters::r1; // regT1
static constexpr GPRReg nonPreservedNonReturnGPR = ARMRegisters::r5;
static constexpr GPRReg nonPreservedNonArgumentGPR0 = ARMRegisters::r5;
static constexpr GPRReg nonPreservedNonArgumentGPR1 = ARMRegisters::r4;
static constexpr GPRReg nonPreservedNonArgumentGPR2 = ARMRegisters::r9;
static constexpr GPRReg handlerGPR = GPRInfo::nonPreservedNonArgumentGPR2;
static constexpr GPRReg wasmScratchGPR0 = regT5;
static constexpr GPRReg wasmScratchGPR1 = regT6;
static constexpr GPRReg wasmContextInstancePointer = regCS0;
static constexpr GPRReg wasmBaseMemoryPointer = InvalidGPRReg;
static constexpr GPRReg wasmBoundsCheckingSizeRegister = InvalidGPRReg;
static constexpr GPRReg toRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfRegisters);
constexpr GPRReg registerForIndex[numberOfRegisters] = { regT0, regT1, regT2, regT3, regT4, regT5, regT6, regT7, regCS0, regCS1 };
return registerForIndex[index];
}
static constexpr GPRReg toArgumentRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfArgumentRegisters);
constexpr GPRReg registerForIndex[numberOfArgumentRegisters] = { argumentGPR0, argumentGPR1, argumentGPR2, argumentGPR3 };
return registerForIndex[index];
}
static unsigned toIndex(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
ASSERT(static_cast<int>(reg) < 16);
static const unsigned indexForRegister[16] =
{ 0, 1, 2, 3, 4, 5, InvalidIndex, InvalidIndex, 6, 7, 8, 9, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex };
unsigned result = indexForRegister[reg];
return result;
}
static unsigned toArgumentIndex(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
ASSERT(static_cast<int>(reg) < 16);
if (reg > argumentGPR3)
return InvalidIndex;
return static_cast<unsigned>(reg);
}
static ASCIILiteral debugName(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
return MacroAssembler::gprName(reg);
}
static constexpr unsigned InvalidIndex = 0xffffffff;
};
#endif // CPU(ARM)
#if CPU(ARM64)
#define NUMBER_OF_ARGUMENT_REGISTERS 8u
// Callee Saves includes x19..x28 and FP registers q8..q15
#define NUMBER_OF_CALLEE_SAVES_REGISTERS 18u
class GPRInfo {
public:
typedef GPRReg RegisterType;
static constexpr unsigned numberOfRegisters = 16;
static constexpr unsigned numberOfArgumentRegisters = NUMBER_OF_ARGUMENT_REGISTERS;
static constexpr unsigned numberOfCalleeSaveRegisters = 10;
// These registers match the baseline JIT.
static constexpr GPRReg callFrameRegister = ARM64Registers::fp;
static constexpr GPRReg numberTagRegister = ARM64Registers::x27;
static constexpr GPRReg notCellMaskRegister = ARM64Registers::x28;
static constexpr GPRReg jitDataRegister = ARM64Registers::x26;
static constexpr GPRReg metadataTableRegister = ARM64Registers::x25;
static constexpr GPRReg dataTempRegister = MacroAssembler::dataTempRegister;
static constexpr GPRReg memoryTempRegister = MacroAssembler::memoryTempRegister;
// Temporary registers.
static constexpr GPRReg regT0 = ARM64Registers::x0;
static constexpr GPRReg regT1 = ARM64Registers::x1;
static constexpr GPRReg regT2 = ARM64Registers::x2;
static constexpr GPRReg regT3 = ARM64Registers::x3;
static constexpr GPRReg regT4 = ARM64Registers::x4;
static constexpr GPRReg regT5 = ARM64Registers::x5;
static constexpr GPRReg regT6 = ARM64Registers::x6;
static constexpr GPRReg regT7 = ARM64Registers::x7;
static constexpr GPRReg regT8 = ARM64Registers::x8;
static constexpr GPRReg regT9 = ARM64Registers::x9;
static constexpr GPRReg regT10 = ARM64Registers::x10;
static constexpr GPRReg regT11 = ARM64Registers::x11;
static constexpr GPRReg regT12 = ARM64Registers::x12;
static constexpr GPRReg regT13 = ARM64Registers::x13;
static constexpr GPRReg regT14 = ARM64Registers::x14;
static constexpr GPRReg regT15 = ARM64Registers::x15;
static constexpr GPRReg regCS0 = ARM64Registers::x19; // Used by FTL only
static constexpr GPRReg regCS1 = ARM64Registers::x20; // Used by FTL only
static constexpr GPRReg regCS2 = ARM64Registers::x21; // Used by FTL only
static constexpr GPRReg regCS3 = ARM64Registers::x22; // Used by FTL only
static constexpr GPRReg regCS4 = ARM64Registers::x23; // Used by FTL only
static constexpr GPRReg regCS5 = ARM64Registers::x24; // Used by FTL only
static constexpr GPRReg regCS6 = ARM64Registers::x25; // metadataTable in LLInt/Baseline
static constexpr GPRReg regCS7 = ARM64Registers::x26; // constants
static constexpr GPRReg regCS8 = ARM64Registers::x27; // numberTag
static constexpr GPRReg regCS9 = ARM64Registers::x28; // notCellMask
// These constants provide the names for the general purpose argument & return value registers.
static constexpr GPRReg argumentGPR0 = ARM64Registers::x0; // regT0
static constexpr GPRReg argumentGPR1 = ARM64Registers::x1; // regT1
static constexpr GPRReg argumentGPR2 = ARM64Registers::x2; // regT2
static constexpr GPRReg argumentGPR3 = ARM64Registers::x3; // regT3
static constexpr GPRReg argumentGPR4 = ARM64Registers::x4; // regT4
static constexpr GPRReg argumentGPR5 = ARM64Registers::x5; // regT5
static constexpr GPRReg argumentGPR6 = ARM64Registers::x6; // regT6
static constexpr GPRReg argumentGPR7 = ARM64Registers::x7; // regT7
static constexpr GPRReg nonArgGPR0 = ARM64Registers::x8; // regT8
static constexpr GPRReg nonArgGPR1 = ARM64Registers::x9; // regT9
static constexpr GPRReg returnValueGPR = ARM64Registers::x0; // regT0
static constexpr GPRReg returnValueGPR2 = ARM64Registers::x1; // regT1
static constexpr GPRReg nonPreservedNonReturnGPR = ARM64Registers::x2;
static constexpr GPRReg nonPreservedNonArgumentGPR0 = ARM64Registers::x8;
static constexpr GPRReg nonPreservedNonArgumentGPR1 = ARM64Registers::x9;
static constexpr GPRReg handlerGPR = GPRInfo::nonPreservedNonArgumentGPR1;
static constexpr GPRReg patchpointScratchRegister = ARM64Registers::ip0;
static constexpr GPRReg wasmScratchGPR0 = ARM64Registers::x9;
static constexpr GPRReg wasmScratchGPR1 = ARM64Registers::x10;
static constexpr GPRReg wasmScratchGPR2 = ARM64Registers::x11;
static constexpr GPRReg wasmScratchGPR3 = ARM64Registers::x12;
static constexpr GPRReg wasmContextInstancePointer = regCS0;
static constexpr GPRReg wasmBaseMemoryPointer = regCS3;
static constexpr GPRReg wasmBoundsCheckingSizeRegister = regCS4;
static constexpr GPRReg regWS0 = ARM64Registers::x9;
static constexpr GPRReg regWS1 = ARM64Registers::x10;
static constexpr GPRReg regWA0 = ARM64Registers::x0;
static constexpr GPRReg regWA1 = ARM64Registers::x1;
static constexpr GPRReg regWA2 = ARM64Registers::x2;
static constexpr GPRReg regWA3 = ARM64Registers::x3;
static constexpr GPRReg regWA4 = ARM64Registers::x4;
static constexpr GPRReg regWA5 = ARM64Registers::x5;
static constexpr GPRReg regWA6 = ARM64Registers::x6;
static constexpr GPRReg regWA7 = ARM64Registers::x7;
// GPRReg mapping is direct, the machine register numbers can
// be used directly as indices into the GPR RegisterBank.
static_assert(ARM64Registers::q0 == 0);
static_assert(ARM64Registers::q1 == 1);
static_assert(ARM64Registers::q2 == 2);
static_assert(ARM64Registers::q3 == 3);
static_assert(ARM64Registers::q4 == 4);
static_assert(ARM64Registers::q5 == 5);
static_assert(ARM64Registers::q6 == 6);
static_assert(ARM64Registers::q7 == 7);
static_assert(ARM64Registers::q8 == 8);
static_assert(ARM64Registers::q9 == 9);
static_assert(ARM64Registers::q10 == 10);
static_assert(ARM64Registers::q11 == 11);
static_assert(ARM64Registers::q12 == 12);
static_assert(ARM64Registers::q13 == 13);
static_assert(ARM64Registers::q14 == 14);
static_assert(ARM64Registers::q15 == 15);
static constexpr GPRReg toRegister(unsigned index)
{
return static_cast<GPRReg>(index);
}
static unsigned toIndex(GPRReg reg)
{
if (reg > regT15)
return InvalidIndex;
return static_cast<unsigned>(reg);
}
static constexpr GPRReg toArgumentRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfArgumentRegisters);
return toRegister(index);
}
static unsigned toArgumentIndex(GPRReg reg)
{
if (reg > argumentGPR7)
return InvalidIndex;
return static_cast<unsigned>(reg);
}
static ASCIILiteral debugName(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
return MacroAssembler::gprName(reg);
}
static const std::array<GPRReg, 4>& reservedRegisters()
{
static const std::array<GPRReg, 4> reservedRegisters { {
dataTempRegister,
memoryTempRegister,
numberTagRegister,
notCellMaskRegister,
} };
return reservedRegisters;
}
static constexpr unsigned InvalidIndex = 0xffffffff;
};
#endif // CPU(ARM64)
#if CPU(RISCV64)
#define NUMBER_OF_ARGUMENT_REGISTERS 8u
#define NUMBER_OF_CALLEE_SAVES_REGISTERS 23u
class GPRInfo {
public:
typedef GPRReg RegisterType;
static constexpr unsigned numberOfRegisters = 13;
static constexpr unsigned numberOfArgumentRegisters = NUMBER_OF_ARGUMENT_REGISTERS;
static constexpr GPRReg callFrameRegister = RISCV64Registers::fp;
static constexpr GPRReg numberTagRegister = RISCV64Registers::x25;
static constexpr GPRReg notCellMaskRegister = RISCV64Registers::x26;
static constexpr GPRReg jitDataRegister = RISCV64Registers::x24;
static constexpr GPRReg metadataTableRegister = RISCV64Registers::x23;
static constexpr GPRReg regT0 = RISCV64Registers::x10;
static constexpr GPRReg regT1 = RISCV64Registers::x11;
static constexpr GPRReg regT2 = RISCV64Registers::x12;
static constexpr GPRReg regT3 = RISCV64Registers::x13;
static constexpr GPRReg regT4 = RISCV64Registers::x14;
static constexpr GPRReg regT5 = RISCV64Registers::x15;
static constexpr GPRReg regT6 = RISCV64Registers::x16;
static constexpr GPRReg regT7 = RISCV64Registers::x17;
static constexpr GPRReg regT8 = RISCV64Registers::x5;
static constexpr GPRReg regT9 = RISCV64Registers::x6;
static constexpr GPRReg regT10 = RISCV64Registers::x7;
static constexpr GPRReg regT11 = RISCV64Registers::x28;
static constexpr GPRReg regT12 = RISCV64Registers::x29;
static constexpr GPRReg regCS0 = RISCV64Registers::x9;
static constexpr GPRReg regCS1 = RISCV64Registers::x18;
static constexpr GPRReg regCS2 = RISCV64Registers::x19;
static constexpr GPRReg regCS3 = RISCV64Registers::x20;
static constexpr GPRReg regCS4 = RISCV64Registers::x21;
static constexpr GPRReg regCS5 = RISCV64Registers::x22;
static constexpr GPRReg regCS6 = RISCV64Registers::x23; // metadataTable in LLInt/Baseline
static constexpr GPRReg regCS7 = RISCV64Registers::x24; // constants
static constexpr GPRReg regCS8 = RISCV64Registers::x25; // numberTag
static constexpr GPRReg regCS9 = RISCV64Registers::x26; // notCellMask
static constexpr GPRReg regCS10 = RISCV64Registers::x27;
static constexpr GPRReg argumentGPR0 = RISCV64Registers::x10; // regT0
static constexpr GPRReg argumentGPR1 = RISCV64Registers::x11; // regT1
static constexpr GPRReg argumentGPR2 = RISCV64Registers::x12; // regT2
static constexpr GPRReg argumentGPR3 = RISCV64Registers::x13; // regT3
static constexpr GPRReg argumentGPR4 = RISCV64Registers::x14; // regT4
static constexpr GPRReg argumentGPR5 = RISCV64Registers::x15; // regT5
static constexpr GPRReg argumentGPR6 = RISCV64Registers::x16; // regT6
static constexpr GPRReg argumentGPR7 = RISCV64Registers::x17; // regT7
static constexpr GPRReg nonArgGPR0 = RISCV64Registers::x5; // regT8
static constexpr GPRReg nonArgGPR1 = RISCV64Registers::x6; // regT9
static constexpr GPRReg returnValueGPR = RISCV64Registers::x10; // regT0
static constexpr GPRReg returnValueGPR2 = RISCV64Registers::x11; // regT1
static constexpr GPRReg nonPreservedNonReturnGPR = RISCV64Registers::x12; // regT2
static constexpr GPRReg nonPreservedNonArgumentGPR0 = RISCV64Registers::x5; // regT8
static constexpr GPRReg nonPreservedNonArgumentGPR1 = RISCV64Registers::x6; // regT9
static constexpr GPRReg handlerGPR = GPRInfo::nonPreservedNonArgumentGPR1;
static constexpr GPRReg wasmScratchGPR0 = RISCV64Registers::x6; // regT9
static constexpr GPRReg wasmScratchGPR1 = RISCV64Registers::x7; // regT10
static constexpr GPRReg wasmContextInstancePointer = regCS0;
static constexpr GPRReg wasmBaseMemoryPointer = regCS3;
static constexpr GPRReg wasmBoundsCheckingSizeRegister = regCS4;
static constexpr GPRReg regWS0 = RISCV64Registers::x6;
static constexpr GPRReg regWS1 = RISCV64Registers::x7;
static constexpr GPRReg regWA0 = RISCV64Registers::x10;
static constexpr GPRReg regWA1 = RISCV64Registers::x11;
static constexpr GPRReg regWA2 = RISCV64Registers::x12;
static constexpr GPRReg regWA3 = RISCV64Registers::x13;
static constexpr GPRReg regWA4 = RISCV64Registers::x14;
static constexpr GPRReg regWA5 = RISCV64Registers::x15;
static constexpr GPRReg regWA6 = RISCV64Registers::x16;
static constexpr GPRReg regWA7 = RISCV64Registers::x17;
static constexpr GPRReg patchpointScratchRegister = RISCV64Registers::x30; // Should match dataTempRegister
static constexpr GPRReg toRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfRegisters);
constexpr GPRReg registerForIndex[numberOfRegisters] = {
regT0, regT1, regT2, regT3, regT4, regT5, regT6, regT7,
regT8, regT9, regT10, regT11, regT12,
};
return registerForIndex[index];
}
static constexpr GPRReg toArgumentRegister(unsigned index)
{
ASSERT_UNDER_CONSTEXPR_CONTEXT(index < numberOfArgumentRegisters);
constexpr GPRReg registerForIndex[numberOfArgumentRegisters] = {
argumentGPR0, argumentGPR1, argumentGPR2, argumentGPR3,
argumentGPR4, argumentGPR5, argumentGPR6, argumentGPR7,
};
return registerForIndex[index];
}
static unsigned toIndex(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
ASSERT(static_cast<int>(reg) < 32);
static const unsigned indexForRegister[32] = {
InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, 8, 9, 10,
InvalidIndex, InvalidIndex, 0, 1, 2, 3, 4, 5,
6, 7, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex,
InvalidIndex, InvalidIndex, InvalidIndex, InvalidIndex, 11, 12, InvalidIndex, InvalidIndex,
};
return indexForRegister[reg];
}
static unsigned toArgumentIndex(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
ASSERT(static_cast<int>(reg) < 32);
if (reg < argumentGPR0 || reg > argumentGPR7)
return InvalidIndex;
return static_cast<unsigned>(reg) - 10;
}
static ASCIILiteral debugName(GPRReg reg)
{
ASSERT(reg != InvalidGPRReg);
return MacroAssembler::gprName(reg);
}
static constexpr unsigned InvalidIndex = 0xffffffff;
};
#endif // CPU(RISCV64)
// To make some code generic over both JSVALUE64 and JSVALUE32_64 platforms, we use standard names
// for certain JSValueRegs instances. On JSVALUE64, a JSValueRegs corresponds to a single 64-bit
// architectural GPR, while on JSVALUE32_64, a JSValueRegs corresponds to a pair of 32-bit
// architectural GPRs. Nevertheless, a lot of the difference between the targets can be abstracted
// over using the following aliases. See AssemblyHelper::noOverlap for catching conflicting register
// aliasing statically.
class JSRInfo {
public:
// Temporary registers.
// On JSVALUE64, jsRegT{2*n+1}{2*n} always maps one-to-one to GPR regT{2*n}
// On JSVALUE32_64, jsRegT{2*n+1}{2*n} always maps to the GPR pair regT{2*n+1} / regT{2*n}
// This mapping is deliberately simple to ease reasoning about aliasing. E.g.:
// Seeing 'jsRegT10' indicates that in general both 'regT1' and 'regT0' may be used.
#if USE(JSVALUE64)
static constexpr JSValueRegs jsRegT10 { GPRInfo::regT0 };
static constexpr JSValueRegs jsRegT32 { GPRInfo::regT2 };
static constexpr JSValueRegs jsRegT54 { GPRInfo::regT4 };
#elif USE(JSVALUE32_64)
static constexpr JSValueRegs jsRegT10 { GPRInfo::regT1, GPRInfo::regT0 };
static constexpr JSValueRegs jsRegT32 { GPRInfo::regT3, GPRInfo::regT2 };
static constexpr JSValueRegs jsRegT54 { GPRInfo::regT5, GPRInfo::regT4 };
#endif
// Return value register
#if USE(JSVALUE64)
static constexpr JSValueRegs returnValueJSR { GPRInfo::returnValueGPR };
#elif USE(JSVALUE32_64)
static constexpr JSValueRegs returnValueJSR { GPRInfo::returnValueGPR2, GPRInfo::returnValueGPR };
#endif
};
// The baseline JIT uses "accumulator" style execution with regT0 (for 64-bit)
// and regT0 + regT1 (for 32-bit) serving as the accumulator register(s) for
// passing results of one opcode to the next. Hence:
static_assert(GPRInfo::regT0 == GPRInfo::returnValueGPR);
#if USE(JSVALUE32_64)
static_assert(GPRInfo::regT1 == GPRInfo::returnValueGPR2);
#endif
static_assert(JSRInfo::jsRegT10 == JSRInfo::returnValueJSR);
inline GPRReg extractResult(GPRReg result) { return result; }
#if USE(JSVALUE64)
inline GPRReg extractResult(JSValueRegs result) { return result.gpr(); }
#else
inline JSValueRegs extractResult(JSValueRegs result) { return result; }
#endif
inline NoResultTag extractResult(NoResultTag) { return NoResult; }
// We use this hack to get the GPRInfo from the GPRReg type in templates because our code is bad and we should feel bad..
constexpr GPRInfo toInfoFromReg(GPRReg) { return GPRInfo(); }
class NoOverlapImpl {
static constexpr unsigned noOverlapImplRegMask(GPRReg gpr)
{
if (gpr == InvalidGPRReg)
return 0ULL;
unsigned bit = static_cast<unsigned>(gpr);
RELEASE_ASSERT(bit < countOfBits<uint64_t>);
return 1ULL << bit;
}
// Base case
template<typename... Args>
static constexpr bool noOverlapImpl(uint64_t) { return true; }
// GPRReg case
template<typename... Args>
static constexpr bool noOverlapImpl(uint64_t used, GPRReg gpr, Args... args)
{
unsigned mask = noOverlapImplRegMask(gpr);
if (used & mask)
return false;
return noOverlapImpl(used | mask, args...);
}
// JSValueRegs case
template<typename... Args>
static constexpr bool noOverlapImpl(uint64_t used, JSValueRegs jsr, Args... args)
{
unsigned mask = noOverlapImplRegMask(jsr.payloadGPR());
#if USE(JSVALUE32_64)
mask |= noOverlapImplRegMask(jsr.tagGPR());
#endif
if (used & mask)
return false;
return noOverlapImpl(used | mask, args...);
}
// NoResultTag case, this happens from templates
template<typename... Args>
static constexpr bool noOverlapImpl(uint64_t used, NoResultTag, Args... args)
{
return noOverlapImpl(used, args...);
}
public:
// Entry point
template <typename... Args>
static constexpr bool entry(Args... args) { return noOverlapImpl(0, args...); }
};
// Checks that the given list of GPRRegs and JSValueRegs do not overlap. Use this in static
// assertions to ensure that register aliases live at the same point do not map to the same
// architectural register.
template <typename... Args>
constexpr bool noOverlap(Args... args) { return NoOverlapImpl::entry(args...); }
class PreferredArgumentImpl {
private:
template <typename OperationType, unsigned ArgNum>
static constexpr std::enable_if_t<(FunctionTraits<OperationType>::arity > ArgNum), size_t> sizeOfArg()
{
return sizeof(typename FunctionTraits<OperationType>::template ArgumentType<ArgNum>);
}
#if USE(JSVALUE64)
template <typename OperationType, unsigned ArgNum, unsigned Index = ArgNum, typename... Args>
static constexpr JSValueRegs pickJSR(GPRReg first, Args... rest)
{
static_assert(sizeOfArg<OperationType, ArgNum - Index>() <= 8, "Don't know how to handle large arguments");
if constexpr (!Index)
return JSValueRegs { first };
else {
UNUSED_PARAM(first); // Otherwise warning due to constexpr
return pickJSR<OperationType, ArgNum, Index - 1>(rest...);
}
}
#elif USE(JSVALUE32_64)
template <typename OperationType, unsigned ArgNum, unsigned Index = ArgNum, typename... Args>
static constexpr JSValueRegs pickJSR(GPRReg first, GPRReg second, GPRReg third, Args... rest)
{
constexpr size_t sizeOfCurrentArg = sizeOfArg<OperationType, ArgNum - Index>();
static_assert(sizeOfCurrentArg <= 8, "Don't know how to handle large arguments");
if constexpr (!Index) {
if constexpr (sizeOfCurrentArg <= 4) {
// Fits in single GPR
UNUSED_PARAM(second); // Otherwise warning due to constexpr
UNUSED_PARAM(third); // Otherwise warning due to constexpr
return JSValueRegs::payloadOnly(first);
} else if (first == GPRInfo::argumentGPR1 && second == GPRInfo::argumentGPR2 && third == GPRInfo::argumentGPR3) {
// Wide argument passed in GPRs needs to start with even register number, so skip argumentGPR1
return JSValueRegs { third, second };
} else {
// First is either an even register, or this argument will be pushed to the stack, so it does not matter
return JSValueRegs { second, first };
}
} else {
if constexpr(sizeOfCurrentArg <= 4) {
// Fits in single GPR
UNUSED_PARAM(first); // Otherwise warning due to constexpr
return pickJSR<OperationType, ArgNum, Index - 1>(second, third, rest...);
} else if (first == GPRInfo::argumentGPR1 && second == GPRInfo::argumentGPR2 && third == GPRInfo::argumentGPR3) {
// Wide argument passed in GPRs needs to start with even register number, so skip argumentGPR1, but reuse it later
return pickJSR<OperationType, ArgNum, Index - 1>(first, rest...);
} else {
// First is either an even register, or this argument will be pushed to the stack, so it does not matter
return pickJSR<OperationType, ArgNum, Index - 1>(third, rest...);
}
}
}
template <typename OperationType, unsigned ArgNum, unsigned Index = ArgNum, typename... Args>
static constexpr JSValueRegs pickJSR(GPRReg first, GPRReg second)
{
constexpr size_t sizeOfCurrentArg = sizeOfArg<OperationType, ArgNum - Index>();
static_assert(sizeOfCurrentArg <= 8, "Don't know how to handle large arguments");
// Base case, 'first' and 'second' are never argument register, or will be pushed on the stack anyway
if constexpr (!Index) {
if constexpr (sizeOfCurrentArg <= 4) {
UNUSED_PARAM(second); // Otherwise warning due to constexpr
return JSValueRegs::payloadOnly(first);
} else
return JSValueRegs { second, first };
} else {
if constexpr(sizeOfCurrentArg <= 4) {
UNUSED_PARAM(first); // Otherwise warning due to constexpr
return pickJSR<OperationType, ArgNum, Index - 1>(second);
} else
RELEASE_ASSERT_NOT_REACHED_WITH_MESSAGE("Out of registers");
}
}
template <typename OperationType, unsigned ArgNum, unsigned Index = ArgNum, typename... Args>
static constexpr JSValueRegs pickJSR(GPRReg first)
{
constexpr size_t sizeOfCurrentArg = sizeOfArg<OperationType, ArgNum - Index>();
static_assert(sizeOfCurrentArg <= 8, "Don't know how to handle large arguments");
// Base case, 'first' is never an argument register, or will be pushed on the stack anyway
if constexpr (sizeOfCurrentArg <= 4)
return JSValueRegs::payloadOnly(first);
else
RELEASE_ASSERT_NOT_REACHED_WITH_MESSAGE("Out of registers");
}
#endif
public:
template <typename OperationType, unsigned ArgNum>
static constexpr std::enable_if_t<(FunctionTraits<OperationType>::arity > ArgNum), JSValueRegs>
preferredArgumentJSR()
{
#if USE(JSVALUE64)
return pickJSR<OperationType, ArgNum>(
GPRInfo::argumentGPR0, GPRInfo::argumentGPR1, GPRInfo::argumentGPR2,
GPRInfo::argumentGPR3, GPRInfo::argumentGPR4, GPRInfo::argumentGPR5);
#elif USE(JSVALUE32_64)
#if CPU(ARM_THUMB2)
// Be careful about GPRInfo::regCS0. It is used as a metadataTable register.
// So, if you clobber it, you need to restore it.
return pickJSR<OperationType, ArgNum>(
GPRInfo::argumentGPR0, GPRInfo::argumentGPR1,
GPRInfo::argumentGPR2, GPRInfo::argumentGPR3,
GPRInfo::regT4, GPRInfo::regT5,
GPRInfo::regT6, GPRInfo::regT7,
GPRInfo::regCS0);
#else
# error "Unsupported architecture"
#endif
#endif
}
template <typename OperationType, unsigned ArgNum>
static constexpr std::enable_if_t<(FunctionTraits<OperationType>::arity > ArgNum), GPRReg>
preferredArgumentGPR()
{
#if USE(JSVALUE32_64)
static_assert(sizeOfArg<OperationType, ArgNum>() <= 5, "Argument does not fit in GPR");
#endif
return preferredArgumentJSR<OperationType, ArgNum>().payloadGPR();
}
};
// Computes (statically, at compilation time), the ideal machine register an argument should be
// loaded into for a function call. This yields the ABI specific argument registers for the
// initial arguments as appropriate, then suitable temporary registers for the remaining
// arguments. The idea is that 'setupArguments' will have to do the minimal amount of work when
// using these registers to hold the arguments, so if you are loading most arguments from memory
// anyway, using these registers yields the smallest code required for a call.
template <typename OperationType, unsigned ArgNum>
constexpr std::enable_if_t<(FunctionTraits<OperationType>::arity > ArgNum), GPRReg>
preferredArgumentGPR()
{
return PreferredArgumentImpl::preferredArgumentGPR<OperationType, ArgNum>();
}
// See preferredArgumentGPR for the purpose of this function. This version returns a JSValueRegs
// instead of a GPR, which on JSVALUE64 are equivalent, but on JSVALUE32_64 a JSValueRegs is
// required to hold a 64-bit wide function argument, so use this in particular when passing a
// JSValue/EncodedJSValue to be compatible with both JSVALUE64 an JSVALUE32_64 platforms, and use
// preferredArgumentGPR when passing host pointers.
template <typename OperationType, unsigned ArgNum>
constexpr std::enable_if_t<(FunctionTraits<OperationType>::arity > ArgNum), JSValueRegs>
preferredArgumentJSR()
{
return PreferredArgumentImpl::preferredArgumentJSR<OperationType, ArgNum>();
}
template<typename RegisterBank, auto... registers>
struct StaticScratchRegisterAllocator {
static_assert(noOverlap(registers...));
static constexpr size_t countRegisters(JSValueRegs)
{
#if USE(JSVALUE32_64)
return 2;
#else
return 1;
#endif
}
static constexpr size_t countRegisters(typename RegisterBank::RegisterType)
{
return 1;
}
template<auto reg, auto... args>
static constexpr size_t countRegisters()
{
if constexpr (!sizeof...(args))
return countRegisters(reg);
else
return countRegisters(reg) + countRegisters<args...>();
}
static constexpr size_t size = RegisterBank::numberOfRegisters - countRegisters<registers...>();
using ArrayType = std::array<typename RegisterBank::RegisterType, size>;
static constexpr ArrayType constructScratchRegisters()
{
ArrayType array { };
unsigned resultIndex = 0;
for (unsigned index = 0; index < RegisterBank::numberOfRegisters; ++index) {
auto reg = RegisterBank::toRegister(index);
if (noOverlap(registers..., reg))
array[resultIndex++] = reg;
}
return array;
}
static constexpr ArrayType values { constructScratchRegisters() };
};
template<typename RegisterBank, auto... registers>
inline constexpr auto allocatedScratchRegisters = StaticScratchRegisterAllocator<RegisterBank, registers...>::values;
#endif // ENABLE(ASSEMBLER)
} // namespace JSC
namespace WTF {
inline void printInternal(PrintStream& out, JSC::GPRReg reg)
{
#if ENABLE(ASSEMBLER)
out.print("%", JSC::GPRInfo::debugName(reg));
#else
out.printf("%%r%d", reg);
#endif
}
} // namespace WTF
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
|