-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
DFGNode.h
3399 lines (2934 loc) · 86.2 KB
/
DFGNode.h
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
/*
* Copyright (C) 2011-2020 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 "B3SparseCollection.h"
#include "BasicBlockLocation.h"
#include "CodeBlock.h"
#include "DFGAdjacencyList.h"
#include "DFGArithMode.h"
#include "DFGArrayMode.h"
#include "DFGCommon.h"
#include "DFGEpoch.h"
#include "DFGLazyJSValue.h"
#include "DFGMultiGetByOffsetData.h"
#include "DFGNodeFlags.h"
#include "DFGNodeOrigin.h"
#include "DFGNodeType.h"
#include "DFGObjectMaterializationData.h"
#include "DFGOpInfo.h"
#include "DFGRegisteredStructure.h"
#include "DFGRegisteredStructureSet.h"
#include "DFGTransition.h"
#include "DFGUseKind.h"
#include "DFGVariableAccessData.h"
#include "DOMJITSignature.h"
#include "DeleteByIdVariant.h"
#include "GetByIdVariant.h"
#include "JSCJSValue.h"
#include "Operands.h"
#include "PrivateFieldPutKind.h"
#include "PutByIdVariant.h"
#include "SpeculatedType.h"
#include "TypeLocation.h"
#include "ValueProfile.h"
#include <type_traits>
#include <wtf/FastMalloc.h>
#include <wtf/ListDump.h>
#include <wtf/LoggingHashSet.h>
namespace JSC {
namespace DOMJIT {
class GetterSetter;
class CallDOMGetterSnippet;
class Signature;
}
namespace Profiler {
class ExecutionCounter;
}
class Snippet;
namespace DFG {
class Graph;
class PromotedLocationDescriptor;
struct BasicBlock;
struct StorageAccessData {
PropertyOffset offset;
unsigned identifierNumber;
};
struct MultiPutByOffsetData {
unsigned identifierNumber;
Vector<PutByIdVariant, 2> variants;
bool writesStructures() const;
bool reallocatesStorage() const;
};
struct MultiDeleteByOffsetData {
unsigned identifierNumber;
Vector<DeleteByIdVariant, 2> variants;
bool writesStructures() const;
bool allVariantsStoreEmpty() const;
};
struct MatchStructureVariant {
RegisteredStructure structure;
bool result;
};
struct MatchStructureData {
Vector<MatchStructureVariant, 2> variants;
};
struct NewArrayBufferData {
union {
struct {
unsigned vectorLengthHint;
unsigned indexingMode;
};
uint64_t asQuadWord;
};
};
static_assert(sizeof(IndexingType) <= sizeof(unsigned), "");
static_assert(sizeof(NewArrayBufferData) == sizeof(uint64_t), "");
struct DataViewData {
union {
struct {
uint8_t byteSize;
bool isSigned;
bool isFloatingPoint; // Used for the DataViewSet node.
TriState isLittleEndian;
};
uint64_t asQuadWord;
};
};
static_assert(sizeof(DataViewData) == sizeof(uint64_t), "");
struct BranchTarget {
BranchTarget()
: block(nullptr)
, count(PNaN)
{
}
explicit BranchTarget(BasicBlock* block)
: block(block)
, count(PNaN)
{
}
void setBytecodeIndex(unsigned bytecodeIndex)
{
block = bitwise_cast<BasicBlock*>(static_cast<uintptr_t>(bytecodeIndex));
}
unsigned bytecodeIndex() const { return bitwise_cast<uintptr_t>(block); }
void dump(PrintStream&) const;
BasicBlock* block;
float count;
};
struct BranchData {
static BranchData withBytecodeIndices(
unsigned takenBytecodeIndex, unsigned notTakenBytecodeIndex)
{
BranchData result;
result.taken.block = bitwise_cast<BasicBlock*>(static_cast<uintptr_t>(takenBytecodeIndex));
result.notTaken.block = bitwise_cast<BasicBlock*>(static_cast<uintptr_t>(notTakenBytecodeIndex));
return result;
}
unsigned takenBytecodeIndex() const { return taken.bytecodeIndex(); }
unsigned notTakenBytecodeIndex() const { return notTaken.bytecodeIndex(); }
BasicBlock*& forCondition(bool condition)
{
if (condition)
return taken.block;
return notTaken.block;
}
BranchTarget taken;
BranchTarget notTaken;
};
// The SwitchData and associated data structures duplicate the information in
// JumpTable. The DFG may ultimately end up using the JumpTable, though it may
// instead decide to do something different - this is entirely up to the DFG.
// These data structures give the DFG a higher-level semantic description of
// what is going on, which will allow it to make the right decision.
//
// Note that there will never be multiple SwitchCases in SwitchData::cases that
// have the same SwitchCase::value, since the bytecode's JumpTables never have
// duplicates - since the JumpTable maps a value to a target. It's a
// one-to-many mapping. So we may have duplicate targets, but never duplicate
// values.
struct SwitchCase {
SwitchCase()
{
}
SwitchCase(LazyJSValue value, BasicBlock* target)
: value(value)
, target(target)
{
}
static SwitchCase withBytecodeIndex(LazyJSValue value, unsigned bytecodeIndex)
{
SwitchCase result;
result.value = value;
result.target.setBytecodeIndex(bytecodeIndex);
return result;
}
LazyJSValue value;
BranchTarget target;
};
struct SwitchData {
// Initializes most fields to obviously invalid values. Anyone
// constructing this should make sure to initialize everything they
// care about manually.
SwitchData()
: switchTableIndex(UINT_MAX)
, kind(static_cast<SwitchKind>(-1))
, didUseJumpTable(false)
{
}
Vector<SwitchCase> cases;
BranchTarget fallThrough;
size_t switchTableIndex;
SwitchKind kind;
bool didUseJumpTable;
};
struct EntrySwitchData {
Vector<BasicBlock*> cases;
};
struct CallVarargsData {
int firstVarArgOffset;
};
struct LoadVarargsData {
VirtualRegister start; // Local for the first element. This is the first actual argument, not this.
VirtualRegister count; // Local for the count.
VirtualRegister machineStart;
VirtualRegister machineCount;
unsigned offset; // Which array element to start with. Usually this is 0.
unsigned mandatoryMinimum; // The number of elements on the stack that must be initialized; if the array is too short then the missing elements must get undefined. Does not include "this".
unsigned limit; // Maximum number of elements to load. Includes "this".
};
struct StackAccessData {
StackAccessData()
: format(DeadFlush)
{
}
StackAccessData(Operand operand, FlushFormat format)
: operand(operand)
, format(format)
{
}
Operand operand;
VirtualRegister machineLocal;
FlushFormat format;
FlushedAt flushedAt() { return FlushedAt(format, machineLocal); }
};
struct CallDOMGetterData {
FunctionPtr<CustomAccessorPtrTag> customAccessorGetter;
const DOMJIT::GetterSetter* domJIT { nullptr };
DOMJIT::CallDOMGetterSnippet* snippet { nullptr };
unsigned identifierNumber { 0 };
const ClassInfo* requiredClassInfo { nullptr };
};
enum class BucketOwnerType : uint32_t {
Map,
Set
};
// === Node ===
//
// Node represents a single operation in the data flow graph.
DECLARE_ALLOCATOR_WITH_HEAP_IDENTIFIER(DFGNode);
struct Node {
WTF_MAKE_STRUCT_FAST_ALLOCATED_WITH_HEAP_IDENTIFIER(DFGNode);
public:
static const char HashSetTemplateInstantiationString[];
enum VarArgTag { VarArg };
Node() { }
Node(NodeType op, NodeOrigin nodeOrigin, const AdjacencyList& children)
: origin(nodeOrigin)
, children(children)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
}
// Construct a node with up to 3 children, no immediate value.
Node(NodeType op, NodeOrigin nodeOrigin, Edge child1 = Edge(), Edge child2 = Edge(), Edge child3 = Edge())
: origin(nodeOrigin)
, children(AdjacencyList::Fixed, child1, child2, child3)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
ASSERT(!(m_flags & NodeHasVarArgs));
}
// Construct a node with up to 3 children, no immediate value.
Node(NodeFlags result, NodeType op, NodeOrigin nodeOrigin, Edge child1 = Edge(), Edge child2 = Edge(), Edge child3 = Edge())
: origin(nodeOrigin)
, children(AdjacencyList::Fixed, child1, child2, child3)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
setResult(result);
ASSERT(!(m_flags & NodeHasVarArgs));
}
// Construct a node with up to 3 children and an immediate value.
Node(NodeType op, NodeOrigin nodeOrigin, OpInfo imm, Edge child1 = Edge(), Edge child2 = Edge(), Edge child3 = Edge())
: origin(nodeOrigin)
, children(AdjacencyList::Fixed, child1, child2, child3)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, m_opInfo(imm.m_value)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
ASSERT(!(m_flags & NodeHasVarArgs));
}
// Construct a node with up to 3 children and an immediate value.
Node(NodeFlags result, NodeType op, NodeOrigin nodeOrigin, OpInfo imm, Edge child1 = Edge(), Edge child2 = Edge(), Edge child3 = Edge())
: origin(nodeOrigin)
, children(AdjacencyList::Fixed, child1, child2, child3)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, m_opInfo(imm.m_value)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
setResult(result);
ASSERT(!(m_flags & NodeHasVarArgs));
}
// Construct a node with up to 3 children and two immediate values.
Node(NodeType op, NodeOrigin nodeOrigin, OpInfo imm1, OpInfo imm2, Edge child1 = Edge(), Edge child2 = Edge(), Edge child3 = Edge())
: origin(nodeOrigin)
, children(AdjacencyList::Fixed, child1, child2, child3)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, m_opInfo(imm1.m_value)
, m_opInfo2(imm2.m_value)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
ASSERT(!(m_flags & NodeHasVarArgs));
}
// Construct a node with a variable number of children and two immediate values.
Node(VarArgTag, NodeType op, NodeOrigin nodeOrigin, OpInfo imm1, OpInfo imm2, unsigned firstChild, unsigned numChildren)
: origin(nodeOrigin)
, children(AdjacencyList::Variable, firstChild, numChildren)
, m_virtualRegister(VirtualRegister())
, m_refCount(1)
, m_prediction(SpecNone)
, m_opInfo(imm1.m_value)
, m_opInfo2(imm2.m_value)
, owner(nullptr)
{
m_misc.replacement = nullptr;
setOpAndDefaultFlags(op);
ASSERT(m_flags & NodeHasVarArgs);
}
NodeType op() const { return static_cast<NodeType>(m_op); }
NodeFlags flags() const { return m_flags; }
unsigned index() const { return m_index; }
void setOp(NodeType op)
{
m_op = op;
}
void setFlags(NodeFlags flags)
{
m_flags = flags;
}
bool mergeFlags(NodeFlags flags)
{
NodeFlags newFlags = m_flags | flags;
if (newFlags == m_flags)
return false;
m_flags = newFlags;
return true;
}
bool filterFlags(NodeFlags flags)
{
NodeFlags newFlags = m_flags & flags;
if (newFlags == m_flags)
return false;
m_flags = newFlags;
return true;
}
bool clearFlags(NodeFlags flags)
{
return filterFlags(~flags);
}
void setResult(NodeFlags result)
{
ASSERT(!(result & ~NodeResultMask));
clearFlags(NodeResultMask);
mergeFlags(result);
}
NodeFlags result() const
{
return flags() & NodeResultMask;
}
void setOpAndDefaultFlags(NodeType op)
{
m_op = op;
m_flags = defaultFlags(op);
}
void remove(Graph&);
void removeWithoutChecks();
void convertToCheckStructure(RegisteredStructureSet* set)
{
setOpAndDefaultFlags(CheckStructure);
m_opInfo = set;
}
void convertToCheckStructureOrEmpty(RegisteredStructureSet* set)
{
if (SpecCellCheck & SpecEmpty)
setOpAndDefaultFlags(CheckStructureOrEmpty);
else
setOpAndDefaultFlags(CheckStructure);
m_opInfo = set;
}
void convertCheckStructureOrEmptyToCheckStructure()
{
ASSERT(op() == CheckStructureOrEmpty);
setOpAndDefaultFlags(CheckStructure);
}
void convertToCheckStructureImmediate(Node* structure)
{
ASSERT(op() == CheckStructure || op() == CheckStructureOrEmpty);
m_op = CheckStructureImmediate;
children.setChild1(Edge(structure, CellUse));
}
void convertCheckArrayOrEmptyToCheckArray()
{
ASSERT(op() == CheckArrayOrEmpty);
setOpAndDefaultFlags(CheckArray);
}
void replaceWith(Graph&, Node* other);
void replaceWithWithoutChecks(Node* other);
void convertToIdentity();
void convertToIdentityOn(Node*);
bool mustGenerate() const
{
return m_flags & NodeMustGenerate;
}
bool hasVarArgs() const
{
return m_flags & NodeHasVarArgs;
}
bool isConstant()
{
switch (op()) {
case JSConstant:
case DoubleConstant:
case Int52Constant:
return true;
default:
return false;
}
}
bool hasConstant()
{
switch (op()) {
case CheckIsConstant:
case JSConstant:
case DoubleConstant:
case Int52Constant:
return true;
case PhantomDirectArguments:
case PhantomClonedArguments:
// These pretend to be the empty value constant for the benefit of the DFG backend, which
// otherwise wouldn't take kindly to a node that doesn't compute a value.
return true;
default:
return false;
}
}
FrozenValue* constant()
{
ASSERT(hasConstant());
if (op() == PhantomDirectArguments || op() == PhantomClonedArguments) {
// These pretend to be the empty value constant for the benefit of the DFG backend, which
// otherwise wouldn't take kindly to a node that doesn't compute a value.
return FrozenValue::emptySingleton();
}
return m_opInfo.as<FrozenValue*>();
}
// Don't call this directly - use Graph::convertToConstant() instead!
void convertToConstant(FrozenValue* value)
{
if (hasDoubleResult())
m_op = DoubleConstant;
else if (hasInt52Result())
m_op = Int52Constant;
else
m_op = JSConstant;
m_flags &= ~(NodeMustGenerate | NodeHasVarArgs);
m_opInfo = value;
children.reset();
}
void convertToLazyJSConstant(Graph&, LazyJSValue);
void convertToConstantStoragePointer(void* pointer)
{
ASSERT(op() == GetIndexedPropertyStorage);
m_op = ConstantStoragePointer;
m_opInfo = pointer;
children.reset();
}
void convertToPutStack(StackAccessData* data)
{
m_op = PutStack;
m_flags |= NodeMustGenerate;
m_opInfo = data;
m_opInfo2 = OpInfoWrapper();
}
void convertToGetStack(StackAccessData* data)
{
m_op = GetStack;
m_flags &= ~NodeMustGenerate;
m_opInfo = data;
m_opInfo2 = OpInfoWrapper();
children.reset();
}
void convertToGetByOffset(StorageAccessData& data, Edge storage, Edge base)
{
ASSERT(m_op == GetById || m_op == GetByIdFlush || m_op == GetByIdDirect || m_op == GetByIdDirectFlush || m_op == GetPrivateNameById || m_op == MultiGetByOffset);
m_opInfo = &data;
children.setChild1(storage);
children.setChild2(base);
m_op = GetByOffset;
m_flags &= ~NodeMustGenerate;
}
void convertToMultiGetByOffset(MultiGetByOffsetData* data)
{
RELEASE_ASSERT(m_op == GetById || m_op == GetByIdFlush || m_op == GetByIdDirect || m_op == GetByIdDirectFlush || m_op == GetPrivateNameById);
m_opInfo = data;
child1().setUseKind(CellUse);
m_op = MultiGetByOffset;
RELEASE_ASSERT(m_flags & NodeMustGenerate);
}
void convertToPutByOffset(StorageAccessData& data, Edge storage, Edge base)
{
ASSERT(m_op == PutById || m_op == PutByIdDirect || m_op == PutByIdFlush || m_op == MultiPutByOffset || m_op == PutPrivateNameById);
m_opInfo = &data;
children.setChild3(children.child2());
children.setChild2(base);
children.setChild1(storage);
m_op = PutByOffset;
}
void convertToMultiPutByOffset(MultiPutByOffsetData* data)
{
ASSERT(m_op == PutById || m_op == PutByIdDirect || m_op == PutByIdFlush || m_op == PutPrivateNameById);
m_opInfo = data;
m_op = MultiPutByOffset;
}
void convertToPhantomNewObject()
{
ASSERT(m_op == NewObject);
m_op = PhantomNewObject;
m_flags &= ~NodeHasVarArgs;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomNewFunction()
{
ASSERT(m_op == NewFunction || m_op == NewGeneratorFunction || m_op == NewAsyncFunction || m_op == NewAsyncGeneratorFunction);
m_op = PhantomNewFunction;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomNewGeneratorFunction()
{
ASSERT(m_op == NewGeneratorFunction);
m_op = PhantomNewGeneratorFunction;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomNewInternalFieldObject()
{
ASSERT(m_op == NewInternalFieldObject);
m_op = PhantomNewInternalFieldObject;
m_flags &= ~NodeHasVarArgs;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomNewAsyncFunction()
{
ASSERT(m_op == NewAsyncFunction);
m_op = PhantomNewAsyncFunction;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomNewAsyncGeneratorFunction()
{
ASSERT(m_op == NewAsyncGeneratorFunction);
m_op = PhantomNewAsyncGeneratorFunction;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomCreateActivation()
{
ASSERT(m_op == CreateActivation);
m_op = PhantomCreateActivation;
m_flags &= ~NodeHasVarArgs;
m_flags |= NodeMustGenerate;
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertToPhantomNewRegexp()
{
ASSERT(m_op == NewRegexp);
setOpAndDefaultFlags(PhantomNewRegexp);
m_opInfo = OpInfoWrapper();
m_opInfo2 = OpInfoWrapper();
children = AdjacencyList();
}
void convertPhantomToPhantomLocal()
{
ASSERT(m_op == Phantom && (child1()->op() == Phi || child1()->op() == SetLocal || child1()->op() == SetArgumentDefinitely));
m_op = PhantomLocal;
m_opInfo = child1()->m_opInfo; // Copy the variableAccessData.
children.setChild1(Edge());
}
void convertFlushToPhantomLocal()
{
ASSERT(m_op == Flush);
m_op = PhantomLocal;
children = AdjacencyList();
}
void convertToToString()
{
ASSERT(m_op == ToPrimitive || m_op == StringValueOf || m_op == ToPropertyKey);
m_op = ToString;
}
void convertToArithNegate()
{
ASSERT(m_op == ArithAbs && child1().useKind() == Int32Use);
m_op = ArithNegate;
}
void convertToCompareEqPtr(FrozenValue* cell, Edge node)
{
ASSERT(m_op == CompareStrictEq || m_op == SameValue);
setOpAndDefaultFlags(CompareEqPtr);
children.setChild1(node);
children.setChild2(Edge());
m_opInfo = cell;
}
void convertToNumberToStringWithValidRadixConstant(int32_t radix)
{
ASSERT(m_op == NumberToStringWithRadix);
ASSERT(2 <= radix && radix <= 36);
setOpAndDefaultFlags(NumberToStringWithValidRadixConstant);
children.setChild2(Edge());
m_opInfo = radix;
}
void convertToGetGlobalThis()
{
ASSERT(m_op == ToThis);
setOpAndDefaultFlags(GetGlobalThis);
children.setChild1(Edge());
}
void convertToCallObjectConstructor(FrozenValue* globalObject)
{
ASSERT(m_op == ToObject);
setOpAndDefaultFlags(CallObjectConstructor);
m_opInfo = globalObject;
}
void convertToNewStringObject(RegisteredStructure structure)
{
ASSERT(m_op == CallObjectConstructor || m_op == ToObject);
setOpAndDefaultFlags(NewStringObject);
m_opInfo = structure;
m_opInfo2 = OpInfoWrapper();
}
void convertToNewObject(RegisteredStructure structure)
{
ASSERT(m_op == CallObjectConstructor || m_op == CreateThis || m_op == ObjectCreate);
setOpAndDefaultFlags(NewObject);
children.reset();
m_opInfo = structure;
m_opInfo2 = OpInfoWrapper();
}
void convertToNewInternalFieldObject(RegisteredStructure structure)
{
ASSERT(m_op == CreatePromise);
setOpAndDefaultFlags(NewInternalFieldObject);
children.reset();
m_opInfo = structure;
m_opInfo2 = OpInfoWrapper();
}
void convertToNewInternalFieldObjectWithInlineFields(NodeType newOp, RegisteredStructure structure)
{
ASSERT(m_op == CreateAsyncGenerator || m_op == CreateGenerator);
setOpAndDefaultFlags(newOp);
children.reset();
m_opInfo = structure;
m_opInfo2 = OpInfoWrapper();
}
void convertToNewArrayBuffer(FrozenValue* immutableButterfly);
void convertToDirectCall(FrozenValue*);
void convertToCallDOM(Graph&);
void convertToRegExpExecNonGlobalOrStickyWithoutChecks(FrozenValue* regExp);
void convertToRegExpMatchFastGlobalWithoutChecks(FrozenValue* regExp);
void convertToSetRegExpObjectLastIndex()
{
setOp(SetRegExpObjectLastIndex);
m_opInfo = false;
}
void convertToInById(CacheableIdentifier identifier)
{
ASSERT(m_op == InByVal);
setOpAndDefaultFlags(InById);
children.setChild2(Edge());
m_opInfo = identifier;
m_opInfo2 = OpInfoWrapper();
}
JSValue asJSValue()
{
return constant()->value();
}
bool isInt32Constant()
{
return isConstant() && constant()->value().isInt32();
}
int32_t asInt32()
{
return asJSValue().asInt32();
}
uint32_t asUInt32()
{
return asInt32();
}
bool isDoubleConstant()
{
return isConstant() && constant()->value().isDouble();
}
bool isNumberConstant()
{
return isConstant() && constant()->value().isNumber();
}
double asNumber()
{
return asJSValue().asNumber();
}
bool isAnyIntConstant()
{
return isConstant() && constant()->value().isAnyInt();
}
int64_t asAnyInt()
{
return asJSValue().asAnyInt();
}
bool isBooleanConstant()
{
return isConstant() && constant()->value().isBoolean();
}
bool asBoolean()
{
return constant()->value().asBoolean();
}
bool isUndefinedOrNullConstant()
{
return isConstant() && constant()->value().isUndefinedOrNull();
}
bool isCellConstant()
{
return isConstant() && constant()->value() && constant()->value().isCell();
}
JSCell* asCell()
{
return constant()->value().asCell();
}
template<typename T>
T dynamicCastConstant(VM& vm)
{
if (!isCellConstant())
return nullptr;
return jsDynamicCast<T>(vm, asCell());
}
bool hasLazyJSValue()
{
return op() == LazyJSConstant;
}
LazyJSValue lazyJSValue()
{
ASSERT(hasLazyJSValue());
return *m_opInfo.as<LazyJSValue*>();
}
String tryGetString(Graph&);
JSValue initializationValueForActivation() const
{
ASSERT(op() == CreateActivation);
return m_opInfo2.as<FrozenValue*>()->value();
}
bool hasArgumentsChild()
{
switch (op()) {
case GetMyArgumentByVal:
case GetMyArgumentByValOutOfBounds:
case VarargsLength:
case LoadVarargs:
case ForwardVarargs:
case CallVarargs:
case CallForwardVarargs:
case ConstructVarargs:
case ConstructForwardVarargs:
case TailCallVarargs:
case TailCallForwardVarargs:
case TailCallVarargsInlinedCaller:
case TailCallForwardVarargsInlinedCaller:
return true;
default:
return false;
}
}
Edge& argumentsChild()
{
switch (op()) {
case GetMyArgumentByVal:
case GetMyArgumentByValOutOfBounds:
case VarargsLength:
return child1();
case LoadVarargs:
case ForwardVarargs:
return child2();
case CallVarargs:
case CallForwardVarargs:
case ConstructVarargs:
case ConstructForwardVarargs:
case TailCallVarargs:
case TailCallForwardVarargs:
case TailCallVarargsInlinedCaller:
case TailCallForwardVarargsInlinedCaller:
return child3();
default:
RELEASE_ASSERT_NOT_REACHED();
return child1();
}
}
bool containsMovHint()
{
switch (op()) {
case MovHint:
return true;
default:
return false;
}
}
bool hasVariableAccessData(Graph&);
bool accessesStack(Graph& graph)
{
return hasVariableAccessData(graph);
}
// This is useful for debugging code, where a node that should have a variable
// access data doesn't have one because it hasn't been initialized yet.