Lines Matching refs: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;
162 bool operator==(const VirtualRegisterDefinition &Other) const {
163 return ID == Other.ID && Class == Other.Class &&
164 PreferredRegister == Other.PreferredRegister;
183 bool operator==(const MachineFunctionLiveIn &Other) const {
184 return Register == Other.Register &&
185 VirtualRegister == Other.VirtualRegister;
224 bool operator==(const MachineStackObject &Other) const {
225 return ID == Other.ID && Name == Other.Name && Type == Other.Type &&
226 Offset == Other.Offset && Size == Other.Size &&
227 Alignment == Other.Alignment &&
228 StackID == Other.StackID &&
229 CalleeSavedRegister == Other.CalleeSavedRegister &&
230 CalleeSavedRestored == Other.CalleeSavedRestored &&
231 LocalOffset == Other.LocalOffset && DebugVar == Other.DebugVar &&
232 DebugExpr == Other.DebugExpr && DebugLoc == Other.DebugLoc;
291 bool operator==(const FixedMachineStackObject &Other) const {
292 return ID == Other.ID && Type == Other.Type && Offset == Other.Offset &&
293 Size == Other.Size && Alignment == Other.Alignment &&
294 StackID == Other.StackID &&
295 IsImmutable == Other.IsImmutable && IsAliased == Other.IsAliased &&
296 CalleeSavedRegister == Other.CalleeSavedRegister &&
297 CalleeSavedRestored == Other.CalleeSavedRestored &&
298 DebugVar == Other.DebugVar && DebugExpr == Other.DebugExpr
299 && DebugLoc == Other.DebugLoc;
360 bool operator==(const ArgRegPair &Other) const {
361 return Reg == Other.Reg && ArgNo == Other.ArgNo;
370 bool operator==(const MachineInstrLoc &Other) const {
371 return BlockNum == Other.BlockNum && Offset == Other.Offset;
378 bool operator==(const CallSiteInfo &Other) const {
379 return CallLocation.BlockNum == Other.CallLocation.BlockNum &&
380 CallLocation.Offset == Other.CallLocation.Offset;
417 bool operator==(const MachineConstantPoolValue &Other) const {
418 return ID == Other.ID && Value == Other.Value &&
419 Alignment == Other.Alignment &&
420 IsTargetSpecific == Other.IsTargetSpecific;
438 bool operator==(const Entry &Other) const {
439 return ID == Other.ID && Blocks == Other.Blocks;
446 bool operator==(const MachineJumpTable &Other) const {
447 return Kind == Other.Kind && Entries == Other.Entries;
508 bool operator==(const MachineFrameInfo &Other) const {
509 return IsFrameAddressTaken == Other.IsFrameAddressTaken &&
510 IsReturnAddressTaken == Other.IsReturnAddressTaken &&
511 HasStackMap == Other.HasStackMap &&
512 HasPatchPoint == Other.HasPatchPoint &&
513 StackSize == Other.StackSize &&
514 OffsetAdjustment == Other.OffsetAdjustment &&
515 MaxAlignment == Other.MaxAlignment &&
516 AdjustsStack == Other.AdjustsStack && HasCalls == Other.HasCalls &&
517 StackProtector == Other.StackProtector &&
518 MaxCallFrameSize == Other.MaxCallFrameSize &&
520 Other.CVBytesOfCalleeSavedRegisters &&
521 HasOpaqueSPAdjustment == Other.HasOpaqueSPAdjustment &&
522 HasVAStart == Other.HasVAStart &&
523 HasMustTailInVarArgFunc == Other.HasMustTailInVarArgFunc &&
524 LocalFrameSize == Other.LocalFrameSize &&
525 SavePoint == Other.SavePoint && RestorePoint == Other.RestorePoint;