Lines Matching defs:lhs
15 bool operator==(StoreRepresentation lhs, StoreRepresentation rhs) {
16 return lhs.representation() == rhs.representation() &&
17 lhs.write_barrier_kind() == rhs.write_barrier_kind();
21 bool operator!=(StoreRepresentation lhs, StoreRepresentation rhs) {
22 return !(lhs == rhs);
35 bool operator==(AtomicStoreParameters lhs, AtomicStoreParameters rhs) {
36 return lhs.store_representation() == rhs.store_representation() &&
37 lhs.order() == rhs.order();
40 bool operator!=(AtomicStoreParameters lhs, AtomicStoreParameters rhs) {
41 return !(lhs == rhs);
53 bool operator==(AtomicLoadParameters lhs, AtomicLoadParameters rhs) {
54 return lhs.representation() == rhs.representation() &&
55 lhs.order() == rhs.order();
58 bool operator!=(AtomicLoadParameters lhs, AtomicLoadParameters rhs) {
59 return !(lhs == rhs);
129 bool operator==(LoadTransformParameters lhs, LoadTransformParameters rhs) {
130 return lhs.transformation == rhs.transformation && lhs.kind == rhs.kind;
133 bool operator!=(LoadTransformParameters lhs, LoadTransformParameters rhs) {
134 return !(lhs == rhs);
151 bool operator==(LoadLaneParameters lhs, LoadLaneParameters rhs) {
152 return lhs.kind == rhs.kind && lhs.rep == rhs.rep &&
153 lhs.laneidx == rhs.laneidx;
202 bool operator==(StoreLaneParameters lhs, StoreLaneParameters rhs) {
203 return lhs.kind == rhs.kind && lhs.rep == rhs.rep &&
204 lhs.laneidx == rhs.laneidx;
207 bool operator==(StackSlotRepresentation lhs, StackSlotRepresentation rhs) {
208 return lhs.size() == rhs.size() && lhs.alignment() == rhs.alignment();
211 bool operator!=(StackSlotRepresentation lhs, StackSlotRepresentation rhs) {
212 return !(lhs == rhs);
1991 bool operator==(S128ImmediateParameter const& lhs,
1993 return (lhs.immediate() == rhs.immediate());
1996 bool operator!=(S128ImmediateParameter const& lhs,
1998 return !(lhs == rhs);