Index: src/mips/assembler-mips.cc |
diff --git a/src/mips/assembler-mips.cc b/src/mips/assembler-mips.cc |
index e05fc015a838c7bd6ffd729e91937ae7bc5ee063..1535ff9d06140599e602ec0b9f32be677dd684b4 100644 |
--- a/src/mips/assembler-mips.cc |
+++ b/src/mips/assembler-mips.cc |
@@ -1620,7 +1620,7 @@ void Assembler::srav(Register rd, Register rt, Register rs) { |
void Assembler::rotr(Register rd, Register rt, uint16_t sa) { |
// Should be called via MacroAssembler::Ror. |
DCHECK(rd.is_valid() && rt.is_valid() && is_uint5(sa)); |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
Instr instr = SPECIAL | (1 << kRsShift) | (rt.code() << kRtShift) |
| (rd.code() << kRdShift) | (sa << kSaShift) | SRL; |
emit(instr); |
@@ -1630,7 +1630,7 @@ void Assembler::rotr(Register rd, Register rt, uint16_t sa) { |
void Assembler::rotrv(Register rd, Register rt, Register rs) { |
// Should be called via MacroAssembler::Ror. |
DCHECK(rd.is_valid() && rt.is_valid() && rs.is_valid() ); |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
Instr instr = SPECIAL | (rs.code() << kRsShift) | (rt.code() << kRtShift) |
| (rd.code() << kRdShift) | (1 << kSaShift) | SRLV; |
emit(instr); |
@@ -1903,45 +1903,12 @@ void Assembler::movf(Register rd, Register rs, uint16_t cc) { |
} |
-void Assembler::sel(SecondaryField fmt, FPURegister fd, FPURegister fs, |
- FPURegister ft) { |
- DCHECK(IsMipsArchVariant(kMips32r6)); |
- DCHECK((fmt == D) || (fmt == S)); |
- |
- Instr instr = COP1 | fmt << kRsShift | ft.code() << kFtShift | |
- fs.code() << kFsShift | fd.code() << kFdShift | SEL; |
- emit(instr); |
-} |
- |
- |
void Assembler::seleqz(Register rd, Register rs, Register rt) { |
DCHECK(IsMipsArchVariant(kMips32r6)); |
GenInstrRegister(SPECIAL, rs, rt, rd, 0, SELEQZ_S); |
} |
-void Assembler::seleqz(SecondaryField fmt, FPURegister fd, FPURegister fs, |
- FPURegister ft) { |
- DCHECK(IsMipsArchVariant(kMips32r6)); |
- DCHECK((fmt == D) || (fmt == S)); |
- GenInstrRegister(COP1, fmt, ft, fs, fd, SELEQZ_C); |
-} |
- |
- |
-void Assembler::selnez(Register rd, Register rs, Register rt) { |
- DCHECK(IsMipsArchVariant(kMips32r6)); |
- GenInstrRegister(SPECIAL, rs, rt, rd, 0, SELNEZ_S); |
-} |
- |
- |
-void Assembler::selnez(SecondaryField fmt, FPURegister fd, FPURegister fs, |
- FPURegister ft) { |
- DCHECK(IsMipsArchVariant(kMips32r6)); |
- DCHECK((fmt == D) || (fmt == S)); |
- GenInstrRegister(COP1, fmt, ft, fs, fd, SELNEZ_C); |
-} |
- |
- |
// Bit twiddling. |
void Assembler::clz(Register rd, Register rs) { |
if (!IsMipsArchVariant(kMips32r6)) { |
@@ -2110,10 +2077,127 @@ void Assembler::DoubleAsTwoUInt32(double d, uint32_t* lo, uint32_t* hi) { |
} |
+void Assembler::movn_s(FPURegister fd, FPURegister fs, Register rt) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ GenInstrRegister(COP1, S, rt, fs, fd, MOVN_C); |
+} |
+ |
+ |
+void Assembler::movn_d(FPURegister fd, FPURegister fs, Register rt) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ GenInstrRegister(COP1, D, rt, fs, fd, MOVN_C); |
+} |
+ |
+ |
+void Assembler::sel(SecondaryField fmt, FPURegister fd, FPURegister fs, |
+ FPURegister ft) { |
+ DCHECK(IsMipsArchVariant(kMips32r6)); |
+ DCHECK((fmt == D) || (fmt == S)); |
+ |
+ GenInstrRegister(COP1, fmt, ft, fs, fd, SEL); |
+} |
+ |
+ |
+void Assembler::sel_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
+ sel(S, fd, fs, ft); |
+} |
+ |
+ |
+void Assembler::sel_d(FPURegister fd, FPURegister fs, FPURegister ft) { |
+ sel(D, fd, fs, ft); |
+} |
+ |
+ |
+void Assembler::seleqz(SecondaryField fmt, FPURegister fd, FPURegister fs, |
+ FPURegister ft) { |
+ DCHECK(IsMipsArchVariant(kMips32r6)); |
+ DCHECK((fmt == D) || (fmt == S)); |
+ GenInstrRegister(COP1, fmt, ft, fs, fd, SELEQZ_C); |
+} |
+ |
+ |
+void Assembler::selnez(Register rd, Register rs, Register rt) { |
+ DCHECK(IsMipsArchVariant(kMips32r6)); |
+ GenInstrRegister(SPECIAL, rs, rt, rd, 0, SELNEZ_S); |
+} |
+ |
+ |
+void Assembler::selnez(SecondaryField fmt, FPURegister fd, FPURegister fs, |
+ FPURegister ft) { |
+ DCHECK(IsMipsArchVariant(kMips32r6)); |
+ DCHECK((fmt == D) || (fmt == S)); |
+ GenInstrRegister(COP1, fmt, ft, fs, fd, SELNEZ_C); |
+} |
+ |
+ |
+void Assembler::seleqz_d(FPURegister fd, FPURegister fs, FPURegister ft) { |
+ seleqz(D, fd, fs, ft); |
+} |
+ |
+ |
+void Assembler::seleqz_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
+ seleqz(S, fd, fs, ft); |
+} |
+ |
+ |
+void Assembler::selnez_d(FPURegister fd, FPURegister fs, FPURegister ft) { |
+ selnez(D, fd, fs, ft); |
+} |
+ |
+ |
+void Assembler::selnez_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
+ selnez(S, fd, fs, ft); |
+} |
+ |
+ |
+void Assembler::movz_s(FPURegister fd, FPURegister fs, Register rt) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ GenInstrRegister(COP1, S, rt, fs, fd, MOVZ_C); |
+} |
+ |
+ |
+void Assembler::movz_d(FPURegister fd, FPURegister fs, Register rt) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ GenInstrRegister(COP1, D, rt, fs, fd, MOVZ_C); |
+} |
+ |
+ |
+void Assembler::movt_s(FPURegister fd, FPURegister fs, uint16_t cc) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ FPURegister ft; |
+ ft.code_ = (cc & 0x0007) << 2 | 1; |
+ GenInstrRegister(COP1, S, ft, fs, fd, MOVF); |
+} |
+ |
+ |
+void Assembler::movt_d(FPURegister fd, FPURegister fs, uint16_t cc) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ FPURegister ft; |
+ ft.code_ = (cc & 0x0007) << 2 | 1; |
+ GenInstrRegister(COP1, D, ft, fs, fd, MOVF); |
+} |
+ |
+ |
+void Assembler::movf_s(FPURegister fd, FPURegister fs, uint16_t cc) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ FPURegister ft; |
+ ft.code_ = (cc & 0x0007) << 2 | 0; |
+ GenInstrRegister(COP1, S, ft, fs, fd, MOVF); |
+} |
+ |
+ |
+void Assembler::movf_d(FPURegister fd, FPURegister fs, uint16_t cc) { |
+ DCHECK(IsMipsArchVariant(kMips32r2)); |
+ FPURegister ft; |
+ ft.code_ = (cc & 0x0007) << 2 | 0; |
+ GenInstrRegister(COP1, D, ft, fs, fd, MOVF); |
+} |
+ |
+ |
// Arithmetic. |
void Assembler::add_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
- GenInstrRegister(COP1, S, ft, fs, fd, ADD_D); |
+ GenInstrRegister(COP1, S, ft, fs, fd, ADD_S); |
} |
@@ -2123,7 +2207,7 @@ void Assembler::add_d(FPURegister fd, FPURegister fs, FPURegister ft) { |
void Assembler::sub_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
- GenInstrRegister(COP1, S, ft, fs, fd, SUB_D); |
+ GenInstrRegister(COP1, S, ft, fs, fd, SUB_S); |
} |
@@ -2133,7 +2217,7 @@ void Assembler::sub_d(FPURegister fd, FPURegister fs, FPURegister ft) { |
void Assembler::mul_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
- GenInstrRegister(COP1, S, ft, fs, fd, MUL_D); |
+ GenInstrRegister(COP1, S, ft, fs, fd, MUL_S); |
} |
@@ -2150,7 +2234,7 @@ void Assembler::madd_d(FPURegister fd, FPURegister fr, FPURegister fs, |
void Assembler::div_s(FPURegister fd, FPURegister fs, FPURegister ft) { |
- GenInstrRegister(COP1, S, ft, fs, fd, DIV_D); |
+ GenInstrRegister(COP1, S, ft, fs, fd, DIV_S); |
} |
@@ -2160,7 +2244,7 @@ void Assembler::div_d(FPURegister fd, FPURegister fs, FPURegister ft) { |
void Assembler::abs_s(FPURegister fd, FPURegister fs) { |
- GenInstrRegister(COP1, S, f0, fs, fd, ABS_D); |
+ GenInstrRegister(COP1, S, f0, fs, fd, ABS_S); |
} |
@@ -2170,12 +2254,17 @@ void Assembler::abs_d(FPURegister fd, FPURegister fs) { |
void Assembler::mov_d(FPURegister fd, FPURegister fs) { |
- GenInstrRegister(COP1, D, f0, fs, fd, MOV_D); |
+ GenInstrRegister(COP1, D, f0, fs, fd, MOV_S); |
+} |
+ |
+ |
+void Assembler::mov_s(FPURegister fd, FPURegister fs) { |
+ GenInstrRegister(COP1, S, f0, fs, fd, MOV_D); |
} |
void Assembler::neg_s(FPURegister fd, FPURegister fs) { |
- GenInstrRegister(COP1, S, f0, fs, fd, NEG_D); |
+ GenInstrRegister(COP1, S, f0, fs, fd, NEG_S); |
} |
@@ -2185,7 +2274,7 @@ void Assembler::neg_d(FPURegister fd, FPURegister fs) { |
void Assembler::sqrt_s(FPURegister fd, FPURegister fs) { |
- GenInstrRegister(COP1, S, f0, fs, fd, SQRT_D); |
+ GenInstrRegister(COP1, S, f0, fs, fd, SQRT_S); |
} |
@@ -2194,6 +2283,26 @@ void Assembler::sqrt_d(FPURegister fd, FPURegister fs) { |
} |
+void Assembler::rsqrt_s(FPURegister fd, FPURegister fs) { |
+ GenInstrRegister(COP1, S, f0, fs, fd, RSQRT_S); |
+} |
+ |
+ |
+void Assembler::rsqrt_d(FPURegister fd, FPURegister fs) { |
+ GenInstrRegister(COP1, D, f0, fs, fd, RSQRT_D); |
+} |
+ |
+ |
+void Assembler::recip_d(FPURegister fd, FPURegister fs) { |
+ GenInstrRegister(COP1, D, f0, fs, fd, RECIP_D); |
+} |
+ |
+ |
+void Assembler::recip_s(FPURegister fd, FPURegister fs) { |
+ GenInstrRegister(COP1, S, f0, fs, fd, RECIP_S); |
+} |
+ |
+ |
// Conversions. |
void Assembler::cvt_w_s(FPURegister fd, FPURegister fs) { |
@@ -2251,6 +2360,7 @@ void Assembler::rint_s(FPURegister fd, FPURegister fs) { rint(S, fd, fs); } |
void Assembler::rint(SecondaryField fmt, FPURegister fd, FPURegister fs) { |
DCHECK(IsMipsArchVariant(kMips32r6)); |
+ DCHECK((fmt == D) || (fmt == S)); |
GenInstrRegister(COP1, fmt, f0, fs, fd, RINT); |
} |
@@ -2259,25 +2369,25 @@ void Assembler::rint_d(FPURegister fd, FPURegister fs) { rint(D, fd, fs); } |
void Assembler::cvt_l_s(FPURegister fd, FPURegister fs) { |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
GenInstrRegister(COP1, S, f0, fs, fd, CVT_L_S); |
} |
void Assembler::cvt_l_d(FPURegister fd, FPURegister fs) { |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
GenInstrRegister(COP1, D, f0, fs, fd, CVT_L_D); |
} |
void Assembler::trunc_l_s(FPURegister fd, FPURegister fs) { |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
GenInstrRegister(COP1, S, f0, fs, fd, TRUNC_L_S); |
} |
void Assembler::trunc_l_d(FPURegister fd, FPURegister fs) { |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
GenInstrRegister(COP1, D, f0, fs, fd, TRUNC_L_D); |
} |
@@ -2406,7 +2516,7 @@ void Assembler::cvt_d_w(FPURegister fd, FPURegister fs) { |
void Assembler::cvt_d_l(FPURegister fd, FPURegister fs) { |
- DCHECK(IsMipsArchVariant(kMips32r2)); |
+ DCHECK(IsMipsArchVariant(kMips32r2) || IsMipsArchVariant(kMips32r6)); |
GenInstrRegister(COP1, L, f0, fs, fd, CVT_D_L); |
} |