Lines Matching defs:lhs

70 bool operator==(ConstructParameters const& lhs,
72 return lhs.arity() == rhs.arity() && lhs.frequency() == rhs.frequency() &&
73 lhs.feedback() == rhs.feedback();
76 bool operator!=(ConstructParameters const& lhs,
78 return !(lhs == rhs);
121 bool operator==(CallRuntimeParameters const& lhs,
123 return lhs.id() == rhs.id() && lhs.arity() == rhs.arity();
127 bool operator!=(CallRuntimeParameters const& lhs,
129 return !(lhs == rhs);
158 bool operator==(ContextAccess const& lhs, ContextAccess const& rhs) {
159 return lhs.depth() == rhs.depth() && lhs.index() == rhs.index() &&
160 lhs.immutable() == rhs.immutable();
164 bool operator!=(ContextAccess const& lhs, ContextAccess const& rhs) {
165 return !(lhs == rhs);
186 bool operator==(CreateFunctionContextParameters const& lhs,
188 return lhs.scope_info_.object().location() ==
190 lhs.slot_count() == rhs.slot_count() &&
191 lhs.scope_type() == rhs.scope_type();
194 bool operator!=(CreateFunctionContextParameters const& lhs,
196 return !(lhs == rhs);
216 bool operator==(DefineNamedOwnPropertyParameters const& lhs,
218 return lhs.name_.object().location() == rhs.name_.object().location() &&
219 lhs.feedback() == rhs.feedback();
222 bool operator!=(DefineNamedOwnPropertyParameters const& lhs,
224 return !(lhs == rhs);
243 bool operator==(FeedbackParameter const& lhs, FeedbackParameter const& rhs) {
244 return lhs.feedback() == rhs.feedback();
247 bool operator!=(FeedbackParameter const& lhs, FeedbackParameter const& rhs) {
248 return !(lhs == rhs);
269 bool operator==(NamedAccess const& lhs, NamedAccess const& rhs) {
270 return lhs.name_.object().location() == rhs.name_.object().location() &&
271 lhs.language_mode() == rhs.language_mode() &&
272 lhs.feedback() == rhs.feedback();
276 bool operator!=(NamedAccess const& lhs, NamedAccess const& rhs) {
277 return !(lhs == rhs);
305 bool operator==(PropertyAccess const& lhs, PropertyAccess const& rhs) {
306 return lhs.language_mode() == rhs.language_mode() &&
307 lhs.feedback() == rhs.feedback();
311 bool operator!=(PropertyAccess const& lhs, PropertyAccess const& rhs) {
312 return !(lhs == rhs);
331 bool operator==(LoadGlobalParameters const& lhs,
333 return lhs.name_.object().location() == rhs.name_.object().location() &&
334 lhs.feedback() == rhs.feedback() &&
335 lhs.typeof_mode() == rhs.typeof_mode();
339 bool operator!=(LoadGlobalParameters const& lhs,
341 return !(lhs == rhs);
363 bool operator==(StoreGlobalParameters const& lhs,
365 return lhs.language_mode() == rhs.language_mode() &&
366 lhs.name_.object().location() == rhs.name_.object().location() &&
367 lhs.feedback() == rhs.feedback();
371 bool operator!=(StoreGlobalParameters const& lhs,
373 return !(lhs == rhs);
399 bool operator==(CreateArrayParameters const& lhs,
401 return lhs.arity() == rhs.arity() &&
402 AddressOrNull(lhs.site_) == AddressOrNull(rhs.site_);
406 bool operator!=(CreateArrayParameters const& lhs,
408 return !(lhs == rhs);
430 bool operator==(CreateArrayIteratorParameters const& lhs,
432 return lhs.kind() == rhs.kind();
435 bool operator!=(CreateArrayIteratorParameters const& lhs,
437 return !(lhs == rhs);
455 bool operator==(CreateCollectionIteratorParameters const& lhs,
457 return lhs.collection_kind() == rhs.collection_kind() &&
458 lhs.iteration_kind() == rhs.iteration_kind();
461 bool operator!=(CreateCollectionIteratorParameters const& lhs,
463 return !(lhs == rhs);
482 bool operator==(CreateBoundFunctionParameters const& lhs,
484 return lhs.arity() == rhs.arity() &&
485 lhs.map_.object().location() == rhs.map_.object().location();
488 bool operator!=(CreateBoundFunctionParameters const& lhs,
490 return !(lhs == rhs);
510 bool operator==(GetTemplateObjectParameters const& lhs,
512 return lhs.description_.object().location() ==
514 lhs.shared_.object().location() == rhs.shared_.object().location() &&
515 lhs.feedback() == rhs.feedback();
518 bool operator!=(GetTemplateObjectParameters const& lhs,
520 return !(lhs == rhs);
541 bool operator==(CreateClosureParameters const& lhs,
543 return lhs.allocation() == rhs.allocation() &&
544 lhs.code_.object().location() == rhs.code_.object().location() &&
545 lhs.shared_info_.object().location() ==
550 bool operator!=(CreateClosureParameters const& lhs,
552 return !(lhs == rhs);
574 bool operator==(CreateLiteralParameters const& lhs,
576 return lhs.constant_.object().location() ==
578 lhs.feedback() == rhs.feedback() && lhs.length() == rhs.length() &&
579 lhs.flags() == rhs.flags();
583 bool operator!=(CreateLiteralParameters const& lhs,
585 return !(lhs == rhs);
609 bool operator==(CloneObjectParameters const& lhs,
611 return lhs.feedback() == rhs.feedback() && lhs.flags() == rhs.flags();
614 bool operator!=(CloneObjectParameters const& lhs,
616 return !(lhs == rhs);
636 bool operator==(GetIteratorParameters const& lhs,
638 return lhs.loadFeedback() == rhs.loadFeedback() &&
639 lhs.callFeedback() == rhs.callFeedback();
642 bool operator!=(GetIteratorParameters const& lhs,
644 return !(lhs == rhs);
671 bool operator==(ForInParameters const& lhs, ForInParameters const& rhs) {
672 return lhs.feedback() == rhs.feedback() && lhs.mode() == rhs.mode();
675 bool operator!=(ForInParameters const& lhs, ForInParameters const& rhs) {
676 return !(lhs == rhs);
708 bool operator==(JSWasmCallParameters const& lhs,
710 return lhs.module() == rhs.module() && lhs.signature() == rhs.signature() &&
711 lhs.feedback() == rhs.feedback();
1470 bool operator==(ScopeInfoTinyRef const& lhs, ScopeInfoTinyRef const& rhs) {
1471 return lhs.object().location() == rhs.object().location();
1474 bool operator!=(ScopeInfoTinyRef const& lhs, ScopeInfoTinyRef const& rhs) {
1475 return !(lhs == rhs);