| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- //-------------------------------------------------------------------------------------------------------
- // Copyright (C) Microsoft. All rights reserved.
- // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
- //-------------------------------------------------------------------------------------------------------
- #include "BackEnd.h"
- IR::Instr *Lowerer::PreLowerPeepInstr(IR::Instr *instr, IR::Instr **pInstrPrev)
- {
- if (!PHASE_ON(Js::PreLowererPeepsPhase, this->m_func))
- {
- return instr;
- }
- switch (instr->m_opcode)
- {
- case Js::OpCode::Shl_I4:
- instr = this->PeepShl(instr);
- *pInstrPrev = instr->m_prev;
- break;
- case Js::OpCode::BrTrue_I4:
- case Js::OpCode::BrFalse_I4:
- instr = this->PeepBrBool(instr);
- *pInstrPrev = instr->m_prev;
- break;
- }
- return instr;
- }
- IR::Instr *Lowerer::PeepShl(IR::Instr *instrShl)
- {
- IR::Opnd *src1;
- IR::Opnd *src2;
- IR::Instr *instrDef;
- src1 = instrShl->GetSrc1();
- src2 = instrShl->GetSrc2();
- // Peep:
- // t1 = SHR X, cst
- // t2 = SHL t1, cst
- //
- // Into:
- // t2 = AND X, mask
- if (!src1->IsRegOpnd() || !src2->IsIntConstOpnd())
- {
- return instrShl;
- }
- if (!src1->AsRegOpnd()->m_sym->IsSingleDef())
- {
- return instrShl;
- }
- if (instrShl->HasBailOutInfo())
- {
- return instrShl;
- }
- instrDef = src1->AsRegOpnd()->m_sym->GetInstrDef();
- if (instrDef->m_opcode != Js::OpCode::Shr_I4 || !instrDef->GetSrc2()->IsIntConstOpnd()
- || instrDef->GetSrc2()->AsIntConstOpnd()->GetValue() != src2->AsIntConstOpnd()->GetValue()
- || !instrDef->GetSrc1()->IsRegOpnd())
- {
- return instrShl;
- }
- if (!src1->GetIsDead())
- {
- return instrShl;
- }
- if (instrDef->HasBailOutInfo())
- {
- return instrShl;
- }
- if (IR::Instr::FindRegUseInRange(src1->AsRegOpnd()->m_sym, instrDef->m_next, instrShl->m_prev))
- {
- return instrShl;
- }
- FOREACH_INSTR_IN_RANGE(instrIter, instrDef->m_next, instrShl->m_prev)
- {
- if (instrIter->HasBailOutInfo())
- {
- return instrShl;
- }
- if (instrIter->FindRegDef(instrDef->GetSrc1()->AsRegOpnd()->m_sym))
- {
- return instrShl;
- }
- if (instrIter->FindRegUse(src1->AsRegOpnd()->m_sym))
- {
- return instrShl;
- }
- } NEXT_INSTR_IN_RANGE;
- instrShl->FreeSrc1();
- instrShl->SetSrc1(instrDef->UnlinkSrc1());
- instrDef->Remove();
- IntConstType oldValue = src2->AsIntConstOpnd()->GetValue();
- oldValue = ~((1 << oldValue) - 1);
- src2->AsIntConstOpnd()->SetValue(oldValue);
- instrShl->m_opcode = Js::OpCode::And_I4;
- return instrShl;
- }
- IR::Instr *Lowerer::PeepBrBool(IR::Instr *instrBr)
- {
- IR::Opnd *src1;
- IR::Instr *instrBinOp, *instrCm1, *instrCm2;
- // Peep:
- // t1 = CmCC_I4 a, b
- // t2 = CmCC_i4 c, d
- // t3 = AND/OR t1, t2
- // BrTrue/False t3, $L_true
- //
- // Into:
- // BrCC a, b, $L_true/false
- // BrCC c, d, $L_true
- //$L_false:
- src1 = instrBr->GetSrc1();
- if (!src1->IsRegOpnd())
- {
- return instrBr;
- }
- Assert(!instrBr->HasBailOutInfo());
- instrBinOp = instrBr->GetPrevRealInstrOrLabel();
- if (instrBinOp->m_opcode != Js::OpCode::And_I4 && instrBinOp->m_opcode != Js::OpCode::Or_I4)
- {
- return instrBr;
- }
- if (!instrBinOp->GetDst()->IsEqual(src1))
- {
- return instrBr;
- }
- IR::RegOpnd *src1Reg = src1->AsRegOpnd();
- if (!src1Reg->m_sym->IsSingleDef() || !src1Reg->GetIsDead())
- {
- return instrBr;
- }
- Assert(!instrBinOp->HasBailOutInfo());
- instrCm2 = instrBinOp->GetPrevRealInstrOrLabel();
- if (!instrCm2->IsCmCC_I4())
- {
- return instrBr;
- }
- IR::RegOpnd *cm2DstReg = instrCm2->GetDst()->AsRegOpnd();
- if (!cm2DstReg->m_sym->IsSingleDef())
- {
- return instrBr;
- }
- if (cm2DstReg->IsEqual(instrBinOp->GetSrc1()))
- {
- if (!instrBinOp->GetSrc1()->AsRegOpnd()->GetIsDead())
- {
- return instrBr;
- }
- }
- else if (cm2DstReg->IsEqual(instrBinOp->GetSrc2()))
- {
- if (!instrBinOp->GetSrc2()->AsRegOpnd()->GetIsDead())
- {
- return instrBr;
- }
- }
- else
- {
- return instrBr;
- }
- Assert(!instrCm2->HasBailOutInfo());
- instrCm1 = instrCm2->GetPrevRealInstrOrLabel();
- if (!instrCm1->IsCmCC_I4())
- {
- return instrBr;
- }
- Assert(!instrCm1->GetDst()->IsEqual(instrCm2->GetDst()));
- IR::RegOpnd *cm1DstReg = instrCm1->GetDst()->AsRegOpnd();
- if (!cm1DstReg->m_sym->IsSingleDef())
- {
- return instrBr;
- }
- if (cm1DstReg->IsEqual(instrBinOp->GetSrc1()))
- {
- if (!instrBinOp->GetSrc1()->AsRegOpnd()->GetIsDead())
- {
- return instrBr;
- }
- }
- else if (cm1DstReg->IsEqual(instrBinOp->GetSrc2()))
- {
- if (!instrBinOp->GetSrc2()->AsRegOpnd()->GetIsDead())
- {
- return instrBr;
- }
- }
- else
- {
- return instrBr;
- }
- Assert(!instrCm1->HasBailOutInfo());
- IR::LabelInstr *falseLabel = instrBr->AsBranchInstr()->GetTarget();
- IR::LabelInstr *trueLabel = IR::LabelInstr::New(Js::OpCode::Label, this->m_func);
- instrBr->InsertAfter(trueLabel);
- IR::BranchInstr *instrBr1;
- IR::BranchInstr *instrBr2;
- if (instrBinOp->m_opcode == Js::OpCode::And_I4)
- {
- instrBr1 = instrCm1->ChangeCmCCToBranchInstr(instrBr->m_opcode == Js::OpCode::BrFalse_I4 ? falseLabel : trueLabel);
- instrBr1->Invert();
- instrBr2 = instrCm2->ChangeCmCCToBranchInstr(falseLabel);
- if (instrBr->m_opcode == Js::OpCode::BrFalse_I4)
- {
- instrBr2->Invert();
- }
- }
- else
- {
- Assert(instrBinOp->m_opcode == Js::OpCode::Or_I4);
- instrBr1 = instrCm1->ChangeCmCCToBranchInstr(instrBr->m_opcode == Js::OpCode::BrTrue_I4 ? falseLabel : trueLabel);
- instrBr2 = instrCm2->ChangeCmCCToBranchInstr(falseLabel);
- if (instrBr->m_opcode == Js::OpCode::BrFalse_I4)
- {
- instrBr2->Invert();
- }
- }
- instrBinOp->Remove();
- instrBr->Remove();
- return instrBr2;
- }
|