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
|
/*
* Copyright (C) 2012-2015 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
#if ENABLE(DFG_JIT)
#include "ArrayProfile.h"
#include "SpeculatedType.h"
#include "StructureSet.h"
namespace JSC {
class CodeOrigin;
namespace DFG {
class Graph;
struct AbstractValue;
struct Node;
// Use a namespace + enum instead of enum alone to avoid the namespace collision
// that would otherwise occur, since we say things like "Int8Array" and "JSArray"
// in lots of other places, to mean subtly different things.
namespace Array {
enum Action : uint8_t {
Read,
Write
};
enum Type : uint8_t {
SelectUsingPredictions, // Implies that we need predictions to decide. We will never get to the backend in this mode.
SelectUsingArguments, // Implies that we use the Node's arguments to decide. We will never get to the backend in this mode.
Unprofiled, // Implies that array profiling didn't see anything. But that could be because the operands didn't comply with basic type assumptions (base is cell, property is int). This either becomes Generic or ForceExit depending on value profiling.
ForceExit, // Implies that we have no idea how to execute this operation, so we should just give up.
Generic,
String,
Undecided,
Int32,
Double,
Contiguous,
ArrayStorage,
SlowPutArrayStorage,
DirectArguments,
ScopedArguments,
Int8Array,
Int16Array,
Int32Array,
Uint8Array,
Uint8ClampedArray,
Uint16Array,
Uint32Array,
Float16Array,
Float32Array,
Float64Array,
BigInt64Array,
BigUint64Array,
AnyTypedArray
};
enum Class : uint8_t {
NonArray, // Definitely some object that is not a JSArray.
OriginalNonArray, // Definitely some object that is not a JSArray, but that object has the original structure.
Array, // Definitely a JSArray, and may or may not have custom properties or have undergone some other bizarre transitions.
OriginalArray, // Definitely a JSArray, and still has one of the primordial JSArray structures and/or copy on write structures for the global object that this code block (possibly inlined code block) belongs to.
OriginalNonCopyOnWriteArray, // Definitely a JSArray, and still has one of the primordial JSArray structures for the global object that this code block (possibly inlined code block) belongs to.
OriginalCopyOnWriteArray, // Definitely a copy on write JSArray, and still has one of the primordial JSArray copy on write structures for the global object that this code block (possibly inlined code block) belongs to.
PossiblyArray // Some object that may or may not be a JSArray.
};
enum Speculation : uint8_t {
InBoundsSaneChain, // In bounds and the array prototype chain is still intact, i.e. loading a hole doesn't require special treatment.
InBounds, // In bounds and not loading a hole.
ToHole, // Potentially storing to a hole.
OutOfBoundsSaneChain, // Out-of-bounds access, but sane chain, so there are no arbitrary effects. E.g, loading out of bounds doesn't require traversing the prototype chain if we're an original array structure.
OutOfBounds // Out-of-bounds access and anything can happen.
};
enum Conversion : uint8_t {
AsIs,
Convert
};
} // namespace Array
IndexingType toIndexingShape(Array::Type);
TypedArrayType toTypedArrayType(Array::Type);
Array::Type toArrayType(TypedArrayType);
Array::Type refineTypedArrayType(Array::Type, TypedArrayType);
bool permitsBoundsCheckLowering(Array::Type);
class ArrayMode {
public:
ArrayMode()
{
u.asBytes.type = Array::SelectUsingPredictions;
u.asBytes.arrayClass = Array::NonArray;
u.asBytes.speculation = Array::InBounds;
u.asBytes.conversion = Array::AsIs;
u.asBytes.action = Array::Write;
u.asBytes.mayBeLargeTypedArray = false;
u.asBytes.mayBeResizableOrGrowableSharedTypedArray = false;
}
explicit ArrayMode(Array::Type type, Array::Action action)
{
u.asBytes.type = type;
u.asBytes.arrayClass = Array::NonArray;
u.asBytes.speculation = Array::InBounds;
u.asBytes.conversion = Array::AsIs;
u.asBytes.action = action;
u.asBytes.mayBeLargeTypedArray = false;
u.asBytes.mayBeResizableOrGrowableSharedTypedArray = false;
}
ArrayMode(Array::Type type, Array::Action action, Array::Speculation speculation)
{
u.asBytes.type = type;
u.asBytes.arrayClass = Array::NonArray;
u.asBytes.speculation = speculation;
u.asBytes.conversion = Array::AsIs;
u.asBytes.action = action;
u.asBytes.mayBeLargeTypedArray = false;
u.asBytes.mayBeResizableOrGrowableSharedTypedArray = false;
}
ArrayMode(Array::Type type, Array::Class arrayClass, Array::Action action)
{
u.asBytes.type = type;
u.asBytes.arrayClass = arrayClass;
u.asBytes.speculation = Array::InBounds;
u.asBytes.conversion = Array::AsIs;
u.asBytes.action = action;
u.asBytes.mayBeLargeTypedArray = false;
u.asBytes.mayBeResizableOrGrowableSharedTypedArray = false;
}
ArrayMode(Array::Type type, Array::Class arrayClass, Array::Speculation speculation, Array::Conversion conversion, Array::Action action, bool mayBeLargeTypedArray = false, bool mayBeResizableOrGrowableSharedTypedArray = false)
{
u.asBytes.type = type;
u.asBytes.arrayClass = arrayClass;
u.asBytes.speculation = speculation;
u.asBytes.conversion = conversion;
u.asBytes.action = action;
u.asBytes.mayBeLargeTypedArray = mayBeLargeTypedArray;
u.asBytes.mayBeResizableOrGrowableSharedTypedArray = mayBeResizableOrGrowableSharedTypedArray;
}
ArrayMode(Array::Type type, Array::Class arrayClass, Array::Conversion conversion, Array::Action action)
{
u.asBytes.type = type;
u.asBytes.arrayClass = arrayClass;
u.asBytes.speculation = Array::InBounds;
u.asBytes.conversion = conversion;
u.asBytes.action = action;
u.asBytes.mayBeLargeTypedArray = false;
u.asBytes.mayBeResizableOrGrowableSharedTypedArray = false;
}
Array::Type type() const { return static_cast<Array::Type>(u.asBytes.type); }
Array::Class arrayClass() const { return static_cast<Array::Class>(u.asBytes.arrayClass); }
Array::Speculation speculation() const { return static_cast<Array::Speculation>(u.asBytes.speculation); }
Array::Conversion conversion() const { return static_cast<Array::Conversion>(u.asBytes.conversion); }
Array::Action action() const { return static_cast<Array::Action>(u.asBytes.action); }
bool mayBeLargeTypedArray() const { return u.asBytes.mayBeLargeTypedArray; }
bool mayBeResizableOrGrowableSharedTypedArray() const { return u.asBytes.mayBeResizableOrGrowableSharedTypedArray; }
unsigned asWord() const { return u.asWord; }
static ArrayMode fromWord(unsigned word)
{
return ArrayMode(word);
}
static ArrayMode fromObserved(const ConcurrentJSLocker&, ArrayProfile*, Array::Action, bool makeSafe);
ArrayMode withType(Array::Type type) const
{
return ArrayMode(type, arrayClass(), speculation(), conversion(), action(), mayBeLargeTypedArray(), mayBeResizableOrGrowableSharedTypedArray());
}
ArrayMode withSpeculation(Array::Speculation speculation) const
{
return ArrayMode(type(), arrayClass(), speculation, conversion(), action(), mayBeLargeTypedArray(), mayBeResizableOrGrowableSharedTypedArray());
}
ArrayMode withConversion(Array::Conversion conversion) const
{
return ArrayMode(type(), arrayClass(), speculation(), conversion, action(), mayBeLargeTypedArray(), mayBeResizableOrGrowableSharedTypedArray());
}
ArrayMode withTypeAndConversion(Array::Type type, Array::Conversion conversion) const
{
return ArrayMode(type, arrayClass(), speculation(), conversion, action(), mayBeLargeTypedArray(), mayBeResizableOrGrowableSharedTypedArray());
}
ArrayMode withArrayClassAndSpeculation(Array::Class arrayClass, Array::Speculation speculation, bool mayBeLargeTypedArray, bool mayBeResizableOrGrowableSharedTypedArray) const
{
return ArrayMode(type(), arrayClass, speculation, conversion(), action(), mayBeLargeTypedArray, mayBeResizableOrGrowableSharedTypedArray);
}
static Array::Speculation speculationFromProfile(const ConcurrentJSLocker& locker, ArrayProfile* profile, bool makeSafe)
{
if (makeSafe)
return Array::OutOfBounds;
else if (profile->mayStoreToHole(locker))
return Array::ToHole;
else
return Array::InBounds;
}
ArrayMode withSpeculationFromProfile(const ConcurrentJSLocker& locker, ArrayProfile* profile, bool makeSafe) const
{
return withSpeculation(speculationFromProfile(locker, profile, makeSafe));
}
ArrayMode withProfile(const ConcurrentJSLocker& locker, ArrayProfile* profile, bool makeSafe) const
{
Array::Class myArrayClass;
if (isJSArray()) {
if (profile->usesOriginalArrayStructures(locker) && benefitsFromOriginalArray()) {
switch (type()) {
case Array::Int32:
case Array::Double:
case Array::Contiguous: {
ArrayModes arrayModes = profile->observedArrayModes(locker);
if (hasSeenCopyOnWriteArray(arrayModes) && !hasSeenWritableArray(arrayModes))
myArrayClass = Array::OriginalCopyOnWriteArray;
else if (!hasSeenCopyOnWriteArray(arrayModes) && hasSeenWritableArray(arrayModes))
myArrayClass = Array::OriginalNonCopyOnWriteArray;
else
myArrayClass = Array::OriginalArray;
break;
}
case Array::Undecided:
case Array::ArrayStorage: {
myArrayClass = Array::OriginalArray;
break;
}
default:
RELEASE_ASSERT_NOT_REACHED();
break;
}
} else
myArrayClass = Array::Array;
} else
myArrayClass = arrayClass();
Array::Speculation speculation = speculationFromProfile(locker, profile, makeSafe);
bool mayBeLargeTypedArray = profile->mayBeLargeTypedArray(locker);
bool mayBeResizableOrGrowableSharedTypedArray = profile->mayBeResizableOrGrowableSharedTypedArray(locker);
return withArrayClassAndSpeculation(myArrayClass, speculation, mayBeLargeTypedArray, mayBeResizableOrGrowableSharedTypedArray);
}
static constexpr SpeculatedType unusedIndexSpeculatedType = SpecInt32Only;
ArrayMode refine(Graph&, Node*, SpeculatedType base, SpeculatedType index, SpeculatedType value = SpecNone) const;
bool alreadyChecked(Graph&, Node*, const AbstractValue&) const;
void dump(PrintStream&) const;
bool usesButterfly() const
{
switch (type()) {
case Array::Undecided:
case Array::Int32:
case Array::Double:
case Array::Contiguous:
case Array::ArrayStorage:
case Array::SlowPutArrayStorage:
return true;
default:
return false;
}
}
bool isJSArray() const
{
switch (arrayClass()) {
case Array::Array:
case Array::OriginalArray:
case Array::OriginalNonCopyOnWriteArray:
case Array::OriginalCopyOnWriteArray:
return true;
default:
return false;
}
}
bool isJSArrayWithOriginalStructure() const
{
switch (arrayClass()) {
case Array::OriginalArray:
case Array::OriginalNonCopyOnWriteArray:
case Array::OriginalCopyOnWriteArray:
return true;
default:
return false;
}
}
bool isInBoundsSaneChain() const
{
return speculation() == Array::InBoundsSaneChain;
}
bool isOutOfBoundsSaneChain() const
{
return speculation() == Array::OutOfBoundsSaneChain;
}
bool isSaneChain() const
{
return isInBoundsSaneChain() || isOutOfBoundsSaneChain();
}
bool isOutOfBounds() const
{
return speculation() == Array::OutOfBounds || speculation() == Array::OutOfBoundsSaneChain;
}
bool isEffectfulOutOfBounds() const
{
return speculation() == Array::OutOfBounds;
}
bool isInBounds() const
{
switch (speculation()) {
case Array::InBoundsSaneChain:
case Array::InBounds:
return true;
default:
return false;
}
}
bool mayStoreToHole() const
{
return !isInBounds();
}
bool isSlowPut() const
{
return type() == Array::SlowPutArrayStorage;
}
bool canCSEStorage() const
{
switch (type()) {
case Array::SelectUsingPredictions:
case Array::SelectUsingArguments:
case Array::Unprofiled:
case Array::Undecided:
case Array::ForceExit:
case Array::Generic:
case Array::DirectArguments:
case Array::ScopedArguments:
return false;
default:
return true;
}
}
bool lengthNeedsStorage() const
{
switch (type()) {
case Array::Undecided:
case Array::Int32:
case Array::Double:
case Array::Contiguous:
case Array::ArrayStorage:
case Array::SlowPutArrayStorage:
return true;
default:
return false;
}
}
ArrayMode modeForPut() const
{
switch (type()) {
case Array::String:
case Array::DirectArguments:
case Array::ScopedArguments:
return ArrayMode(Array::Generic);
default:
return *this;
}
}
bool isSpecific() const
{
switch (type()) {
case Array::SelectUsingPredictions:
case Array::SelectUsingArguments:
case Array::Unprofiled:
case Array::ForceExit:
case Array::Generic:
return false;
default:
return true;
}
}
bool supportsSelfLength() const
{
switch (type()) {
case Array::SelectUsingPredictions:
case Array::Unprofiled:
case Array::ForceExit:
case Array::Generic:
// TypedArrays do not have a self length property as of ES6.
case Array::Int8Array:
case Array::Int16Array:
case Array::Int32Array:
case Array::Uint8Array:
case Array::Uint8ClampedArray:
case Array::Uint16Array:
case Array::Uint32Array:
case Array::Float16Array:
case Array::Float32Array:
case Array::Float64Array:
case Array::BigInt64Array:
case Array::BigUint64Array:
return false;
case Array::Int32:
case Array::Double:
case Array::Contiguous:
case Array::ArrayStorage:
case Array::SlowPutArrayStorage:
return isJSArray();
default:
return true;
}
}
bool permitsBoundsCheckLowering() const;
bool benefitsFromOriginalArray() const
{
switch (type()) {
case Array::Int32:
case Array::Double:
case Array::Contiguous:
case Array::Undecided:
case Array::ArrayStorage:
return true;
default:
return false;
}
}
StructureSet originalArrayStructures(Graph&, const CodeOrigin&) const;
StructureSet originalArrayStructures(Graph&, Node*) const;
bool doesConversion() const
{
return conversion() != Array::AsIs;
}
bool structureWouldPassArrayModeFiltering(Structure* structure)
{
return arrayModesAlreadyChecked(arrayModesFromStructure(structure), arrayModesThatPassFiltering());
}
ArrayModes arrayModesThatPassFiltering() const
{
ArrayModes result;
switch (type()) {
case Array::Generic:
return ALL_ARRAY_MODES;
case Array::Undecided:
return arrayModesWithIndexingShapes(UndecidedShape);
case Array::Int32:
result = arrayModesWithIndexingShapes(Int32Shape);
break;
case Array::Double:
result = arrayModesWithIndexingShapes(DoubleShape);
break;
case Array::Contiguous:
result = arrayModesWithIndexingShapes(ContiguousShape);
break;
case Array::ArrayStorage:
return arrayModesWithIndexingShapes(ArrayStorageShape);
case Array::SlowPutArrayStorage:
return arrayModesWithIndexingShapes(SlowPutArrayStorageShape, ArrayStorageShape);
case Array::DirectArguments:
case Array::ScopedArguments:
return arrayModesWithIndexingShapes(ArrayStorageShape, SlowPutArrayStorageShape, NonArray);
case Array::Int8Array:
return Int8ArrayMode;
case Array::Int16Array:
return Int16ArrayMode;
case Array::Int32Array:
return Int32ArrayMode;
case Array::Uint8Array:
return Uint8ArrayMode;
case Array::Uint8ClampedArray:
return Uint8ClampedArrayMode;
case Array::Uint16Array:
return Uint16ArrayMode;
case Array::Uint32Array:
return Uint32ArrayMode;
case Array::Float16Array:
return Float16ArrayMode;
case Array::Float32Array:
return Float32ArrayMode;
case Array::Float64Array:
return Float64ArrayMode;
case Array::BigInt64Array:
return BigInt64ArrayMode;
case Array::BigUint64Array:
return BigUint64ArrayMode;
case Array::AnyTypedArray:
return ALL_TYPED_ARRAY_MODES;
default:
return asArrayModesIgnoringTypedArrays(NonArray);
}
if (action() == Array::Write)
result &= ~ALL_COPY_ON_WRITE_ARRAY_MODES;
return result;
}
bool getIndexedPropertyStorageMayTriggerGC() const
{
return type() == Array::String;
}
IndexingType shapeMask() const
{
return toIndexingShape(type());
}
TypedArrayType typedArrayType() const
{
return toTypedArrayType(type());
}
bool isSomeTypedArrayView() const
{
return type() == Array::AnyTypedArray || isTypedView(typedArrayType());
}
bool operator==(const ArrayMode& other) const
{
return type() == other.type()
&& arrayClass() == other.arrayClass()
&& speculation() == other.speculation()
&& conversion() == other.conversion()
&& mayBeLargeTypedArray() == other.mayBeLargeTypedArray()
&& mayBeResizableOrGrowableSharedTypedArray() == other.mayBeResizableOrGrowableSharedTypedArray();
}
private:
explicit ArrayMode(unsigned word)
{
u.asWord = word;
}
ArrayModes arrayModesWithIndexingShapes(IndexingType shape) const
{
switch (arrayClass()) {
case Array::NonArray:
case Array::OriginalNonArray:
return asArrayModesIgnoringTypedArrays(shape);
case Array::OriginalCopyOnWriteArray:
ASSERT(hasInt32(shape) || hasDouble(shape) || hasContiguous(shape));
return asArrayModesIgnoringTypedArrays(shape | IsArray) | asArrayModesIgnoringTypedArrays(shape | IsArray | CopyOnWrite);
case Array::OriginalArray:
case Array::Array:
if (hasInt32(shape) || hasDouble(shape) || hasContiguous(shape))
return asArrayModesIgnoringTypedArrays(shape | IsArray) | asArrayModesIgnoringTypedArrays(shape | IsArray | CopyOnWrite);
FALLTHROUGH;
case Array::OriginalNonCopyOnWriteArray:
return asArrayModesIgnoringTypedArrays(shape | IsArray);
case Array::PossiblyArray:
if (hasInt32(shape) || hasDouble(shape) || hasContiguous(shape))
return asArrayModesIgnoringTypedArrays(shape) | asArrayModesIgnoringTypedArrays(shape | IsArray) | asArrayModesIgnoringTypedArrays(shape | IsArray | CopyOnWrite);
return asArrayModesIgnoringTypedArrays(shape) | asArrayModesIgnoringTypedArrays(shape | IsArray);
}
// This is only necessary for C++ compilers that don't understand enums.
return 0;
}
template <typename... Args>
ArrayModes arrayModesWithIndexingShapes(IndexingType shape1, Args... args) const
{
ArrayModes arrayMode1 = arrayModesWithIndexingShapes(shape1);
ArrayModes arrayMode2 = arrayModesWithIndexingShapes(args...);
return arrayMode1 | arrayMode2;
}
bool alreadyChecked(Graph&, Node*, const AbstractValue&, IndexingType shape) const;
union {
struct {
uint8_t type;
uint8_t arrayClass;
uint8_t speculation;
uint8_t conversion : 4;
uint8_t action : 1;
uint8_t mayBeLargeTypedArray : 1;
uint8_t mayBeResizableOrGrowableSharedTypedArray : 1;
} asBytes;
unsigned asWord;
} u;
static_assert(sizeof(decltype(u.asBytes)) == sizeof(decltype(u.asWord)), "the word form of ArrayMode should have the same size as the individual slices");
};
static inline bool canCSEStorage(const ArrayMode& arrayMode)
{
return arrayMode.canCSEStorage();
}
static inline bool lengthNeedsStorage(const ArrayMode& arrayMode)
{
return arrayMode.lengthNeedsStorage();
}
static inline bool neverNeedsStorage(const ArrayMode&)
{
return false;
}
} } // namespace JSC::DFG
namespace WTF {
class PrintStream;
void printInternal(PrintStream&, JSC::DFG::Array::Action);
void printInternal(PrintStream&, JSC::DFG::Array::Type);
void printInternal(PrintStream&, JSC::DFG::Array::Class);
void printInternal(PrintStream&, JSC::DFG::Array::Speculation);
void printInternal(PrintStream&, JSC::DFG::Array::Conversion);
} // namespace WTF
#endif // ENABLE(DFG_JIT)
|