Lines Matching refs:frameState

409     GateRef frameState = acc_.GetFrameState(gate);
410 GateRef frameArgs = acc_.GetValueIn(frameState);
730 GateRef frameState = acc_.GetFrameState(gate);
733 GateRef ret = builder_.BuildBigIntAsIntN(op, {bits, bigint, frameState});
994 GateRef frameState = acc_.GetFrameState(gate);
995 builder_.DeoptCheck(builder_.TaggedIsInt(index), frameState, DeoptType::INDEXNOTINT);
998 ret = builder_.DataViewGet(thisObj, indexInt, dataViewCallID, builder_.False(), frameState);
1001 ret = builder_.DataViewGet(thisObj, indexInt, dataViewCallID, isLittleEndian, frameState);
1026 GateRef frameState = acc_.GetFrameState(gate);
1027 builder_.DeoptCheck(builder_.TaggedIsInt(index), frameState, DeoptType::INDEXNOTINT);
1032 thisObj, indexInt, builder_.Double(base::NAN_VALUE), dataViewCallID, builder_.False(), frameState);
1035 ret = builder_.DataViewSet(thisObj, indexInt, value, dataViewCallID, builder_.False(), frameState);
1039 ret = builder_.DataViewSet(thisObj, indexInt, value, dataViewCallID, isLittleEndian, frameState);
1652 GateRef frameState = acc_.GetFrameState(gate);
1655 ret = builder_.ArrayFilter(thisValue, callBackFn, builder_.UndefineConstant(), frameState, pcOffset);
1658 thisValue, callBackFn, acc_.GetValueIn(gate, 2), frameState, pcOffset); //2: provide usingThis
1689 GateRef frameState = acc_.GetFrameState(gate);
1692 ret = builder_.ArrayMap(thisValue, callBackFn, builder_.UndefineConstant(), frameState, pcOffset);
1695 thisValue, callBackFn, acc_.GetValueIn(gate, 2), frameState, pcOffset); //2: provide usingThis
1802 GateRef frameState = acc_.GetFrameState(gate);
1808 ret = builder_.ArraySlice(thisValue, builder_.UndefineConstant(), builder_.UndefineConstant(), frameState);
1812 ret = builder_.ArraySlice(thisValue, startIndex, builder_.UndefineConstant(), frameState);
1818 ret = builder_.ArraySlice(thisValue, startIndex, endIndex, frameState);