Lines Matching refs:extra_ic_state
32 BinaryOpICState::BinaryOpICState(Isolate* isolate, ExtraICState extra_ic_state) in BinaryOpICState() argument
34 HasFixedRightArgField::decode(extra_ic_state) in BinaryOpICState()
35 ? Just(1 << FixedRightArgValueField::decode(extra_ic_state)) in BinaryOpICState()
39 static_cast<Token::Value>(FIRST_TOKEN + OpField::decode(extra_ic_state)); in BinaryOpICState()
40 left_kind_ = LeftKindField::decode(extra_ic_state); in BinaryOpICState()
43 : RightKindField::decode(extra_ic_state); in BinaryOpICState()
44 result_kind_ = ResultKindField::decode(extra_ic_state); in BinaryOpICState()
51 ExtraICState extra_ic_state = in GetExtraICState() local
56 extra_ic_state = FixedRightArgValueField::update( in GetExtraICState()
57 extra_ic_state, WhichPowerOf2(fixed_right_arg_.FromJust())); in GetExtraICState()
59 extra_ic_state = RightKindField::update(extra_ic_state, right_kind_); in GetExtraICState()
61 return extra_ic_state; in GetExtraICState()