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

Unified Diff: src/DartARM32/assembler_arm.h

Issue 1567623008: Add vcvt<c>.f32.f64 and vcvt<c>.f64.32 to ARM. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nit and merge conflicts. Created 4 years, 11 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 | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/DartARM32/assembler_arm.h
diff --git a/src/DartARM32/assembler_arm.h b/src/DartARM32/assembler_arm.h
index 470a3524db0914f169c68b651dd81d5bcd34818f..e10328287fd9c90da8e8c1f4519e0201cbca8936 100644
--- a/src/DartARM32/assembler_arm.h
+++ b/src/DartARM32/assembler_arm.h
@@ -714,8 +714,12 @@ class Assembler : public ValueObject {
void vsqrts(SRegister sd, SRegister sm, Condition cond = AL);
void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL);
+#if 0
+ // Moved to ARM32::AssemblerARM32::vcvtsd
void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL);
+ // Moved to ARM32::AssemblerARM32:vcvtds
void vcvtds(DRegister dd, SRegister sm, Condition cond = AL);
+#endif
void vcvtis(SRegister sd, SRegister sm, Condition cond = AL);
void vcvtid(SRegister sd, DRegister dm, Condition cond = AL);
void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL);
@@ -1280,17 +1284,19 @@ class Assembler : public ValueObject {
DRegister dd,
DRegister dn,
DRegister dm);
-#endif
+ // Moved to ARM32::AssemblerARM32::emitVFPsd
void EmitVFPsd(Condition cond,
int32_t opcode,
SRegister sd,
DRegister dm);
+ // Moved to ARM32::AssemblerARM32::emitVFPds
void EmitVFPds(Condition cond,
int32_t opcode,
DRegister dd,
SRegister sm);
+#endif
void EmitSIMDqqq(int32_t opcode, OperandSize sz,
QRegister qd, QRegister qn, QRegister qm);
« no previous file with comments | « no previous file | src/DartARM32/assembler_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698