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

Unified Diff: src/IceInstARM32.cpp

Issue 1683153003: ARM32 vector ops - scalarize icmp, fcmp and cast. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Adding tests for vector icmp and fcmp 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 | « no previous file | src/IceTargetLowering.h » ('j') | src/IceTargetLowering.h » ('J')
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 600658c0ff8d59f592a735d7fedb7dad96855279..afac0af13b7ee16b66d2401e057ef02139a559b5 100644
--- a/src/IceInstARM32.cpp
+++ b/src/IceInstARM32.cpp
@@ -1753,6 +1753,9 @@ template <> void InstARM32Ldr::emitIAS(const Cfg *Func) const {
case IceType_v8i16:
case IceType_v4i32:
case IceType_v4f32:
+ case IceType_v16i1:
+ case IceType_v8i1:
Jim Stichnoth 2016/02/10 19:08:11 make format
Eric Holk 2016/02/10 21:07:20 Done.
+ case IceType_v4i1:
Asm->vld1qr(getVecElmtBitsize(DestTy), Dest, getSrc(0), Func->getTarget());
break;
}
@@ -2092,6 +2095,9 @@ void InstARM32Str::emitIAS(const Cfg *Func) const {
case IceType_v8i16:
case IceType_v4i32:
case IceType_v4f32:
+ case IceType_v16i1:
+ case IceType_v8i1:
+ case IceType_v4i1:
Asm->vst1qr(getVecElmtBitsize(Ty), Src0, Src1, Func->getTarget());
break;
}
« no previous file with comments | « no previous file | src/IceTargetLowering.h » ('j') | src/IceTargetLowering.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698