Lines Matching defs:lhs
69 bool operator==(DeoptimizeParameters lhs, DeoptimizeParameters rhs) {
70 return lhs.reason() == rhs.reason() && lhs.feedback() == rhs.feedback();
73 bool operator!=(DeoptimizeParameters lhs, DeoptimizeParameters rhs) {
74 return !(lhs == rhs);
100 bool operator==(SelectParameters const& lhs, SelectParameters const& rhs) {
101 return lhs.representation() == rhs.representation() &&
102 lhs.hint() == rhs.hint();
106 bool operator!=(SelectParameters const& lhs, SelectParameters const& rhs) {
107 return !(lhs == rhs);
160 bool operator==(ParameterInfo const& lhs, ParameterInfo const& rhs) {
161 return lhs.index() == rhs.index();
165 bool operator!=(ParameterInfo const& lhs, ParameterInfo const& rhs) {
166 return !(lhs == rhs);
195 bool operator==(RelocatablePtrConstantInfo const& lhs,
197 return lhs.rmode() == rhs.rmode() && lhs.value() == rhs.value() &&
198 lhs.type() == rhs.type();
201 bool operator!=(RelocatablePtrConstantInfo const& lhs,
203 return !(lhs == rhs);
273 bool operator==(SparseInputMask const& lhs, SparseInputMask const& rhs) {
274 return lhs.mask() == rhs.mask();
277 bool operator!=(SparseInputMask const& lhs, SparseInputMask const& rhs) {
278 return !(lhs == rhs);
306 bool operator==(TypedStateValueInfo const& lhs,
308 return lhs.machine_types() == rhs.machine_types() &&
309 lhs.sparse_input_mask() == rhs.sparse_input_mask();
312 bool operator!=(TypedStateValueInfo const& lhs,
314 return !(lhs == rhs);