Home
last modified time | relevance | path

Searched refs:fixed_right_arg_ (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/ic/
Dic-state.cc33 : fixed_right_arg_( in BinaryOpICState()
42 right_kind_ = fixed_right_arg_.IsJust() in BinaryOpICState()
43 ? (Smi::IsValid(fixed_right_arg_.FromJust()) ? SMI : INT32) in BinaryOpICState()
55 HasFixedRightArgField::encode(fixed_right_arg_.IsJust()); in GetExtraICState()
56 if (fixed_right_arg_.IsJust()) { in GetExtraICState()
58 extra_ic_state, WhichPowerOf2(fixed_right_arg_.FromJust())); in GetExtraICState()
77 state.fixed_right_arg_ = Nothing<int>(); \ in GenerateAheadOfTime()
179 state.fixed_right_arg_ = Just(fixed_right_arg_value); \ in GenerateAheadOfTime()
213 if (s.fixed_right_arg_.IsJust()) { in operator <<()
214 os << s.fixed_right_arg_.FromJust(); in operator <<()
[all …]
Dic-state.h64 fixed_right_arg_(Nothing<int>()), in BinaryOpICState()
121 Maybe<int> fixed_right_arg() const { return fixed_right_arg_; } in fixed_right_arg()
161 Maybe<int> fixed_right_arg_; variable