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

Unified Diff: src/IceAssemblerARM32.h

Issue 1624383004: Add VMOV(immediate) instructions to the ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues in previous patch. 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 bec451011cf1723bed5551fcd46e427f7cc34e11..8290dc71aabf769eaf4f51930381d467aef0920f 100644
--- a/src/IceAssemblerARM32.h
+++ b/src/IceAssemblerARM32.h
@@ -382,6 +382,12 @@ public:
vldrs(OpSd, OpAddress, Cond, TInfo);
}
+ void vmovd(const Operand *OpDn, const OperandARM32FlexFpImm *OpFpImm,
+ CondARM32::Cond Cond);
+
+ void vmovs(const Operand *OpSn, const OperandARM32FlexFpImm *OpFpImm,
+ CondARM32::Cond Cond);
+
void vmovsr(const Operand *OpSn, const Operand *OpRt, CondARM32::Cond Cond);
// Uses APSR_nzcv as register

Powered by Google App Engine
This is Rietveld 408576698