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

Unified Diff: src/IceAssemblerARM32.h

Issue 1679023008: Add insert/extract element 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, 10 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/DartARM32/assembler_arm.cc ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceAssemblerARM32.h
diff --git a/src/IceAssemblerARM32.h b/src/IceAssemblerARM32.h
index 3e6d5a3a5c4d4105fc4fd13023d54ea2abc036b1..3ae857b59545c6dd13cae576986b2fcf50c4909e 100644
--- a/src/IceAssemblerARM32.h
+++ b/src/IceAssemblerARM32.h
@@ -417,24 +417,48 @@ public:
vld1qr(ElmtSize, OpQd, OpRn, TInfo);
}
+ // Dn = FpImm
void vmovd(const Operand *OpDn, const OperandARM32FlexFpImm *OpFpImm,
CondARM32::Cond Cond);
+ // Dd = Dm
void vmovdd(const Operand *OpDd, const Variable *OpDm, CondARM32::Cond Cond);
+ // Dm = Rt:Rt2
void vmovdrr(const Operand *OpDm, const Operand *OpRt, const Operand *OpRt2,
CondARM32::Cond Cond);
+ // Qd[Index] = Rt
+ void vmovqir(const Operand *OpQd, uint32_t Index, const Operand *OpRt,
+ CondARM32::Cond Cond);
+
+ // Qd[Index] = Sm
+ void vmovqis(const Operand *OpQd, uint32_t Indx, const Operand *OpSm,
+ CondARM32::Cond Cond);
+
+ // Rt = Qm[Index]
+ void vmovrqi(const Operand *OpRt, const Operand *OpQd, uint32_t Index,
+ CondARM32::Cond Cond);
+
+ // Rt:Rt2 = Dm
void vmovrrd(const Operand *OpRt, const Operand *OpRt2, const Operand *OpDm,
CondARM32::Cond Cond);
+ // Rt = Sn
void vmovrs(const Operand *OpRt, const Operand *OpSn, CondARM32::Cond Cond);
+ // Sn = FpImm
void vmovs(const Operand *OpSn, const OperandARM32FlexFpImm *OpFpImm,
CondARM32::Cond Cond);
- void vmovss(const Operand *OpDd, const Variable *OpDm, CondARM32::Cond Cond);
+ // Sd = Sm
+ void vmovss(const Operand *OpSd, const Variable *OpSm, CondARM32::Cond Cond);
+
+ // Sd = Qm[Index]
+ void vmovsqi(const Operand *OpSd, const Operand *OpQm, uint32_t Index,
+ CondARM32::Cond Cond);
+ // Sn = Rt
void vmovsr(const Operand *OpSn, const Operand *OpRt, CondARM32::Cond Cond);
void vmlad(const Operand *OpDd, const Operand *OpDn, const Operand *OpDm,
@@ -641,6 +665,17 @@ private:
void emitDivOp(CondARM32::Cond Cond, IValueT Opcode, IValueT Rd, IValueT Rn,
IValueT Rm);
+ // cccc1110iiiennnntttt1011Njj10000 where cccc=Cond, tttt=Rt, Ndddd=2*Qn=Dn,
+ // iii=Opcode1, jj=Opcode2, Opcode1Opcode2 encodes Index and the
+ // corresponding element size of the vector element, and e=IsExtract.
+ void emitInsertExtractInt(CondARM32::Cond Cond, const Operand *OpQn,
+ uint32_t Index, const Operand *OpRt, bool IsExtract,
+ const char *InstName);
+
+ // cccc11101D110000dddd101001M0mmmm where cccc=Cond, ddddD=Sd, and mmmmM=Sm.
+ // Assigns Sd the value of Sm.
+ void emitMoveSS(CondARM32::Cond Cond, IValueT Sd, IValueT Sm);
+
// Pattern ccccxxxxxxxfnnnnddddssss1001mmmm where cccc=Cond, dddd=Rd, nnnn=Rn,
// mmmm=Rm, ssss=Rs, f=SetFlags and xxxxxxx=Opcode.
void emitMulOp(CondARM32::Cond Cond, IValueT Opcode, IValueT Rd, IValueT Rn,
« no previous file with comments | « src/DartARM32/assembler_arm.cc ('k') | src/IceAssemblerARM32.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698