Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(45)

Unified Diff: src/mips64/assembler-mips64.h

Issue 1118693002: MIPS: Add min/max suffixed variants. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/mips/assembler-mips.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/mips64/assembler-mips64.h
diff --git a/src/mips64/assembler-mips64.h b/src/mips64/assembler-mips64.h
index 4e434f2f0a21f5f0c25249e7d936eab4c60778bf..bb7fac460702c16ae499b00162eaddd8fef592bf 100644
--- a/src/mips64/assembler-mips64.h
+++ b/src/mips64/assembler-mips64.h
@@ -962,6 +962,14 @@ class Assembler : public AssemblerBase {
void mina(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
void max(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
void maxa(SecondaryField fmt, FPURegister fd, FPURegister fs, FPURegister ft);
+ void min_s(FPURegister fd, FPURegister fs, FPURegister ft);
+ void min_d(FPURegister fd, FPURegister fs, FPURegister ft);
+ void max_s(FPURegister fd, FPURegister fs, FPURegister ft);
+ void max_d(FPURegister fd, FPURegister fs, FPURegister ft);
+ void mina_s(FPURegister fd, FPURegister fs, FPURegister ft);
+ void mina_d(FPURegister fd, FPURegister fs, FPURegister ft);
+ void maxa_s(FPURegister fd, FPURegister fs, FPURegister ft);
+ void maxa_d(FPURegister fd, FPURegister fs, FPURegister ft);
void cvt_s_w(FPURegister fd, FPURegister fs);
void cvt_s_l(FPURegister fd, FPURegister fs);
« no previous file with comments | « src/mips/assembler-mips.cc ('k') | src/mips64/assembler-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698