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 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
|
/*
* Copyright (C) 2011, 2012, 2013 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.
*/
#include "config.h"
#include "DFGCSEPhase.h"
#if ENABLE(DFG_JIT)
#include "DFGGraph.h"
#include "DFGPhase.h"
#include "JSCellInlines.h"
#include <wtf/FastBitVector.h>
namespace JSC { namespace DFG {
enum CSEMode { NormalCSE, StoreElimination };
template<CSEMode cseMode>
class CSEPhase : public Phase {
public:
CSEPhase(Graph& graph)
: Phase(graph, cseMode == NormalCSE ? "common subexpression elimination" : "store elimination")
{
}
bool run()
{
ASSERT((cseMode == NormalCSE) == (m_graph.m_fixpointState == FixpointNotConverged));
ASSERT(m_graph.m_fixpointState != BeforeFixpoint);
m_changed = false;
for (unsigned block = 0; block < m_graph.m_blocks.size(); ++block)
performBlockCSE(m_graph.m_blocks[block].get());
return m_changed;
}
private:
Node* canonicalize(Node* node)
{
if (!node)
return 0;
if (node->op() == ValueToInt32)
node = node->child1().node();
return node;
}
Node* canonicalize(Edge edge)
{
return canonicalize(edge.node());
}
unsigned endIndexForPureCSE()
{
unsigned result = m_lastSeen[m_currentNode->op()];
if (result == UINT_MAX)
result = 0;
else
result++;
ASSERT(result <= m_indexInBlock);
#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
dataLogF(" limit %u: ", result);
#endif
return result;
}
Node* pureCSE(Node* node)
{
Node* child1 = canonicalize(node->child1());
Node* child2 = canonicalize(node->child2());
Node* child3 = canonicalize(node->child3());
for (unsigned i = endIndexForPureCSE(); i--;) {
Node* otherNode = m_currentBlock->at(i);
if (otherNode == child1 || otherNode == child2 || otherNode == child3)
break;
if (node->op() != otherNode->op())
continue;
if (node->arithNodeFlags() != otherNode->arithNodeFlags())
continue;
Node* otherChild = canonicalize(otherNode->child1());
if (!otherChild)
return otherNode;
if (otherChild != child1)
continue;
otherChild = canonicalize(otherNode->child2());
if (!otherChild)
return otherNode;
if (otherChild != child2)
continue;
otherChild = canonicalize(otherNode->child3());
if (!otherChild)
return otherNode;
if (otherChild != child3)
continue;
return otherNode;
}
return 0;
}
Node* int32ToDoubleCSE(Node* node)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* otherNode = m_currentBlock->at(i);
if (otherNode == node->child1())
return 0;
switch (otherNode->op()) {
case Int32ToDouble:
case ForwardInt32ToDouble:
if (otherNode->child1() == node->child1())
return otherNode;
break;
default:
break;
}
}
return 0;
}
Node* constantCSE(Node* node)
{
for (unsigned i = endIndexForPureCSE(); i--;) {
Node* otherNode = m_currentBlock->at(i);
if (otherNode->op() != JSConstant)
continue;
if (otherNode->constantNumber() != node->constantNumber())
continue;
return otherNode;
}
return 0;
}
Node* weakConstantCSE(Node* node)
{
for (unsigned i = endIndexForPureCSE(); i--;) {
Node* otherNode = m_currentBlock->at(i);
if (otherNode->op() != WeakJSConstant)
continue;
if (otherNode->weakConstant() != node->weakConstant())
continue;
return otherNode;
}
return 0;
}
Node* getCalleeLoadElimination(InlineCallFrame* inlineCallFrame)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node->codeOrigin.inlineCallFrame != inlineCallFrame)
continue;
switch (node->op()) {
case GetCallee:
return node;
case SetCallee:
return node->child1().node();
default:
break;
}
}
return 0;
}
Node* getArrayLengthElimination(Node* array)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case GetArrayLength:
if (node->child1() == array)
return node;
break;
case PutByVal:
if (!m_graph.byValIsPure(node))
return 0;
if (node->arrayMode().mayStoreToHole())
return 0;
break;
default:
if (m_graph.clobbersWorld(node))
return 0;
}
}
return 0;
}
Node* globalVarLoadElimination(WriteBarrier<Unknown>* registerPointer)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case GetGlobalVar:
if (node->registerPointer() == registerPointer)
return node;
break;
case PutGlobalVar:
if (node->registerPointer() == registerPointer)
return node->child1().node();
break;
default:
break;
}
if (m_graph.clobbersWorld(node))
break;
}
return 0;
}
Node* scopedVarLoadElimination(Node* registers, unsigned varNumber)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case GetScopedVar: {
if (node->child1() == registers && node->varNumber() == varNumber)
return node;
break;
}
case PutScopedVar: {
if (node->varNumber() != varNumber)
break;
if (node->child2() == registers)
return node->child3().node();
return 0;
}
case SetLocal: {
VariableAccessData* variableAccessData = node->variableAccessData();
if (variableAccessData->isCaptured()
&& variableAccessData->local() == static_cast<VirtualRegister>(varNumber))
return 0;
break;
}
default:
break;
}
if (m_graph.clobbersWorld(node))
break;
}
return 0;
}
bool globalVarWatchpointElimination(WriteBarrier<Unknown>* registerPointer)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case GlobalVarWatchpoint:
if (node->registerPointer() == registerPointer)
return true;
break;
case PutGlobalVar:
if (node->registerPointer() == registerPointer)
return false;
break;
default:
break;
}
if (m_graph.clobbersWorld(node))
break;
}
return false;
}
Node* globalVarStoreElimination(WriteBarrier<Unknown>* registerPointer)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case PutGlobalVar:
case PutGlobalVarCheck:
if (node->registerPointer() == registerPointer)
return node;
break;
case GetGlobalVar:
if (node->registerPointer() == registerPointer)
return 0;
break;
default:
break;
}
if (m_graph.clobbersWorld(node) || node->canExit())
return 0;
}
return 0;
}
Node* scopedVarStoreElimination(Node* scope, Node* registers, unsigned varNumber)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case PutScopedVar: {
if (node->varNumber() != varNumber)
break;
if (node->child1() == scope && node->child2() == registers)
return node;
return 0;
}
case GetScopedVar: {
// Let's be conservative.
if (node->varNumber() == varNumber)
return 0;
break;
}
case GetLocal: {
VariableAccessData* variableAccessData = node->variableAccessData();
if (variableAccessData->isCaptured()
&& variableAccessData->local() == static_cast<VirtualRegister>(varNumber))
return 0;
break;
}
default:
break;
}
if (m_graph.clobbersWorld(node) || node->canExit())
return 0;
}
return 0;
}
Node* getByValLoadElimination(Node* child1, Node* child2)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1 || node == canonicalize(child2))
break;
switch (node->op()) {
case GetByVal:
if (!m_graph.byValIsPure(node))
return 0;
if (node->child1() == child1 && canonicalize(node->child2()) == canonicalize(child2))
return node;
break;
case PutByVal:
case PutByValAlias: {
if (!m_graph.byValIsPure(node))
return 0;
if (m_graph.varArgChild(node, 0) == child1 && canonicalize(m_graph.varArgChild(node, 1)) == canonicalize(child2))
return m_graph.varArgChild(node, 2).node();
// We must assume that the PutByVal will clobber the location we're getting from.
// FIXME: We can do better; if we know that the PutByVal is accessing an array of a
// different type than the GetByVal, then we know that they won't clobber each other.
// ... except of course for typed arrays, where all typed arrays clobber all other
// typed arrays! An Int32Array can alias a Float64Array for example, and so on.
return 0;
}
case PutStructure:
case PutByOffset:
// GetByVal currently always speculates that it's accessing an
// array with an integer index, which means that it's impossible
// for a structure change or a put to property storage to affect
// the GetByVal.
break;
default:
if (m_graph.clobbersWorld(node))
return 0;
break;
}
}
return 0;
}
bool checkFunctionElimination(JSCell* function, Node* child1)
{
for (unsigned i = endIndexForPureCSE(); i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
if (node->op() == CheckFunction && node->child1() == child1 && node->function() == function)
return true;
}
return false;
}
bool checkExecutableElimination(ExecutableBase* executable, Node* child1)
{
for (unsigned i = endIndexForPureCSE(); i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
if (node->op() == CheckExecutable && node->child1() == child1 && node->executable() == executable)
return true;
}
return false;
}
bool checkStructureElimination(const StructureSet& structureSet, Node* child1)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case CheckStructure:
case ForwardCheckStructure:
if (node->child1() == child1
&& structureSet.isSupersetOf(node->structureSet()))
return true;
break;
case StructureTransitionWatchpoint:
case ForwardStructureTransitionWatchpoint:
if (node->child1() == child1
&& structureSet.contains(node->structure()))
return true;
break;
case PutStructure:
if (node->child1() == child1
&& structureSet.contains(node->structureTransitionData().newStructure))
return true;
if (structureSet.contains(node->structureTransitionData().previousStructure))
return false;
break;
case PutByOffset:
// Setting a property cannot change the structure.
break;
case PutByVal:
case PutByValAlias:
if (m_graph.byValIsPure(node)) {
// If PutByVal speculates that it's accessing an array with an
// integer index, then it's impossible for it to cause a structure
// change.
break;
}
return false;
case Arrayify:
case ArrayifyToStructure:
// We could check if the arrayification could affect our structures.
// But that seems like it would take Effort.
return false;
default:
if (m_graph.clobbersWorld(node))
return false;
break;
}
}
return false;
}
bool structureTransitionWatchpointElimination(Structure* structure, Node* child1)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case CheckStructure:
case ForwardCheckStructure:
if (node->child1() == child1
&& node->structureSet().containsOnly(structure))
return true;
break;
case PutStructure:
ASSERT(node->structureTransitionData().previousStructure != structure);
break;
case PutByOffset:
// Setting a property cannot change the structure.
break;
case PutByVal:
case PutByValAlias:
if (m_graph.byValIsPure(node)) {
// If PutByVal speculates that it's accessing an array with an
// integer index, then it's impossible for it to cause a structure
// change.
break;
}
return false;
case StructureTransitionWatchpoint:
case ForwardStructureTransitionWatchpoint:
if (node->structure() == structure && node->child1() == child1)
return true;
break;
case Arrayify:
case ArrayifyToStructure:
// We could check if the arrayification could affect our structures.
// But that seems like it would take Effort.
return false;
default:
if (m_graph.clobbersWorld(node))
return false;
break;
}
}
return false;
}
Node* putStructureStoreElimination(Node* child1)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case CheckStructure:
case ForwardCheckStructure:
return 0;
case PhantomPutStructure:
if (node->child1() == child1) // No need to retrace our steps.
return 0;
break;
case PutStructure:
if (node->child1() == child1)
return node;
break;
// PutStructure needs to execute if we GC. Hence this needs to
// be careful with respect to nodes that GC.
case CreateArguments:
case TearOffArguments:
case NewFunctionNoCheck:
case NewFunction:
case NewFunctionExpression:
case CreateActivation:
case TearOffActivation:
case ToPrimitive:
case NewRegexp:
case NewArrayBuffer:
case NewArray:
case NewObject:
case CreateThis:
case AllocatePropertyStorage:
case ReallocatePropertyStorage:
case TypeOf:
case ToString:
case NewStringObject:
case MakeRope:
return 0;
case GetIndexedPropertyStorage:
if (node->arrayMode().getIndexedPropertyStorageMayTriggerGC())
return 0;
break;
default:
break;
}
if (m_graph.clobbersWorld(node) || node->canExit())
return 0;
}
return 0;
}
Node* getByOffsetLoadElimination(unsigned identifierNumber, Node* child1)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case GetByOffset:
if (node->child1() == child1
&& m_graph.m_storageAccessData[node->storageAccessDataIndex()].identifierNumber == identifierNumber)
return node;
break;
case PutByOffset:
if (m_graph.m_storageAccessData[node->storageAccessDataIndex()].identifierNumber == identifierNumber) {
if (node->child1() == child1) // Must be same property storage.
return node->child3().node();
return 0;
}
break;
case PutStructure:
// Changing the structure cannot change the outcome of a property get.
break;
case PutByVal:
case PutByValAlias:
if (m_graph.byValIsPure(node)) {
// If PutByVal speculates that it's accessing an array with an
// integer index, then it's impossible for it to cause a structure
// change.
break;
}
return 0;
default:
if (m_graph.clobbersWorld(node))
return 0;
break;
}
}
return 0;
}
Node* putByOffsetStoreElimination(unsigned identifierNumber, Node* child1)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case GetByOffset:
if (m_graph.m_storageAccessData[node->storageAccessDataIndex()].identifierNumber == identifierNumber)
return 0;
break;
case PutByOffset:
if (m_graph.m_storageAccessData[node->storageAccessDataIndex()].identifierNumber == identifierNumber) {
if (node->child1() == child1) // Must be same property storage.
return node;
return 0;
}
break;
case PutByVal:
case PutByValAlias:
case GetByVal:
if (m_graph.byValIsPure(node)) {
// If PutByVal speculates that it's accessing an array with an
// integer index, then it's impossible for it to cause a structure
// change.
break;
}
return 0;
default:
if (m_graph.clobbersWorld(node))
return 0;
break;
}
if (node->canExit())
return 0;
}
return 0;
}
Node* getPropertyStorageLoadElimination(Node* child1)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case GetButterfly:
if (node->child1() == child1)
return node;
break;
case AllocatePropertyStorage:
case ReallocatePropertyStorage:
// If we can cheaply prove this is a change to our object's storage, we
// can optimize and use its result.
if (node->child1() == child1)
return node;
// Otherwise, we currently can't prove that this doesn't change our object's
// storage, so we conservatively assume that it may change the storage
// pointer of any object, including ours.
return 0;
case PutByOffset:
case PutStructure:
// Changing the structure or putting to the storage cannot
// change the property storage pointer.
break;
case PutByVal:
case PutByValAlias:
if (m_graph.byValIsPure(node)) {
// If PutByVal speculates that it's accessing an array with an
// integer index, then it's impossible for it to cause a structure
// change.
break;
}
return 0;
case Arrayify:
case ArrayifyToStructure:
// We could check if the arrayification could affect our butterfly.
// But that seems like it would take Effort.
return 0;
default:
if (m_graph.clobbersWorld(node))
return 0;
break;
}
}
return 0;
}
bool checkArrayElimination(Node* child1, ArrayMode arrayMode)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case PutByOffset:
case PutStructure:
// Changing the structure or putting to the storage cannot
// change the property storage pointer.
break;
case CheckArray:
if (node->child1() == child1 && node->arrayMode() == arrayMode)
return true;
break;
case Arrayify:
case ArrayifyToStructure:
// We could check if the arrayification could affect our array.
// But that seems like it would take Effort.
return false;
default:
if (m_graph.clobbersWorld(node))
return false;
break;
}
}
return false;
}
Node* getIndexedPropertyStorageLoadElimination(Node* child1, ArrayMode arrayMode)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node == child1)
break;
switch (node->op()) {
case GetIndexedPropertyStorage: {
if (node->child1() == child1 && node->arrayMode() == arrayMode)
return node;
break;
}
case PutByOffset:
case PutStructure:
// Changing the structure or putting to the storage cannot
// change the property storage pointer.
break;
default:
if (m_graph.clobbersWorld(node))
return 0;
break;
}
}
return 0;
}
Node* getMyScopeLoadElimination(InlineCallFrame* inlineCallFrame)
{
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
if (node->codeOrigin.inlineCallFrame != inlineCallFrame)
continue;
switch (node->op()) {
case CreateActivation:
// This may cause us to return a different scope.
return 0;
case GetMyScope:
return node;
case SetMyScope:
return node->child1().node();
default:
break;
}
}
return 0;
}
Node* getLocalLoadElimination(VirtualRegister local, Node*& relevantLocalOp, bool careAboutClobbering)
{
relevantLocalOp = 0;
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case GetLocal:
if (node->local() == local) {
relevantLocalOp = node;
return node;
}
break;
case GetLocalUnlinked:
if (node->unlinkedLocal() == local) {
relevantLocalOp = node;
return node;
}
break;
case SetLocal:
if (node->local() == local) {
relevantLocalOp = node;
return node->child1().node();
}
break;
case PutScopedVar:
if (static_cast<VirtualRegister>(node->varNumber()) == local)
return 0;
break;
default:
if (careAboutClobbering && m_graph.clobbersWorld(node))
return 0;
break;
}
}
return 0;
}
struct SetLocalStoreEliminationResult {
SetLocalStoreEliminationResult()
: mayBeAccessed(false)
, mayExit(false)
, mayClobberWorld(false)
{
}
bool mayBeAccessed;
bool mayExit;
bool mayClobberWorld;
};
SetLocalStoreEliminationResult setLocalStoreElimination(
VirtualRegister local, Node* expectedNode)
{
SetLocalStoreEliminationResult result;
for (unsigned i = m_indexInBlock; i--;) {
Node* node = m_currentBlock->at(i);
switch (node->op()) {
case GetLocal:
case Flush:
if (node->local() == local)
result.mayBeAccessed = true;
break;
case GetLocalUnlinked:
if (node->unlinkedLocal() == local)
result.mayBeAccessed = true;
break;
case SetLocal: {
if (node->local() != local)
break;
if (node != expectedNode)
result.mayBeAccessed = true;
return result;
}
case GetScopedVar:
if (static_cast<VirtualRegister>(node->varNumber()) == local)
result.mayBeAccessed = true;
break;
case GetMyScope:
case SkipTopScope:
if (m_graph.uncheckedActivationRegisterFor(node->codeOrigin) == local)
result.mayBeAccessed = true;
break;
case CheckArgumentsNotCreated:
case GetMyArgumentsLength:
case GetMyArgumentsLengthSafe:
if (m_graph.uncheckedArgumentsRegisterFor(node->codeOrigin) == local)
result.mayBeAccessed = true;
break;
case GetMyArgumentByVal:
case GetMyArgumentByValSafe:
result.mayBeAccessed = true;
break;
case GetByVal:
// If this is accessing arguments then it's potentially accessing locals.
if (node->arrayMode().type() == Array::Arguments)
result.mayBeAccessed = true;
break;
case CreateArguments:
case TearOffActivation:
case TearOffArguments:
// If an activation is being torn off then it means that captured variables
// are live. We could be clever here and check if the local qualifies as an
// argument register. But that seems like it would buy us very little since
// any kind of tear offs are rare to begin with.
result.mayBeAccessed = true;
break;
default:
break;
}
result.mayExit |= node->canExit();
result.mayClobberWorld |= m_graph.clobbersWorld(node);
}
RELEASE_ASSERT_NOT_REACHED();
// Be safe in release mode.
result.mayBeAccessed = true;
return result;
}
void eliminateIrrelevantPhantomChildren(Node* node)
{
ASSERT(node->op() == Phantom);
for (unsigned i = 0; i < AdjacencyList::Size; ++i) {
Edge edge = node->children.child(i);
if (!edge)
continue;
if (edge.useKind() != UntypedUse)
continue; // Keep the type check.
if (edge->flags() & NodeRelevantToOSR)
continue;
#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
dataLog(" Eliminating edge @", m_currentNode->index(), " -> @", edge->index());
#endif
node->children.removeEdge(i--);
m_changed = true;
}
}
bool setReplacement(Node* replacement)
{
if (!replacement)
return false;
#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
dataLogF(" Replacing @%u -> @%u", m_currentNode->index(), replacement->index());
#endif
m_currentNode->convertToPhantom();
eliminateIrrelevantPhantomChildren(m_currentNode);
// At this point we will eliminate all references to this node.
m_currentNode->replacement = replacement;
m_changed = true;
return true;
}
void eliminate()
{
#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
dataLogF(" Eliminating @%u", m_currentNode->index());
#endif
ASSERT(m_currentNode->mustGenerate());
m_currentNode->convertToPhantom();
eliminateIrrelevantPhantomChildren(m_currentNode);
m_changed = true;
}
void eliminate(Node* node, NodeType phantomType = Phantom)
{
if (!node)
return;
ASSERT(node->mustGenerate());
node->setOpAndDefaultNonExitFlags(phantomType);
if (phantomType == Phantom)
eliminateIrrelevantPhantomChildren(node);
m_changed = true;
}
void performNodeCSE(Node* node)
{
if (cseMode == NormalCSE)
m_graph.performSubstitution(node);
if (node->op() == SetLocal)
node->child1()->mergeFlags(NodeRelevantToOSR);
#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
dataLogF(" %s @%u: ", Graph::opName(node->op()), node->index());
#endif
// NOTE: there are some nodes that we deliberately don't CSE even though we
// probably could, like MakeRope and ToPrimitive. That's because there is no
// evidence that doing CSE on these nodes would result in a performance
// progression. Hence considering these nodes in CSE would just mean that this
// code does more work with no win. Of course, we may want to reconsider this,
// since MakeRope is trivially CSE-able. It's not trivially doable for
// ToPrimitive, but we could change that with some speculations if we really
// needed to.
switch (node->op()) {
case Identity:
if (cseMode == StoreElimination)
break;
setReplacement(node->child1().node());
break;
// Handle the pure nodes. These nodes never have any side-effects.
case BitAnd:
case BitOr:
case BitXor:
case BitRShift:
case BitLShift:
case BitURShift:
case ArithAdd:
case ArithSub:
case ArithNegate:
case ArithMul:
case ArithIMul:
case ArithMod:
case ArithDiv:
case ArithAbs:
case ArithMin:
case ArithMax:
case ArithSqrt:
case StringCharAt:
case StringCharCodeAt:
case IsUndefined:
case IsBoolean:
case IsNumber:
case IsString:
case IsObject:
case IsFunction:
case DoubleAsInt32:
case LogicalNot:
case SkipTopScope:
case SkipScope:
case GetScopeRegisters:
case GetScope:
case TypeOf:
case CompareEqConstant:
case ValueToInt32:
if (cseMode == StoreElimination)
break;
setReplacement(pureCSE(node));
break;
case Int32ToDouble:
case ForwardInt32ToDouble:
if (cseMode == StoreElimination)
break;
setReplacement(int32ToDoubleCSE(node));
break;
case GetCallee:
if (cseMode == StoreElimination)
break;
setReplacement(getCalleeLoadElimination(node->codeOrigin.inlineCallFrame));
break;
case GetLocal: {
if (cseMode == StoreElimination)
break;
VariableAccessData* variableAccessData = node->variableAccessData();
if (!variableAccessData->isCaptured())
break;
Node* relevantLocalOp;
Node* possibleReplacement = getLocalLoadElimination(variableAccessData->local(), relevantLocalOp, variableAccessData->isCaptured());
if (!relevantLocalOp)
break;
if (relevantLocalOp->op() != GetLocalUnlinked
&& relevantLocalOp->variableAccessData() != variableAccessData)
break;
Node* phi = node->child1().node();
if (!setReplacement(possibleReplacement))
break;
m_graph.dethread();
// If we replace a GetLocal with a GetLocalUnlinked, then turn the GetLocalUnlinked
// into a GetLocal.
if (relevantLocalOp->op() == GetLocalUnlinked)
relevantLocalOp->convertToGetLocal(variableAccessData, phi);
m_changed = true;
break;
}
case GetLocalUnlinked: {
if (cseMode == StoreElimination)
break;
Node* relevantLocalOpIgnored;
setReplacement(getLocalLoadElimination(node->unlinkedLocal(), relevantLocalOpIgnored, true));
break;
}
case Flush: {
VariableAccessData* variableAccessData = node->variableAccessData();
VirtualRegister local = variableAccessData->local();
Node* replacement = node->child1().node();
if (replacement->op() != SetLocal)
break;
ASSERT(replacement->variableAccessData() == variableAccessData);
// FIXME: We should be able to remove SetLocals that can exit; we just need
// to replace them with appropriate type checks.
if (cseMode == NormalCSE) {
// Need to be conservative at this time; if the SetLocal has any chance of performing
// any speculations then we cannot do anything.
if (variableAccessData->isCaptured()) {
// Captured SetLocals never speculate and hence never exit.
} else {
if (variableAccessData->shouldUseDoubleFormat())
break;
SpeculatedType prediction = variableAccessData->argumentAwarePrediction();
if (isInt32Speculation(prediction))
break;
if (isArraySpeculation(prediction))
break;
if (isBooleanSpeculation(prediction))
break;
}
} else {
if (replacement->canExit())
break;
}
SetLocalStoreEliminationResult result =
setLocalStoreElimination(local, replacement);
if (result.mayBeAccessed || result.mayClobberWorld)
break;
ASSERT(replacement->op() == SetLocal);
// FIXME: Investigate using mayExit as a further optimization.
node->convertToPhantom();
Node* dataNode = replacement->child1().node();
ASSERT(dataNode->hasResult());
m_graph.clearAndDerefChild1(node);
node->children.child1() = Edge(dataNode);
m_graph.dethread();
m_changed = true;
break;
}
case JSConstant:
if (cseMode == StoreElimination)
break;
// This is strange, but necessary. Some phases will convert nodes to constants,
// which may result in duplicated constants. We use CSE to clean this up.
setReplacement(constantCSE(node));
break;
case WeakJSConstant:
if (cseMode == StoreElimination)
break;
// FIXME: have CSE for weak constants against strong constants and vice-versa.
setReplacement(weakConstantCSE(node));
break;
case GetArrayLength:
if (cseMode == StoreElimination)
break;
setReplacement(getArrayLengthElimination(node->child1().node()));
break;
case GetMyScope:
if (cseMode == StoreElimination)
break;
setReplacement(getMyScopeLoadElimination(node->codeOrigin.inlineCallFrame));
break;
// Handle nodes that are conditionally pure: these are pure, and can
// be CSE'd, so long as the prediction is the one we want.
case ValueAdd:
case CompareLess:
case CompareLessEq:
case CompareGreater:
case CompareGreaterEq:
case CompareEq: {
if (cseMode == StoreElimination)
break;
if (m_graph.isPredictedNumerical(node)) {
Node* replacement = pureCSE(node);
if (replacement && m_graph.isPredictedNumerical(replacement))
setReplacement(replacement);
}
break;
}
// Finally handle heap accesses. These are not quite pure, but we can still
// optimize them provided that some subtle conditions are met.
case GetGlobalVar:
if (cseMode == StoreElimination)
break;
setReplacement(globalVarLoadElimination(node->registerPointer()));
break;
case GetScopedVar: {
if (cseMode == StoreElimination)
break;
setReplacement(scopedVarLoadElimination(node->child1().node(), node->varNumber()));
break;
}
case GlobalVarWatchpoint:
if (cseMode == StoreElimination)
break;
if (globalVarWatchpointElimination(node->registerPointer()))
eliminate();
break;
case PutGlobalVar:
case PutGlobalVarCheck:
if (cseMode == NormalCSE)
break;
eliminate(globalVarStoreElimination(node->registerPointer()));
break;
case PutScopedVar: {
if (cseMode == NormalCSE)
break;
eliminate(scopedVarStoreElimination(node->child1().node(), node->child2().node(), node->varNumber()));
break;
}
case GetByVal:
if (cseMode == StoreElimination)
break;
if (m_graph.byValIsPure(node))
setReplacement(getByValLoadElimination(node->child1().node(), node->child2().node()));
break;
case PutByVal: {
if (cseMode == StoreElimination)
break;
Edge child1 = m_graph.varArgChild(node, 0);
Edge child2 = m_graph.varArgChild(node, 1);
if (node->arrayMode().canCSEStorage()) {
Node* replacement = getByValLoadElimination(child1.node(), child2.node());
if (!replacement)
break;
node->setOp(PutByValAlias);
}
break;
}
case CheckStructure:
case ForwardCheckStructure:
if (cseMode == StoreElimination)
break;
if (checkStructureElimination(node->structureSet(), node->child1().node()))
eliminate();
break;
case StructureTransitionWatchpoint:
case ForwardStructureTransitionWatchpoint:
if (cseMode == StoreElimination)
break;
if (structureTransitionWatchpointElimination(node->structure(), node->child1().node()))
eliminate();
break;
case PutStructure:
if (cseMode == NormalCSE)
break;
eliminate(putStructureStoreElimination(node->child1().node()), PhantomPutStructure);
break;
case CheckFunction:
if (cseMode == StoreElimination)
break;
if (checkFunctionElimination(node->function(), node->child1().node()))
eliminate();
break;
case CheckExecutable:
if (cseMode == StoreElimination)
break;
if (checkExecutableElimination(node->executable(), node->child1().node()))
eliminate();
break;
case CheckArray:
if (cseMode == StoreElimination)
break;
if (checkArrayElimination(node->child1().node(), node->arrayMode()))
eliminate();
break;
case GetIndexedPropertyStorage: {
if (cseMode == StoreElimination)
break;
setReplacement(getIndexedPropertyStorageLoadElimination(node->child1().node(), node->arrayMode()));
break;
}
case GetButterfly:
if (cseMode == StoreElimination)
break;
setReplacement(getPropertyStorageLoadElimination(node->child1().node()));
break;
case GetByOffset:
if (cseMode == StoreElimination)
break;
setReplacement(getByOffsetLoadElimination(m_graph.m_storageAccessData[node->storageAccessDataIndex()].identifierNumber, node->child1().node()));
break;
case PutByOffset:
if (cseMode == NormalCSE)
break;
eliminate(putByOffsetStoreElimination(m_graph.m_storageAccessData[node->storageAccessDataIndex()].identifierNumber, node->child1().node()));
break;
case Phantom:
// FIXME: we ought to remove Phantom's that have no children.
eliminateIrrelevantPhantomChildren(node);
break;
default:
// do nothing.
break;
}
m_lastSeen[node->op()] = m_indexInBlock;
#if DFG_ENABLE(DEBUG_PROPAGATION_VERBOSE)
dataLogF("\n");
#endif
}
void performBlockCSE(BasicBlock* block)
{
if (!block)
return;
if (!block->isReachable)
return;
m_currentBlock = block;
for (unsigned i = 0; i < LastNodeType; ++i)
m_lastSeen[i] = UINT_MAX;
// All Phis need to already be marked as relevant to OSR, and have their
// replacements cleared, so we don't get confused while doing substitutions on
// GetLocal's.
for (unsigned i = 0; i < block->phis.size(); ++i) {
ASSERT(block->phis[i]->flags() & NodeRelevantToOSR);
block->phis[i]->replacement = 0;
}
// Make all of my SetLocal and GetLocal nodes relevant to OSR, and do some other
// necessary bookkeeping.
for (unsigned i = 0; i < block->size(); ++i) {
Node* node = block->at(i);
node->replacement = 0;
switch (node->op()) {
case SetLocal:
case GetLocal: // FIXME: The GetLocal case is only necessary until we do https://bugs.webkit.org/show_bug.cgi?id=106707.
node->mergeFlags(NodeRelevantToOSR);
break;
default:
node->clearFlags(NodeRelevantToOSR);
break;
}
}
for (m_indexInBlock = 0; m_indexInBlock < block->size(); ++m_indexInBlock) {
m_currentNode = block->at(m_indexInBlock);
performNodeCSE(m_currentNode);
}
if (!ASSERT_DISABLED && cseMode == StoreElimination) {
// Nobody should have replacements set.
for (unsigned i = 0; i < block->size(); ++i)
ASSERT(!block->at(i)->replacement);
}
}
BasicBlock* m_currentBlock;
Node* m_currentNode;
unsigned m_indexInBlock;
FixedArray<unsigned, LastNodeType> m_lastSeen;
bool m_changed; // Only tracks changes that have a substantive effect on other optimizations.
};
bool performCSE(Graph& graph)
{
SamplingRegion samplingRegion("DFG CSE Phase");
return runPhase<CSEPhase<NormalCSE> >(graph);
}
bool performStoreElimination(Graph& graph)
{
SamplingRegion samplingRegion("DFG Store Elimination Phase");
return runPhase<CSEPhase<StoreElimination> >(graph);
}
} } // namespace JSC::DFG
#endif // ENABLE(DFG_JIT)
|