Lines Matching defs:lhs

48 bool operator==(ConstFieldInfo const& lhs, ConstFieldInfo const& rhs) {
49 return lhs.owner_map.address() == rhs.owner_map.address();
56 bool operator==(FieldAccess const& lhs, FieldAccess const& rhs) {
60 return lhs.base_is_tagged == rhs.base_is_tagged && lhs.offset == rhs.offset &&
61 lhs.map.address() == rhs.map.address() &&
62 lhs.machine_type == rhs.machine_type &&
63 lhs.const_field_info == rhs.const_field_info &&
64 lhs.is_store_in_literal == rhs.is_store_in_literal;
111 bool operator==(ElementAccess const& lhs, ElementAccess const& rhs) {
115 return lhs.base_is_tagged == rhs.base_is_tagged &&
116 lhs.header_size == rhs.header_size &&
117 lhs.machine_type == rhs.machine_type;
135 bool operator==(ObjectAccess const& lhs, ObjectAccess const& rhs) {
136 return lhs.machine_type == rhs.machine_type &&
137 lhs.write_barrier_kind == rhs.write_barrier_kind;
215 bool operator==(CheckFloat64HoleParameters const& lhs,
217 return lhs.mode() == rhs.mode() && lhs.feedback() == rhs.feedback();
220 bool operator!=(CheckFloat64HoleParameters const& lhs,
222 return !(lhs == rhs);
253 bool operator==(CheckMapsParameters const& lhs,
255 return lhs.flags() == rhs.flags() && lhs.maps() == rhs.maps() &&
256 lhs.feedback() == rhs.feedback();
309 bool operator==(const GrowFastElementsParameters& lhs,
311 return lhs.mode() == rhs.mode() && lhs.feedback() == rhs.feedback();
330 bool operator==(ElementsTransition const& lhs, ElementsTransition const& rhs) {
331 return lhs.mode() == rhs.mode() &&
332 lhs.source().address() == rhs.source().address() &&
333 lhs.target().address() == rhs.target().address();
379 bool operator==(TransitionAndStoreElementParameters const& lhs,
381 return lhs.fast_map().address() == rhs.fast_map().address() &&
382 lhs.double_map().address() == rhs.double_map().address();
419 bool operator==(TransitionAndStoreNonNumberElementParameters const& lhs,
421 return lhs.fast_map().address() == rhs.fast_map().address() &&
422 lhs.value_type() == rhs.value_type();
455 bool operator==(TransitionAndStoreNumberElementParameters const& lhs,
457 return lhs.double_map().address() == rhs.double_map().address();
550 bool operator==(NumberOperationParameters const& lhs,
552 return lhs.hint() == rhs.hint() && lhs.feedback() == rhs.feedback();
570 bool operator==(SpeculativeBigIntAsNParameters const& lhs,
572 return lhs.bits() == rhs.bits() && lhs.feedback() == rhs.feedback();
602 bool operator==(AllocateParameters const& lhs, AllocateParameters const& rhs) {
603 return lhs.allocation_type() == rhs.allocation_type() &&
604 lhs.type() == rhs.type();
648 bool operator==(CheckTaggedInputParameters const& lhs,
650 return lhs.mode() == rhs.mode() && lhs.feedback() == rhs.feedback();
671 bool operator==(CheckMinusZeroParameters const& lhs,
673 return lhs.mode() == rhs.mode() && lhs.feedback() == rhs.feedback();
1624 bool operator==(CheckParameters const& lhs, CheckParameters const& rhs) {
1625 return lhs.feedback() == rhs.feedback();
1649 bool operator==(CheckBoundsParameters const& lhs,
1651 return lhs.check_parameters() == rhs.check_parameters() &&
1652 lhs.flags() == rhs.flags();
1671 bool operator==(CheckIfParameters const& lhs, CheckIfParameters const& rhs) {
1672 return lhs.reason() == rhs.reason() && lhs.feedback() == rhs.feedback();
1712 bool operator==(FastApiCallParameters const& lhs,
1714 return lhs.c_functions() == rhs.c_functions() &&
1715 lhs.feedback() == rhs.feedback() &&
1716 lhs.descriptor() == rhs.descriptor();
1750 bool operator==(const NewArgumentsElementsParameters& lhs,
1752 return lhs.arguments_type() == rhs.arguments_type() &&
1753 lhs.formal_parameter_count() == rhs.formal_parameter_count();