@@ -1763,19 +1763,19 @@ BackwardPass::ProcessBailOutArgObj(BailOutInfo * bailOutInfo, BVSparse<JitArenaA
1763
1763
{
1764
1764
if (byteCodeUpwardExposedUsed->TestAndClear (symId))
1765
1765
{
1766
- if (bailOutInfo->usedCapturedValues . argObjSyms == nullptr )
1766
+ if (bailOutInfo->usedCapturedValues -> argObjSyms == nullptr )
1767
1767
{
1768
- bailOutInfo->usedCapturedValues . argObjSyms = JitAnew (this ->func ->m_alloc ,
1768
+ bailOutInfo->usedCapturedValues -> argObjSyms = JitAnew (this ->func ->m_alloc ,
1769
1769
BVSparse<JitArenaAllocator>, this ->func ->m_alloc );
1770
1770
}
1771
- bailOutInfo->usedCapturedValues . argObjSyms ->Set (symId);
1771
+ bailOutInfo->usedCapturedValues -> argObjSyms ->Set (symId);
1772
1772
}
1773
1773
}
1774
1774
NEXT_BITSET_IN_SPARSEBV;
1775
1775
}
1776
- if (bailOutInfo->usedCapturedValues . argObjSyms )
1776
+ if (bailOutInfo->usedCapturedValues -> argObjSyms )
1777
1777
{
1778
- byteCodeUpwardExposedUsed->Minus (bailOutInfo->usedCapturedValues . argObjSyms );
1778
+ byteCodeUpwardExposedUsed->Minus (bailOutInfo->usedCapturedValues -> argObjSyms );
1779
1779
}
1780
1780
}
1781
1781
@@ -1785,7 +1785,7 @@ BackwardPass::ProcessBailOutConstants(BailOutInfo * bailOutInfo, BVSparse<JitAre
1785
1785
Assert (this ->tag != Js::BackwardPhase);
1786
1786
1787
1787
// Remove constants that we are already going to restore
1788
- SListBase<ConstantStackSymValue> * usedConstantValues = &bailOutInfo->usedCapturedValues . constantValues ;
1788
+ SListBase<ConstantStackSymValue> * usedConstantValues = &bailOutInfo->usedCapturedValues -> constantValues ;
1789
1789
FOREACH_SLISTBASE_ENTRY (ConstantStackSymValue, value, usedConstantValues)
1790
1790
{
1791
1791
byteCodeUpwardExposedUsed->Clear (value.Key ()->m_id );
@@ -1817,7 +1817,7 @@ BackwardPass::ProcessBailOutCopyProps(BailOutInfo * bailOutInfo, BVSparse<JitAre
1817
1817
Assert (!this ->func ->GetJITFunctionBody ()->IsAsmJsMode ());
1818
1818
1819
1819
// Remove copy prop that we were already going to restore
1820
- SListBase<CopyPropSyms> * usedCopyPropSyms = &bailOutInfo->usedCapturedValues . copyPropSyms ;
1820
+ SListBase<CopyPropSyms> * usedCopyPropSyms = &bailOutInfo->usedCapturedValues -> copyPropSyms ;
1821
1821
FOREACH_SLISTBASE_ENTRY (CopyPropSyms, copyPropSyms, usedCopyPropSyms)
1822
1822
{
1823
1823
byteCodeUpwardExposedUsed->Clear (copyPropSyms.Key ()->m_id );
@@ -2596,7 +2596,7 @@ BackwardPass::ProcessBailOutInfo(IR::Instr * instr, BailOutInfo * bailOutInfo)
2596
2596
tempBv->And (this ->func ->m_nonTempLocalVars , bailOutInfo->liveVarSyms );
2597
2597
2598
2598
// Remove syms that are restored in other ways than byteCodeUpwardExposedUsed.
2599
- FOREACH_SLIST_ENTRY (ConstantStackSymValue, value, &bailOutInfo->usedCapturedValues . constantValues )
2599
+ FOREACH_SLIST_ENTRY (ConstantStackSymValue, value, &bailOutInfo->usedCapturedValues -> constantValues )
2600
2600
{
2601
2601
Assert (value.Key ()->HasByteCodeRegSlot () || value.Key ()->GetInstrDef ()->m_opcode == Js::OpCode::BytecodeArgOutCapture);
2602
2602
if (value.Key ()->HasByteCodeRegSlot ())
@@ -2605,7 +2605,7 @@ BackwardPass::ProcessBailOutInfo(IR::Instr * instr, BailOutInfo * bailOutInfo)
2605
2605
}
2606
2606
}
2607
2607
NEXT_SLIST_ENTRY;
2608
- FOREACH_SLIST_ENTRY (CopyPropSyms, value, &bailOutInfo->usedCapturedValues . copyPropSyms )
2608
+ FOREACH_SLIST_ENTRY (CopyPropSyms, value, &bailOutInfo->usedCapturedValues -> copyPropSyms )
2609
2609
{
2610
2610
Assert (value.Key ()->HasByteCodeRegSlot () || value.Key ()->GetInstrDef ()->m_opcode == Js::OpCode::BytecodeArgOutCapture);
2611
2611
if (value.Key ()->HasByteCodeRegSlot ())
@@ -2614,9 +2614,9 @@ BackwardPass::ProcessBailOutInfo(IR::Instr * instr, BailOutInfo * bailOutInfo)
2614
2614
}
2615
2615
}
2616
2616
NEXT_SLIST_ENTRY;
2617
- if (bailOutInfo->usedCapturedValues . argObjSyms )
2617
+ if (bailOutInfo->usedCapturedValues -> argObjSyms )
2618
2618
{
2619
- tempBv->Minus (bailOutInfo->usedCapturedValues . argObjSyms );
2619
+ tempBv->Minus (bailOutInfo->usedCapturedValues -> argObjSyms );
2620
2620
}
2621
2621
2622
2622
byteCodeUpwardExposedUsed->Or (tempBv);
@@ -8226,7 +8226,7 @@ BackwardPass::ReverseCopyProp(IR::Instr *instr)
8226
8226
FOREACH_SLISTBASE_ENTRY (
8227
8227
CopyPropSyms,
8228
8228
usedCopyPropSym,
8229
- &instrPrev->GetBailOutInfo ()->usedCapturedValues . copyPropSyms )
8229
+ &instrPrev->GetBailOutInfo ()->usedCapturedValues -> copyPropSyms )
8230
8230
{
8231
8231
if (dstSym == usedCopyPropSym.Value ())
8232
8232
{
0 commit comments