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 strong_ = StrengthField::decode(extra_ic_state); in BinaryOpICState()
41 left_kind_ = LeftKindField::decode(extra_ic_state); in BinaryOpICState()
44 : RightKindField::decode(extra_ic_state); in BinaryOpICState()
45 result_kind_ = ResultKindField::decode(extra_ic_state); in BinaryOpICState()
52 ExtraICState extra_ic_state = in GetExtraICState() local
57 extra_ic_state = FixedRightArgValueField::update( in GetExtraICState()
58 extra_ic_state, WhichPowerOf2(fixed_right_arg_.FromJust())); in GetExtraICState()
60 extra_ic_state = RightKindField::update(extra_ic_state, right_kind_); in GetExtraICState()
62 return extra_ic_state; in GetExtraICState()