diff options
Diffstat (limited to 'js/src/jit/Recover.cpp')
-rw-r--r-- | js/src/jit/Recover.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/js/src/jit/Recover.cpp b/js/src/jit/Recover.cpp index 0d6882f52c..8754516ef4 100644 --- a/js/src/jit/Recover.cpp +++ b/js/src/jit/Recover.cpp @@ -336,32 +336,32 @@ RUrsh::recover(JSContext* cx, SnapshotIterator& iter) const } bool -MSignExtend::writeRecoverData(CompactBufferWriter& writer) const +MSignExtendInt32::writeRecoverData(CompactBufferWriter& writer) const { MOZ_ASSERT(canRecoverOnBailout()); - writer.writeUnsigned(uint32_t(RInstruction::Recover_SignExtend)); + writer.writeUnsigned(uint32_t(RInstruction::Recover_SignExtendInt32)); MOZ_ASSERT(Mode(uint8_t(mode_)) == mode_); writer.writeByte(uint8_t(mode_)); return true; } -RSignExtend::RSignExtend(CompactBufferReader& reader) +RSignExtendInt32::RSignExtendInt32(CompactBufferReader& reader) { mode_ = reader.readByte(); } bool -RSignExtend::recover(JSContext* cx, SnapshotIterator& iter) const +RSignExtendInt32::recover(JSContext* cx, SnapshotIterator& iter) const { RootedValue operand(cx, iter.read()); int32_t result; - switch (MSignExtend::Mode(mode_)) { - case MSignExtend::Byte: + switch (MSignExtendInt32::Mode(mode_)) { + case MSignExtendInt32::Byte: if (!js::SignExtendOperation<int8_t>(cx, operand, &result)) return false; break; - case MSignExtend::Half: + case MSignExtendInt32::Half: if (!js::SignExtendOperation<int16_t>(cx, operand, &result)) return false; break; |