summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
Diffstat (limited to 'llvm')
-rw-r--r--llvm/lib/Target/AArch64/AArch64MachineLegalizer.cpp18
1 files changed, 17 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64MachineLegalizer.cpp b/llvm/lib/Target/AArch64/AArch64MachineLegalizer.cpp
index 40fda0b2243..9414742f403 100644
--- a/llvm/lib/Target/AArch64/AArch64MachineLegalizer.cpp
+++ b/llvm/lib/Target/AArch64/AArch64MachineLegalizer.cpp
@@ -25,6 +25,22 @@ using namespace llvm;
#endif
AArch64MachineLegalizer::AArch64MachineLegalizer() {
- setAction(TargetOpcode::G_ADD, LLT::vector(2, 64), Legal);
+ using namespace TargetOpcode;
+ const LLT s32 = LLT::scalar(32);
+ const LLT s64 = LLT::scalar(64);
+ const LLT v2s32 = LLT::vector(2, 32);
+ const LLT v4s32 = LLT::vector(4, 32);
+ const LLT v2s64 = LLT::vector(2, 64);
+
+ for (auto BinOp : {G_ADD, G_SUB, G_AND, G_OR, G_XOR})
+ for (auto Ty : {s32, s64, v2s32, v4s32, v2s64})
+ setAction(BinOp, Ty, Legal);
+
+ for (auto MemOp : {G_LOAD, G_STORE})
+ for (auto Ty : {s32, s64})
+ setAction(MemOp, Ty, Legal);
+
+ setAction(G_BR, LLT::unsized(), Legal);
+
computeTables();
}
OpenPOWER on IntegriCloud