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/IceInstARM32.cpp

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/IceInstARM32.h ('k') | tests_lit/assembler/arm32/insert-extract.ll » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInstARM32.cpp
diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
index 4538aa991df599fbb73e0742b7f79f9af7e11b93..4a0fc4cd31ad90e92964a542af6e98fb9852b184 100644
--- a/src/IceInstARM32.cpp
+++ b/src/IceInstARM32.cpp
@@ -1067,6 +1067,8 @@ InstARM32Mov::InstARM32Mov(Cfg *Func, Variable *Dest, Operand *Src,
}
}
+namespace {
+
// These next two functions find the D register that maps to the half of the Q
// register that this instruction is accessing.
Register getDRegister(const Variable *Src, uint32_t Index) {
@@ -1124,6 +1126,8 @@ Register getSRegister(const Variable *Src, uint32_t Index) {
return static_cast<Register>(RegARM32::RegTable[SrcReg].Aliases[Index + 3]);
}
+} // end of anonymous namespace
+
void InstARM32Extract::emit(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrEmit();
const Type DestTy = getDest()->getType();
@@ -1162,6 +1166,23 @@ void InstARM32Extract::emit(const Cfg *Func) const {
}
}
+void InstARM32Extract::emitIAS(const Cfg *Func) const {
+ const Operand *Dest = getDest();
+ const Type DestTy = Dest->getType();
+ const Operand *Src = getSrc(0);
+ assert(isVectorType(Src->getType()));
+ assert(DestTy == typeElementType(Src->getType()));
+ auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
+ if (isIntegerType(DestTy)) {
+ Asm->vmovrqi(Dest, Src, Index, getPredicate());
+ assert(!Asm->needsTextFixup());
+ return;
+ }
+ assert(isFloatingType(DestTy));
+ Asm->vmovsqi(Dest, Src, Index, getPredicate());
+ assert(!Asm->needsTextFixup());
+}
+
void InstARM32Insert::emit(const Cfg *Func) const {
Ostream &Str = Func->getContext()->getStrEmit();
const Variable *Dest = getDest();
@@ -1193,6 +1214,24 @@ void InstARM32Insert::emit(const Cfg *Func) const {
}
}
+void InstARM32Insert::emitIAS(const Cfg *Func) const {
+ const Variable *Dest = getDest();
+ const Operand *Src = getSrc(0);
+ const Type SrcTy = Src->getType();
+ assert(isVectorType(Dest->getType()));
+ assert(typeElementType(Dest->getType()) == SrcTy);
+ auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
+ if (isIntegerType(SrcTy)) {
+ const Operand *Src = getSrc(0);
+ Asm->vmovqir(Dest, Index, Src, getPredicate());
+ assert(!Asm->needsTextFixup());
+ return;
+ }
+ assert(isFloatingType(SrcTy));
+ Asm->vmovqis(Dest, Index, Src, getPredicate());
+ assert(!Asm->needsTextFixup());
+}
+
template <InstARM32::InstKindARM32 K>
void InstARM32CmpLike<K>::emitIAS(const Cfg *Func) const {
emitUsingTextFixup(Func);
« no previous file with comments | « src/IceInstARM32.h ('k') | tests_lit/assembler/arm32/insert-extract.ll » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698