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

Unified Diff: src/IceAssemblerARM32.h

Issue 1642253002: Add multi-source/dest VMOV to the integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. 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
Index: src/IceAssemblerARM32.h
diff --git a/src/IceAssemblerARM32.h b/src/IceAssemblerARM32.h
index beeb87ea688f167e822b25613383f03db8001b55..5af96fa1445c7fb6af20e06c82a7c9affe4bd706 100644
--- a/src/IceAssemblerARM32.h
+++ b/src/IceAssemblerARM32.h
@@ -387,6 +387,12 @@ public:
void vmovdd(const Operand *OpDd, const Variable *OpDm, CondARM32::Cond Cond);
+ void vmovdrr(const Operand *OpDm, const Operand *OpRt, const Operand *OpRt2,
+ CondARM32::Cond Cond);
+
+ void vmovrrd(const Operand *OpRt, const Operand *OpRt2, const Operand *OpDm,
+ CondARM32::Cond Cond);
+
void vmovrs(const Operand *OpRt, const Operand *OpSn, CondARM32::Cond Cond);
void vmovs(const Operand *OpSn, const OperandARM32FlexFpImm *OpFpImm,

Powered by Google App Engine
This is Rietveld 408576698