Lines Matching refs:frameState

204     GateRef frameState = acc_.GetFrameState(gate);
208 builder_.DeoptCheck(heapObjectCheck, frameState, DeoptType::NOTHEAPOBJECT1);
271 auto frameState = acc_.GetFrameState(gate);
272 acc_.DeleteGateIfNoUse(frameState);
280 GateRef frameState = acc_.GetFrameState(gate);
283 builder_.DeoptCheck(check, frameState, DeoptType::NOTSARRAY1);
291 GateRef frameState = acc_.GetFrameState(gate);
295 builder_.DeoptCheck(check, frameState, DeoptType::NOTSARRAY2);
489 GateRef frameState = acc_.GetFrameState(gate);
494 LowerCheckUInt32AndConvert(gate, frameState);
497 LowerCheckTaggedIntAndConvert(gate, frameState);
500 LowerCheckTaggedDoubleAndConvert(gate, frameState, &exit);
503 LowerCheckTaggedBoolAndConvert(gate, frameState);
506 LowerCheckTaggedNumberAndConvert(gate, frameState, &exit);
509 LowerCheckSupportAndConvert(gate, frameState);
512 LowerCheckNullAndConvert(gate, frameState);
515 LowerUndefinedAndConvert(gate, frameState);
518 LowerCheckSpecialHoleAndConvert(gate, frameState);
521 LowerCheckSpecialHoleAndConvert(gate, frameState);
524 LowerCheckFloat64AndConvert(gate, frameState, &exit);
531 void MCRLowering::LowerCheckFloat64AndConvert(GateRef gate, GateRef frameState, Label *exit)
537 builder_.DeoptCheck(check, frameState, DeoptType::INT32OVERFLOW1);
542 void MCRLowering::LowerCheckSpecialHoleAndConvert(GateRef gate, GateRef frameState)
546 builder_.DeoptCheck(typeCheck, frameState, DeoptType::CANNOTSTORESPECAILHOLE);
565 void MCRLowering::LowerCheckUInt32AndConvert(GateRef gate, GateRef frameState)
570 builder_.DeoptCheck(check, frameState, DeoptType::INT32OVERFLOW1);
574 void MCRLowering::LowerCheckTaggedIntAndConvert(GateRef gate, GateRef frameState)
578 builder_.DeoptCheck(typeCheck, frameState, DeoptType::NOTINT1);
590 void MCRLowering::LowerCheckTaggedDoubleAndConvert(GateRef gate, GateRef frameState, Label *exit)
594 builder_.DeoptCheck(typeCheck, frameState, DeoptType::NOTDOUBLE1);
606 void MCRLowering::LowerCheckTaggedNumberAndConvert(GateRef gate, GateRef frameState, Label *exit)
610 builder_.DeoptCheck(typeCheck, frameState, DeoptType::NOTNUMBER1);
624 void MCRLowering::LowerCheckSupportAndConvert(GateRef gate, GateRef frameState)
633 builder_.DeoptCheck(builder_.Boolean(support), frameState, DeoptType::NOTINT2);
636 builder_.DeoptCheck(builder_.Boolean(support), frameState, DeoptType::NOTDOUBLE2);
642 void MCRLowering::LowerCheckTaggedBoolAndConvert(GateRef gate, GateRef frameState)
646 builder_.DeoptCheck(typeCheck, frameState, DeoptType::NOTBOOL1);
661 void MCRLowering::LowerCheckNullAndConvert(GateRef gate, GateRef frameState)
665 builder_.DeoptCheck(typeCheck, frameState, DeoptType::NOTNULL1);
679 void MCRLowering::LowerUndefinedAndConvert(GateRef gate, GateRef frameState)
683 builder_.DeoptCheck(typeCheck, frameState, DeoptType::NOTNULL2);
830 GateRef frameState = acc_.GetFrameState(gate);
833 builder_.DeoptCheck(rightNotZero, frameState, DeoptType::MODZERO1);
840 GateRef frameState = acc_.GetFrameState(gate);
849 builder_.DeoptCheck(remainderIsNotNegative, frameState, DeoptType::REMAINDERISNEGATIVEZERO);
856 GateRef frameState = acc_.GetFrameState(gate);
859 builder_.DeoptCheck(rightNotZero, frameState, DeoptType::DIVZERO1);
866 GateRef frameState = acc_.GetFrameState(gate);
869 builder_.DeoptCheck(valueIsNotHole, frameState, DeoptType::LEXVARISHOLE1);
876 GateRef frameState = acc_.GetFrameState(gate);
879 builder_.DeoptCheck(isNotUndefinedorHole, frameState, DeoptType::ISUNDEFINEDORHOLE);
886 GateRef frameState = acc_.GetFrameState(gate);
889 builder_.DeoptCheck(isUndefinedorHole, frameState, DeoptType::ISNOTUNDEFINEDORHOLE);
896 GateRef frameState = acc_.GetFrameState(gate);
899 builder_.DeoptCheck(isDataView, frameState, DeoptType::ISNOTDATAVIEW);
906 GateRef frameState = acc_.GetFrameState(gate);
909 builder_.DeoptCheck(valueNotZero, frameState, DeoptType::NOTNEGOV1);
916 GateRef frameState = acc_.GetFrameState(gate);
919 builder_.DeoptCheck(condition, frameState, DeoptType::NOTINT3);
926 GateRef frameState = acc_.GetFrameState(gate);
930 builder_.DeoptCheck(condition, frameState, DeoptType::NOTINT4);
937 GateRef frameState = acc_.GetFrameState(gate);
946 builder_.DeoptCheck(condition, frameState, DeoptType::DIVZERO2);
951 builder_.DeoptCheck(overCheck, frameState, DeoptType::NOTINT5);
1275 GateRef frameState = acc_.GetFrameState(gate);
1279 builder_.DeoptCheck(isEcmaObject, frameState, DeoptType::NOT_ECMA_OBJECT);
1288 GateRef frameState = acc_.GetFrameState(gate);
1291 builder_.DeoptCheck(isCallable, frameState, DeoptType::NOTCALLABLE);