Chromium Code Reviews| Index: runtime/vm/assembler_arm.h |
| =================================================================== |
| --- runtime/vm/assembler_arm.h (revision 24614) |
| +++ runtime/vm/assembler_arm.h (working copy) |
| @@ -261,6 +261,10 @@ |
| encoding_ = so.encoding() | am | (static_cast<uint32_t>(rn) << kRnShift); |
| } |
| + bool Equals(const Address& other) { |
| + return (encoding_ == other.encoding_) && (kind_ == other.kind_); |
| + } |
| + |
| static bool CanHoldLoadOffset(LoadOperandType type, |
| int32_t offset, |
| int32_t* offset_mask); |