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

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: 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') | tests_lit/assembler/arm32/vcvt_f32_f64.ll » ('J')
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 d90d59b88f28b193f9f264594d17d4de099cda54..13d6cac0b10752071eb6f93a4d1a1fed380d204c 100644
--- a/src/DartARM32/assembler_arm.h
+++ b/src/DartARM32/assembler_arm.h
@@ -706,8 +706,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);
@@ -1272,17 +1276,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') | tests_lit/assembler/arm32/vcvt_f32_f64.ll » ('J')

Powered by Google App Engine
This is Rietveld 408576698