Lines Matching full:other

42   bool operator==(const StringValue &Other) const {
43 return Value == Other.Value;
83 bool operator==(const BlockStringValue &Other) const {
84 return Value == Other.Value;
107 bool operator==(const UnsignedValue &Other) const {
108 return Value == Other.Value;
197 bool operator==(const VirtualRegisterDefinition &Other) const {
198 return ID == Other.ID && Class == Other.Class &&
199 PreferredRegister == Other.PreferredRegister;
218 bool operator==(const MachineFunctionLiveIn &Other) const {
219 return Register == Other.Register &&
220 VirtualRegister == Other.VirtualRegister;
259 bool operator==(const MachineStackObject &Other) const {
260 return ID == Other.ID && Name == Other.Name && Type == Other.Type &&
261 Offset == Other.Offset && Size == Other.Size &&
262 Alignment == Other.Alignment &&
263 StackID == Other.StackID &&
264 CalleeSavedRegister == Other.CalleeSavedRegister &&
265 CalleeSavedRestored == Other.CalleeSavedRestored &&
266 LocalOffset == Other.LocalOffset && DebugVar == Other.DebugVar &&
267 DebugExpr == Other.DebugExpr && DebugLoc == Other.DebugLoc;
316 bool operator==(const EntryValueObject &Other) const {
317 return EntryValueRegister == Other.EntryValueRegister &&
318 DebugVar == Other.DebugVar && DebugExpr == Other.DebugExpr &&
319 DebugLoc == Other.DebugLoc;
351 bool operator==(const FixedMachineStackObject &Other) const {
352 return ID == Other.ID && Type == Other.Type && Offset == Other.Offset &&
353 Size == Other.Size && Alignment == Other.Alignment &&
354 StackID == Other.StackID &&
355 IsImmutable == Other.IsImmutable && IsAliased == Other.IsAliased &&
356 CalleeSavedRegister == Other.CalleeSavedRegister &&
357 CalleeSavedRestored == Other.CalleeSavedRestored &&
358 DebugVar == Other.DebugVar && DebugExpr == Other.DebugExpr
359 && DebugLoc == Other.DebugLoc;
465 bool operator==(const ArgRegPair &Other) const {
466 return Reg == Other.Reg && ArgNo == Other.ArgNo;
475 bool operator==(const MachineInstrLoc &Other) const {
476 return BlockNum == Other.BlockNum && Offset == Other.Offset;
483 bool operator==(const CallSiteInfo &Other) const {
484 return CallLocation.BlockNum == Other.CallLocation.BlockNum &&
485 CallLocation.Offset == Other.CallLocation.Offset;
524 bool operator==(const DebugValueSubstitution &Other) const {
526 std::tie(Other.SrcInst, Other.SrcOp, Other.DstInst, Other.DstOp);
554 bool operator==(const MachineConstantPoolValue &Other) const {
555 return ID == Other.ID && Value == Other.Value &&
556 Alignment == Other.Alignment &&
557 IsTargetSpecific == Other.IsTargetSpecific;
575 bool operator==(const Entry &Other) const {
576 return ID == Other.ID && Blocks == Other.Blocks;
583 bool operator==(const MachineJumpTable &Other) const {
584 return Kind == Other.Kind && Entries == Other.Entries;
648 bool operator==(const MachineFrameInfo &Other) const {
649 return IsFrameAddressTaken == Other.IsFrameAddressTaken &&
650 IsReturnAddressTaken == Other.IsReturnAddressTaken &&
651 HasStackMap == Other.HasStackMap &&
652 HasPatchPoint == Other.HasPatchPoint &&
653 StackSize == Other.StackSize &&
654 OffsetAdjustment == Other.OffsetAdjustment &&
655 MaxAlignment == Other.MaxAlignment &&
656 AdjustsStack == Other.AdjustsStack && HasCalls == Other.HasCalls &&
657 StackProtector == Other.StackProtector &&
658 FunctionContext == Other.FunctionContext &&
659 MaxCallFrameSize == Other.MaxCallFrameSize &&
661 Other.CVBytesOfCalleeSavedRegisters &&
662 HasOpaqueSPAdjustment == Other.HasOpaqueSPAdjustment &&
663 HasVAStart == Other.HasVAStart &&
664 HasMustTailInVarArgFunc == Other.HasMustTailInVarArgFunc &&
665 HasTailCall == Other.HasTailCall &&
666 LocalFrameSize == Other.LocalFrameSize &&
667 SavePoint == Other.SavePoint && RestorePoint == Other.RestorePoint &&
668 IsCalleeSavedInfoValid == Other.IsCalleeSavedInfoValid;