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

Unified Diff: src/IceInstARM32.cpp

Issue 1879463003: Add "vmov.<dt> <Qd>, #<imm>" to integrated ARM assembler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 4 years, 8 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/IceAssemblerARM32.cpp ('k') | no next file » | 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 92a57e01d5ee0ade69a989f8b58d570fd646620e..3bc94e599881bb5decf78570b78091a9f4ae6183 100644
--- a/src/IceInstARM32.cpp
+++ b/src/IceInstARM32.cpp
@@ -1576,12 +1576,18 @@ void InstARM32Mov::emitIAS(const Cfg *Func) const {
case IceType_v4i32:
case IceType_v4f32:
assert(CondARM32::isUnconditional(Cond) &&
- "Moves on <4 x f32> must be unconditional!");
- // Mov between different Src and Dest types is used for bitcasting vectors.
- // We still want to make sure SrcTy is a vector type.
- assert(isVectorType(SrcTy) && "Mov between vector and scalar.");
- Asm->vorrq(Dest, Src0, Src0);
- return;
+ "Moves on vector must be unconditional!");
+ if (isVectorType(SrcTy)) {
+ // Mov between different Src and Dest types is used for bitcasting
+ // vectors. We still want to make sure SrcTy is a vector type.
+ Asm->vorrq(Dest, Src0, Src0);
+ return;
+ } else if (const auto *C = llvm::dyn_cast<ConstantInteger32>(Src0)) {
+ // Mov with constant argument, allowing the initializing all elements of
+ // the vector.
+ if (Asm->vmovqc(Dest, C))
+ return;
+ }
}
llvm::report_fatal_error("Mov: don't know how to move " +
typeStdString(SrcTy) + " to " +
« no previous file with comments | « src/IceAssemblerARM32.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698